/* RESET BÁSICO */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

/* PALETA DE CORES OFICIAL (Corrigida e Vibrante) */
:root {
    --color-brand-blue-dark: #0262B8; /* Azul Escuro Principal */
    --color-brand-blue-light: #24A2F7; /* Azul Claro Secundário */
    --color-brand-green-lime: #026553; /* Lime Green VIBRANTE (CTA/Accent) */
    
    --color-primary: var(--color-brand-blue-dark);
    --color-secondary: var(--color-brand-green-lime); 
    --color-light: #F8F9FA;
    --color-white: #FFFFFF;
    --color-dark: #212529;
    --font-stack: 'Poppins', sans-serif;
    --transition-speed: 0.4s;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.1);
}

body {
    font-family: var(--font-stack);
    line-height: 1.6;
    color: var(--color-dark);
    background-color: var(--color-white);
}

img.logo {
    width: 15%;
}

.fa-brands .fab{
    font-size: 20px;
}

.social-links {
    font-size: 20px;
}

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

.section-padding {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5em;
    font-weight: 800;
    margin-bottom: 40px;
    color: var(--color-primary);
}

#top-bar {
    background-color: var(--color-primary); 
    color: var(--color-white); 
    padding: 10px 0;
    font-size: 0.9em;
    position: relative;
    z-index: 1001;
}
#top-bar .contact-info .info-item i {
    color: var(--color-secondary); /* Ícones em Verde Vibrante */
    margin-right: 5px;
}
.social-links a {
    color: var(--color-white); 
}
.social-links a:hover {
    color: var(--color-secondary); 
}
#top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* GRADIENTE VIBRANTE (Fundo da Seção) */
.bg-gradient-vibrant {
    /* Gradiente que usa o Verde VIBRANTE */
    background: linear-gradient(145deg, var(--color-brand-blue-dark) 0%, #B8E65F 100%); 
    color: var(--color-white); /* Garante que o TÍTULO DA SEÇÃO (Resultados Reais) seja branco, pois o fundo é escuro */
}

/* CARDS E HOVER EFFECT */
.benefit-card {
    background-color: var(--color-white); /* Fundo do Card é branco */
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
    
    /* CORREÇÃO AQUI: Força o texto dentro do cartão a ser escuro para o contraste no fundo branco */
    color: var(--color-dark);
    text-align: left; /* Alinhamento do texto conforme a estrutura do conteúdo */
}

.benefit-card h4 {
    color: var(--color-primary); /*[cite_start] Título do card em Azul Escuro [cite: 21] */
    font-size: 1.4em;
    margin-bottom: 15px;
    text-align: center;
}

.benefit-card ul {
    list-style: none;
    padding-left: 0;
}

.benefit-card li {
    margin-bottom: 10px;
    font-size: 1.05em;
    display: flex;
    align-items: flex-start;
}

.benefit-card li i {
    color: var(--color-secondary); /*[cite_start] Ícones da lista em Verde Vibrante [cite: 20] */
    margin-right: 10px;
    margin-top: 4px;
}

/* BOTÕES (CTAs) - Hover Chamativo */
.btn {
    display: inline-block;
    padding: 12px 25px; /* Altura e largura mais uniformes */
    font-size: 1em;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background-color var(--transition-speed), transform var(--transition-speed);
    
    /* CORREÇÃO AQUI: Raio de Borda (border-radius) mais sutil */
    border-radius: 8px; 
    white-space: nowrap; 
}

a.btn.btn-primary {
    color: #fff;
}

.btn-primary {
    /* CTA Principal em Verde Vibrante */
    background-color: var(--color-secondary);
    color: var(--color-dark);
}

.btn-primary:hover {
    background-color: #85C227;
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(133, 194, 39, 0.6);
}

.btn-secondary {
    background-color: var(--color-primary); /* Azul Escuro #0262B8 */
    color: var(--color-white);
}

.btn-secondary:hover {
    background-color: #014f94; /* Um tom de azul um pouco mais escuro no hover */
    transform: translateY(-1px);
}

/* --- HEADER E NAV MENU CORRIGIDOS --- */

/* --- BARRA SUPERIOR (TOP BAR) - Novo Design Azul Escuro --- */
#top-bar {
    background-color: var(--color-primary); 
    color: var(--color-white); 
    padding: 10px 0;
    font-size: 0.9em;
    position: relative;
    z-index: 1001;
}
#top-bar .contact-info .info-item i {
    color: var(--color-white); /* Ícones em Verde Vibrante */
    margin-right: 5px;
}
.social-links a {
    color: var(--color-white); 
}
.social-links a:hover {
    color: var(--color-secondary); 
}
#top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


/* --- HEADER PRINCIPAL (MENU) CORRIGIDO --- */
#header {
    background-color: var(--color-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 15px 0; /* Altura do cabeçalho */
    position: sticky;
    top: 40px; /* Fica abaixo da Top Bar */
    z-index: 1000;
}

#header .container {
    display: flex;
    justify-content: space-between;
    align-items: center; /* CHAVE: Alinha Logo, Links e Botão ao centro vertical */
}

.logo {
    color: var(--color-primary); 
}
.accent-text {
    color: var(--color-secondary); 
}

#nav-menu {
    display: flex;
    align-items: center;
    gap: 35px; 
}

#nav-menu a {
    text-decoration: none;
    color: var(--color-primary); 
    font-weight: 600;
    padding: 10px 10px;
    transition: color var(--transition-speed);
    white-space: nowrap;
}

#nav-menu a:hover {
    color: var(--color-secondary);
}

/* Botão CTA */
.cta-link {
    background-color: var(--color-primary); 
    color: var(--color-white);
    padding: 10px 20px; 
    border-radius: 8px;
    font-weight: 700;
}

/* --- BOTÃO HAMBURGER (Mobile Only) --- */
.hamburger {
    display: none; /* Escondido no Desktop */
    background: none;
    border: none;
    font-size: 1.5em;
    cursor: pointer;
    color: var(--color-primary);
    z-index: 1001;
}

/* RESPONSIVIDADE DO MENU MOBILE */
@media (max-width: 992px) {
    
    .hamburger {
        display: block; /* Visível no Mobile */
    }

    #nav-menu {
        /* Posição inicial: fora da tela (direita) */
        position: fixed;
        top: 0;
        right: -100%; 
        width: 70%;
        height: 100vh;
        background-color: var(--color-primary); /* Fundo do menu na cor principal Azul Escuro  */
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: right 0.5s ease;
        z-index: 900;
        padding: 50px 0;
    }

    #nav-menu.active {
        /* Posição final: visível na tela */
        right: 0;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    }
    
    #nav-menu a {
        color: var(--color-white); /* Links brancos no fundo azul */
        font-size: 1.5em;
    }
    
    .cta-link {
        /* No mobile, o CTA secundário deve ser Verde VIBRANTE [cite: 77] para alto contraste */
        background-color: var(--color-secondary);
        color: var(--color-dark);
    }
}

@media (min-width: 993px) {
    .hamburger {
        display: none;
    }
    #nav-menu {
        display: flex;
    }
}

/* HERO SECTION */
.hero-section {
    background-size: cover;
    background-position: center;
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    background: rgba(0, 0, 0, 0.5); 
    top: 0; left: 0; right: 0; bottom: 0;
}

.hero-content h2 {
    color: #fff;
    font-size: 4em;
    font-weight: 800;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

.hero-content p {
    font-size: 1.5em;
    margin-bottom: 40px;
    font-weight: 300;
    color: var(--color-white);
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(133, 194, 39, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(133, 194, 39, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(133, 194, 39, 0);
    }
}

/* LAYOUT SPLIT */
.layout-split {
    display: flex;
    align-items: center;
    gap: 60px;
}

.layout-split img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
}

.profile-img {
    border: 7px solid var(--color-secondary); 
    border-radius: 50%;
}

/* CARDS E HOVER EFFECT */
.beneficios-grid, .pricing-grid, .diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.benefit-card, .pricing-card, .diferencial-item {
    background-color: var(--color-white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.hover-effect:hover {
    transform: translateY(-12px); 
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.benefit-card .icon-xl {
    font-size: 3.5em;
    color: var(--color-secondary);
}

.pricing-card.highlighted {
    transform: scale(1.08); 
    border: 5px solid var(--color-secondary);
    box-shadow: 0 0 25px rgba(133, 194, 39, 0.6);
}

.pricing-card {
    background-color: var(--color-white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
    
    /* CORREÇÃO AQUI para alinhamento vertical dos botões */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Empurra o botão para baixo */
    min-height: 380px; /* Garante que todos os cartões tenham altura mínima uniforme */
}

.pricing-card h4 {
    font-size: 1.6em;
    font-weight: 800;
    color: var(--color-primary);
}

.pricing-card .subtitle {
    display: block;
    font-size: 1.1em;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 20px;
}

.pricing-card p {
    flex-grow: 1; /* Permite que o parágrafo ocupe o espaço extra */
    margin-bottom: 30px;
    margin-top: 15px;
    color: var(--color-dark);
}

.diferencial-item {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: none;
}

.diferencial-item i {
    color: var(--color-secondary);
}

/* --- ESTILOS DOS CHIPS DE TEMA --- */

.temas-list {
    text-align: center;
    margin-bottom: 50px;
}

.tema-chip {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    margin: 8px;

    /* CORREÇÃO/CONFIRMAÇÃO: Fundo em Verde Vibrante e texto escuro para contraste */
    background-color: var(--color-secondary); 
    color: var(--color-dark); 
    
    border-radius: 30px;
    font-weight: 600;
    white-space: nowrap; /* Garante que o chip não quebre no desktop */
}

.tema-chip i {
    margin-right: 10px;
    color: var(--color-white);
}

span.tema-chip {
    color: #fff;
}

/* --- DEPOIMENTOS CORRIGIDOS --- */

.testimonial-content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Alinha pelo topo */
    gap: 40px; /* Espaçamento entre as duas colunas */
}

.testimonial-carousel-column {
    flex: 1; /* Ocupa 50% do espaço disponível */
    max-width: 65%; /* Garante que não estique demais */
    flex-basis: 50%; 
    flex-grow: 0;   /* Impede que ela cresça além de 50% */
    flex-shrink: 0; /* Impede que ela encolha */
}

.testimonial-video-column {
    flex: 1; /* Ocupa os outros 50% */
    max-width: 35%;
    /* Garante que o vídeo se alinhe com a altura do carrossel se necessário */
    display: flex; /* Transforma a coluna em um container flexível */
    align-items: center; /* Centraliza o vídeo verticalmente na coluna (opcional, mas ajuda) */
    flex-basis: 50%;
    flex-grow: 0;   /* Impede que ela cresça além de 50% */
    flex-shrink: 0; /* Impede que ela encolha */
    justify-content: center; /* Centraliza horizontalmente se o vídeo for menor */
}

.testimonial-video-column video {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    max-height: 645px;
    object-fit: cover;
}

.testimonial-carousel {
    overflow: hidden;
    position: relative;
    padding: 0px; 
}

.carousel-inner {
    display: flex;
    /* align-items: stretch; Garante que todos os cards tenham a mesma altura */
    transition: transform 0.6s ease-in-out;
}



.testimonial-card {
    flex: 0 0 50%; /* 50% para que 2 caibam em 100% */ 
    margin-right: 0px;
    padding: 40px;
    min-height: 250px; /* Mantém uma altura mínima de referência */
    transition: transform 0.6s ease, opacity 0.6s ease;
    opacity: 1;
    background-color: var(--color-white);
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    transform: scale(1);
    
    /* Configura o card como container flexível */
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Por padrão, alinha pelo topo */
}

.testimonial-card.active {
    transform: none; 
    opacity: 1;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2); 
}

/* Garante que o texto do depoimento ocupe o espaço para empurrar o cliente-info para baixo */
.testimonial-card p {
    flex-grow: 1; 
    margin-bottom: 20px;
}

/* Estilo específico para o card de vídeo */
.testimonial-card.video-card {
    text-align: center;
    /* Alinha o conteúdo verticalmente, jogando o botão para o fundo */
    justify-content: space-between; 
}

.video-card h4 {
    color: var(--color-primary);
    flex-grow: 1; /* Permite que o título ocupe o espaço extra */
    display: flex; /* Garante o alinhamento */
    align-items: center; /* Centraliza verticalmente o texto */
    justify-content: center;
}

.quote-icon {
    font-size: 2.5em;
    color: var(--color-secondary);
    margin-bottom: 15px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-info > div {
    display: flex;
    flex-direction: column;
}

.client-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-primary); /* Use a variável de cor que você já tem */
}
/* Opcional: Estilo para o placeholder */
.placeholder-card {
    background-color: #f7f7f7; /* Cor de fundo mais neutra */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* FORMULÁRIO DE CONTATO */
/* --- CORREÇÃO NO LAYOUT E ESPAÇAMENTO DO CTA FINAL (SEÇÃO #contato) --- */

#contato .text-content {
    /* Garante que o conteúdo textual use todo o espaço disponível na coluna */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

#contato .text-content .section-title {
    /* Título maior para destaque */
    font-size: 3em;
    line-height: 1.1;
    margin-bottom: 20px;
}

#contato .text-content p {
    /* Garante um bom espaçamento entre o texto e o botão */
    margin-bottom: 40px; 
    font-size: 1.1em;
}

/* --- CORREÇÃO NO ESPAÇAMENTO INTERNO DO FORMULÁRIO --- */
.contact-form-container {
    /* CORREÇÃO AQUI: Garante que o formulário tenha padding interno (já estava em 40px, mas vou garantir que seja aplicado) */
    padding: 40px; 
    background-color: var(--color-white);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    color: var(--color-dark); 
}

.contact-form h4 {
    /* Título do formulário */
    color: var(--color-primary);
    margin-bottom: 25px;
    font-weight: 700;
}

.form-group {
    margin-bottom: 15px; /* Espaço entre os campos do formulário */
}

.form-group input {
    /* Garante que o input preencha a largura do container */
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-stack);
    font-size: 1em;
}

.contact-form .btn-secondary {
    margin-top: 15px; /* Espaço entre o último campo e o botão de envio */
    width: 100%; /* Botão de envio com largura total */
}
/* FOOTER */
footer {
    background-color: var(--color-dark);
    color: var(--color-white);
    padding-top: 40px;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 40px;
    border-bottom: 1px solid #444;
}

/* ANIMAÇÕES AOS */
.aos-item {
    opacity: 0;
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.aos-item.animated {
    opacity: 1;
    transform: translate(0, 0) !important;
}

.fade-in-up {
    transform: translateY(50px);
}

.fade-in-left {
    transform: translateX(-50px);
}

.fade-in-right {
    transform: translateX(50px);
}

/* RESPONSIVIDADE */
@media (max-width: 992px) {
    .layout-split {
        flex-direction: column;
    }

    .layout-split.reverse {
        flex-direction: column-reverse; /* Inverte a ordem no mobile */
    }
    
    .hero-content h2 {
        font-size: 2.5em;
    }
    
    .testimonial-card {
        flex: 0 0 100%; /* Apenas um card por vez no mobile */
        margin-right: 0;
    }
    
    #nav-menu {
        /* Código para menu hamburger (off-screen) */
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--color-primary);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.5s ease;
        z-index: 900;
    }

    #nav-menu.active {
        right: 0;
    }
    
    .hamburger {
        display: block;
    }
}
@media (min-width: 993px) {
    .hamburger { display: none; }
    #nav-menu { display: flex; }
}


@media (max-width: 992px) {
    /* 1. LAYOUT PRINCIPAL: Empilha Colunas */
    .testimonial-content-wrapper {
        flex-direction: column; /* Coloca o carrossel e o vídeo um sobre o outro */
        gap: 40px; /* Mantém o espaçamento entre eles */
    }

    /* 2. COLUNAS: Ocupam 100% da Largura */
    .testimonial-carousel-column,
    .testimonial-video-column {
        max-width: 100%; /* Permite que ambos ocupem a largura total */
        flex-basis: 100%;
        display: flex; /* Transforma a coluna em um container flexível */
        justify-content: center; /* Centraliza o vídeo horizontalmente */
        align-items: center; /* Centraliza o vídeo verticalmente (se houver espaço sobrando) */
    }

    /* 3. CARROSSEL: Exibe apenas 1 Depoimento por vez */
    .testimonial-card {
        /* Muda de 50% para 100% para mostrar 1 de cada vez */
        flex-basis: 100%; 
        min-height: auto; /* Remove a altura mínima para se ajustar ao conteúdo */
        padding: 30px; /* Diminui o padding em telas menores */
    }

    /* 4. VÍDEO: Define uma Altura Máxima Responsiva */
    .testimonial-video-column video {
        /* Garante que o vídeo não seja gigantesco na vertical */
        max-height: 400px; 
        /* Mantém width: 100%, height: 100%, object-fit: cover */
        width: 100%;       /* Ocupa a largura total da coluna */
        height: auto;      /* Mantém a proporção */
        max-height: 680px; /* Seu limite de altura responsivo */
        object-fit: cover;
        margin-left: auto;
        margin-right: auto;
        display: block; /* Garante que as margens automáticas funcionem corretamente */
    }
}


.videos-section {
    padding: 80px 0;
    background-color: var(--light-bg);
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6B7280;
    margin-bottom: 50px;
}

/* ESTILO PRINCIPAL (PADRÃO PARA DESKTOP > 1024px) */
/* Container GRID de 3 Colunas */
.video-grid {
    display: grid;
    /* 3 colunas de largura igual, com espaçamento de 30px */
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px; 
    text-align: left; /* Alinha o texto de volta à esquerda dentro dos itens */
}

.video-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    overflow: hidden; /* Garante que o iframe siga o border-radius */
    transition: transform 0.3s;
}

.video-item:hover {
    transform: translateY(-5px);
}

.video-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 15px 20px 5px;
}

.video-description {
    font-size: 0.95rem;
    color: #6B7280;
    padding: 0 20px 20px;
}

/* RESPONSIVIDADE do IFRAME (Mantém a proporção VERTICAL) */
.video-responsive {
    position: relative;
    /* AJUSTE CRÍTICO: Tentando 115% (Intermediário entre 1:1 e 4:5) */
    padding-bottom: 178%; 
    height: 0;
    overflow: hidden;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.video-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}


@media (max-width: 1024px) {
    .video-grid {
        /* AJUSTE: Força 1 coluna (empilhamento) já em telas de tablet */
        grid-template-columns: 1fr; 
        gap: 20px;
    }
}



.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999999; /* Aumentado para garantir sobreposição */
}

/* Caixa principal do popup */
.popup-content {
  position: relative;
  background: #000;
  border-radius: 16px;
  max-width: 90%;
  width: 420px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.6);
  overflow: hidden;
}

/* Vídeo responsivo */
.video-container {
  width: 100%;
  height: auto;
}
.video-container video {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

/* Capa do vídeo (modo mobile) */
.video-cover {
  position: relative;
  width: 100%;
  aspect-ratio: 9/16;
  display: none;
}
.video-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}
.play-btn {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #ff3b3b;
  color: white;
  border: none;
  border-radius: 50px;
  padding: 12px 20px;
  font-size: 16px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}
.play-btn:hover {
  background: #e60000;
}

/* Botão de fechar */
.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #ff3b3b;
  border: none;
  color: white;
  font-size: 26px;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  cursor: pointer;
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.2s;
}
.close-btn:hover {
  background: #e60000;
}

/* Responsivo */
@media (max-width: 768px) {
  .popup-content {
    width: 95%;
    border-radius: 0;
  }
  .video-container video {
    border-radius: 0;
  }
}



.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  z-index: 9999;
}

.whatsapp-message {
  background-color: #25d366;
  color: white;
  padding: 8px 12px;
  border-radius: 20px;
  margin-right: 10px;
  font-size: 14px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.5s ease;
  animation: message-appear 5s infinite;
}

/* Anima o balão aparecendo e sumindo */
@keyframes message-appear {
  0%, 70%, 100% { opacity: 0; transform: translateX(10px); }
  10%, 60% { opacity: 1; transform: translateX(0); }
}

.whatsapp-button {
  background-color: #25d366;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  animation: pulse 1.5s infinite;
  transition: transform 0.2s ease;
}

.whatsapp-button:hover {
  transform: scale(1.1);
}

.whatsapp-button img {
  width: 35px;
  height: 35px;
}

/* Efeito pulsante */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}



.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 20px;
}

.dots-wrapper {
  display: flex;
  gap: 10px;
  align-items: center;
}

.nav-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #ccc;
  border: 2px solid #999;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-dot:hover {
  background-color: #00a651;
  transform: scale(1.2);
}

.nav-dot.active {
  background-color: #00a651;
  border-color: #008f4c;
  transform: scale(1.3);
  box-shadow: 0 0 8px rgba(0, 166, 81, 0.6);
}

/* Estilo das setas */
.prev-btn,
.next-btn {
  background: #00a651;
  color: #fff;
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
}

.prev-btn:hover,
.next-btn:hover {
  background: #008f4c;
  transform: scale(1.1);
}

    /* Estilos específicos para os cards de pacotes com ✓ */
    .pricing-grid {
        display: flex;
        gap: 30px;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 20px;
    }

    .pricing-card {
        background: #ffffff;
        border-radius: 36px;
        padding: 32px 28px;
        flex: 1;
        min-width: 280px;
        max-width: 360px;
        box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.12);
        transition: transform 0.25s ease, box-shadow 0.2s;
        display: flex;
        flex-direction: column;
        border: 1px solid #edf2f7;
    }

    .pricing-card.highlighted {
        background: linear-gradient(145deg, #ffffff, #fff8f0);
        border-top: 5px solid #f68b1f;
        transform: scale(1.02);
        box-shadow: 0 25px 40px -12px rgba(0, 0, 0, 0.2);
    }

    .pricing-card:hover {
        transform: translateY(-6px);
    }

    .pricing-card h4 {
        font-size: 1.8rem;
        font-weight: 800;
        margin-bottom: 8px;
        color: #1e4663;
    }

    .subtitle {
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        background: #f0f4f8;
        display: inline-block;
        padding: 4px 14px;
        border-radius: 40px;
        margin-bottom: 20px;
        font-weight: 600;
        color: #2c6e5c;
    }

    /* Ajuste do UL e LI: Cada item com check ✓ */
    .pricing-card ul {
        list-style: none;
        margin: 20px 0 28px;
        padding: 0;
        flex-grow: 1;
    }

    .pricing-card li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 16px;
        font-size: 0.95rem;
        line-height: 1.4;
        color: #2d3e50;
    }

    /* Ícone de check ✓ personalizado */
    .pricing-card li::before {
        content: "✓";
        font-weight: 800;
        font-size: 1.1rem;
        color: #f68b1f;
        background: rgba(246, 139, 31, 0.12);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 22px;
        height: 22px;
        border-radius: 30px;
        flex-shrink: 0;
        margin-top: 2px;
    }

    /* Botões */
    .pricing-card .btn {
        text-align: center;
        display: block;
        text-decoration: none;
        font-weight: 700;
        padding: 12px 0;
        border-radius: 60px;
        transition: 0.2s;
        margin-top: 8px;
    }

    /* .btn-primary {
        background: #f68b1f;
        color: white;
    }

    .btn-primary:hover {
        background: #e07c12;
    }

    .btn-secondary {
        background: #e9ecef;
        color: #1e4663;
    }

    .btn-secondary:hover {
        background: #d4dce4;
    } */

    /* Responsivo */
    @media (max-width: 850px) {
        .pricing-card {
            min-width: 260px;
        }
    }

    @media (max-width: 550px) {
        .pricing-card {
            min-width: 100%;
            max-width: 100%;
        }
    }