/* =========================================================
   VARIÁVEIS E ESTRUTURA
========================================================= */
:root {
    --bg-dark: #001220; 
    --bg-darker: #000b14; 
    --c-light: #f8f9fa; 
    --c-gold-light: #e3c89c; 
    --c-gold: #b88a4d; 
}

.hero-premium-wrapper {
    position: relative;
    width: 100%;
    min-height: 85vh; 
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* --- EFEITO DE TRANSIÇÃO (BOTTOM SHADOW) --- */
.hero-premium-wrapper::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px; 
    background: linear-gradient(to bottom, transparent, #000c16);
    z-index: 5; 
    pointer-events: none;
}

/* --- SVG GRID --- */
.bg-grid-svg { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }
.grid-line { stroke: rgba(227, 200, 156, 0.15); stroke-width: 1px; opacity: 0; animation: line-appear 1.5s ease-out forwards; }
.corner-element { position: absolute; width: 8px; height: 8px; background: rgba(227, 200, 156, 0.3); opacity: 0; z-index: 1; animation: dot-appear 1s forwards 4s; }
.top-left { top: 25px; left: 25px; } .top-right { top: 25px; right: 25px; }
.bottom-left { bottom: 25px; left: 25px; } .bottom-right { bottom: 25px; right: 25px; }

.hero-premium-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    padding: 20px; 
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: -8vh; /* Puxa o conteúdo para cima no PC */
}

/* Animação de Desfoque */
.hero-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(10px);
    filter: blur(4px);
    animation: word-appear 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    transition: text-shadow 0.3s ease, color 0.3s ease;
    margin-right: 0.25em; 
}

/* Configuração do BOLD */
.bold-highlight {
    font-weight: 800 !important;
}

/* Blindagem para a marca */
.brand-name {
    white-space: nowrap !important;
}

.hero-word:hover { text-shadow: 0 0 15px rgba(227, 200, 156, 0.6); color: var(--c-gold-light) !important; cursor: default; }

/* --- TEXTOS E HIERARQUIA --- */
.top-tagline-box { margin-bottom: 25px; }
.top-tagline {
    font-size: 19px; 
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px; 
    color: var(--c-gold);
}

/* Headline Principal */
.main-headline {
    font-size: 48px !important;
    font-weight: 200 !important; 
    line-height: 1.1 !important;
    color: var(--c-light) !important;
    margin: 0 0 30px 0;
    letter-spacing: -1.8px !important; 
}

/* AJUSTE DESKTOP: Força a linha única */
@media (min-width: 992px) {
    .headline-part-2 {
        white-space: nowrap !important;
        display: block; 
    }
}

/* --- GRID DE BENEFÍCIOS --- */
.benefits-icons-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 30px;
    margin-bottom: 35px;
}

.benefit-tag {
    display: flex;
    align-items: center;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
}

.benefit-tag i {
    color: var(--c-gold);
    margin-right: 10px;
    font-size: 16px;
}

/* --- DIVISORES E BOTÃO --- */
.divider-line { width: 60px; height: 1px; background: linear-gradient(to right, transparent, var(--c-gold), transparent); opacity: 0; margin: 15px 0; animation: line-appear 1.5s forwards; }

.btn-premium {
    display: inline-block;
    border: 1px solid var(--c-gold);
    color: var(--c-gold-light) !important;
    padding: 14px 40px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: all 0.4s ease;
    position: relative;
    z-index: 15; 
}
.btn-premium:hover { background: var(--c-gold); color: #000 !important; box-shadow: 0 0 20px rgba(184, 138, 77, 0.4); }

/* --- ANIMAÇÕES --- */
@keyframes word-appear { to { opacity: 1; transform: translateY(0); filter: blur(0); } }
@keyframes line-appear { to { opacity: 0.25; } }
@keyframes dot-appear { to { opacity: 0.6; } }

/* =========================================================
   RESPONSIVIDADE ULTRA COMPACTA PARA MOBILE
========================================================= */
@media (max-width: 768px) {
    .hero-premium-wrapper { 
        min-height: 70vh; 
        padding: 20px 10px; 
    }

    .hero-premium-content {
        margin-top: -15vh; /* Puxa drasticamente para cima no Mobile, reduzindo o teto em 70% */
    }
    
    .top-tagline { font-size: 14px; letter-spacing: 1px; }
    .top-tagline-box { margin-bottom: 10px; }
    .divider-line { margin: 10px 0; }
    
    .main-headline { 
        font-size: 24px !important; 
        letter-spacing: -0.5px !important; 
        margin-bottom: 20px; 
    }
    .headline-part-1 {
        display: block !important;
        margin-bottom: 5px;
    }
    
    /* BENEFÍCIOS AUMENTADOS NO MOBILE */
    .benefits-icons-grid {
        gap: 10px 20px; /* Mais respiro entre eles */
        margin-bottom: 25px; 
    }
    .benefit-tag { font-size: 13px; } /* Aumentado (antes 11px) */
    .benefit-tag i { font-size: 16px; margin-right: 8px; } /* Aumentado (antes 14px) */

    .btn-premium {
        padding: 12px 30px;
        font-size: 13px;
    }

    .hero-premium-wrapper::after { height: 60px; } 
}/* --- CONFIGURAÇÃO DA SEÇÃO --- */
#caixa-4-5315 {
    padding-top: 0 !important; /* Espaçamento do topo zerado */
    padding-bottom: 48px; /* Mantido o espaçamento inferior */
    background-color: transparent !important;
}

#caixa-4-5315 .linha-cards-iguais {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

#caixa-4-5315 .col-card {
    display: flex;
    padding: 12px;
}

/* --- ESTILO DO CARD COM EFEITO GLOWING --- */
#caixa-4-5315 .item {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden; /* Garante que o brilho não saia do card */
    background: transparent;
    transition: transform 0.3s ease;
    cursor: default;
    display: flex;
}

#caixa-4-5315 .item:hover {
    transform: translateY(-8px);
}

/* Camada Interna de Conteúdo (fica acima do glow) */
#caixa-4-5315 .content-wrapper {
    position: relative;
    z-index: 2;
    margin: 2px; /* Espessura da borda brilhante */
    padding: 40px 24px;
    border-radius: 14px;
    width: calc(100% - 4px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Cores específicas do fundo interno (Mantendo a sua identidade) */
#caixa-4-5315 .card-slate .content-wrapper {
    background: linear-gradient(135deg, #36393f 0%, #26292d 100%);
}
#caixa-4-5315 .card-gold .content-wrapper {
    background: linear-gradient(135deg, #a37538 0%, #8f6330 100%);
}

/* --- A MÁGICA DO GLOWING EFFECT (IDENTIDADE AD NOTARE) --- */
#caixa-4-5315 .glow-effect {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0; /* Invisível por padrão */
    transition: opacity 0.5s ease;
}

#caixa-4-5315 .item:hover .glow-effect {
    opacity: 1; /* Aparece suavemente no Hover */
}

/* Gradiente Metálico Rotativo: Dourado, Chumbo e Pontos de Luz */
#caixa-4-5315 .glow-effect::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200%; 
    height: 200%;
    background: conic-gradient(
        from 0deg,
        #a37538 0%,    /* Dourado escuro */
        #b88a4d 15%,   /* Dourado claro */
        #ffffff 25%,   /* Brilho máximo (Luz Prata/Branca) */
        #b88a4d 35%,   /* Dourado claro */
        #262930 50%,   /* Fundo escuro para criar profundidade e contraste */
        #6c7079 65%,   /* Cinza Chumbo (Slate) */
        #ffffff 75%,   /* Brilho máximo (Luz Prata/Branca) */
        #6c7079 85%,   /* Cinza Chumbo (Slate) */
        #a37538 100%   /* Conecta suavemente com o início */
    );
    animation: rotate-glow 4s linear infinite;
}

@keyframes rotate-glow {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* --- ÍCONES E TEXTOS --- */
#caixa-4-5315 .item .image { margin-bottom: 24px; }
#caixa-4-5315 .item .image i {
    color: #ffffff !important;
    font-size: 64px !important;
}

#caixa-4-5315 .item .titulo {
    color: #ffffff !important;
    font-weight: 800;
    font-size: 24px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

#caixa-4-5315 .item .texto {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 16px;
    line-height: 1.6;
}/* =========================================================
   FEATURE SHOWCASE - IDENTIDADE VISUAL DO FAQ (POPPINS)
========================================================= */
.showcase-faq-style {
    padding: 0; /* Espaçamento superior e inferior totalmente zerado */
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.showcase-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* --- TIPOGRAFIA --- */
.showcase-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 25px 0;
    letter-spacing: -1px;
    text-align: left;
}

.showcase-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.5); 
    line-height: 1.6;
    margin-bottom: 50px;
    max-width: 520px;
    font-weight: 300; 
}

/* --- ESTILOS DO ACORDEÃO --- */
.showcase-accordion-wrapper .faq-item {
    background: rgba(255, 255, 255, 0.03); 
    border: 1px solid rgba(255, 255, 255, 0.15); 
    border-radius: 10px;
    margin-bottom: 15px;
    transition: all 0.4s ease; 
}

.showcase-accordion-wrapper .faq-input { display: none; }

.showcase-accordion-wrapper .faq-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Estado Aberto do Acordeão */
.showcase-accordion-wrapper .faq-item:has(.faq-input:checked) {
    background: rgba(0, 0, 0, 0.2); 
    border-color: #a37538; 
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.showcase-accordion-wrapper .faq-pergunta {
    padding: 22px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    user-select: none;
    transition: color 0.3s ease;
}

.showcase-accordion-wrapper .pergunta-texto {
    display: flex;
    align-items: center;
    gap: 15px;
}

.showcase-accordion-wrapper .icon-gold {
    color: #a37538;
    font-size: 20px;
    width: 25px;
    text-align: center;
}

.showcase-accordion-wrapper .faq-input:checked ~ .faq-pergunta { color: #a37538; }

/* Setinha e Animação */
.showcase-accordion-wrapper .faq-icone {
    font-size: 16px;
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.showcase-accordion-wrapper .faq-input:checked + .faq-pergunta .faq-icone {
    transform: rotate(-180deg);
    color: #a37538;
}

/* Animação Deslizante (Grid) */
.showcase-accordion-wrapper .faq-resposta-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease-in-out; 
}

.showcase-accordion-wrapper .faq-input:checked ~ .faq-resposta-wrapper { grid-template-rows: 1fr; }

.showcase-accordion-wrapper .faq-resposta { overflow: hidden; }

.showcase-accordion-wrapper .faq-resposta p {
    padding: 0 25px 25px 65px; 
    margin: 0;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
    font-weight: 300;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
}

.showcase-accordion-wrapper .faq-input:checked ~ .faq-resposta-wrapper .faq-resposta p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s; 
}

/* --- BOTÃO E VISUAL --- */
.btn-primary-gold {
    display: inline-block;
    background: #a37538;
    color: #ffffff !important;
    padding: 18px 45px;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-primary-gold:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 10px 20px rgba(163, 117, 56, 0.3); 
}

.visual-card {
    border-radius: 30px;
    overflow: hidden;
    height: 600px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.6);
    position: relative;
}

.visual-card img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
}

/* =========================================================
   RESPONSIVIDADE (MOBILE / TABLET)
========================================================= */
@media (max-width: 992px) {
    .showcase-container { grid-template-columns: 1fr; gap: 40px; }
    .showcase-description { margin-bottom: 30px; } 
    .visual-card { height: 350px; }
}

@media (max-width: 768px) {
    .visual-card { height: 300px; }
}/* Garante que o fundo da seção seja transparente para mostrar o seu azul global */
#caixa-4-5312 {
    padding-top: 25px; /* Cortado pela metade */
    padding-bottom: 0px; /* Zerado */
    margin-bottom: 0 !important; /* Garante que não haja espaço extra abaixo da seção */
    background: transparent !important; 
}

/* --- TEXTOS PRINCIPAIS --- */
#caixa-4-5312 .titulo-principal {
    color: #ffffff !important; 
    font-weight: bold; 
    font-size: 32px;
}
#caixa-4-5312 .subtitulo-principal {
    color: #ffffff !important; 
    font-size: 19px; 
    font-weight: normal !important; 
    margin-top: 10px;
}

/* --- CONFIGURAÇÃO DO CARROSSEL --- */
.carrossel-wrapper {
    position: relative; 
    overflow: visible; 
}

#caixa-4-5312 .carrossel-cards {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding: 20px 0 40px 0; 
    gap: 20px; 
    margin: 0;
}

#caixa-4-5312 .carrossel-cards::-webkit-scrollbar {
    display: none; 
}

/* --- RESPONSIVIDADE (MOBILE, TABLET E DESKTOP) --- */
/* PC (4 cards) */
#caixa-4-5312 .carrossel-cards .col-md-3 {
    flex: 0 0 calc(25% - 15px); 
    max-width: calc(25% - 15px);
    scroll-snap-align: start;
    padding: 0; 
}

/* Tablet (2 cards) */
@media (max-width: 992px) {
    #caixa-4-5312 .carrossel-cards .col-md-3 {
        flex: 0 0 calc(50% - 10px); 
        max-width: calc(50% - 10px);
    }
}

/* --- DESIGN DO CARD --- */
#caixa-4-5312 .item {
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center; 
    height: 100%;
    min-height: 300px; 
    text-align: center;
    padding: 20px 15px; 
    border: 1px solid rgba(255, 255, 255, 0.4); 
    border-radius: 12px; 
    /* GRADIENTE SUTIL: Um leve reflexo diagonal que termina na sua cor base */
    background: linear-gradient(135deg, #2c3340 0%, #212630 100%) !important; 
}

/* --- ÍCONES GRANDES E DOURADOS --- */
#caixa-4-5312 .item .image {
    margin-bottom: 20px; 
}
#caixa-4-5312 .item .image img,
#caixa-4-5312 .item .image svg,
#caixa-4-5312 .item .image i {
    width: 80px !important; 
    height: auto !important;
    font-size: 80px !important;
    color: #eed78b !important; 
    fill: #eed78b !important; 
}

/* --- TÍTULO E TEXTO DOS CARDS --- */
#caixa-4-5312 .item .titulo,
#caixa-4-5312 .item .titulo a {
    color: #ffffff !important; 
    text-transform: uppercase; 
    font-weight: bold; 
    font-size: 22px; 
    margin-bottom: 12px;
    text-decoration: none;
    cursor: default; 
}

#caixa-4-5312 .item .texto {
    color: #ffffff !important; 
    font-size: 16px;
    line-height: 1.4;
    cursor: default;
    margin: 0; 
}

/* --- ESTILO DAS SETAS (< e >) --- */
#caixa-4-5312 .seta {
    position: absolute;
    top: 50%; 
    transform: translateY(-50%);
    background-color: #212630 !important; /* Mantido na cor base para esconder a borda de trás */
    border: 2px solid #ffffff !important; 
    color: #ffffff !important; 
    font-size: 20px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer; 
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

/* Hover com Contraste Perfeito nas setas */
#caixa-4-5312 .seta:hover {
    background-color: #ffffff !important; 
    color: #212630 !important; 
    border-color: #ffffff !important;
    box-shadow: 0 0 10px rgba(255,255,255,0.4); 
}

/* Posição Padrão (PC) */
#caixa-4-5312 .seta-esq { left: -55px; } 
#caixa-4-5312 .seta-dir { right: -55px; } 

/* --- CORREÇÕES EXCLUSIVAS PARA O MOBILE --- */
@media (max-width: 768px) {
    #caixa-4-5312 .carrossel-cards {
        padding: 20px 45px 40px 45px; 
        gap: 100vw; 
    }
    
    #caixa-4-5312 .carrossel-cards .col-md-3 {
        flex: 0 0 100%; 
        max-width: 100%;
        margin: 0; 
        scroll-snap-align: center; 
    }

    #caixa-4-5312 .seta {
        width: 35px; 
        height: 35px;
        font-size: 16px;
    }
    
    #caixa-4-5312 .seta-esq { left: 5px; } 
    #caixa-4-5312 .seta-dir { right: 5px; } 
}/* --- CONFIGURAÇÃO GERAL DA SEÇÃO DE PASSOS --- */
#secao-passos-5319 {
    position: relative !important;
}
.passos-wrapper {
    padding-top: 0 !important; 
    padding-bottom: 0 !important; 
    margin-top: 0 !important; 
    margin-bottom: 0 !important; 
    background: transparent !important;
    font-family: 'Poppins', sans-serif; 
}
.passos-wrapper .titulo-principal {
    color: #ffffff !important;
    font-weight: bold;
    font-size: 32px;
    margin-top: 0 !important; 
}

/* --- CONTAINER PRÓPRIO DOS CARDS: não depende do Bootstrap grid --- */
.passos-wrapper .passos-flex-row {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 24px !important;
    width: 100% !important;
}

/* --- BASE DO CARD DE PASSO --- */
.passos-wrapper .step-card {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    padding: 24px 32px !important;
    border-radius: 8px !important;
    height: 110px !important;
    min-height: 110px !important;
    max-height: 110px !important;
    flex: 1 1 0 !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    box-sizing: border-box !important;
    margin-bottom: 0 !important;
}
.passos-wrapper .step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

/* --- ELEMENTOS INTERNOS DO CARD --- */
.passos-wrapper .step-number {
    font-size: 72px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    width: 65px !important; 
    text-align: center !important; 
    margin-right: 16px !important;
    flex-shrink: 0 !important;
}
.passos-wrapper .step-divider {
    width: 2px !important;
    height: 60px !important;
    background-color: currentColor !important;
    opacity: 0.25 !important;
    margin-right: 24px !important;
    flex-shrink: 0 !important;
}
.passos-wrapper .step-text {
    font-size: 18px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    line-height: 1.2 !important;
    text-align: left !important;
}

/* --- CORES ESPECÍFICAS DOS CARDS --- */
.passos-wrapper .step-1 {
    background: linear-gradient(135deg, #f8f9fa 0%, #e2e6ea 100%) !important;
}
.passos-wrapper .step-1 .step-number,
.passos-wrapper .step-1 .step-text {
    color: #1b1d22 !important; 
}
.passos-wrapper .step-2 {
    background: linear-gradient(135deg, #6c7079 0%, #52565e 100%) !important;
}
.passos-wrapper .step-2 .step-number,
.passos-wrapper .step-2 .step-text {
    color: #ffffff !important;
}
.passos-wrapper .step-3 {
    background: linear-gradient(135deg, #b88a4d 0%, #a37538 100%) !important;
}
.passos-wrapper .step-3 .step-number,
.passos-wrapper .step-3 .step-text {
    color: #ffffff !important;
}

/* --- RESPONSIVIDADE (MOBILE) --- */
@media (max-width: 768px) {
    .passos-wrapper .passos-flex-row {
        flex-direction: column !important;
        gap: 16px !important;
    }
    .passos-wrapper .step-card {
        height: auto !important;
        min-height: 90px !important;
        max-height: none !important;
        width: 100% !important;
        padding: 24px 20px !important;
    }
    .passos-wrapper .step-number {
        font-size: 64px !important;
        width: 55px !important; 
        margin-right: 16px !important;
    }
    .passos-wrapper .step-divider {
        margin-right: 16px !important;
    }
    .passos-wrapper .step-text {
        font-size: 16px !important;
    }
}/* --- CONFIGURAÇÃO GERAL DA SEÇÃO --- */
#secao-planos-5318 {
    padding-top: 48px !important;
    padding-bottom: 10px !important;
    background: transparent !important;
}
#secao-planos-5318 .text-center { margin-bottom: 24px !important; }
#secao-planos-5318 .row.align-items-center { margin-top: 0 !important; }

@media (min-width: 992px) {
    #secao-planos-5318 .text-center { margin-bottom: 48px !important; }
}

#secao-planos-5318 .titulo-principal {
    color: #ffffff !important;
    font-weight: bold;
    font-size: 32px;
    margin-bottom: 10px !important;
}
#secao-planos-5318 .subtitulo-principal {
    color: #ffffff !important;
    font-size: 18px;
    margin-top: 10px !important;
}

/* --- ESTRUTURA DOS CARDS NORMAIS (MENSAL E BUSINESS) --- */
#secao-planos-5318 .pricing-card {
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 40px 30px !important; 
    border-radius: 12px !important;
    height: 100%;
    text-align: center;
    color: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}
#secao-planos-5318 .pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

#secao-planos-5318 .card-mensal { background: linear-gradient(135deg, #6c7079 0%, #52565e 100%) !important; }
#secao-planos-5318 .card-business { background: linear-gradient(135deg, #262930 0%, #1b1d22 100%) !important; }

/* =========================================================
   A MÁGICA EXCLUSIVA DO PLANO ANUAL (GLOW IDENTIDADE)
========================================================= */

/* 1. O Molde (Aqui definimos a Borda Fina de 2px) */
#secao-planos-5318 .pricing-card.card-anual {
    padding: 2px !important; 
    background: transparent !important;
}

/* 2. O Miolo do Card */
#secao-planos-5318 .card-anual .content-wrapper {
    background: linear-gradient(135deg, #b88a4d 0%, #a37538 100%) !important;
    border-radius: 10px !important; 
    padding: 38px 28px !important; 
    height: 100%;
    position: relative;
    z-index: 2; 
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* 3. A Luz Giratória (Agora SEMPRE VISÍVEL) */
#secao-planos-5318 .glow-effect {
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: 12px !important;
    overflow: hidden; 
    opacity: 1; /* AJUSTE AQUI: Começa visível e fica visível sempre! */
}

#secao-planos-5318 .glow-effect::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400%; 
    height: 400%;
    background: conic-gradient(
        from 0deg,
        #a37538 0%,    
        #b88a4d 15%,   
        #ffffff 25%,   
        #b88a4d 35%,   
        #262930 50%,   
        #6c7079 65%,   
        #ffffff 75%,   
        #6c7079 85%,   
        #a37538 100%   
    );
    animation: rotate-glow 4s linear infinite;
}

@keyframes rotate-glow {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* --- DESTAQUE (POP-OUT) E BADGE --- */
#secao-planos-5318 .z-index-destaque { z-index: 2; }
@media (min-width: 992px) {
    #secao-planos-5318 .pricing-card.destaque {
        transform: scale(1.08); 
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    }
    #secao-planos-5318 .pricing-card.destaque:hover { transform: scale(1.10) translateY(-5px); }
}

#secao-planos-5318 .badge-recomendado {
    position: absolute;
    top: -20px !important;
    left: 50%;
    transform: translateX(-50%);
    background-color: #1b1d22 !important;
    color: #ffffff !important;
    font-size: 14px !important; 
    font-weight: 900 !important;
    text-transform: uppercase;
    padding: 8px 24px !important; 
    border-radius: 30px !important;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    white-space: nowrap;
    z-index: 3; 
}

/* --- TIPOGRAFIA INTERNA DO CARD --- */
#secao-planos-5318 .plano-titulo { font-weight: 800 !important; font-size: 38px !important; text-transform: uppercase !important; margin-bottom: 8px !important; margin-top: 0 !important; }
#secao-planos-5318 .plano-subtitulo { font-size: 14px !important; opacity: 0.9 !important; margin-bottom: 30px !important; min-height: 42px !important; }

/* Bloco de Preço */
#secao-planos-5318 .pricing-price { margin-bottom: 25px !important; }
#secao-planos-5318 .pricing-price .moeda { font-size: 28px !important; font-weight: bold !important; vertical-align: super !important; margin-right: 4px !important; }
#secao-planos-5318 .pricing-price .valor { font-size: 60px !important; font-weight: 900 !important; line-height: 1 !important; }
#secao-planos-5318 .pricing-price .price-legenda { font-size: 12px !important; text-transform: uppercase !important; opacity: 0.8 !important; margin-top: 10px !important; margin-bottom: 0 !important; }

#secao-planos-5318 .pricing-price .legenda-destaque { font-size: 15px !important; opacity: 1 !important; background: rgba(0, 0, 0, 0.15) !important; display: inline-block !important; padding: 6px 15px !important; border-radius: 6px !important; margin-top: 15px !important; }
#secao-planos-5318 .legenda-destaque strong { font-size: 18px !important; font-weight: 900 !important; }

/* Preço sob consulta */
#secao-planos-5318 .preco-texto { display: flex; align-items: center; justify-content: center; height: 90px !important; }
#secao-planos-5318 .valor-texto { font-size: 32px !important; font-weight: 800 !important; line-height: 1.1 !important; text-transform: uppercase !important; }

/* Descrição do plano */
#secao-planos-5318 .pricing-body { font-size: 16px !important; line-height: 1.5 !important; margin-bottom: 30px !important; opacity: 0.95 !important; flex-grow: 1; display: flex; align-items: center; justify-content: center; }
#secao-planos-5318 .pricing-body strong { font-weight: 900 !important; color: #ffffff !important; }

/* =========================================================
   BOTÕES E CORREÇÃO DE CORES
========================================================= */
#secao-planos-5318 .pricing-footer { width: 100%; }
#secao-planos-5318 .btn-pricing {
    display: block !important;
    width: 100% !important;
    padding: 16px 20px !important;
    font-size: 18px !important;
    font-weight: bold !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    border-radius: 6px !important;
    transition: all 0.3s ease !important;
}

#secao-planos-5318 .btn-branco, #secao-planos-5318 .btn-branco * { background-color: #f8f9fa !important; color: #1b1d22 !important; }
#secao-planos-5318 .btn-branco:hover, #secao-planos-5318 .btn-branco:hover * { background-color: #e2e6ea !important; color: #000000 !important; }

#secao-planos-5318 .btn-escuro { background-color: #1b1d22 !important; color: #ffffff !important; }
#secao-planos-5318 .btn-escuro:hover { background-color: #000000 !important; }
#secao-planos-5318 .btn-dourado { background-color: #a37538 !important; color: #ffffff !important; }
#secao-planos-5318 .btn-dourado:hover { background-color: #8f6330 !important; }/* --- CONFIGURAÇÃO DA SEÇÃO DE FAQ --- */
#secao-faq-5317 {
    padding-top: 15px; /* Reduzido de 60px para 15px para colar mais no bloco de cima */
    padding-bottom: 60px;
    background: transparent !important;
}

#secao-faq-5317 .titulo-principal {
    color: #ffffff !important;
    font-weight: bold;
    font-size: 32px;
}
#secao-faq-5317 .subtitulo-principal {
    color: #ffffff !important;
    font-size: 18px;
    margin-top: 10px;
}

/* --- ESTILOS DO ITEM DA SANFONA --- */
#secao-faq-5317 .faq-item {
    background: rgba(255, 255, 255, 0.03); 
    border: 1px solid rgba(255, 255, 255, 0.15); 
    border-radius: 10px;
    margin-bottom: 15px;
    transition: all 0.4s ease; 
}

/* Esconde o input de checkbox que controla a lógica */
#secao-faq-5317 .faq-input {
    display: none;
}

/* Efeito Hover na caixa inteira */
#secao-faq-5317 .faq-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Estilo da caixa quando a pergunta está ABERTA */
#secao-faq-5317 .faq-input:checked ~ .faq-pergunta {
    color: #a37538;
}
#secao-faq-5317 .faq-item:has(.faq-input:checked) {
    background: rgba(0, 0, 0, 0.2); 
    border-color: #a37538; 
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* --- ESTILOS DA PERGUNTA (LABEL) --- */
#secao-faq-5317 .faq-pergunta {
    padding: 22px 25px;
    margin: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    user-select: none; 
    transition: color 0.3s ease;
}

/* --- ÍCONE DA SETINHA --- */
#secao-faq-5317 .faq-icone {
    font-size: 16px;
    color: #ffffff;
    /* Animação elástica da setinha */
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55), color 0.3s ease;
}

/* Gira a setinha quando aberto */
#secao-faq-5317 .faq-input:checked + .faq-pergunta .faq-icone {
    transform: rotate(-180deg);
    color: #a37538;
}

/* --- A MÁGICA DA ANIMAÇÃO DESLIZANTE (GRID) --- */
#secao-faq-5317 .faq-resposta-wrapper {
    display: grid;
    grid-template-rows: 0fr; /* Altura ZERO inicialmente */
    transition: grid-template-rows 0.4s ease-in-out; 
}

/* Quando o input é ativado, a altura vai para 100% do conteúdo */
#secao-faq-5317 .faq-input:checked ~ .faq-resposta-wrapper {
    grid-template-rows: 1fr;
}

/* --- ESTILOS DA RESPOSTA --- */
#secao-faq-5317 .faq-resposta {
    overflow: hidden; 
}

/* O texto desliza e aparece suavemente */
#secao-faq-5317 .faq-resposta p {
    padding: 0 25px 25px 25px;
    margin: 0;
    font-size: 16px;
    color: #d1d5db; 
    line-height: 1.6;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
}

/* Transição do texto ao abrir */
#secao-faq-5317 .faq-input:checked ~ .faq-resposta-wrapper .faq-resposta p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s; 
}/* =========================================================
   FOOTER PREMIUM - REVISÃO FINAL DE ALINHAMENTO E OPACIDADE
========================================================= */
.footer-modern {
    position: relative;
    background-color: #000c16; 
    padding: 80px 0 20px 0;
    overflow: hidden;
    color: #ffffff;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* Alinhamento total à esquerda conforme solicitado */
.footer-main-layout {
    display: flex;
    justify-content: flex-start; 
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 120px; 
    position: relative;
    z-index: 10;
}

.footer-logo-img {
    height: 40px;
    margin-bottom: 25px;
}

.brand-desc {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: left;
}

/* Redes sociais com círculos dourados */
.footer-social-circles {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
}

.footer-social-circles a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(184, 138, 77, 0.2); 
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e3c89c; 
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-circles a:hover {
    background: #b88a4d;
    color: #000c16;
    box-shadow: 0 0 15px rgba(184, 138, 77, 0.3);
    transform: translateY(-3px);
}

/* Colunas de Navegação alinhadas à esquerda */
.footer-nav-columns {
    display: flex;
    gap: 100px;
    text-align: left;
}

.nav-col h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    margin-bottom: 25px;
}

.nav-col a, .nav-col p {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
}

.nav-col a:hover { color: #b88a4d; }

/* --- TEXTO GIGANTE (TRANSPARÊNCIA 5% + GRADIENTE) --- */
.footer-big-text {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(5rem, 20vw, 18rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.05em;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
    z-index: 1;
    line-height: 0.7;

    /* APLICAÇÃO DA TRANSPARÊNCIA SOLICITADA: 5% */
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 0.05) 0%, /* Inicia em 5% */
        rgba(255, 255, 255, 0.01) 70%, 
        transparent 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- BARRA INFERIOR (INTEGRADA E LEVANTADA) --- */
.footer-bottom-bar {
    margin-top: 60px; /* Levantado conforme solicitado */
    position: relative;
    z-index: 10;
}

.bottom-line {
    height: 1px;
    width: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.08), transparent);
    margin-bottom: 20px;
}

.bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.bottom-flex p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    margin: 0;
}

.bottom-flex a { color: #b88a4d; text-decoration: none; }

/* Responsividade */
@media (max-width: 992px) {
    .footer-main-layout { gap: 40px; }
    .footer-nav-columns { gap: 40px; }
}

@media (max-width: 768px) {
    .footer-main-layout { flex-direction: column; }
    .footer-nav-columns { width: 100%; justify-content: flex-start; }
}.divCookie{position: fixed;min-width: 100%;z-index: 100000;font-size: 13px;letter-spacing: 0px;text-align: center;background-color: #001c2f;bottom: 0;left: 0;}.spanTexto{color: #FFF;text-align: center;vertical-align: middle;display: inline-block;padding: 15px 20px;}.spanButton{display: inline-block;padding: 15px 0px;}.btn-ok{background-color:#f6e27f;color:#000;}.divChat{margin:0; padding:0; text-align: center;height:70px;width:70px;position:fixed;bottom:20px;right:20px;border-radius: 50%;cursor: pointer;z-index: 10;}.divChat img{border: 0px; vertical-align: baseline;height:60px;width:60px;margin-top: 10px;}.rotate{-webkit-transition-duration: 0.8s;-moz-transition-duration: 0.8s;-o-transition-duration: 0.8s;transition-duration: 0.8s;-webkit-transition-property: -webkit-transform;-moz-transition-property: -moz-transform;-o-transition-property: -o-transform;transition-property: transform;overflow:hidden;-webkit-transform:rotate(360deg);-moz-transform:rotate(360deg); -o-transform:rotate(360deg);} /* =========================================================
   1. FUNDOS GLOBAIS E DARK MODE
========================================================= */
body {
    background: linear-gradient(to bottom, #000c16 0%, #000c16 35%, #001220 70%, #001c2f 100%) !important;
    background-attachment: fixed;
}

section, .container, .container-fluid, #top-menu, .footer-line1, .footer-line2, .footer-line3 {
    background: transparent !important;
}

.top-space {
    background-color: #a37538 !important; 
}


/* =========================================================
   2. SEÇÃO DE PASSOS (FUNDOS DOS CARDS E DIVISORES)
========================================================= */
.passos-wrapper {
    background: transparent !important;
}

.passos-wrapper .step-divider {
    background-color: currentColor !important;
}

/* Passo 1: Fundo Claro */
.passos-wrapper .step-1 {
    background: linear-gradient(135deg, #f8f9fa 0%, #e2e6ea 100%) !important;
}

/* Vencendo a regra global com especificidade máxima para o texto e número do Passo 1 */
body .passos-wrapper .step-card.step-1 .step-number,
body .passos-wrapper .step-card.step-1 .step-text {
    color: #1b1d22 !important;
}

.passos-wrapper .step-1 .step-divider {
    background-color: #1b1d22 !important;
}

/* Passo 2: Fundo Cinza Chumbo */
.passos-wrapper .step-2 {
    background: linear-gradient(135deg, #6c7079 0%, #52565e 100%) !important;
}
.passos-wrapper .step-2 .step-divider {
    background-color: #ffffff !important;
}

/* Passo 3: Fundo Dourado */
.passos-wrapper .step-3 {
    background: linear-gradient(135deg, #b88a4d 0%, #a37538 100%) !important;
}
.passos-wrapper .step-3 .step-divider {
    background-color: #ffffff !important;
}


/* =========================================================
   3. SEÇÃO DE PLANOS (FUNDOS DOS CARDS, BADGES E BOTÕES)
========================================================= */
.pricing-wrapper .card-mensal { 
    background: linear-gradient(135deg, #6c7079 0%, #52565e 100%) !important; 
}

.pricing-wrapper .card-anual { 
    background: linear-gradient(135deg, #b88a4d 0%, #a37538 100%) !important; 
}

.pricing-wrapper .card-business { 
    background: linear-gradient(135deg, #262930 0%, #1b1d22 100%) !important; 
}

.pricing-wrapper .badge-recomendado {
    background-color: #1b1d22 !important;
}

.pricing-wrapper .pricing-price .legenda-destaque {
    background: rgba(0, 0, 0, 0.15) !important; 
}

.pricing-wrapper .btn-branco { 
    background-color: #f8f9fa !important; 
}
.pricing-wrapper .btn-branco:hover { 
    background-color: #e2e6ea !important; 
}

.pricing-wrapper .btn-escuro { 
    background-color: #1b1d22 !important; 
}
.pricing-wrapper .btn-escuro:hover { 
    background-color: #000000 !important; 
}

.pricing-wrapper .btn-dourado { 
    background-color: #a37538 !important; 
}
.pricing-wrapper .btn-dourado:hover { 
    background-color: #8f6330 !important; 
}

/* =========================================================
   4. COR DE TEXTO GLOBAL (BRANCO) COM EXCEÇÕES
========================================================= */

/* Deixa todos os textos brancos nativos do tema, EXCETO ícones, SVGs e a classe .texto-bem-vindo */
body, 
body *:not(i):not(svg):not(svg *):not(.fa):not([class*="fa-"]):not(.texto-bem-vindo) {
    color: #ffffff !important;
}

/* Define a cor específica para o texto de boas-vindas */
.texto-bem-vindo {
    color: #1b1d22 !important; 
}