* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Host Grotesk', sans-serif; 
}

.header {
    display: flex;
    justify-content: center; 
    align-items: center;
    padding: 15px 30px;
    background-color: transparent;
    position: relative; 
    z-index: 10;
}

.logo img {
    background-color: transparent;
    display: block;
    cursor: pointer;
}

.menu-toggle {
    position: absolute;
    right: 30px; 
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-toggle img {
    width: 30px;
    height: auto;
    display: block;
}

nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #ffffff; 
    box-shadow: none; 
    z-index: 10;
}

nav.active {
    display: block;
}

.nav-menu {
    display: flex;
    flex-direction: column; 
    align-items: stretch;
    padding: 0; 
    gap: 0; 
    list-style: none;
}

.nav-menu li {
    border-top: 1px solid #000000;
    height: 60px; 
    display: flex;
    align-items: center;
}

.nav-menu a {
    color: #000;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 700;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 30px;
}

#navLang ul {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    margin: 0;
    list-style: none;
}

#navLang li {
    border-top: 1px solid #000000;
    height: 60px;
    display: flex;
    align-items: center;
}

#navLang a {
    color: #000000;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 700;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 30px;
}

@media (min-width: 766px) {
    .header {
        justify-content: space-between; 
        padding: 20px 40px;
    }

    .menu-toggle {
        display: none;
    }

    #navMenu {
        display: block !important; 
        position: static;
        width: auto;
        background-color: transparent;
        border: none;
    }
    
    #navLang {
        width: 150px;
        left: auto;
        right: 40px; 
        top: 70px;
        border-left: 1px solid #000000;
        border-right: 1px solid #000000;
    }
    
    .nav-menu {
        display: flex;
        flex-direction: row;
        gap: 6px 40px; 
        padding: 0;
    }

    .nav-menu li {
        border: none;
        height: auto;
        display: flex;
        align-items: center;
    }

    .nav-menu a {
        font-size: 0.95rem;
        font-weight: 700;
        padding: 0;
        color: #fff;
    }
}

@media (max-width: 766px) {
    #navLang{
        background: #dfdfdf;
    }
    .langBt {
        background: #dfdfdf;
    }
}

.capa {
    margin-top: -100px;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
}

.capa img {
    display: inline-block;
}

.meta-desc {
    max-width: 1200px;
    margin: 50px auto;
}

.meta-desc p {
    padding: 5vh 25px;
    text-align: center;
    font-size: 1.4rem; 
    font-weight: 400;
}

.divisao {
    max-width: 1200px;
    margin: 50px auto;
}

.divisao h1 {
    padding: 5vh 25px;
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #000000;
}

.CaixasTexto {
    display: flex;
    justify-content: center; 
    width: 100%;
    padding: 5vh 20px 10vh 25px;
}

.CaixasTexto ul {
    text-align: center;
    display: flex;
    flex-direction: row; 
    justify-content: center;
    align-items: center;
    gap: 80px; 
    list-style-type: none;
}

.CaixasTexto li {
    border-top: 3px solid #000000; 
    padding-top: 20px;
    min-width: 250px;
}

.CaixasTexto h2 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    color: #000000;
    line-height: 1;
    margin-bottom: 10px;
}

.CaixasTexto h3 {
    font-size: 1.15rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #333;
}

.imagem2 {
    text-align: center;
    max-width: 100%;
    margin: 0;
}

.evolution {
    max-width: 1000px;
    margin: 100px auto;
    padding: 0 20px; 
}

.evolution h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
    border-top: 3px solid #000000;
    padding-top: 20px;
    text-transform: uppercase;
}

.evolution p {
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 500;
    color: #111;
    margin-bottom: 20px;
}

.produtos {
    margin-bottom: 80px;
}

.mosaicoIMG {
    max-width: 100%;
    margin: 0;
}

.mosaicoIMG ul {
    display: flex;
    flex-direction: row; 
    list-style-type: none; 
    padding: 0;
    margin: 0;
    width: 100%; 
}

.mosaicoIMG li {
    width: 50%; 
}

.mosaicoIMG img {
    width: 100%;
    height: auto;
    display: block; 
    object-fit: cover; 
}

@media (min-width: 768px) {
    .capa img { 
        width: 100%; 
        height: auto; 
    }
    .imagem2 img { 
        width: 100%; 
        height: auto; 
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .capa {
        overflow: hidden;
    }

    .capa img {
        width: 100%; 
        height: 100vh; 
        object-fit: cover; 
        object-position: center; 
        display: block; 
    }

    .meta-desc {
        margin: 30px auto;
    }

    .meta-desc p {
        padding: 3vh 20px;
        font-size: 1.2rem;
    }

    .divisao {
        margin: 30px auto;
    }

    .divisao h1 {
        font-size: 2rem;
        padding: 3vh 20px;
    }

    .CaixasTexto {
        padding: 2vh 20px 5vh 20px;
    }

    .CaixasTexto ul {
        flex-direction: column; 
        gap: 30px; 
    }

    .CaixasTexto li {
        min-width: 100%;
    }

    .CaixasTexto h2 {
        font-size: 2.8rem;
    }

    .imagem2 img {
        width: 100%; 
        height: auto; 
        border-radius: 40px; 
        padding: 3vh;
        background-color: transparent;
    }

    .evolution {
        margin: 50px auto;
    }

    .evolution h2 {
        font-size: 1.8rem;
    }

    .produtos {
        margin-bottom: 40px;
    }

    .mosaicoIMG ul {
        flex-direction: column; 
    }

    .mosaicoIMG li {
        width: 100%; 
    }

    .mosaicoIMG img {
        border-radius: 40px; 
        padding: 3vh;
    }
}

.catalogInfo {
    max-width: 1200px;
    margin: 100px auto;
    padding: 40px 20px;
    background-color: #ffffff;
    text-align: center;
}

.catalogInfo h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #000000;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.catalogInfo p {
    font-size: 1.2rem;
    font-weight: 500;
    color: #000000;
    margin-bottom: 40px;
    opacity: 0.8; 
}

.catalogInfo a {
    display: inline-block;
    background-color: #000000;
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 700;
    text-decoration: none;
    padding: 20px 50px; 
    border: 2px solid #000000;
    border-radius: 0; 
}

.catalogInfo a:hover {
    background-color: #ffffff;
    color: #000000;
}

@media (max-width: 768px) {
    .catalogInfo {
        margin: 50px auto;
        padding: 30px 20px;
    }
    
    .catalogInfo h2 {
        font-size: 2rem;
    }
}

.site-footer {
    background-color: #000000; 
    color: #d3d2d2;
    padding: 65px 5% 35px; 
    font-size: 0.9rem;
    -webkit-font-smoothing: antialiased; 
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.footer-section {
    flex: 1;
    min-width: 180px;
    display: flex;
    flex-direction: column;
}

.footer-section h4 {
    font-size: 1.20rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}

.footer-section p, 
.footer-section address {
    line-height: 1.6;
    font-style: normal;
    margin-bottom: 12px;
    color: #d3d2d2;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.site-footer a {
    color: #d3d2d2;
    text-decoration: none;
    transition: color 0.05s ease;
}

.site-footer a:hover {
    color: #ffffff; 
}

.facebook a:hover {
    color: #1877F2;
}

.instagram a:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.linkedin a:hover {
    background: linear-gradient(45deg, #004182 0%, #0A66C2 50%, #00A0DC 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.footer-bottom {
    max-width: 1200px;
    margin: 80px auto 0;
    padding-top: 24px;
    border-top: 1px solid #1a1a1a; 
    font-size: 0.8rem;
    color: #555555;
    text-align: left; 
}

@media (max-width: 768px) {
    .site-footer {
        padding: 60px 24px 30px;
    }
    
    .footer-container {
        display: grid;
        grid-template-columns: auto auto; 
        justify-content: center;
        gap: 48px 40px; 
    }
    
    .footer-section {
        text-align: left; 
    }
    
    .footer-bottom {
        margin-top: 60px;
        text-align: center;
    }
}