/*
  Reset básico e definição da fonte padrão do projeto.
*/


html {
  scroll-behavior: smooth;
}

body {
    margin: 0;
    /* 2. APLICANDO A FONTE 'INTER' A TODO O SITE */
    /* A segunda fonte ('sans-serif') serve como um fallback caso 'Inter' não carregue. */
    font-family: 'Inter', sans-serif;
    background-color: #ffffff; /* Um cinza claro para ver o contêiner branco se destacar */
}

.home-container {
    background-color: #FFFFFF;

    /* 3. MELHORIA DE RESPONSIVIDADE PARA TELAS GRANDES */
    /* Define uma largura máxima para o conteúdo não esticar demais. */
    /* Com uma largura máxima, 'margin: 0 auto' centraliza o container na tela. */
    margin: 0 auto;

    /* 4. PADDING RESPONSIVO (Mobile First) */
    /* Começamos com um padding menor, ideal para celulares. */
    padding: 0 20px;
}


/* 5. MEDIA QUERY: AJUSTE PARA TELAS MAIORES */
/* Quando a tela tiver no MÍNIMO 768px de largura (tablets e desktops)... */
@media (min-width: 1240px) {
    .home-container {
        /* ...aumentamos o padding lateral para o valor do seu design original. */
        padding: 0 20px;
        align-items: center;
    }
}

/* --- Estilos do Cabeçalho --- */

.site-header {
    background-color: #FFFFFF; /* Fundo branco */
    height: 80px;

    position: fixed;
    top: 0;
    left: 0;
    width: 96%;
    z-index: 1000;

    /* Usando Flexbox para o layout horizontal */
    display: flex;
    justify-content: space-between; /* MÁGICA: Empurra o logo para a esquerda e o menu para a direita */
    align-items: center; /* Centraliza os itens verticalmente nos 80px de altura */

    /* Padding responsivo: 20px no mobile, 40px no desktop */
    padding-left: 20px;
    padding-right: 20px;
}

/* O logo já tem o tamanho definido no HTML, o que é ótimo para performance. */
.site-header .logo img {
    display: block; /* Remove qualquer espaçamento extra que o navegador possa adicionar a uma imagem */
    width: 80%;
    height: 80%; /* Largura fixa para o logo */
}


/* Estilos da Navegação */
.header-nav ul {
    margin: 0;
    padding: 0;
    list-style: none; /* Remove as "bolinhas" da lista */

    display: flex; /* Deixa os itens do menu em linha */
    align-items: center;
    gap: 40px; /* Espaçamento moderno entre os itens do menu */
}

.header-nav a {
    text-decoration: none; /* Remove o sublinhado dos links */
    color: #111827; /* Um preto suave, bom para leitura */
    
    /* Configuração da fonte: Inter, SemiBold (600), 14px */
    font-weight: 600;
    font-size: 14px;

    /* Efeito suave para interação do usuário */
    transition: color 0.2s ease-in-out;
}

/* Efeito ao passar o mouse sobre os links do menu */
.header-nav a:hover {
    color: #ffd000; /* Uma cor de destaque */
}


/* --- Media Query para Responsividade do Cabeçalho --- */

/* Escondemos o menu de navegação em telas pequenas (mobile-first) */
.header-nav {
    display: none;
}

/* Para telas maiores (tablets e desktops) */
@media (min-width: 1240px) {
    /* Reexibimos o menu de navegação */
    .header-nav {
        display: block;
        padding-right: 20px;
    }

    .site-header .logo img {
    display: block; /* Remove qualquer espaçamento extra que o navegador possa adicionar a uma imagem */
    width: 100%;
    height: 100%; /* Largura fixa para o logo */
    }

    /* Aumentamos o padding lateral do cabeçalho */
    .site-header {
        padding-left: 40px;
        padding-right: 40px;
    }
}

/* --- Estilos da Hero Section --- */

.hero-section {
    /* Imagem de fundo e cor de fallback */
    background-color: #333;
    background-image: url('../images/Hero\ Section\ Background.png'); /* << Substitua pelo caminho da sua imagem */
    background-size: cover;
    background-position: center;
    margin-top: 80px;

    /* Layout Mobile (Vertical) */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 60px 20px;
    text-align: center;
}

/* Escondemos a imagem da esquerda em telas pequenas para economizar espaço */
.hero-image-container {
    display: none; 
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centraliza o conteúdo no mobile */
    gap: 32px;
}

.hero-title {
    color: #FFBB31;
    font-weight: 700; /* Bold */
    font-size: 36px; /* Tamanho reduzido para mobile */
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
    margin: 0;
}

.hero-subtitle {
    color: #FFFFFF;
    font-weight: 700; /* Bold */
    font-size: 20px; /* Tamanho reduzido para mobile */
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
    margin: 0;
}

.hero-button {
    display: inline-block;
    background-color: #FFBB31;
    color: #FFFFFF;
    border-radius: 10px;
    
    padding: 20px 40px; /* Padding para mobile */
    max-width: 406px; /* Largura máxima */

    text-decoration: none;
    text-align: center;
    font-weight: 800; /* Extra Bold */
    font-size: 24px; /* Tamanho reduzido para mobile */

    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.hero-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}


/* Animação para a imagem deslizar da esquerda */
@keyframes slideInFromLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Animação para o texto aparecer suavemente */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ======================================================= */
/* ESTILOS DA HERO PARA DESKTOP (COM ANIMAÇÕES)            */
/* Substitua o seu bloco @media por este.                 */
/* ======================================================= */

@media (min-width: 1240px) {

    .hero-section {
        flex-direction: row;
        gap: calc(150px + (100vw - 1240px) * 0.6);
        text-align: left;
        height: 580px;
        align-items: center;
        padding: 0px 80px 0 120px;
        /* Adicionado para esconder o overflow da animação inicial */
        overflow-x: hidden; 
        overflow-y: hidden;
    }
    
    .hero-image-container {
        display: block;
        margin-left: auto;
        /*APLICA A ANIMAÇÃO DE SLIDE-IN */
        animation: slideInFromLeft 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    }

    .hero-image-container img {
        object-fit: contain;
        height: 590px;
        padding-top: 10px;
    }

    .hero-content {
        align-items: flex-start;
        justify-content: center;
        gap: auto;
        height: 300px;
        width: 585px;
        margin-right: auto;

        /* APLICA A ANIMAÇÃO DE FADE-IN */
        /* Começa invisível para a animação funcionar */
        opacity: 0; 
        /* Animação com um pequeno atraso para começar após a imagem */
        animation: fadeIn 1s ease-out 0.6s forwards; 
    }

    .hero-title {
        font-size: 48px;
        text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    }

    .hero-subtitle {
        font-size: 24px;
        text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    }

    .hero-button {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 406px;
        height: 98px;
        font-size: 32px;
        padding: 0;
    }
}

/* --- Estilos da About Section --- */

.about-section {
    background-color: #FFFFFF;
    padding: 60px 20px; /* Padding generoso para mobile */

    /* Layout Mobile (Vertical) */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px; /* Espaço entre a imagem e o texto no mobile */
}

/* Colocamos a imagem primeiro no mobile, e o texto depois */
.about-image-container {
    order: 1; /* Garante que a imagem venha primeiro */
    width: 100%;
    max-width: 600px; /* Limita o tamanho da imagem */
}
.about-content {
    order: 2; /* Garante que o texto venha depois */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centraliza o conteúdo no mobile */
    gap: 20px;
}

.about-image-container img {
    width: 100%; /* Imagem responsiva */
    height: auto;
    border-radius: 15px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Sombra suave para mobile */
}

.about-title {
    font-weight: 700; /* Bold */
    font-size: 32px; /* Tamanho ajustado para mobile */
    color: #1E1E1E;
    margin: 0;
}

.about-divider {
    width: 180px; /* Tamanho ajustado para mobile */
}

.about-text {
    font-weight: 400; /* Regular */
    font-size: 16px; /* Tamanho ajustado para mobile */
    color: #333333;
    line-height: 1.6; /* Melhora a legibilidade */
    margin: 0;
    max-width: 600px; /* Limita a largura do texto para não ficar muito largo */
}


/* ======================================================= */
/* ESTILOS DA ABOUT SECTION PARA DESKTOP (Layout do Figma) */
/* ======================================================= */

@media (min-width: 1240px) {

    .about-section {
        height: 680px;
        /* Reverte para o layout horizontal do Figma */
        flex-direction: row;
        gap: calc(150px + (100vw - 1240px) * 0.2);
        justify-content: center; /* Alinhamento à esquerda */
        align-items: center
        ;
        
        /* 'margem esquerda 160 margem direita a 60' */
        padding: 0 60px 0 80px;
        /* 'espaço de 135' */
        gap: aut;
    }

    /* Restauramos a ordem para o layout do Figma */
    .about-image-container { order: 2; }
    .about-content { order: 1; }

    .about-content {
        width: 700px;
        height: 380px;
        align-items: flex-start; /* Alinha o texto à esquerda */
        text-align: justify;
        justify-content: flex-start; /* Alinha o conteúdo ao topo */
        /* 'espaçamento entre itens 27' */
        gap: 27px;
    }

    .about-title {
        font-size: 48px;
    }
    
    .about-divider {
        width: 234px;
    }

    .about-text {
        font-size: 18px;
    }

    .about-image-container {
        margin-top: 0px;
    }

    .about-image-container img { /* Garante que a imagem preencha o container sem distorcer */
        /* 'raio de canto 15' */
        border-radius: 15px; 
        /* 'efeito sombreado X0Y0 desfoque oito' */
        box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.25);
    }
}

/* --- Estilos da Card Section --- */

.card-section {
    background-color: #FFFFFF;
    padding: 60px 20px; /* Padding mobile */
}

.cards-wrapper {
    /* Layout Mobile (Vertical) */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 240px;
}

.card-container {
    position: relative; /* ESSENCIAL para o efeito de sobreposição */
    width: 100%;
    max-width: 415px; /* Tamanho do card menor como base no mobile */
}

/* Estilo genérico para AMBOS os cards (padrão e hover) */
.card {
    border-radius: 10px;
    padding: 20px;
    box-sizing: border-box; /* Garante que o padding não aumente o tamanho total */
    width: 100%;
    height: 190px;

    /* Posicionamento para sobrepor um ao outro */
    position: absolute;
    top: 0;
    left: 0;

    /* Efeito de transição suave */
    transition: opacity 0.5s ease;

    /* Layout interno dos cards */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
}

.card-default {
    background-color: #FAFAFA;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
}

.card-hover {
    background-color: #FFB828;
    opacity: 0; /* Começa invisível */
    justify-content: space-around; /* Espaça melhor o conteúdo do hover */
    padding: 25px 20px;
}

/* A MÁGICA DO HOVER: Quando passar o mouse no container... */
.card-container:hover .card-hover {
    opacity: 1; /* ... o card de hover se torna visível */
}

/* --- Estilos do Conteúdo dos Cards --- */
.card-icon {
    width: 55px;
    height: 55px;
}

.card-title { /* Título do card padrão */
    font-weight: 400; /* Regular */
    font-size: 24px;
    color: #1E1E1E;
    margin: 0;
}
.card-text { /* Texto do card padrão */
    font-weight: 400; /* Regular */
    font-size: 14px;
    color: #828282;
    margin: 0;
}

.card-title-hover { /* Título do card hover */
    font-weight: 600; /* SemiBold */
    font-size: 24px;
    color: #000000;
    margin: 0;
}
.card-text-hover { /* Texto do card hover */
    font-weight: 500; /* Medium */
    font-size: 14px;
    color: #000000;
    margin: 0;
}

.card-button {
    background: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
    width: 120px;
    height: 35px;
    
    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;
    font-weight: 700; /* Bold */
    font-size: 14px;
    color: #000000;
}


/* ======================================================= */
/* ESTILOS DA CARD SECTION PARA DESKTOP (Layout do Figma)  */
/* ======================================================= */

@media (min-width: 1240px) {

    .card-section {
        height: 400px;
        padding: 0 26px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .cards-wrapper {
        width: 1382px;
        height: 219px;
        flex-direction: row; /* Volta a ser horizontal */
        justify-content: center;
        gap: calc(40px + (100vw - 1240px) * 0.14);
    }

    /* Definindo os tamanhos exatos dos cards para desktop */
    .card-container.card-size-small {
        width: 350px;
        height: 180px;
    }
    .card-container.card-size-large {
        width: 400px;
        height: 219px;
    }
}

/* --- Estilos da Depoimento Section --- */

.testimonial-section {
    background-color: #FFFFFF;
    padding: 0; /* Padding para mobile */

    /* Layout Mobile (Vertical) */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-image-container {
    width: 80%;
    max-width: 444px; /* Limita o tamanho no mobile */
}

.testimonial-image-container img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Sombra suave para mobile */
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centraliza no mobile */
    text-align: center;
    margin-top: 40px;
    background: transparent;
    gap: 25px;
}

.testimonial-title {
    font-weight: 700; /* Bold */
    font-size: 32px; /* Ajustado para mobile */
    color: #1E1E1E;
    margin: 0;
}

.testimonial-divider {
    width: 60vw; /* Ajustado para mobile */
}

.testimonial-quote {
    margin: 0; /* Remove margem padrão do blockquote */
    font-style: normal; /* Remove itálico padrão do blockquote/cite */
}

.testimonial-quote p {
    margin: 0 0 20px 0; /* Espaço entre o texto e o autor */
    font-weight: 400; /* Regular */
    font-size: 14px; /* Ajustado para mobile */
    line-height: 1.7; /* Melhora a legibilidade */
    color: #333333;
}

.testimonial-quote cite {
    font-weight: 600; /* SemiBold */
    font-size: 16px;
    color: #1E1E1E;
    font-style: normal; /* Remove itálico padrão do cite */
}


/* ======================================================= */
/* ESTILOS DA DEPOIMENTO SECTION PARA DESKTOP (Layout do Figma) */
/* ======================================================= */

@media (min-width: 1240px) {

    .testimonial-section {
        height: 769px;
        flex-direction: row; /* Volta ao layout horizontal */
        justify-content: center;
        align-items: center;
        padding: 0px 150px;
        gap: calc(100px + (100vw - 1240px) * 0.14);

        /* 'espaçamento esquerdo 141 espaçamento direito 160' */

        /* 'espaço entre itens 135' */
    }

    .testimonial-image-container {
        width: 444px;
        height: 566px;
        flex-shrink: 0; /* Impede que a imagem encolha */
    }
    .testimonial-image-container img {
        height: 100%;
        object-fit: cover;
        /* 'sombra projetada X0Y0 desfoque oito' */
        box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.15);
    }
    
    .testimonial-content {
        width: 584px;
        margin: 0;
        background: transparent;
        align-items: flex-start; /* Alinhamento à esquerda */
        text-align: left;
        
        /* 'espaçamento entre as de 31' */
        gap: 31px;
    }

    .testimonial-title {
        font-size: 48px;
    }

    .testimonial-divider {
        width: 330px;
    }

    .testimonial-quote p {
        font-size: 18px;
        text-align: justify;
    }

    .testimonial-quote cite {
        font-size: 16px;
    }
}

/* --- Estilos da Projects Section --- */

.project-section {
    background-color: #FFFFFF;
    padding: 60px 20px; /* Padding mobile */

    /* Layout Mobile (Vertical) */
    display: flex;
    flex-direction: column;
    align-items: center; /* Centraliza o conteúdo horizontalmente */
    gap: 40px;
}

.project-header {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center; /* No mobile, o header também é centralizado */
    text-align: center;
    gap: 20px;
}

/* Usamos a classe .section-title que talvez já exista, mas podemos especificá-la */
.project-header .section-title {
    font-weight: 700; /* Bold */
    font-size: 32px; /* Ajustado para mobile */
    color: #1E1E1E;
    margin: 0;
}

.project-divider {
    width: 70%;
    height: 10px;
}

.projects-grid {
    display: flex;
    flex-direction: column; /* Empilha os projetos no mobile */
    align-items: center;
    gap: 30px;
}

.project-card {
    width: 100%;
    max-width: 446px; /* Usa o maior card como base no mobile */
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.project-image {
    width: 100%;
    height: auto;
    display: block;
}

.project-caption {
    font-weight: 400; /* Regular */
    font-size: 18px; /* Ajustado para mobile */
    color: #1E1E1E;
    margin: 0;
}


/* ======================================================= */
/* ESTILOS DA PROJECTS SECTION PARA DESKTOP (Layout do Figma) */
/* ======================================================= */

@media (min-width: 1240px) {

    .project-section {
        height: 450px;
        /* 'espaço superior de 70 inferior de 50' */
        padding: 70px 20px 50px; 
        /* 'espaço entre itens de 80' */
        gap: 80px;
        flex-direction: column;
        align-items: center;
    }

    .project-header {
        padding-left: 50px;
        align-items: flex-start; /* Alinhamento à esquerda, como no seu plano */
        text-align: left;
    }

    .project-header .section-title {
        font-size: 48px;
    }

    .project-divider {
        width: 536px;
    }

    .projects-grid {
        height: 270px;
        flex-direction: row; /* Volta ao layout horizontal */
        align-items: center;
        margin: 0;
        gap: calc(30px + (100vw - 1240px) * 0.3);
    }

    /* Estilos específicos para cada card no desktop */
    .project-card {
        text-align: left;
        height: auto; /* A altura será definida pelo conteúdo */
    }
    
    /* Para não precisarmos de classes extras, usamos :nth-child() */
    .projects-grid .project-card:nth-child(1) {
        width: 350px; height: 240;
    }
    .projects-grid .project-card:nth-child(1) .project-image {
        width: 100%; height: 220px;
    }

    .projects-grid .project-card:nth-child(2) {
        width: 350px; height: 240;
    }
    .projects-grid .project-card:nth-child(2) .project-image {
        width: 100%; /* Usamos 100% para evitar o overflow */
        height: 220px; 
    }

    .projects-grid .project-card:nth-child(3) {
    width: 350px; height: 240;
    }
    .projects-grid .project-card:nth-child(3) .project-image {
        width: 350px; height: 220px;
    }

    .project-caption {
        font-size: 18px;
        text-align: left;
    }
}

/* --- Estilos da Results Section --- */

.results-section {
    /* 'preenchimento dela é uma imagem' */
    background-image: url('../images/Results\ Section\ Background.png');
    background-size: cover;
    background-color: #FFFFFF;
    background-position: center;
    padding: 250px 20px; /* Padding mobile */
    height: 650px;
}

.stats-wrapper {
    /* Layout Mobile (Vertical) */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.stat-item {
    width: 10%; /* A largura fixa funciona bem aqui */
    /* 'fluxo vertical alinhamento ao centro' */
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 'espaçamento entre itens 20' */
    gap: 20px;
}

.stat-icon {
    width: 50px;
    height: 50px;
}

.stat-number {
    font-weight: 800; /* ExtraBold */
    font-size: 24px;
    color: #FFBB31;
    margin: 0;
}

.stat-label {
    font-weight: 800; /* ExtraBold */
    font-size: 12px;
    color: #FFFFFF;
    text-align: center;
    margin: 0;
}


/* ======================================================= */
/* ESTILOS DA RESULTS SECTION PARA DESKTOP (Layout do Figma) */
/* ======================================================= */
@media (min-width: 1240px) {
    .results-section {
        height: 508px;
        display: flex;
        align-items: center;
        justify-content: center;
        /* 'espaçamento superior e inferior 118', 'esquerdo 152 e direito também' */
        padding: 118px 152px;
    }

    .stats-wrapper {
        width: 1233px;
        height: 271px;
        flex-direction: row; /* Volta ao layout horizontal */
        justify-content: center;
        align-items: center;
        /* 'espaçamento entre itens 110' */
        gap: 190px;
        padding: 23px 0;
    }
    .stat-icon {
    width: 84px;
    height: 84px;
    }

    .stat-number {
        font-weight: 800; /* ExtraBold */
        font-size: 32px;
        color: #FFBB31;
        margin: 0;
    }

    .stat-label {
        font-weight: 800; /* ExtraBold */
        font-size: 16px;
        color: #FFFFFF;
        text-align: center;
        margin: 0;
    }
}

/* --- Estilos da Partners Section --- */

.partners-section {
    margin-top: 30px;
    background-color: #FFFFFF;
    padding-bottom: 0px;
    overflow: hidden; 
}

.section-title {
    font-size: 48px;
    text-align: center;
    margin-bottom: 110px; /* Adicionado um espaçamento do título */
}

/* NOVO: Container para o carrossel */
.partners-container {
    width: 100%;
    display: flex;
    position: relative;
}

.partners-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Alinha os itens no início */
    flex-wrap: nowrap; /* Garante que os itens fiquem em uma única linha */
    gap: 80px; /* Espaçamento padrão */
    padding: 0 40px; /* Um pouco de padding nas laterais */

    /* NOVO: A mágica da animação acontece aqui! */
    animation: scroll 30s linear infinite;
}

/* NOVO: Pausa a animação quando o mouse está sobre o carrossel */
.partners-wrapper:hover {
    animation-play-state: paused;
}

/* NOVO: Definição da animação */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        /* Move para a esquerda pela metade da largura total.
           Como duplicamos o conteúdo, isso move exatamente
           o primeiro conjunto de logos para fora da tela. */
        transform: translateX(-50%);
    }
}


.partners-wrapper img {
    height: 90px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    flex-shrink: 0; /* Impede que as imagens encolham */
}


/* ======================================================= */
/* ESTILOS DA PARTNERS SECTION PARA DESKTOP */
/* ======================================================= */

@media (min-width: 1240px) {
    .partners-wrapper {
        gap: 190px;
    }
    
    .partners-wrapper img {
        height: 100px;
    }
}

/* --- Estilos da Contact Section --- */

.contact-section {
    /* 'no excel background uma imagem' (Acredito que quis dizer "no seu background") */
    background-image: url('../images/Contato\ Section\ Background.png');
    background-size: cover;
    background-color: #FFFFFF;
    background-position: center;

    /* 'fluxo vertical alinhamento ao centro' */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    
    padding: 50px 20px; /* Padding para mobile */
    padding-top: 20px;
}

.contact-header {
    display: flex;
    margin-top: 110px;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px; /* Espaço para o subtítulo no mobile */
}

/* Reutilizando a classe .section-title, mas podemos especificar se necessário */
.contact-section .section-title {
    font-weight: 700; /* Bold */
    font-size: 40px; /* Ajustado para mobile */
    color: #FFFFFF; /* Cor branca para contrastar com o fundo escuro */
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    margin: 0;
}

.contact-divider {
    width: 180px; /* Ajustado para mobile */
    margin-bottom: 30px;
}

.contact-subtitle {
    font-weight: 400;
    font-size: 18px;
    color: #4C4C4C;
    line-height: 1.6;
    max-width: 800px; /* <--- AUMENTE ESTE VALOR */
    margin: 0 0 40px 0;
}

.contact-button {
    /* Dimensões e estilo do botão */
    width: 85%;
    max-width: 406px;
    height: 78px;
    background-color: #FFBB31;
    border-radius: 10px;

    /* Alinhamento do texto interno */
    display: flex;
    align-items: center;
    justify-content: center;

    /* Estilo do texto */
    text-decoration: none;
    color: #FFFFFF;
    font-weight: 800; /* ExtraBold */
    font-size: 24px; /* Ajustado para mobile */
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}


/* ======================================================= */
/* ESTILOS DA CONTACT SECTION PARA DESKTOP (Layout do Figma) */
/* ======================================================= */

@media (min-width: 1024px) {
    .contact-section {
        height: 550px;
        justify-content: center; /* Alinha o conteúdo verticalmente no centro */
        /* 'espaçamento superior 200 e inferior 100' */
        padding: 200px 20px 100px;
        /* 'espaçamento entre itens de 50' */
        gap: 50px;
    }

    .contact-header {
        height: 100px;
        margin-bottom: 0; /* Remove a margem para usar o gap do pai */
    }

    .contact-section .section-title {
        font-size: 48px;
        color: #1E1E1E; /* Voltando para a cor original no desktop */
        text-shadow: none;
    }

    .contact-divider {
        filter: none; /* Remove o filtro para o vetor voltar à cor original */
        width: 250px;
    }

    .contact-subtitle {
        font-size: 32px;
        margin: 0;
    }

    .contact-button {
        width: 406px; /* Largura fixa no desktop */
        font-size: 32px;
        /* 'sombra projetada 10 4Y4 desfoque quatro' */
        /* O "10" parece ser um typo, geralmente é X Y Blur Cor. Vou usar 0 X */
        box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
        text-shadow: none; /* Sombra no botão e não no texto */
    }
}

/* --- Estilos da Location Section --- */

.location-section {
    background-color: #F5F5F5;
    /* 'espaçamento superior de 40 inferior também' */
    padding: 40px 20px; /* Padding ajustado para mobile */

    /* 'fluxo vertical alinhamento automático' */
    display: flex;
    align-items: center;
    justify-content: center;
}

.google-map {
    width: 100%; /* Ocupa toda a largura no mobile */
    height: 450px; /* Altura padrão para mobile */
    
    /* SUAS NOVAS ADIÇÕES */
    border-radius: 15px; /* 'raio de canto 15' */
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.1); /* 'sombra de efeito' */
}


/* ======================================================= */
/* ESTILOS DA LOCATION SECTION PARA DESKTOP (Layout do Figma) */
/* ======================================================= */

@media (min-width: 1440px) {
    .location-section {
        height: 700px;
        /* 'espaçamento esquerdo de 67 direito também' */
        padding: 40px 67px;
    }
    
    .google-map {
        /* '1263 de largura por 707 de altura' */
        width: 1263px;
        height: 707px;
        margin-bottom: 100px;
    }
}

/* --- Estilos da Frase Section --- */

.phrase-section {
    /* 'seu background é uma imagem' */
    background-image:url('../images/Frase\ Section\ Background.png');
    background-size: cover;
    background-position: center;
    height: 70px;

    /* 'fluxo vertical' e 'alinhamento central' */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    padding: 80px 20px; /* Padding para mobile */
}

.phrase-text {
    color: #FFFFFF;
    font-weight: 500; /* Medium */
    font-size: 24px; /* Ajustado para mobile */
    line-height: 1.5;
    text-align: center;
    max-width: 650px; /* Largura máxima para não ficar muito largo no mobile */
    margin: 0;
}

.phrase-divider {
    width: 180px; /* Ajustado para mobile */
    margin-top: 20px;
    /* Truque para deixar o vetor SVG preto na cor branca */
}


/* ======================================================= */
/* ESTILOS DA FRASE SECTION PARA DESKTOP (Layout do Figma) */
/* ======================================================= */
@media (min-width: 1024px) {
    .phrase-section {
        height: 120px;
        /* 'espaçamento superior inferior 119' e 'esquerdo direito 89' */
        padding: 119px 89px;
        /* 'espaçamento 10 entre itens' */
        gap: 10px;
    }

    .phrase-text {
        width: 650px;
        font-size: 36px;
    }

    .phrase-divider {
        width: 234px;
        margin-top: 0; /* Remove a margem para usar o gap do pai */
        color: #FFBB31;
    }
}

/* ======================================================= */
/* NOVO FOOTER - SUBSTITUA OS ESTILOS ANTIGOS POR ESTES    */
/* ======================================================= */

.new-site-footer {
    background-color: #1E1E1E; /* Cinza escuro, quase preto */
    color: #A0A0A0; /* Cinza claro para os textos */
    font-family: 'Inter', sans-serif;
    padding-top: 50px;
}

.footer-container {
    max-width: 1240px;
    margin: 0 auto;
}

/* --- Parte Superior do Footer (Colunas) --- */
.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; /* Permite que as colunas quebrem em telas menores */
    gap: 40px;
    padding-left: 190px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1; /* Faz as colunas tentarem ocupar o mesmo espaço */
    min-width: 220px; /* Largura mínima antes de quebrar a linha */
}

.footer-column h4 {
    color: #FFBB31; /* Amarelo da sua paleta */
    font-size: 18px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 25px;
    position: relative;
    display: inline-block; /* Para o sublinhado se ajustar ao texto */
}

/* Efeito de sublinhado amarelo */
.footer-column h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40%;
    height: 2px;
    background-color: #FFBB31;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 15px;
}

.footer-column a {
    color: #A0A0A0;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #FFFFFF; /* Efeito de hover para branco */
}

.footer-icon {
    width: 20px;
    height: 20px;
}

/* --- Divisor e Parte Inferior --- */
.footer-divider {
    border: none;
    height: 1px;
    background-color: #333333; /* Linha divisória sutil */
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 30px;
    padding-bottom: 20px;
    font-size: 12px;
}

.footer-logo {
    height: 35px; /* Tamanho ajustado da logo Ômega */
    opacity: 0.8;
}

.footer-bottom-middle p {
    margin: 0;
    color: #8E8E8E;
}

.developer-credit-new {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #A0A0A0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.developer-credit-new:hover {
    color: #FFFFFF;
}

.developer-credit-new strong {
    font-weight: 700; /* "Desenvolvido por" em negrito */
}

.developer-logo {
    height: 24px;
}

/* --- Responsividade para Mobile --- */
@media (max-width: 768px) {
    .footer-top {
        flex-direction: column; /* Empilha os itens verticalmente */
        text-align: center; /* Centraliza o texto */
        align-items: center;
        gap: 40px;
        padding-left: 20px;
        margin-bottom: 40px;

    } 
    
    .footer-bottom {
        flex-direction: column; /* Empilha os itens verticalmente */
        text-align: center; /* Centraliza o texto */
        align-items: center;
    }

    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%); /* Centraliza o sublinhado */
    }

    .footer-column a {
        justify-content: center; /* Centraliza os ícones e textos dos links */
    }
}

/* 1. Estilos para o ícone do hambúrguer */
.menu-hamburguer {
    display: none; /* Escondido por padrão (no desktop) */
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.menu-hamburguer span {
    width: 2rem;
    height: 0.25rem;
    background-color: #333; /* Cor das barras - sinta-se à vontade para mudar */
    border-radius: 10px;
    transition: all 0.3s linear;
    position: relative;
    transform-origin: 1px;
}

/* 2. Media Query: Aplica os estilos apenas em telas menores (móveis) */
@media (max-width: 768px) {

    /* Mostra o ícone do hambúrguer no mobile (sem alterações aqui) */
    .menu-hamburguer {
        display: flex;
        position: absolute;
        top: 25px;
        right: 45px;
    }

    /* --- PRINCIPAIS MUDANÇAS AQUI --- */
    /* Transforma a navegação em um painel lateral */
    .header-nav {
        position: fixed;
        top: 0;
        /* Alinhado à direita e com 35% de largura */
        right: 0;
        left: auto;
        width: 35%; /* Ocupa 35% da tela */
        min-width: 250px; /* Garante que não fique fino demais em telas pequenas */
        height: 100vh;
        
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(8px);
        box-shadow: -5px 0 15px rgba(0,0,0,0.1); /* Sombra à esquerda */
        z-index: 1000;
        
        display: flex;
        
        /* Esconde o menu fora da tela à direita */
        opacity: 0;
        pointer-events: none;
        transform: translateX(100%);
        transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
    }

    /* Classe que torna o menu visível, deslizando para a posição correta */
    .header-nav.menu-aberto {
        opacity: 1;
        pointer-events: auto;
        transform: translateX(0);
    }

    /* Estiliza a lista de links para ficar vertical e alinhada */
    .header-nav ul {
        width: 100%; /* Ocupa todo o painel */
        flex-direction: column;
        text-align: center; /* Alinha todo o texto ao centro */
        padding: 8rem 2rem 2rem 2rem; /* Espaçamento interno (topo, lados, baixo) */
    }

    .header-nav li {
        margin: 0;
        width: 100%;
    }

    /* Estilo dos links (Inter, cinza) */
    .header-nav a {
        font-family: 'Inter', sans-serif; /* Define a fonte Inter */
        font-size: 1.1rem; 
        font-weight: 500; /* Um peso de fonte médio */
        color: #4A4A4A; /* Tom de cinza escuro */
        padding: 1rem 0; /* Espaçamento vertical entre os links */
        display: block;
        transition: color 0.2s;
    }

    /* Efeito ao passar o mouse ou tocar */
    .header-nav a:hover {
        color: #000000; /* Fica preto ao interagir */
    }
}

/* 3. Animação do ícone para virar um "X" */
.menu-hamburguer.menu-aberto .bar1 {
    transform: rotate(45deg);
}

.menu-hamburguer.menu-aberto .bar2 {
    opacity: 0;
}

.menu-hamburguer.menu-aberto .bar3 {
    transform: rotate(-45deg);
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.25);
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    
}

/* Animação ao passar o mouse: move o botão para cima */
.whatsapp-float:hover {
    transform: translateY(-10px);
    box-shadow: 4px 4px 14px rgba(0, 0, 0, 0.3);
    
}

/* Estilo para o ÍCONE DE IMAGEM dentro do botão */
.whatsapp-icon {
    width: 65px;
    height: 65px;
    
}