* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2C59AD;
    --black: #000000;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --blue: #17255a;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: var(--black);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}


.nav-container .logo img {
    width: 150px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

/*
.nav-link:hover, .nav-link.active {
    color: var(--primary-color);
}
    
*/

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
   /* background: var(--primary-color);*/
}

.language-switcher {
    display: flex;
    gap: 5px;
}

.lang-btn {
    background: var(--light-gray);
    border: 2px solid transparent;
    padding: 8px 12px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.lang-btn.active,
.lang-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--black);
    margin: 3px 0;
    transition: 0.3s;
}

.loc {
    background: linear-gradient(rgba(44, 89, 173, 0.295), rgba(44,89,173,0.9)), 
                url('img/locação.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 70px;
}

.loc-titulo {
    font-size: 2.5rem;
}

/*munck*/
.munck {
    padding: 80px 20px;
}

.munck .flex {
    display: flex;
    justify-content: space-evenly;
}

.munck-titulo {
    text-align: center;
    color: #17255a;
    margin-bottom: 5px;
}

.munck-sub {
    text-align: center;
}

.munck-img img {
    width: 300px;
    height: 200px;
    border-radius: 15px;
}



/*cesto*/
.cesto {
    padding: 80px 20px;
    background-color: #2C59AD;
    color: white;
}

.cesto .flex {
    display: flex;
    justify-content: space-evenly;
}

.cesto-titulo {
    text-align: center;
    color: #f8f9fa;
    margin-bottom: 5px;
}

.cesto-sub {
    text-align: center;
}


.cesto-img img {
    width: 300px;
    height: 200px;
    border-radius: 15px;
}


/*vendas*/
.vendas {
    padding: 80px 20px;
    text-align: center;
}

.vendas .flex {
    display: flex;
    justify-content: space-evenly;
}

.vendas-img img {
    width: 300px;
}

.vendas-titulo {
    color: #17255a;
}




/*cesto*/
.espe {
    padding: 80px 20px;
    background-color: #2C59AD;
    color: white;
}

.espeh2 {
    text-align: center;
    font-size: 3.0rem;
}

.espep {
    text-align: center;
    margin-bottom: 10px;
}

.espe .flex {
    display: flex;
    justify-content: space-evenly;
}

.espe-titulo {
    text-align: center;
    color: #f8f9fa;
    margin-bottom: 5px;
}

.espe-sub {
    text-align: center;
}


.espe-img img {
    width: 300px;
    height: 200px;
    border-radius: 15px;
}


/*direta*/

.direta {
    padding: 40px 4px;
}

.direta .flex {
    display: flex;
    justify-content: space-evenly;
}

.direta-h2 {
    color: #17255a;
    margin: 50px;
    text-align: center;
}

.direta-img img {
    width: 350px;
    border-radius: 15px;
}

.direta-sub {
    text-align: center;
}

/*tipo*/
.tipo {
    padding: 80px 20px;
}

.tipo2 {
    text-align: center;
    color: #17255a;
    margin-bottom: 35px;
}

.tipo .flex {
    display: flex;
    justify-content: space-evenly;
}

.tipo-img img {
    width: 150px;
    border-radius: 15px;
}

.tipo-titulo {
    text-align: center;
    margin-bottom: 20px;
}




/* Footer */
footer {
    background: var(--black);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section img{
    width: 150px;
}
.footer-section h4 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-section p {
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.footer-bottom p a {
    text-decoration: none;
    color: white;
}



/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .flex {
        flex-direction: column-reverse;
        align-items: center;
        gap: 30px;
    }

    .direta {
        text-align: center;
    }

    .direta .flex {
        flex-direction: column-reverse;
    }

    .direta-sub {
        margin-bottom: 50px;
    }

    .oficial {
        text-align: center;  
        gap: 10px; 
    }

    .oficial .flex {
        display: block;
        align-items: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}