* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    background-color: #fff;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #b9b9b9;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    z-index: 1000;
}

.logo img {
    height: 40px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #E30613;
}

.hamburger {
    display: none !important; /* Garantir que esteja oculto por padrão */
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #E30613;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #003087;
        padding: 20px;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex !important;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('hero-bg.jpg') no-repeat center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: #E30613;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    transition: transform 0.3s, background 0.3s;
}

.cta-button:hover {
    transform: scale(1.05);
    background: #c20410;
}

/* Sobre */
.sobre {
    padding: 80px 50px;
    background: #F5F6F5;
}

.sobre-container {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.sobre-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    color: #003087;
    margin-bottom: 20px;
}

.sobre-text p {
    font-size: 16px;
    line-height: 1.6;
}

.sobre-img img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .sobre-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .sobre-text h2 {
        font-size: 28px;
    }

    .sobre-img img {
        max-width: 100%;
    }
}

/* Serviços */
.servicos {
    padding: 80px 50px;
    text-align: center;
}

.servicos h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    color: #003087;
    margin-bottom: 40px;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.servico-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.servico-card:hover {
    transform: translateY(-10px);
}

.servico-card img {
    margin-bottom: 20px;
    width: 200px;
}

.servico-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    color: #003087;
    margin-bottom: 10px;
}

/* Diferenciais */
.diferenciais {
    padding: 80px 50px;
    background: #F5F6F5;
    text-align: center;
}

.diferenciais h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    color: #003087;
    margin-bottom: 40px;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.diferencial-item img {
    margin-bottom: 20px;
    width: 200px;
}

.diferencial-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    color: #003087;
}

/* Abrangência */
.abrangencia {
    padding: 80px 50px;
    text-align: center;
}

.abrangencia h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    color: #003087;
    margin-bottom: 40px;
}

.abrangencia-container {
    max-width: 1200px;
    margin: 0 auto;
}

.abrangencia-container p {
    font-size: 16px;
    margin-bottom: 20px;
}

.cidades-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    text-align: left;
}

.cidades-list li {
    font-size: 16px;
}

.cidades-list li strong {
    color: #E30613;
}

/* Contato */
.contato {
    padding: 80px 50px;
    text-align: center;
}

.contato h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    color: #003087;
    margin-bottom: 40px;
}

.contato-container {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.contato-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contato-form input,
.contato-form textarea {
    padding: 15px;
    border: 1px solid #E5E7EB;
    border-radius: 5px;
    font-size: 16px;
}

.contato-form textarea {
    resize: none;
    height: 150px;
}

.contato-mapa {
    flex: 1;
}

.contato-mapa iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
}

.whatsapp {
    margin: 20px;
}

.whatsapp-button {
    display: inline-block;
    padding: 15px 30px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    transition: transform 0.3s, background 0.3s;
}

.whatsapp-button:hover {
    transform: scale(1.05);
    background: #20b354;
}

/* Footer */
.footer {
    background: #003087;
    color: #fff;
    padding: 40px 50px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo img {
    height: 40px;
}

.footer-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #E30613;
}

.footer-contato p {
    margin: 5px 0;
}

.footer-contato a {
    color: #fff;
    text-decoration: none;
}

.footer-contato a:hover {
    color: #E30613;
}

/* Responsividade */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #E30613;
        padding: 20px;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex !important; /* Forçar a exibição do hambúrguer em telas menores */
    }

    .hero h1 {
        font-size: 32px;
    }

    .empresa-container,
    .contato-container {
        flex-direction: column;
    }
}
