/* Reset Básico e Estilos Globais com a Nova Paleta */
:root {
    --light-bg: #F2F2F2;
    --card-bg: #FFFFFF;
    --primary-text: #0D0D0D;
    --secondary-text: #8C8C8C;
    --accent-color: #00E1FF;
    --border-color: #BFBFBF;
    --dark-bg: #0D0D0D;
    --dark-text-contrast: #FFFFFF;
    --footer-bg: #0D0D0D;
    --footer-text: #BFBFBF;
    --cultura-bg: #F9F6F2;
    /* Exemplo: bege claro, pode ajustar para sua paleta */
    --cultura-divider: #F9F6F2;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--light-bg);
    color: var(--primary-text);
    margin: 0;
    padding: 0;
    padding-top: 72px;
    /* Ajuste conforme a altura real da navbar */
    line-height: 1.6;
}

html,
body {
    max-width: 100vw;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-weight: 700;
    color: var(--primary-text);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* --- NAVBAR --- */
.navbar-container {
    background-color: var(--footer-bg);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 2100px;
    margin: 0 auto;
    padding: 15px 25px;
    background-color: var(--footer-bg);
}

.navbar-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    /* Gap menor entre menu e logo */
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    /* Espaçamento maior entre ícones sociais */
}

#navbar-logo {
    height: 5.5rem;
    width: auto;
}

#menu-btn {
    background: none;
    border: none;
    color: #e0e0e0;
    font-size: 1.5rem;
    cursor: pointer;
    background-color: var(--footer-bg);
}

.navbar-right a {
    color: var(--card-bg);
    font-size: 1.2rem;
    transition: color 0.3s ease;
    background-color: var(--footer-bg);
    text-decoration: none;
    margin-left: 0;
    /* Remova margens extras */
}

.navbar-right a:hover {
    color: var(--accent-color);
}


/* --- MENU FULLSCREEN --- */
#fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(13, 13, 13, 0.98);
    backdrop-filter: blur(5px);
    z-index: 1001;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

#fullscreen-menu.visible {
    opacity: 1;
    visibility: visible;
}

#close-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: var(--dark-text-contrast);
    font-size: 3rem;
    cursor: pointer;
}

.fullscreen-menu-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.fullscreen-menu-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.fullscreen-menu-link {
    color: var(--dark-text-contrast);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.fullscreen-menu-link:hover {
    color: var(--accent-color);
}

.fullscreen-menu-footer {
    margin-top: 4rem;
}

#menu-logo {
    height: 6.5rem;
}

.fullscreen-menu-social {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.fullscreen-menu-social a {
    color: var(--dark-text-contrast);
    font-size: 1.5rem;
    transition: color 0.3s ease;
    text-decoration: none;
}

/* CARROSSEL HERO (SWIPER)*/

.hero-swiper {
    width: 100%;
    height: 500px; /* 1. Altura fixa de 720px para desktop */
    max-height: 500px; /* Garante que não ultrapasse */
    position: relative;
    background-color: #000; /* Fundo preto para o caso da imagem demorar a carregar */
}

.hero-swiper .swiper-slide {
    position: relative; /* Essencial para sobrepor o conteúdo */    
    height: 100%;
    width: 100%;
}

/* Mantém as regras de altura da imagem que você já tinha */
.hero-swiper .swiper-slide img {
    max-height: 720px;
    object-fit: cover;
    width: 100%;
    height: 100%;
    display: block;
}


/* Camada escura sobre a imagem (como no exemplo Maxipark) */
.hero-swiper .swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 13, 13, 0.4); /* Preto com 40% de opacidade */
    z-index: 2;
}


/* Conteúdo (texto e botão) */
.slide-content {
    position: absolute;
    top: 50%;
    /* Mude 'left' para 'right' e ajuste a porcentagem */
    right: 12%; /* Alinha à direita, com 5% de margem */
    left: auto; /* Remove a propriedade left se existir */
    transform: translateY(-50%);
    z-index: 10;
    color: #fff;
    max-width: 600px;
    padding: 0 2rem;
    text-align: right; /* Alinha o texto à direita */
}

.slide-content h2 {
    font-size: 1.5rem; /* Ajuste o tamanho conforme desejar */
    font-weight: 400;
    color: #f2f2f2;
}

.slide-content h1 {
    font-size: 2rem; /* Ajuste o tamanho conforme desejar */
    font-weight: 700;
    color: #fff;
    margin-top: 0.5rem;
    line-height: 1.2;
}

.btn-hero {
    display: inline-block;
    background: var(--accent-color); /* Usa sua cor de destaque */
    color: var(--dark-bg); /* Usa sua cor de fundo escura */
    padding: 12px 28px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 30px;
    margin-top: 1.5rem;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 11; /* Garante que o botão fique acima do link de slide */
}

.btn-hero:hover {
    transform: scale(1.05);
    color: var(--dark-bg);
}

/* Estilos da Paginação (bolinhas) */
.hero-swiper .swiper-pagination {
    bottom: 20px; /* Distância da base */
}
.hero-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #fff;
    opacity: 0.5;
    transition: opacity 0.3s, width 0.3s;
}
.hero-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    width: 25px;
    border-radius: 5px;
}

/* Ajustes para telas menores */
@media (max-width: 768px) {
    .hero-swiper {
        height: 500px; /* Altura para tablets */
        max-height: 500px;
        padding-top: 15px;
    }

    .slide-content {
        left: 0;
        right: 0;
        max-width: 100%;
        padding: 0 1.5rem;
        text-align: center;
    }

    .slide-content h1 {
        font-size: 2.2rem;
    }

    .slide-content h2 {
        font-size: 1.2rem;
    }

}


/* ANIMAÇÃO */

/* 1. Define a animação de "aparecer subindo" */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 2. Por padrão, esconde os elementos em TODOS os slides */
.anim-linha-1,
.anim-linha-2,
.anim-btn {
    opacity: 0; /* Começam invisíveis */
}

/* 3. Quando o slide está ATIVO, aplica a animação em cascata */

.swiper-slide-active .anim-linha-1 {
    animation: fadeInUp 0.6s ease-out 0.3s forwards;
}

.swiper-slide-active .anim-linha-2 {
    animation: fadeInUp 0.6s ease-out 0.6s forwards; /* Atraso de 0.6s */
}

.swiper-slide-active .anim-btn {
    animation: fadeInUp 0.6s ease-out 0.9s forwards; /* Atraso de 0.9s */
}

/* --- CARROSSEL DE MARCAS --- */
.scroller {
    background-color: var(--footer-bg);
    padding: 0;
    overflow: hidden;
}

.scroller__inner {
    display: flex;
    gap: 2rem;
    padding: 15px;
    width: max-content;
    animation: scroll 60s linear infinite;
}

.scroller__inner img {
    height: 60px;
    width: auto;
    opacity: 1;
    transition: all 0.3s ease;
}

.scroller__inner:hover img {
    filter: grayscale(0) contrast(1);
    opacity: 1;
}

@keyframes scroll {
    to {
        transform: translate(calc(-50% - 2rem));
    }
}


/* --- QUEM SOMOS --- */
#quem-somos {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
    justify-content: center;
    padding: 3rem 0;
    background: var(--footer-bg);
    column-gap: 2rem;
    /* Reduz o espaço entre imagem e texto */
}

.quem-somos-imagem {
    display: flex;
    justify-content: flex-end;
    /* Centraliza mais para o meio */
    align-items: center;
    height: 100%;
    padding-left: 0.5rem;
    /* Só um pequeno ajuste à esquerda */
}

.quem-somos-imagem img {
    width: 475px;
    max-width: 100%;
    height: auto;
    border-radius: 32px;
    object-fit: contain;
    margin-left: 0;
    margin-right: 0;
    display: block;
}

.quem-somos-texto {
    max-width: 700px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: justify;
    padding-left: 0.5rem;
    /* Aproxima do centro */
}

.quem-somos-texto h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--card-bg);
}

.quem-somos-texto p {
    font-size: 1.15rem;
    color: var(--footer-text);
    line-height: 1.7;
}

@media (max-width: 992px) {
    #quem-somos {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 0;
    }

    .quem-somos-imagem {
        justify-content: center;
        margin-bottom: 0;
    }

    .quem-somos-texto {
        margin-left: 24px;
        margin-right: 24px;
        padding-left: 0;
    }

    .quem-somos-texto h2 {
        font-size: 2rem;
        text-align: center;
        color: var(--card-bg);
        margin-bottom: 1rem;
    }

    .quem-somos-texto p {
        text-align: left;
        font-size: 1rem;
        color: var(--footer-text);
        line-height: 1.7;
    }
}


/* --- CULTURA ORGANIZACIONAL --- */

.container-cultura {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 15px;

}

#cultura h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.cultura-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 1.5rem;
    max-width: 750px;
    margin: 0 auto;
}

.culture-card {
    background-color: transparent;
    width: 220px;
    height: 280px;
    perspective: 1000px;
}

.culture-card__inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.culture-card:hover .culture-card__inner {
    transform: rotateY(180deg);
}

.culture-card__face {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border: none;
    /* Remova a borda */
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    /* Remova o padding */
    text-align: center;
}

.culture-card__face--front {
    background: none;
    border-radius: 20px;
    overflow: hidden;
    padding: 0;
    /* Remova o padding */
}

.culture-card__face--front i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-text);
}

.culture-card__face--back {
    background-color: var(--dark-bg);
    color: var(--dark-text-contrast);
    transform: rotateY(180deg);
}

.culture-card__face--back h3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.culture-card__face--back p {
    font-size: 1rem;
    font-weight: 500;
    color: var(--dark-text-contrast);
    text-justify: inter-word;
    margin: 0 auto;
    width: 90%;
    line-height: 1.7;
    letter-spacing: 0.01em;
    font-family: 'Inter', Arial, Helvetica, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.culture-card__face--front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    background: #181818;
}

.culture-card__face--front {
    padding: 0;
    background: none;
    border-radius: 20px;
    overflow: hidden;
}

.culture-card {
    border-radius: 20px;
    overflow: hidden;
    background: none;
    width: 220px;
    height: 280px;
    perspective: 1000px;
}

/* Garante que a section cultura ocupe toda a largura e fique com cor única */
#cultura,
section#cultura,
.container-cultura {
    background: #F9F6F2;
    /* Cor clara única, ajuste para sua paleta */
    color: var(--primary-text);
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    box-sizing: border-box;
    position: relative;
    z-index: 1;
    padding-left: 0;
    padding-right: 0;
}

/* Remove fundo do container interno se existir */
.cultura-grid {
    background: transparent;
}

/* --- DIVISOR CURVO (VERSÃO CORRETA) --- */
.section-divider {
    position: relative;
    top: 1px;
    /* Ajuste para sobrepor e evitar linhas finas */
    padding-top: -20px;
    background: var(--dark-bg);
}

.section-divider svg {
    display: block;
    width: 100%;
    height: auto;
    min-height: 80px;
    max-height: 150px;
    transform: rotate(180deg);
    /* Inverte a curvatura */
}

.section-divider .shape-fill-bg {
    fill: var(--dark-bg);
}

.section-divider .shape-fill {
    fill: var(--light-bg);
}


/* --- EMPRESAS DO GRUPO (NOVO ESTILO) --- */
.empresas-section-fullwidth {
    background-color: var(--dark-bg);
    padding: 0.5rem 0;
    /* Aumentado para dar mais respiro */
}

#empresas h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-text-contrast);
}

.empresas-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

.empresas-grid img {
    height: 90px;
    transition: transform 0.3s ease, opacity 0.3s;
    opacity: 0.9;
}

.empresas-grid img:hover {
    transform: scale(1.1);
    opacity: 1;
}

#empresas.container {
    padding-top: 1rem;
    /* Diminua conforme necessário */
}

/* --- FAQ (NOVO ESTILO) --- */
#faq h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    border-top: 1px solid var(--border-color);
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
}

.faq-question i {
    font-size: 1rem;
    transition: transform 0.3s ease-in-out;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
    color: var(--accent-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, padding 0.4s ease;
}

.faq-answer p {
    padding-bottom: 1.5rem;
    margin: 0;
    color: var(--secondary-text);
}


/* --- FOOTER --- */
.site-footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 4rem 0 2rem 0;
    font-size: 1rem;
    line-height: 1.6;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 25px;
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2.5rem;
    padding-bottom: 3rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid #404040;
}

.footer-column {
    flex: 1;
    min-width: 220px;
}

.footer-column h3 {
    color: var(--dark-text-contrast);
    font-size: 1.15rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 0.85rem;
}

.footer-column ul a {
    color: var(--footer-text);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-column ul a:hover {
    color: var(--dark-text-contrast);
}

.social-icons {
    margin-top: 50px;
}

.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    border: 1px solid var(--footer-text);
    border-radius: 50%;
    color: var(--footer-text);
    font-size: 1.4rem;
    transition: all 0.2s;
    text-decoration: none;
}

.social-icons a:hover {
    background-color: var(--dark-text-contrast);
    color: var(--footer-bg);
    border-color: var(--dark-text-contrast);
}

.footer-bottom-logo {
    text-align: center;
}

.footer-bottom-logo img {
    max-width: 300px;
    height: auto;
    margin-bottom: 1rem;
}

.copyright {
    font-size: 0.95rem;
    color: #737373;
    margin: 0;
}


/* --- BOTÃO VOLTAR AO TOPO --- */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--accent-color);
    color: var(--dark-bg);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
    z-index: 999;
}

.back-to-top:hover {
    transform: scale(1.1);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

#navbar-logo {
        padding-left: 0px;
        height: 5.5rem;
    }

    
/* --- RESPONSIVIDADE GERAL --- */

@media (min-width: 320px) and (max-width: 373px){
    #navbar-logo { 
        padding-left: 20px;
        height: 5.5rem;
    }
}


@media (min-width: 425px) and (max-width: 568px){
    #navbar-logo {
        padding-left: 62px;                        
        height: 5.5rem;
    }
}


@media (min-width: 374px) and (max-width: 425px){
    #navbar-logo {
        padding-left: 50px;
        height: 5.5rem;
    }
}

@media (min-width: 526px) and (max-width: 768px){
    #navbar-logo {
        padding-left: 40px;
        height: 5.5rem;
    }
}



@media (max-width: 992px) {
    .container {
        padding: 3rem 1.5rem;
    }

    #quem-somos {
        grid-template-columns: 1fr;
    }

    .quem-somos-imagem {
        order: -1;
        /* Coloca a imagem no topo em telas menores */
    }

    .empresas-grid img {
        height: 70px;
    }
}


@media (max-width: 768px) {
    h2 {
        font-size: 1.8rem;
    }

    .navbar-right {
        display: none;
        /* Esconde ícones sociais na navbar em mobile */
    }

    .navbar {
        padding: 0.8rem 1rem;
    }

    .footer-container {
        padding: 0 2vw;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-columns {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
        width: 100%;
    }

    .footer-column {
        min-width: 0;
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
        text-align: center;
    }

    .footer-bottom-logo {
        text-align: center;
        width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {

    .hero-swiper {
        height: 550px; /* Altura ainda menor para celulares */
        max-height: 550px;
    }

    .container {
        padding: 2.5rem 1rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .scroller__inner {
        gap: 2rem;
    }

    .scroller__inner img {
        height: 45px;
    }

    .culture-card {
        width: 140px;
        max-width: 140px;
        height: 140px;
    }

    .empresas-grid {
        gap: 2rem;
    }

    .empresas-grid img {
        height: 60px;
    }

    .faq-question {
        font-size: 1rem;
    }

    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }

    .culture-card__face--back p {
        font-size: 0.65rem;
        line-height: 1.2;
        padding: 0 4px;
    }
}

/* Garante que ao clicar nos links de navegação, a section não fique escondida atrás da navbar */
section[id] {
    scroll-margin-top: 90px;
    /* Ajuste para a altura real da navbar fixa */
}

/* --- ANIMAÇÃO DIVISOR --- */
.section-divider-animada {
    width: 100%;
    overflow: hidden;
    background: none;
    position: relative;
    z-index: 2;
}

.section-divider-animada svg {
    display: block;
    width: 100vw;
    height: 120px;
    transition: height 0.3s;
    background-color: var(--footer-bg);
}

/* Section Cultura Organizacional */
#cultura,
section#cultura {
    background: var(--cultura-bg);
    color: var(--primary-text);
}

/* Divider animada acima e abaixo */
.section-divider-animada svg path {
    fill: var(--cultura-divider);
}

/* Se tiver um divider abaixo da cultura, aplique também */
.section-divider-animada-bottom svg path {
    fill: var(--cultura-divider);
}

/* Adicione ao final do seu CSS */
.banner-flutuante-section {
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
    background: var(--light-bg);
    position: relative;
    z-index: 2;
}

.banner-flutuante-img-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1100px;
    /* Aumenta o banner */
    max-width: 95vw;
    min-height: 540px;
    background: transparent;
}

.banner-flutuante-img {
    width: 100%;
    height: auto;
    border-radius: 40px;
    display: block;
}

.banner-flutuante-img.mobile {
    display: none;
}

/* Centraliza o botão na parte esquerda, abaixo do texto */
.banner-flutuante-btn {
    position: absolute;
    left: 12%;
    /* Ajuste para alinhar com o texto */
    bottom: 18%;
    transform: translateY(0);
    background: var(--accent-color);
    color: var(--dark-bg);
    border: none;
    border-radius: 32px;
    padding: 1.1rem 2.8rem;
    font-size: 1.25rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: background 0.2s;
}

.banner-flutuante-btn:hover {
    background: #00b8cc;
}

.banner-flutuante-section2 {
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
    background: var(--light-bg);
    position: relative;
    z-index: 2;
}


.banner-flutuante-img2 {
    width: 100%;
    height: auto;
    border-radius: 40px;
    display: block;
}

.banner-flutuante-img-container2 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1100px;
    max-width: 95vw;
    min-height: 350px;
    background: transparent;
}

@media (max-width: 900px) {
    .banner-flutuante-img-container {
        width: 98vw;
        min-height: 340px;
    }

    .banner-flutuante-btn {
        left: 10%;
        bottom: 12%;
        padding: 0.8rem 2rem;
        font-size: 1rem;
        border-radius: 24px;
    }

    .banner-flutuante-img-container2 {
        width: 98vw;
        min-height: 340px;
    }
}

@media (max-width: 600px) {
    .banner-flutuante-img-container {
        width: 100vw;
        min-height: 0;
    }

    .banner-flutuante-img.desktop {
        display: none;
    }

    .banner-flutuante-img.mobile {
        display: block;
        border-radius: 20px;
    }

    .banner-flutuante-btn {
        left: 50%;
        bottom: 8%;
        transform: translateX(-50%);
        font-size: 1rem;
        padding: 0.7rem 1.5rem;
        border-radius: 18px;
    }

    .banner-flutuante-img.mobile2 {
        display: block;
        border-radius: 20px;
    }

    .banner-flutuante-img.desktop2 {
        display: none;
    }

    .banner-flutuante-img-container2 {
        width: 100vw;
        min-height: 0;
    }
}

/* --- NOVA SESSÃO DE CONTATO --- */
.contato-section {
    background: var(--footer-bg);
    color: var(--dark-text-contrast);
    padding: 4rem 0 2rem 0;
    position: relative;
    overflow: hidden;
}

.contato-section::before {
    content: "";
    position: absolute;
    top: -150px;
    /* valor negativo para subir a logo */
    left: 50%;
    width: 100vw;
    height: 140%;
    background: url('image/Grupo Business Brasil 1.png') center center no-repeat;
    background-size: contain;
    opacity: 0.06;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 0;
}

.contato-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
    background: none;
}

.contato-section h2 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark-text-contrast);
    letter-spacing: -1px;
}

.contato-underline {
    width: 80px;
    height: 3px;
    background: var(--accent-color);
    margin: 0 auto 2.5rem auto;
    border-radius: 2px;
}

.contato-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contato-row {
    display: flex;
    gap: 1.2rem;
}

.contato-field {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.contato-field.full {
    flex: 2;
}

.contato-field label {
    font-size: 0.97rem;
    color: var(--footer-text);
    font-weight: 500;
    margin-bottom: 0.2rem;
}

.contato-field input[type="text"],
.contato-field input[type="email"],
.contato-field input[type="tel"],
.contato-field textarea,
.contato-field select {
    padding: 0.7rem 1rem;
    border-radius: 10px;
    border: 2px solid transparent;
    /* Mantém tamanho ao focar */
    font-size: 0.97rem;
    background: var(--card-bg);
    color: var(--primary-text);
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    width: 100%;
}

.contato-field input[type="text"]:focus,
.contato-field input[type="email"]:focus,
.contato-field input[type="tel"]:focus,
.contato-field select:focus {
    border-color: var(--accent-color);
}

/* Ajusta o campo telefone para ficar igual aos demais */
.contato-telefone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.flag-br {
    font-size: 1.3rem;
    margin-right: 0.4rem;
    vertical-align: middle;
}

.contato-telefone select {
    min-width: 140px;
    max-width: 130px;
    padding: 0.7rem 0.5rem;
    font-size: 1rem;
    border-radius: 10px;
    border: 2px solid transparent;
    background: var(--card-bg);
    color: var(--primary-text);
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s;
    font-family: inherit;
    display: inline-block;
    vertical-align: middle;
}

.contato-telefone select:focus {
    border-color: var(--accent-color);
}

.flag-br {
    display: none;
    /* Agora usa o select */
}

.contato-privacidade {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--footer-text);
    margin-top: 0.5rem;
}

.contato-info {
    font-size: 0.92rem;
    color: var(--footer-text);
    margin-bottom: 0.5rem;
}

.contato-btn {
    width: 100%;
    background: var(--accent-color);
    color: var(--dark-bg);
    border: none;
    border-radius: 32px;
    padding: 1rem 0;
    font-size: 1.18rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 1.2rem;
    transition: background 0.2s;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
    letter-spacing: 0.5px;
}

.contato-btn:hover {
    background: #00b8cc;
}

@media (max-width: 700px) {
    .contato-row {
        flex-direction: column;
        gap: 0.7rem;
    }

    .contato-btn {
        font-size: 1rem;
        padding: 0.8rem 0;
    }

    .contato-section h2 {
        font-size: 1.3rem;
    }

    .contato-section::before {
        width: 220px;
        height: 220px;
    }

    .contato-container {
        padding: 0 0.9rem;
    }
}

/* --- ANIMAÇÃO DIVISOR EMPRESAS --- */
.section-divider-animada-empresas {
    width: 100vw;
    overflow: hidden;
    background: none;
    position: relative;
    z-index: 2;
}

.section-divider-animada-empresas svg {
    display: block;
    width: 100vw;
    height: 120px;
    transition: height 0.3s;
}

@media (max-width: 600px) {
    .section-divider-animada-empresas svg {
        height: 60px;
    }

    .empresas-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.2rem;
        justify-items: center;
        align-items: center;
    }

    .empresas-grid img {
        max-width: 90%;
    }
}

/* Adicione ou altere esta regra no index.css */
.agradecimento-bg-logo {
    position: fixed;
    left: 50%;
    top: 15%;
    /* diminua o valor para subir a logo */
    transform: translate(-50%, -50%);
    z-index: 0;
    opacity: 0.08;
    max-width: 80vw;
    width: 500px;
    pointer-events: none;
}