
/*ANIMAÇÃO*/

.hidden {
  opacity: 0;
  filter: blur(5px);
  /* Em vez de translateY, use scale ou apenas o opacity */
  transform: scale(0.95); 
  transition: all 0.8s ease-out;
}

.show {
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
}

body, html {
  overflow-x: hidden; /* Remove a barra horizontal, se houver */
}

/* Ou, se a barra for vertical e estiver sobrando espaço no final: */
main {
  overflow: hidden; 
}


/*
 * Reset Básico e Box Model
 */
* {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/*FontFAce*/
@font-face {
    font-family: 'Droid Custom'; /* Nome simples e descritivo */
    
    /* Sempre tente WOFF/WOFF2 primeiro para melhor performance! */
    /* Se você só tiver o TTF, garanta que o format é 'truetype' */
    src: url('droid/DroidSerif-Regular.ttf') format('truetype');
    
    font-weight: 400; /* Define este arquivo como o peso Regular */
    font-style: normal;
    font-display: swap;
}

.overflow-wrapper {
    width: 100%;
    overflow-x: hidden;
    position: relative;
}


body {
    background-color: #fff;
    color: #333;
   font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.42857;
    overflow-x: hidden;
}

img {
    vertical-align: middle;
    max-width: 100%; /* Garante que imagens sejam responsivas */
    height: auto;
}

a {
    color: #31a2ff;
    text-decoration: none;
}

strong{
    font-weight: bold;
}

.space{
    width: 100%;
    height: 80px;
}

@media screen and (max-width: 768px) {
.space{
    height: 20px;
}

}

/*
 * Estrutura e Responsividade (Flexbox)
 */
.container {
    width: 100%; /* Max-width do container principal */
    margin-left: auto;
    margin-right: auto;
    padding: 0 0px; /* Adicionado padding para respiro em telas pequenas */
}

.section {
    width: 100%;
    min-height: 0;
}

.info-content {
    display: flex;
    flex-direction: column; /* Colunas empilhadas por padrão (mobile) */
    align-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
}

.column-left,
.column-right {
    width: 100%;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 300px;
}

@media screen and (max-width: 768px) {
    
    .column-left,
    .column-right {
    min-height: auto;
    }

}


/* Estrutura de Desktop (a partir de 768px) */
@media screen and (min-width: 768px) {
    .info-content {
        flex-direction: row; /* Colunas lado a lado no desktop */
        align-items: flex-start;
    }
    .column-left {
        flex: 4 0 0; /* Largura base 4/12 */
        align-items: center;
    }
    .column-right {
        flex: 8 0 0; /* Largura base 8/12 */
        align-items: flex-start;
    }
}

/*
 * Estilos de Seções (Cores e Backgrounds)
 */

/* Primeira Seção: Vídeo */
.header-video-bg {
    background-color: #fff;
}

.img-banner{
    max-width: 100%;         /* Impede que a imagem fique mais larga que a coluna */
    max-height: 100%;        /* Impede que a imagem fique mais alta que o container */
    object-fit: contain;     /* Mantém a proporção da imagem sem cortá-la */
}

/* Contêiner do Vídeo (para responsividade 16:9) */
.video-container {
    position: relative;
    height: 0;
    padding-bottom: 56.25%; /* Proporção 16:9 */
    line-height: 0;
    margin: 0px;
    width: 100%;
}

.video-container iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

/* Segunda Seção: Info e Logo */
.launch-info-bg {
    background-color: #485956;
    padding: 0; /* Removemos o padding para a imagem encostar na borda */
    display: grid;
    grid-template-columns: 1fr 1fr; /* Duas colunas iguais */
    min-height: 500px; /* Altura mínima para a seção */
    align-items: center;
}

/* Lado da Imagem */
.image-side {
    background-image: url('imagens/novo/header.jpg'); /* COLOQUE SUA FOTO AQUI */
    background-size: cover;
    background-position: center;
    height: 100%;
    width: 100%;
}

/* Lado do Conteúdo */
.content-side {
    padding: 5% 10%; /* Dá o respiro interno para o texto não colar nas bordas */
}

/* Ajustes de Tipografia (mantendo seus estilos) */
.logo {
    max-width: 250px;
    margin-bottom: 20px;
}

.title1 {
    font-size: 32px;
    color: #fff;
    margin-bottom: 20px;
    font-family: 'Droid Custom', serif;
}

.description, .address {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* --- Responsividade (Mobile) --- */
@media (max-width: 768px) {
    .launch-info-bg {
        grid-template-columns: 1fr; /* Empilha as colunas */
    }

    .image-side {
        height: 300px; /* Define uma altura para a imagem no celular */
    }

    .content-side {
        padding: 40px 20px;
        text-align: center;
    }
    
    .title1, .description, .address {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
}


/* Terceira Seção: Destaque */
.highlight-info-bg {
    background-color: #F4F4F4;
}

.highlight-text {
    text-align: center;
    font-size: 28px;
    line-height: 1.5;
    color:#333;
    font-weight:500;
    max-width: 874px;
    margin: 0px auto 10px;
    padding: 50px 0; /* Adicionado padding para altura mínima */
    font-family: 'Droid Custom'; 
}



/* Quarta Seção: Sobre o Evento */
.about-bg {
    width:100%;
    background-color: #fff;
    border-top: 0 solid #bbb;
    border-bottom: 0 solid #bbb;
    padding: 30px 0;
    text-align: center;
}

.spacer-top { height: 50px; }
.spacer-bottom { height: 50px; }

.section-title {
    text-align: center;
    color: #485956;
    font-family: 'Droid Custom'; 
    font-weight: bold;
    font-size:34px;
    margin-top: 50px;
    margin-bottom: 20px;
    width: 100%;
    align-self: center;
}

.content-block p {
    color: #231d1a;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    margin: 13px auto;
    max-width: 809px;
}

.content-block h2 {
    color: #231d1a;
    text-align: center !important;
}


/* Botão CTA */
.cta-button {
    display: flex;
    flex-direction: column;
    align-self: center;
    background-color: #485956;
    border-radius: 100px;
    color: #fff;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    height: 47px;
    justify-content: center;
    line-height: 1.42857;
    margin-bottom: 10px;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    max-width: 391px;
    text-align: center;
    width: 100%;
    padding: 0 10px;
}


@media screen and (min-width: 992px) {
/* Botão CTA */
.cta-button2 {
    display: flex;
    flex-direction: column;
    align-self: center;
    background-color: #485956;
    border-radius: 100px;
    color: #fff;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    height: 47px;
    justify-content: center;
    line-height: 1.42857;
    margin-bottom: 10px;
    margin-top: 20px;
    max-width: 391px;
    text-align: center;
    width: 100%;
    padding: 0 10px;
}
}

@media screen and (max-width: 768px) {
.cta-button2 {
    display:flex !important;
    margin:33px auto !important;
    background-color: #485956;
    border-radius: 100px;
    color: #fff;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    height: 47px;
    justify-content: center;
    align-items: center;
    line-height: 1.42857;
    margin-bottom: 10px;
    margin-top: 20px;
    max-width: 391px;
    text-align: center;
    width: 100%;
    padding: 0 10px;
}

.cta-button {
    margin:33px auto !important;
}


}


/*PARALLAX  Quinta Seção: Call to Action com Background Imagem */
.call-to-action-bg {
    background-image: linear-gradient(to bottom, rgba(0,0,0,0.3) 0, rgba(0,0,0,0.3) 100%), 
                      url('imagens/novo/do-planejamento-a-celeracao.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    
    /* Ativa o parallax apenas em telas grandes */
    background-attachment: fixed;
    
    /* Altura e respiro */
    padding: 120px 0;
    min-height: 450px;
    display: flex;
    align-items: center;
}


.titleparallax {
    color: rgb(255, 255, 255);
    font-family: 'Droid Custom'; 
    font-size: 35px;
    line-height: 2;
    text-align: center;
    padding: 3rem 1rem;
}

@media screen and (max-width: 768px) {
.call-to-action-bg {
        /* Muda de 'fixed' para 'scroll' para corrigir o bug do mobile */
        background-attachment: scroll !important;
        
        /* Opcional: ajustar a posição para focar na parte principal da foto */
        background-position: center center;
        
        /* Ajusta o padding para o conteúdo não ficar gigante no celular */
        padding: 80px 20px;
        min-height: auto;

}

    .titleparallax {
    font-size: 20px;
    line-height: 2;
    text-align: center;
    padding: 5rem 1rem; 
    }
}

/**/
/*
 * SEXTA SEÇÃO: TRÊS COLUNAS
 */

.features-section {
    padding: 80px 0;
}

/* Container específico para layout 3 colunas */
.features-grid-3-col {
    display: flex;
    flex-direction: column; /* Padrão: Empilhado em Mobile */
    gap: 30px;
    align-items: center;
    justify-content: center;
    width: 90%; /* Limita a largura a 90% do .container, no desktop */
    max-width: 1440px; /* 90% de 1600px (seu container max-width) */
    margin: 0 auto;
}

.features-column-1,
.features-column-2,
.features-column-3 {
    width: 100%; /* Ocupa 100% da largura em mobile */
    text-align: center;
}

.features-title {
    font-size: 30px;
    font-weight: 700;
    color: #485956; 
    margin-bottom: 20px;
    font-family: 'Droid Custom'; 
}

.text-content p {
    margin-bottom: 15px;
}

.image-content {
    /* Garante que imagens ocupem o espaço corretamente */
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-image {
    width: 100%;
    height: auto;
    object-fit: cover; 
}

/* Mini CTA para esta seção (opcional) */
.cta-button-small {
    display: inline-block;
    background-color: #F4F4F4; /* Cor secundária para destaque sutil */
    color: #485956;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    margin-top: 20px;
    text-transform: uppercase;
    transition: background-color 0.3s;
}

.cta-button-small:hover {
    background-color: #a0958d;
}

/* RESPONSIVIDADE PARA DESKTOP (Layout de 3 Colunas) */
@media screen and (min-width: 992px) {
    .features-grid-3-col {
        flex-direction: row; /* Desktop: 3 Colunas lado a lado */
        align-items: stretch; /* Garante que as colunas tenham a mesma altura visual */
        gap: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .features-column-1 {
        flex: 1.2; /* Damos um pouco mais de espaço para o texto */
        text-align: left;
    }
    
    .features-column-1 p {
        text-align: left;
    }
    
    .features-title {
        text-align: left;
    }

    .features-column-2 {
        flex: 0.9; /* Coluna da imagem vertical */
    }
    
    .features-column-3 {
        flex: 0.9; /* Coluna da imagem horizontal */
    }
    
    .large-image, .small-image {
        /* Garante que as imagens ocupem a altura total disponível, mantendo proporção */
        height: 100%;
        width: 100%;
    }
}


/*FORMULARIO*/
.focus-section {
    background-color: #F4F4F4; /* Fundo pode ser branco, ou uma cor suave */
    padding: 80px 16px; /* Espaçamento vertical generoso */
    width: 100%;
    margin: auto auto;
}

.focus-content-wrapper {
    display: flex;
    justify-content: center; /* Centraliza o conteúdo horizontalmente */
    align-items: center;
    text-align: center;
}

.focus-column {
    width: 100%; /* Ocupa 100% no mobile */
}

.focus-title {
    font-size: 30px;
    color: #485956; /* Cor de destaque principal */
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: 'Droid Custom'; 
}

.focus-paragraph {
    font-size: 18px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 30px;
}



/*6 Por que escolher*/
.media-text-section {
    background-color: #fff; 
    padding: 60px 0;
}

.list-porque{
    font-weight: 300;
    color: #333;
    line-height: 1.8;
    font-family: 'Montserrat';
}

.list-porque li{
    border-bottom:1px solid #dfdfdf;
    padding:3% 0.5%; 
}

@media screen and (max-width: 798px) {

    .list-porque{
    text-align: left;
    padding:0.5% 5%;
    }


}

.media-text-grid {
    display: flex;
    flex-direction: column; /* Empilha no mobile */
    align-items: center;
    justify-content: center;
    gap: 30px;
    
    /* AJUSTE: Limitando o container a 90% da largura máxima, como solicitado */
    width: 90%; 
    max-width: 1440px; /* 90% de 1600px (seu container max-width) */
    margin-left: auto;
    margin-right: auto;
}

.media-column {
    width: 100%; /* Ocupa 100% no mobile */
    text-align: center;
}

.media-image {
    width: 200px; /* Define um tamanho máximo para a imagem no mobile e desktop */
    height: auto;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

.media-image2 {
    width: 330px; /* Define um tamanho máximo para a imagem no mobile e desktop */
    height: auto;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

.text-column {
    width: 100%; /* Ocupa 100% no mobile */
    text-align: center;
}

.media-text-title {
    font-size: 28px;
    font-weight: 700;
    color: #485956;
    margin-bottom: 15px;
    line-height: 1.3;
    font-family: 'Droid Custom'; 
}

.media-text-paragraph {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 10px;
}


/* 7 IMAGENS*/
.cards-section-bg {
    background-color: #F4F4F4;
    padding: 80px 0;
}

.section-heading {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    color: #333;
    margin-top: 2rem;
    display: block; /* Garante que é um elemento de bloco (já é por padrão, mas reforça) */
    width: 100%;    /* Garante que ocupe toda a largura disponível do container */
    padding-left: 0; /* Zera padding laterais que poderiam ser herdados */
    padding-right: 0;
}

@media screen and (max-width: 768px) {
    .section-heading {
    text-align: center;
    font-size: 20px;
    }

    .card-image-wrapper {
    margin-bottom: 7px;
    }

}

.cards-grid {
    display: flex;
    flex-direction: column; /* Padrão: Empilhado no mobile */
    gap: 30px;
    
    /* Centraliza o grid e limita a largura para a condição de 90% */
    width: 90%;
    max-width: 1440px; /* 90% de 1600px */
    margin: 0 auto;
}

.service-card {
    border-radius: 0px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px); /* Efeito sutil de elevação */
}

.card-image-wrapper {
    /* Container para garantir a proporção quadrada da imagem */
    width: 100%;
    padding-top: 100%; /* Cria um quadrado (100% de altura baseada na largura) */
    position: relative;
    margin-bottom: 20px;
    border-radius: 0px;
    overflow: hidden;
}

.card-image {
    /* Posiciona e faz a imagem ocupar o quadrado */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain; /* Garante que a imagem preencha o quadrado sem distorcer */
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    color: #485956;
    margin-bottom: 10px;
}

.card-description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
}

.card-button {
    display: inline-block;
    background-color: #F4F4F4; /* Cor secundária para o CTA */
    color: #485956;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s;
}

.card-button:hover {
    background-color: #a0958d;
}


/* RESPONSIVIDADE PARA TABLET E DESKTOP (Grid) */

/* Tablet (2 Colunas) */
@media screen and (min-width: 600px) {
    .cards-grid {
        /* Layout de 2 colunas para tablets */
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .section-heading {
        font-size: 23px;
        width:100%;
        display: block;
    }
}


/* Desktop (4 Colunas) */
@media screen and (min-width: 992px) {
    .cards-grid {
        /* Layout de 4 colunas no desktop */
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
    
    .section-heading {
        font-size: 23px;
        width:100%;
        display: block;
    }
}

@media screen and (max-width: 768px) {

     .cards-grid {
        gap: 0px;
    }
    
    .card-image-wrapper {
    margin-bottom: 0px;
    }
}


/* RESPONSIVIDADE PARA DESKTOP (Divisão 25% / 75%) */
@media screen and (min-width: 768px) {
    .media-text-grid {
        flex-direction: row; 
        /* AJUSTE CHAVE: Centraliza as colunas verticalmente. */
        align-items: center; 
        gap: 40px;
    }
    
    .media-column {
        flex: 0 0 33%; 
        max-width: 33%;
        text-align: left; 
        /* Removido margin-top: 5px; para o alinhamento funcionar corretamente */
        margin-top: 0; 
    }


    
    .media-image {
        max-width: 100%; 
        margin: 0; 
    }
    
    .text-column {
        flex: 1; 
        text-align: left;
        /* Garantindo que o texto em si não se mova, apenas o bloco */
        align-self: center; 
    }
    
    .media-text-title {
        font-size: 32px;
    }
}


/* RESPONSIVIDADE: Limitando a 50% no Desktop */
@media screen and (min-width: 768px) {
    .focus-column {
        /* Limitamos a largura da coluna de conteúdo a 50% da largura da tela (viewport width) */
        width: 50vw; 
        /* Usamos max-width para garantir que não fique muito largo em telas gigantes */
        max-width: 800px; 
    }
    
    .focus-title {
        font-size: 40px;
    }
    
    .focus-paragraph {
        font-size: 20px;
    }
}

/* Ajustes finos para Mobile */
@media (max-width: 480px) {
    .focus-title {
        font-size: 28px;
    }
    .focus-paragraph {
        font-size: 16px;
    }
}



/*  ---------------------------------8 ---------------------------*/

@media screen and (min-width: 992px) {
    
    .full-bleed-grid {
        display: flex; /* Já está no CSS, mas reforçando */
        flex-direction: row; 
        align-items: center;
        overflow-x: hidden;
        gap: 0; 
        /* O container já tem a largura máxima do seu site (ex: 1600px) */
    }
    
    .full-bleed-text-column {
        /* Coluna 1: Texto. Ocupa 50% do container e mantém o padding interno */
        flex: 0 0 50%; 
        max-width: 50%;
        padding-right: 40px; 
        padding-left: 20px; /* Mantém a margem esquerda padrão */
        box-sizing: border-box;
        text-align: left;
    }
    
    .full-bleed-image-column {
        /* Coluna 2: A Mágica do Full-Bleed */
        
        /* Ocupa o restante do container (50%) */
        flex: 1; 
        width: 50%;
        
        /* ESTE É O TRUQUE CHAVE: */
        /* Usamos margin-right negativo para "colar" a coluna na borda da tela. */
        /* Este valor precisa ser igual à margem/padding que o body/container tem na direita. */
        /* Se seu container tem padding de 20px no desktop, use -20px. */
        margin-right: -20px; 
        
        /* Se o container não tiver padding fixo e for 50% do espaço restante: */
        /* margin-right: calc(-50vw + 50%);  - Usado na solução anterior, é o mais preciso, mas complexo. */
        
        /* Para simplicidade (e se o padding do seu container for 20px): */
        margin-right: -20px; 
        
        /* Limpeza visual */
        overflow: hidden; 
        min-height: 450px; 
        position: relative;
    }

    .full-bleed-image {
        /* A imagem simplesmente preenche 100% da área da Coluna 2, que já foi esticada */
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        border-radius: 0; 
        position: absolute;
        top: 0;
        bottom: 0;
    }
    

}


/*------9------*/
.full-bleed-section.reversed-bleed {
    /* 1. Padding Top e Bottom GARANTIDO para a seção inteira */
    padding-top: 80px; 
    padding-bottom: 80px; 
    background-color: #F4F4F4; 
}

.full-bleed-section.reversed-bleed .container {
    padding-top: 0;
    padding-bottom: 0;
}

@media screen and (min-width: 992px) {
    
    .reversed-bleed .full-bleed-grid {
        /* Garante a ordem visual: Imagem na esquerda, Texto na direita */
        flex-direction: row-reverse; 
        align-items: center;
        gap: 0; 
        margin: 0;
        padding: 0;
        width: 100%;
        max-width: none;
        overflow-x: hidden;
    }
    
    .reversed-bleed .full-bleed-text-column {
        /* Coluna de Texto */
        flex: 0 0 50%;
        width: 50%;
        box-sizing: border-box;
        text-align: left;
        
        /* Harmoniza o padding do texto */
        padding: 40px 20px 40px 40px; 
    }
    
    .reversed-bleed .full-bleed-image-column {
        /* Coluna de Imagem (A que está em Full-Bleed) */
        flex: 1; 
        width: 50%;
        
        /* A CHAVE DO FULL-BLEED ESQUERDA: Anula o padding-left do .container */
        /* O valor de -20px é a MARGEM NEGATIVA para colar na borda. */
        margin-left: -20px; 
        
        margin-right: 0; 
        overflow: hidden; 
        min-height: 450px; 
        position: relative;
    }

    .reversed-bleed .full-bleed-image {
        /* Garante que a imagem preencha e cole na esquerda */
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0; 
    }
}

/*FORM*/
.focus-section, .focus-column, .form-section, .form-section .container {
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    display: block !important; /* Desativa flexbox que desalinha no mobile */
}

/* --- O Container do Formulário --- */
.form-container {
    width: 90%;             /* Usa porcentagem para ser responsivo */
    max-width: 360px;      /* Mantém o limite que você deseja */
    margin: 30px auto !important; /* Centraliza perfeitamente */
    display: flex;    /* Força o comportamento de bloco */
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    padding: 10px;          /* Respiro interno básico */
}


@media (max-width: 768px) {
    /* 1. RESET DOS PAIS: Remove paddings que empurram o form para a direita */
    .focus-section, .focus-content-wrapper, .focus-column, .form-section, .form-section .container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        display: block !important;
    }

    /* 2. CONTAINER DO FORM: Centralização e largura mobile */
    .form-container {
        width: 90% !important;
        max-width: 360px !important;
        margin: 30px auto !important;
        padding: 0 !important;
        overflow: hidden !important; 
        display: block !important;
        position: relative !important;
        left: 0 !important;
    }

    /* 3. ELEMENTOS INTERNOS: Força tudo a respeitar os 100% da largura */
    .form-container *, 
    .form-container div, 
    .form-container form, 
    .form-container iframe {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    /* 4. BOTÃO E CAMPOS: Ajuste de exibição */
    .form-container .bricks-form__field,
    .form-container .bricks-form__submit,
    .form-container button {
        width: 100% !important;
        display: block !important;
    }

    .form-container .intl-tel-input {
        display: block !important;
        width: 100% !important;
        position: relative !important;
        z-index: 1 !important;
    }

    /* 2. Manda a bandeira para o 'fundo' e tira a interação dela */
    .form-container .flag-container, 
    .form-container .selected-flag {
        position: absolute !important;
        z-index: -1 !important; /* Fica atrás do campo de texto */
        opacity: 0 !important;   /* Fica invisível */
        pointer-events: none !important;
    }

    /* 3. O CAMPO DE TEXTO: Ocupa a frente com fundo sólido */
    .form-container input[type="tel"] {
        position: relative !important;
        z-index: 2 !important;      /* Fica na frente da bandeira */
        background-color: #ffffff !important; /* Cor sólida para tapar o fundo */
        display: block !important;
        width: 100% !important;
        padding-left: 12px !important; /* Alinhamento padrão igual aos outros */
        margin-left: 0 !important;
        text-indent: 0 !important;
        box-sizing: border-box !important;
    }
}

/*FORM*/


/*FOOTER*/
.main-footer {
    background-color: #485956; /* Cor escura para o background */
    color: #fff;
    padding: 40px 0; /* Padding Top e Bottom */
    text-align: center; /* Centraliza o conteúdo (texto e links) */
}

.footer-content {
    /* Garante que o conteúdo seja centralizado vertical e horizontalmente */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-content a{
    color:#ffffff;
}

/* Lista de Redes Sociais (Horizontal e Centralizada) */
.social-links {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.social-links li {
    /* O SEGREDO para colocar os itens lado a lado */
    display: inline-block; 
    margin: 0 10px; /* Espaçamento entre os ícones */
}

.social-links a {
    color: #fff;
    font-size: 24px; /* Tamanho dos ícones */
    transition: color 0.3s;
}

.social-links a:hover {
    transform: translateY(-5px);
}

/* Texto de Rodapé */
.footer-text {
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.8;
}

.fa-brands {
    font-family: 'Font Awesome 6 Brands' !important;
    font-weight: 400; 
}


/*----------------------- * Responsividade para Telas Pequenas (Mobile: abaixo de 480px)  ------------------------------- */
@media (max-width: 768px) {
    
  p{
    padding: 1rem 2rem;
  }
    
h2{
   padding: 1rem 2rem; 
}

    
    /* Altura do botão adaptável */
.cta-button {
    height: auto;
    padding-top: .66em;
    padding-bottom: .66em;
    padding: 0.5rem 2rem; 
}

.spacer-top { height: 30px; }
.spacer-bottom { height: 30px; }

}

/*ANIMAÇÃO*/
/* 1. Define a animação (Keyframes) */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0); /* Posição normal */
    }
    40% {
        transform: translateY(-10px); /* Salta para cima */
    }
    60% {
        transform: translateY(-5px); /* Um salto menor */
    }
}

/* 2. Aplica a animação ao botão */
.whatsapp-button {
    /* ... seus outros estilos (posição, cor, tamanho, etc.) ... */
    
    /* Aplica a animação */
    animation: bounce 2s infinite; /* Nome, Duração, Repetição (infinita) */
    
    /* Opcional: Para melhor suporte em navegadores antigos */
    -webkit-animation: bounce 2s infinite; 
}