/* === VARIÁVEIS GLOBAIS DE CONTROLE (Adicione o que faltar) === */

:root {
    /* --- TIPOGRAFIA --- */
    --font-family-base: 'Montserrat', sans-serif;
    --font: 'Montserrat', sans-serif;
    /* alias legado do catálogo */

    /* --- MARCA / CORES --- */
    --color-super-dark-green: #113224;
    --color-badge-bg: #0f4e34;
    --color-secondary: #42dfb6;
    --color-accent: #2ebc94;
    --color-background-gelo: #f4f6f5;
    --bg-carbon: #060F0F;

    /* --- Catálogo (tema escuro) --- */
    --bg: #0B1E1E;
    --bg-elev: #102A2A;
    --bg-line: rgba(255, 255, 255, 0.08);
    --primary: #FF5722;
    --primary-glow: rgba(255, 87, 34, 0.28);
    --text: #FFFFFF;
    --text-muted: rgba(255, 255, 255, 0.62);

    /* --- LAYOUT (base = PC normal) --- */
    --width-desktop: 75%;
    --width-mobile: 90%;
    --space: 80px;
    --radius: 14px;
    --maxw: 1120px;
}

/* --- TELAS SUPER-LARGAS (≥1600px) --- */
@media (min-width: 1600px) {
    :root {
        --space: 112px;
        --maxw: 1360px;
    }
}

/* --- TABLET (≤1024px) --- */
@media (max-width: 1024px) {
    :root {
        --space: 56px;
    }
}

/* --- MOBILE (≤560px) --- */
@media (max-width: 560px) {
    :root {
        --space: 48px;
    }
}

/* --- RESETS E BASE --- */
body {
    /* Isso garante que o site INTEIRO use a Montserrat */
    font-family: var(--font-family-base);
    background-color: var(--color-background-gelo);
    color: #212529;
    overflow-x: hidden;
}

/* --- ANIMAÇÕES GLOBAIS (CHEGADA DE TEXTO/ELEMENTO) --- */
/* Classe base da animação (escondido e um pouco para baixo) */
.animate-fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Classe adicionada via JavaScript quando o elemento entra na tela */
.animate-fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- MEDIA QUERIES (CONTROLE DE TELAS) --- */

/* 1. Mobile Padrão (Até 768px) - Celulares */
@media (max-width: 768px) {
    /* O container-custom já usa 90% por padrão, mas você pode adicionar regras exclusivas para celular aqui */
}

/* 2. Notebooks e Monitores Padrão (A partir de 992px) - Desktop Base */
@media (min-width: 992px) {
    .container-custom {
        width: var(--width-desktop);
        /* Aplica os 75% pedidos */
        max-width: 1400px;
        /* Trava de segurança para não crescer infinitamente */
    }
}

/* 3. Telas Ultra Largas (A partir de 1920px) - Monitores Ultrawide */
@media (min-width: 1920px) {
    .container-custom {
        /* Exemplo: Reduzir para 60% em telas gigantes para não ficar muito esticado. Ajuste visualmente depois! */
        width: 60%;
    }
}

/* --- CONTROLES DE SESSÃO E CONTEÚDO --- */
/* Classe base para todas as sessões futuras */
.section-base {
    padding: var(--section-padding-y) var(--section-padding-x);
    position: relative;
    overflow: hidden;
}

/* --- CONTROLES DE TEXTO E IMAGEM --- */

.text-balance {
    text-wrap: balance;
}

/* Controle padrão para imagens manterem proporção e não excederem o container */
.img-fluid-custom {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* =========================================
   SESSÃO HERO - ESTILOS ESPECÍFICOS
   ========================================= */

/* Fundo com Ondas SVG */
.hero-section {
    min-height: 100vh;
    background-image: url('/assets/stacked-waves-haikei.svg');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    padding-top: 100px;
    padding-bottom: 80px;
}

/* Badge "15 Vagas" */
.badge-custom {
    background-color: var(--color-badge-bg);
    color: var(--color-secondary);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* =========================================
   EFEITO DE DESTAQUE EM TEXTO (BACKGROUND)
   ========================================= */
.highlight-box {
    background-color: rgb(3, 65, 46);
    /* Cor do fundo do destaque */
    color: #ffffff;
    /* Cor da letra dentro do destaque */
    padding: 2px 16px;
    /* Dá um "respiro" nas laterais e em cima/baixo */
    border-radius: 0px;
    /* Deixa as pontas arredondadas (estilo pílula) */
    display: inline-block;
    /* Mantém o bloco firme sem quebrar a linha de forma feia */
    margin: 0 4px;
    /* Dá um micro-espaço entre as palavras normais e a caixa */

    /* Opcional: Se quiser manter aquele sublinhado verde claro junto com a caixa */
    /* border-bottom: 4px solid var(--color-accent); */
}

.text-secondary-color {
    color: var(--color-secondary);
}

/* Título Gigante Adaptável */
.hero-title {
    color: var(--color-super-dark-green);
    font-size: 45px !important;
    line-height: 1;
    letter-spacing: -1px;
    font-weight: 900;
}

.text-underline-custom {
    text-decoration: underline;
    text-decoration-color: var(--color-accent);
    text-decoration-thickness: 4px;
    text-underline-offset: 6px;
}

/* Subtítulo */
.hero-subtitle {
    color: #1a4d38;
    /* Adicionado o clamp aqui também para ficar proporcional */
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    line-height: 1.5;
    font-weight: 600;
}

/* Botões da Hero */
.btn-primary-dark {
    background-color: var(--color-super-dark-green);
    color: #ffffff;
    border: 2px solid var(--color-super-dark-green);
    transition: all 0.3s ease;
}

.btn-primary-dark:hover {
    background-color: #1a4d38;
    color: #ffffff;
    transform: translateY(-3px);
}

.btn-outline-dark {
    background-color: rgba(255, 255, 255, 0.4);
    /* Fundo levemente branco para destaque no SVG */
    color: var(--color-super-dark-green);
    border: 2px solid var(--color-super-dark-green);
    transition: all 0.3s ease;
}

.btn-outline-dark:hover {
    background-color: var(--color-super-dark-green);
    color: #ffffff;
}

/* Avatares de Prova Social */
.avatar-group {
    padding-left: 10px;
}

.avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: var(--color-super-dark-green);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    border: 2px solid #a3d9ca;
    /* Cor da borda adaptada para o fundo verde claro do SVG */
    margin-left: -12px;
}

.avatar-plus {
    background-color: var(--color-accent);
}

.hero-social-text {
    color: var(--color-super-dark-green);
    font-weight: 600;
}

/* Animações dos Celulares e Scroll */
.hero-image {
    animation: floatImage 6s ease-in-out infinite;
    max-height: 75vh;
}

@keyframes floatImage {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.scroll-down-icon {
    transition: transform 0.3s;
}

.scroll-down-icon:hover {
    transform: translateY(5px);
}

/* =========================================
   MEDIA QUERIES (CONTROLE DE LARGURA DAS TELAS)
   ========================================= */

/* 1. Mobile Padrão (Até 991px) - Celulares e Tablets */
@media (max-width: 991px) {
    .container-custom {
        width: 90%;
        /* Mantém 90% da tela em celulares */
        margin: 0 auto;
    }
}

/* 2. Notebooks e Monitores Padrão (De 992px até 1919px) - Desktop Base */
@media (min-width: 992px) {
    .container-custom {
        width: 75%;
        /* AQUI: Força exatamente 75% da tela */
        max-width: none;
        /* Removemos o limite anterior para o 75% funcionar livremente */
        margin: 0 auto;
    }

}

@media (min-width: 1920px) {
    .container-custom {
        width: 60%;
        /* Reduzi para 60% aqui. Se quiser mais fino, mude para 50%. Se quiser mais largo, mude para 70%. */
        margin: 0 auto;
    }

    .hero-section {
        padding-top: 50px;
        /* Apenas essa linha muda! */
    }

    /* Você também pode criar regras de texto exclusivas para tela ultra larga aqui dentro, se quiser! */
}

/* =========================================
   SESSÃO: O PROBLEMA REAL
   ========================================= */
.bg-white {
    background-color: #ffffff;
    z-index: 2;
}

#problema-real {
    position: relative;
    z-index: 20;
    overflow: visible;
    padding-top: -120px;
    padding-bottom: 50px;
}

.bg-white {
    background-color: #ffffff;
}

/* Estilo dos 4 Cards menores */
.card-problema {
    background-color: var(--color-super-dark-green);
    border-radius: 16px;
    padding: 24px;
    color: #ffffff !important;
    transition: transform 0.3s ease;
    font-weight: 400;
    line-height: 10px;
}

.card-problema:hover {
    transform: translateY(-5px);
    /* Efeito de elevação ao passar o mouse */
}

.card-problema h4 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.6 rem;
    margin-bottom: 12px;

}

.card-problema p {
    color: #a3d9ca;
    font-size: 15px;
    line-height: 1.3;
    margin-bottom: 0;
}

/* Estilo do Card Largo inferior */
.card-destaque {
    background-color: var(--color-super-dark-green);
    border: 1px solid #1a4d38;
    /* Borda sutil */
    border-radius: 16px;
    padding: 24px 32px;
}

.card-destaque p {
    font-size: 14px;
    line-height: 1.3;
}

/* Cor verde clara para destacar texto dentro de fundos escuros */
.text-light-green {
    color: var(--color-secondary);
}

/* =========================================
   EFEITO DE SOBREPOSIÇÃO (OVERLAP)
   ========================================= */
@media (min-width: 992px) {
    .overlap-up {
        margin-top: -20px;
        /* Puxa os cards 120px para cima. Você pode aumentar ou diminuir esse valor para testar */
        position: relative;
        /* Necessário para o z-index funcionar */
        z-index: 10;
        /* Garante que os cards fiquem "por cima" do fundo da sessão anterior */
    }

    .card-problema {
        background-color: var(--color-super-dark-green);
        border-radius: 18px;
        padding: 16px;
        color: #ffffff;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        /* Sombra suave para dar profundidade no fundo branco */
        transition: transform 0.3s ease;
    }
}

/* =========================================
   SESSÃO: A SOLUÇÃO
   ========================================= */

#solucao {
    padding-top: 120px;
    padding-bottom: 120px;

    /* Aplicando o SVG */
    background-color: #4ad8b5;
    /* Cor base que você já usa */
    background-image: url('/assets/stacked-waves-haikei.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    /* Truque para o texto não brigar com as ondas: */
    position: relative;
}

/* Opcional: Se as ondas forem muito escuras e atrapalharem a leitura, 
   podemos criar uma "máscara" leve por cima: */
#solucao::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(74, 216, 181, 0.4);
    /* Uma camada de tinta verde extra sobre o SVG */
    z-index: 0;
}

/* Garante que o conteúdo fique acima da camada de tinta */
#solucao .container-custom {
    position: relative;
    z-index: 1;
}

.badge-solucao {
    background-color: rgba(145, 7, 48, 0.1);
    /* Fundo verde escuro bem transparente */
    color: var(--color-super-dark-green);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Estilo dos 4 Cards Brancos */
.card-solucao {
    background-color: #ffffff;
    border-radius: 20px;
    /* Bordas bem arredondadas como no print */
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 1);
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}

/* Animação Hover (Passar o mouse) */
.card-solucao:hover {
    transform: translateY(-12px);
    /* O card sobe */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    /* A sombra fica mais forte e espalhada */
}

/* Ícones dos Cards */
.card-solucao .icon-wrapper {
    background-color: var(--color-background-gelo);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* Texto descritivo dos Cards */
.card-solucao p {
    color: #4a5550;
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
    /* Empurra o selo para o fundo caso os textos tenham tamanhos diferentes */
    margin-bottom: 25px;
}

/* Selo "INCLUSO NO PLANO" dentro dos cards */
.badge-incluso {
    background-color: rgba(66, 223, 182, 0.2);
    /* Fundo verde claro transparente */
    color: var(--color-super-dark-green);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 6px;
    align-self: flex-start;
    /* Impede que o selo estique até o final do card */
}

/* =========================================
   CONTROLE DE TEXTOS - SESSÃO: A SOLUÇÃO
   ========================================= */

/* 1. Título Gigante Principal */
.titulo-solucao {
    /* clamp(Mínimo no celular, Ideal fluido, Máximo no Desktop) */
    font-size: 44px;
    line-height: 10px;
    letter-spacing: 1px font-weight: 900px;
}

/* 2. Subtítulo (embaixo do título principal) */
.subtitulo-solucao {
    font-size: 21px;
    /* Aumente ou diminua aqui (ex: 1.1rem, 1.5rem) */
    line-height: 1.6;
}

.destaque-final-solucao {
    font-size: clamp(0.8rem, 2vw, 2.8rem);
    /* Pode aumentar ou diminuir esses valores */
}

/* 3. Selo Superior ("A SOLUÇÃO") */
.badge-solucao {
    font-size: 0.8rem;
    /* Tamanho da letrinha do selo */
}

/* 4. Título dentro dos Cards Brancos */
.card-solucao h4 {
    font-size: 1.2rem;
    /* Tamanho do título (ex: "Loja própria com seu domínio") */
}

/* 5. Texto normal dentro dos Cards Brancos */
.card-solucao p {
    font-size: 0.95rem;
    /* Tamanho da descrição dentro do card */
}

/* 6. Selinho "INCLUSO NO PLANO" nos Cards */
.badge-incluso {
    font-size: 0.85rem;
    /* Tamanho do texto do selo verde claro */
}

/* =========================================
   SESSÃO: COMO FUNCIONA (Design Completo)
   ========================================= */
#como-funciona {
    padding: 100px 0;
}

/* Container que garante o empilhamento correto */
.position-relative {
    position: relative;
}

/* A Linha - Z-index 1 (fundo) */
.step-line {
    position: absolute;
    top: 45px;
    left: 20%;
    width: 60%;
    height: 6px;
    background: #e0e0e0;
    border-radius: 10px;
    box-shadow: inset 2px 2px 5px #bebebe, inset -2px -2px 5px #ffffff;
    z-index: 1 !important;
}

/* O Botão - Z-index 2 (frente) */
.step-btn {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: #a0a0a0;
    margin: 0 auto 20px auto;
    position: relative;
    /* Importante para o z-index funcionar */
    z-index: 2;
    box-shadow: 8px 8px 16px #bebebe, -8px -8px 16px #ffffff;
    transition: all 0.3s ease;
}

/* Ajuste para o Card ficar na frente da linha, mas não atrapalhar */
.step-card {
    position: relative;
    z-index: 3;
    /* O texto e card ficam acima de tudo */
    background: transparent;
}

/* Estado Ativo (Verde ciano) */
.step-btn.active {
    background: var(--color-secondary);
    color: white;
    box-shadow: inset 6px 6px 12px #26a07e, inset -6px -6px 12px #36d8ab;
}

/* Texto abaixo dos botões */
.step-card h5 {
    color: var(--color-super-dark-green);
    min-height: 45px;
}

.small-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    padding: 0 15px;
}

.position-relative {
    position: relative;
}


/* ==========================================================================
   SESSÃO: COMPARAÇÃO (Tabela e Cards de Economia)
   ========================================================================== */
#comparativo {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background-color: var(--color-super-dark-green);
    background-image: url('/assets/stacked-waves-haikei_2.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
}

/* O "BISTURI" DOS 75% DE LARGURA É ESTA REGRA AQUI */
.container-75 {
    width: 100%;
    max-width: 75%;
    margin: 0 auto;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(2px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    color: #ffffff;
    padding: 2rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.35);
}

.glass-panel.destaque {
    background: rgba(163, 253, 28, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

/* --- Controle dos Valores (Preços) nos Cards --- */

/* Regras gerais para os dois números */
.valor-destaque {
    font-weight: 700;
    line-height: 1.1;
    color: #000000;
    margin-bottom: 0.5rem;
}

/* Regra ESPECÍFICA para o preço do Mercado (Card da esquerda) */
.valor-mercado {
    /* Pode colocar a cor que quiser (Ex: um tom avermelhado ou cinza) */
    color: #f60000;

    /* Tamanho: clamp(Mínimo no Celular, Tamanho Flexível, Máximo no PC) */
    font-size: 30px;

    /* Se quiser que esse texto não seja tão forte, mude o peso aqui */
    font-weight: 700;
}

/* Regra ESPECÍFICA para o preço da YANY (Card da direita) */
.valor-yany {
    /* Cor de destaque. O padrão da sua marca ou um verde neon */
    color: #034325;

    /* Tamanho do YANY (Configurei para ficar um pouco MAIOR que o do mercado) */
    font-size: clamp(3rem, 5vw, 4.5rem);
}

.text-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 1;
    margin-bottom: 1rem;
    display: block;
    font-weight: 300px;
}

.economia-principal {
    color: #ffffff;
    /* Cor do texto branco */
    font-size: 1.4rem;
    /* Tamanho da fonte */
    font-weight: 600;
    /* Peso (600 = semi-negrito) */
}


.badge-discount,
.discount-badge {
    display: inline-block;
    background-color: #00ae5d;
    color: #f7f7f7;
    font-weight: 500;
    font-size: 4rem;
    padding: 0.5rem 1.5rem;
    border-radius: 10px;
}

.table-clean {
    width: 100%;
    border-collapse: collapse;
}

.table-clean th {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    padding: 1rem 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    text-align: left;
}

.table-clean td {
    padding: 1.2rem 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
}

.table-clean tr:last-child td {
    border-bottom: none;
}


/* Responsividade (Para não ficar esmagado no celular) */
@media (max-width: 992px) {
    .container-75 {
        max-width: 95%;
    }
}

/* ==========================================================================
   ESTILOS: SESSÃO EXCLUSIVO YANY (CONTROLE DE TEXTOS E PESOS)
   ========================================================================== */

/* --- Títulos Principais da Sessão --- */
.titulo-sessao-yany {
    color: var(--color-super-dark-green);
    font-size: clamp(2.2rem, 4vw, 3rem);
    /* Tamanho responsivo automático */
    font-weight: 800;
    /* Peso/Gordura do título principal */
    line-height: 1.2;
}

.subtitulo-sessao-yany {
    color: #555555;
    font-size: 1.25rem;
    /* Tamanho do texto de apoio */
    font-weight: 500;
    /* Peso do texto de apoio */
    max-width: 800px;
    opacity: 0.85;
}

/* --- Estrutura dos Cards (Fundo Branco / Sombra Suave) --- */
.card-padrao-branco {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 2.5rem 2rem 2rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* --- Tipografia Interna do Card --- */
.card-titulo-yany {
    color: var(--color-super-dark-green);
    font-size: 1.35rem;
    /* Tamanho do título do card */
    font-weight: 700;
    /* Peso do título do card (ex: 700 ou 800) */
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

.card-texto-yany {
    color: #444444;
    font-size: 0.95rem;
    /* Tamanho do texto descritivo */
    font-weight: 400;
    /* Peso do texto descritivo (400 = normal) */
    line-height: 1.6;
}

/* --- Elementos Visuais Internos --- */
.icon-box-yany {
    font-size: 2.2rem;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(66, 223, 182, 0.12);
    /* Verde YANY bem suave de fundo */
    border-radius: 12px;
}

.numero-card {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-super-dark-green);
    opacity: 0.12;
    /* Mantém o número sutil no fundo */
    font-family: sans-serif;
}

/* Efeito flutuar ao passar o mouse (Apenas em Desktop) */
@media (hover: hover) {
    .card-padrao-branco:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    }
}

/* --- Otimizações para Mobile (Celulares) --- */
@media (max-width: 768px) {
    .card-padrao-branco {
        padding: 2rem 1.5rem 1.5rem 1.5rem;
        /* Reduz margens internas para telas menores */
    }

    .titulo-sessao-yany {
        font-size: 1.8rem;
    }

    .subtitulo-sessao-yany {
        font-size: 1.1rem;
    }

    .card-titulo-yany {
        font-size: 1.2rem;
    }

    .card-texto-yany {
        font-size: 0.9rem;
    }
}

/* ==========================================================================
   ESTILOS: SESSÃO PLANO FUNDADOR E PREÇO
   ========================================================================== */

/* --- Elementos da Esquerda (Persuasão) --- */
.alerta-vagas {
    background-color: #fff4d2;
    color: #856404;
    border-left: 5px solid #ffc107;
    padding: 1.2rem 1.5rem;
    border-radius: 0 12px 12px 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.texto-reflexivo {
    background-color: rgba(0, 0, 0, 0.02);
    padding: 1.5rem;
    border-radius: 12px;
    color: #444;
    font-size: 0.95rem;
    line-height: 1.6;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

/* --- Card da Direita (Div de Preço com o SVG de fundo) --- */
.card-preco-yany {
    /* O Fundo verde base e a injeção do seu SVG */
    background-color: var(--color-super-dark-green) !important;
    background-image: url('/assets/stacked-waves-haikei_2.svg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;

    color: #ffffff;
    border-radius: 24px;
    padding: 3rem 2.5rem;
    box-shadow: 0 20px 40px rgba(17, 50, 36, 0.15);
    /* Sombra elegante verde-escuro */
    position: relative;
    overflow: hidden;
}

/* Uma camada escura quase invisível por cima do SVG para garantir a leitura do texto */
.card-preco-yany::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(17, 50, 36, 0.25);
    z-index: 0;
}

/* Garante que os textos e botões fiquem acima do filtro escuro */
.card-preco-yany>* {
    position: relative;
    z-index: 1;
}

/* --- Tipografia do Preço --- */
.card-preco-titulo {
    font-size: 1.15rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-secondary);
    margin-bottom: 0;
}

.preco-box .moeda {
    font-size: 1.5rem;
    font-weight: 700;
    vertical-align: top;
    opacity: 0.8;
}

.preco-box .valor {
    font-size: 4rem;
    /* Tamanho gigante do preço principal */
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
}

.preco-box .periodo {
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.8;
}

.preco-setup {
    font-size: 0.95rem;
    color: #00ff88;
    font-weight: 600;
    margin-top: -8px;
}

.linha-divisoria {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 1.5rem 0;
}

/* --- Lista de Benefícios --- */
.lista-incluso {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.lista-incluso li {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    opacity: 0.9;
}

/* --- Botão Principal de Compra --- */
.btn-garantir-vaga {
    display: inline-block;
    background-color: var(--color-secondary);
    color: var(--color-super-dark-green) !important;
    font-weight: 800;
    font-size: 1.2rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(66, 223, 182, 0.3);
}

.btn-garantir-vaga:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(66, 223, 182, 0.5);
    background-color: #00ff88;
}

/* --- Ajustes Responsivos para Mobile --- */
@media (max-width: 768px) {
    .card-preco-yany {
        padding: 2.5rem 1.5rem;
        /* Aperta o card no celular para caber mais coisa */
    }

    .preco-box .valor {
        font-size: 3.2rem;
        /* Diminui a fonte do 197 no celular */
    }
}

/* ==========================================================================
   ESTILOS: SESSÃO DÚVIDAS FREQUENTES (FAQ) - PADRÃO HERO
   ========================================================================== */

#faq {
    padding: 80px 0;
    position: relative;
    overflow: hidden;

    /* Injeção cirúrgica do seu fundo SVG */
    background-color: var(--color-super-dark-green) !important;
    background-image: url('/assets/stacked-waves-haikei.svg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    4 color: #ffffff !important;
}

/* --- Título da Sessão (Padrão Hero-Title) --- */
.faq-titulo-principal {
    font-size: clamp(2rem, 1.5vw, 2.8rem);
    font-weight: 700;
    /* Super negrito igual ao Hero */
    line-height: 1.1;
    letter-spacing: -1px;
    /* Letras mais unidas igual ao Hero */
    color: #ffffff;
}

/* --- Cards estilo Vidro Escuro (Glassmorphism) --- */
.faq-card {
    background: rgba(4, 94, 10, 0.09);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 2rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

@media (hover: hover) {
    .faq-card:hover {
        transform: translateY(-5px);
        /* Flutuação mais suave */
        border-color: rgba(66, 223, 182, 0.4);
    }
}

/* --- Controle Cirúrgico de Tipografia dos Cards --- */
.faq-pergunta {
    color: var(--color-secondary);
    font-size: 1.25rem;
    font-weight: 800;
    /* Título do card mais grosso para dar impacto */
    letter-spacing: -0.5px;
    /* Trazendo o padrão de compressão sutil */
    line-height: 1.3;
    margin-bottom: 0.85rem;
}

.faq-resposta {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 500;
    /* Subi de 400 para 500 para igualar o peso dos textos da Hero */
    line-height: 1.6;
    opacity: 0.85;
    margin-bottom: 0;
}

/* --- Ajustes de Otimização Mobile --- */
@media (max-width: 768px) {
    #faq {
        padding: 50px 0;
    }

    .faq-card {
        padding: 1.5rem;
    }

    .faq-titulo-principal {
        font-size: 1.8rem;
    }

    .faq-pergunta {
        font-size: 1.15rem;
    }

    .faq-resposta {
        font-size: 0.95rem;
    }
}

/* ==========================================================================
   ESTILOS: SESSÃO PRÉ-FOOTER COMPACTA (CENTRALIZADA E PADRONIZADA)
   ========================================================================== */

/* Reduz o respiro vertical para manter a sessão direta e limpa */
.section-base-compacta {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

/* Trava de largura para manter o texto curto e fácil de ler */
.container-40 {
    width: 100%;
    max-width: 45%;
    /* Ocupa 45% da tela no PC para o texto quebrar bonito */
    margin: 0 auto;
    /* Centraliza o bloco na tela */
}

/* --- Tipografia de Impacto (Padrão Hero-Title) --- */
.frase-impacto-compacta {
    font-size: clamp(1.8rem, 1.5vw, 2.4rem);
    font-weight: 700;
    /* Super negrito igual ao Hero */
    line-height: 1.1;
    margin-bottom: 0.2rem;
    letter-spacing: -1px;
    /* Letras levemente unidas igual ao Hero */
}

/* --- Texto Descritivo (Padrão Hero-Subtitle) --- */
.texto-fechamento-compacto {
    color: #1a4d38;
    /* Cor esverdeada igual ao subtítulo do hero */
    font-size: clamp(1rem, 0.2vw, 1.15rem);
    font-weight: 600;
    /* Peso 600 igual ao subtítulo do hero */
    line-height: 1.6;
    max-width: 90%;
    /* Garante que o texto não encoste nas bordas do bloco de 45% */
}

/* --- Links Secundários --- */
.link-voltar-oferta {
    color: var(--color-accent);
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
}

.link-voltar-oferta:hover {
    color: var(--color-super-dark-green);
    text-decoration: underline;
}

.legenda-demo {
    color: #666666;
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0.8;
}

/* --- Inteligência Responsiva --- */
@media (max-width: 992px) {

    /* Em tablets e celulares, libera a largura para não espremer demais */
    .container-40 {
        max-width: 90%;
    }

    .texto-fechamento-compacto {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .frase-impacto-compacta {
        font-size: 1.6rem;
    }

    /* Garante que o botão fique na largura total no celular */
    #conversao-final .btn-primary-dark {
        width: 100% !important;
    }
}

/* =====================================================================
   PÁGINA: CATÁLOGO (catalogo.html)  —  Tema DARK (navy/carbon + laranja)
   Todas as regras escopadas em .tema-catalogo para NÃO afetar a index
   (que é tema claro/verde). Reaproveita .animate-fade-up e .whatsapp-link
   do global.js — nenhum JS novo é necessário.
   ===================================================================== */
body.tema-catalogo {
    --cat-navy: #0A0E1A;
    --cat-carbon: #12151C;
    --cat-carbon-2: #171B24;
    --cat-line: #242A38;
    --cat-ink: #EAEDF4;
    --cat-muted: #8B93A7;
    --cat-accent: #FF5722;
    --cat-accent-soft: rgba(255, 87, 34, 0.14);
    background-color: var(--cat-navy);
    color: var(--cat-ink);
}

/* Atmosfera (glow + grain) sem brigar com o conteúdo */
.tema-catalogo .cat-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(900px 500px at 80% -8%, rgba(255, 87, 34, 0.16), transparent 60%),
        radial-gradient(700px 600px at -10% 110%, rgba(60, 90, 180, 0.10), transparent 55%);
}

.tema-catalogo main {
    position: relative;
    z-index: 1;
}

/* Seções */
.tema-catalogo .cat-section {
    padding: 84px 0;
}

.tema-catalogo .cat-hero {
    padding: 110px 0 90px;
    min-height: 92vh;
    display: flex;
    align-items: center;
}

.tema-catalogo .cat-final {
    padding: 110px 0;
}

/* Tipografia */
.tema-catalogo .cat-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--cat-accent);
    background: var(--cat-accent-soft);
    border: 1px solid var(--cat-accent-soft);
    padding: 7px 14px;
    border-radius: 100px;
}

.tema-catalogo .cat-pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--cat-accent);
    animation: catPulse 2s infinite;
}

@keyframes catPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 87, 34, 0.55);
    }

    70% {
        box-shadow: 0 0 0 9px rgba(255, 87, 34, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 87, 34, 0);
    }
}

.tema-catalogo .cat-h1 {
    font-weight: 800;
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    line-height: 1.04;
    letter-spacing: -1.5px;
    color: var(--cat-ink);
}

.tema-catalogo .cat-h1 .hl {
    color: var(--cat-accent);
}

.tema-catalogo .cat-h2 {
    font-weight: 800;
    font-size: clamp(1.9rem, 3.6vw, 2.8rem);
    line-height: 1.08;
    letter-spacing: -1px;
    color: var(--cat-ink);
}

.tema-catalogo .cat-sub {
    font-size: clamp(1.05rem, 1.6vw, 1.25rem);
    color: var(--cat-muted);
}

.tema-catalogo .cat-lead {
    color: var(--cat-muted);
    font-size: 1.1rem;
}

.tema-catalogo .cat-num {
    font-weight: 800;
    font-size: clamp(5rem, 13vw, 10rem);
    line-height: 0.8;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--cat-line);
    letter-spacing: -4px;
}

/* Botões (laranja primário / contorno) */
.tema-catalogo .btn-cat-primary {
    background-color: var(--cat-accent);
    color: #0A0E1A;
    font-weight: 700;
    border: 1px solid var(--cat-accent);
    border-radius: 10px;
    padding: 14px 28px;
    box-shadow: 0 8px 28px rgba(255, 87, 34, 0.32);
    transition: all 0.2s ease;
}

.tema-catalogo .btn-cat-primary:hover {
    transform: translateY(-2px);
    color: #0A0E1A;
    box-shadow: 0 14px 38px rgba(255, 87, 34, 0.45);
}

.tema-catalogo .btn-cat-ghost {
    background: transparent;
    color: var(--cat-ink);
    font-weight: 700;
    border: 1px solid var(--cat-line);
    border-radius: 10px;
    padding: 14px 28px;
    transition: all 0.2s ease;
}

.tema-catalogo .btn-cat-ghost:hover {
    border-color: var(--cat-accent);
    color: var(--cat-accent);
}

/* Cards (features / steps) */
.tema-catalogo .cat-card {
    background: var(--cat-carbon-2);
    border: 1px solid var(--cat-line);
    border-radius: 16px;
    padding: 32px 28px;
    height: 100%;
    transition: transform 0.25s ease, border-color 0.25s ease;
    position: relative;
    overflow: hidden;
}

.tema-catalogo .cat-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--cat-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.tema-catalogo .cat-card:hover {
    transform: translateY(-6px);
    border-color: #33405a;
}

.tema-catalogo .cat-card:hover::before {
    transform: scaleX(1);
}

.tema-catalogo .cat-ic {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--cat-accent-soft);
    color: var(--cat-accent);
    display: grid;
    place-items: center;
    margin-bottom: 18px;
}

.tema-catalogo .cat-card h3 {
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
}

.tema-catalogo .cat-card p {
    color: var(--cat-muted);
    font-size: 0.96rem;
    margin: 0;
}

/* Faixas com fundo carbon */
.tema-catalogo .cat-band {
    background: var(--cat-carbon);
    border-top: 1px solid var(--cat-line);
    border-bottom: 1px solid var(--cat-line);
}

/* Steps numerados */
.tema-catalogo .cat-step .n {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--cat-accent);
    color: var(--cat-accent);
    font-weight: 800;
    display: grid;
    place-items: center;
    margin-bottom: 16px;
}

/* CTA final */
.tema-catalogo .cat-final-box {
    background: linear-gradient(160deg, var(--cat-carbon-2), var(--cat-carbon));
    border: 1px solid var(--cat-line);
    border-radius: 24px;
    padding: 72px 40px;
    position: relative;
    overflow: hidden;
}

.tema-catalogo .cat-final-box::before {
    content: "";
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 87, 34, 0.22), transparent 65%);
    pointer-events: none;
}

.tema-catalogo .cat-final-box>* {
    position: relative;
    z-index: 1;
}

.tema-catalogo .cat-foot {
    border-top: 1px solid var(--cat-line);
    color: var(--cat-muted);
}

@media (max-width: 991px) {
    .tema-catalogo .cat-num {
        display: none;
    }
}




/* ============================================================
   YANY Catálogo — style.css
   Paleta travada: fundo #0B1E1E | primária #FF5722 | texto #FFFFFF
   Tons derivados (mesmas matizes) usados apenas para profundidade.
   ============================================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding-inline: 24px;
}

/* ---------- Reveal (animação de entrada) ---------- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Botões ---------- */
.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 36px;
    justify-content: center;
    /* ← adicionar */
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.2px;
    padding: 16px 28px;
    border-radius: var(--radius);
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.25s ease, background-color 0.25s ease;
    border: 1.5px solid transparent;
}

.btn--primary {
    background-color: var(--primary);
    color: var(--text);
    box-shadow: 0 8px 24px var(--primary-glow);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px var(--primary-glow);
}



.btn--secondary {
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    color: var(--text);
}

.btn--secondary:hover {
    border-color: rgba(255, 255, 255, 0.8);
    color: var(--primary);
    background-color: rgba(255, 87, 34, 0.08);
}

/* Hero sobre vídeo claro: botão secundário com texto escuro (escopado) */
.hero .btn--secondary {
    color: var(--bg);
    border: 1px solid rgba(255, 87, 34, 0.5) !important;
}

.hero .btn--secondary:hover {
    color: var(--primary);
    border-color: var(--primary);
    background-color: transparent;
}

/* ---------- HERO (com vídeo de fundo) ---------- */
.hero {
    position: relative;
    overflow: hidden;
    padding-block: calc(var(--space) + 60px) var(--space);
    background-color: var(--bg);
    width: 100vw;
    min-height: 100vh;
    /* ← adicionar */
}

.hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

}

.hero__inner {
    position: relative;
    z-index: 2;
    /* conteúdo acima do vídeo e do overlay */
    max-width: 880px;
}

.eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 22px;
    padding: 6px 14px;
    border: 1px solid var(--primary);
    border-radius: 100px;
}

.hero__title {
    font-size: clamp(2.2rem, 3.2vw, 4rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -1px;
    margin-bottom: 22px;
    color: var(--bg);
    /* texto escuro sobre vídeo claro */
}

.accent {
    color: var(--primary);
}

.strike {
    position: relative;
    white-space: nowrap;
}

.strike::after {
    content: "";
    position: absolute;
    left: -2%;
    top: 54%;
    width: 104%;
    height: 4px;
    background: var(--primary);
    transform: rotate(-2deg);
    border-radius: 4px;
}

.hero__subtitle {
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    font-weight: 500;
    color: var(--bg);
    /* escuro para legibilidade sobre vídeo claro */
    max-width: 620px;
}

/* ---------- VIDEO SECTION (apresentação, sobreposta à Hero) ---------- */
.video {
    position: relative;
    z-index: 3;
    /* acima do conteúdo da Hero (z-index 2) */
    padding-block: 0 var(--space);
}

.video__frame {
    position: relative;
    aspect-ratio: 16 / 9;
    width: 70vw;
    max-width: 1000px;
    margin: -140px auto 40px;
    /* ← mais invasão no hero */
    border-radius: var(--radius);
    border: 2px solid rgba(255, 87, 34, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    animation: frame-glow 2.5s ease-in-out infinite;
}

@media (max-width: 768px) {
    .video__frame {
        width: 100vw;
        max-width: 100%;
        margin: -80px auto 40px;
    }
}

@media (max-width: 480px) {
    .video__frame {
        width: 100vw;
        max-width: 100%;
        margin: -60px calc(-50vw + 50%) 40px;
        border-radius: 8px;
    }
}


@keyframes frame-glow {

    0%,
    100% {
        border-color: rgba(255, 87, 34, 0.3);
        box-shadow: 0 0 20px rgba(255, 87, 34, 0.08), 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    50% {
        border-color: rgba(255, 87, 34, 0.9);
        box-shadow: 0 0 35px rgba(255, 87, 34, 0.35), 0 0 70px rgba(255, 87, 34, 0.12), 0 10px 30px rgba(0, 0, 0, 0.5);
    }
}

@keyframes play-blink {

    0%,
    75%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    85% {
        opacity: 0.55;
        transform: scale(0.93);
    }
}

.video__media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video__caption {
    text-align: center;
    margin-top: 24px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
}

/* ██ INTERMEDIATE — 5 DIAS */
.intermediate {
    padding-block: var(--space);
    background-color: #102a2a;
}

.intermediate__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.intermediate__img {
    aspect-ratio: 1 / 1;
    border-radius: var(--radius);
    overflow: hidden;
}

.intermediate__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.intermediate__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.intermediate__title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.2;
    color: #ffffff
}

.intermediate__text {
    font-size: 1.3rem;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.4;
}

.intermediate .btn-group {
    flex-direction: column;
    gap: 14px;
}

.intermediate .btn {
    width: 100%;
    text-align: center;
}

/* para: */
.intermediate .btn-group {
    flex-direction: row;
    gap: 16px;
    justify-content: space-between;
}

.intermediate .btn {
    flex: 1;
    text-align: center;
}

/* ---------- CARDS DE BENEFÍCIOS ---------- */
.benefits {
    padding-block: 1px;
}

.benefits__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.card {
    position: relative;
    background-color: var(--bg-elev);
    border: 1px solid var(--bg-line);
    border-radius: var(--radius);
    padding: 40px 32px;
    margin-bottom: 100px;
    overflow: hidden;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-18px);
    border-color: rgba(255, 87, 34, 0.4);
}

.card:hover::before {
    transform: scaleX(10);
}

.card__index {
    font-size: 48px;
    font-weight: 100;
    color: var(--primary);
    letter-spacing: 1px;
}

.card__title {
    font-size: 1.4rem;
    color: #ffffff;
    font-weight: 700;
    margin: 16px 0 12px;
}

.card__text {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
}

/* ---------- CTA FINAL ---------- */
.cta {
    background-color: rgba(255, 255, 255, 1);
    padding-block: var(--space);
    text-align: center;
}

.cta__inner {
    max-width: 760px;
    margin: 0 auto;
    background-color: var(--bg-elev);
    border: 1px solid var(--bg-line);
    border-radius: calc(var(--radius) + 6px);
    padding: 64px 40px;
    background-image: radial-gradient(600px 300px at 50% 0%, rgba(255, 87, 34, 0.10), transparent 60%);
}

.cta__title {
    font-size: clamp(1.7rem, 3.5vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.cta__subtitle {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.cta .btn-group {
    justify-content: center;
}

/* ---------- FOOTER ---------- */
.footer {
    border-top: 1px solid var(--bg-line);
    padding-block: 40px;
    text-align: center;
}

.footer__text {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}

.footer__text strong {
    color: var(--text);
    font-weight: 700;
}

/* ---------- RESPONSIVO ---------- */
@media (max-width: 860px) {
    .process__grid {
        grid-template-columns: 1fr;
    }

    .step:not(:last-child)::after {
        display: none;
    }

    .compare {
        grid-template-columns: 1fr;
    }

    .compare__col--after {
        border-left: none;
        border-top: 2px solid var(--primary);
    }
}

@media (max-width: 560px) {
    :root {
        --space: 56px;
    }

    .btn {
        width: 100%;
    }

    .cta__inner {
        padding: 44px 24px;
    }
}

/* ---------- Acessibilidade: reduzir movimento ---------- */
@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ---------- Título de seção (utilitário) ---------- */
.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.5px;
    text-align: center;
    margin-bottom: 64px;
}

/* ---------- VIDEO APRESENTAÇÃO: play overlay ---------- */
.video__play {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    border: none;
    background-color: var(--primary);
    color: var(--text);
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: 0 0 0 0 var(--primary-glow);
    animation: pulse 2.4s infinite;
    transition: transform 0.2s ease, opacity 0.25s ease;
    z-index: 2;
}

.video__play:hover {
    transform: scale(1.08);
}

.video__play svg {
    margin-left: 4px;
}

.video__play.is-hidden {
    opacity: 0;
    pointer-events: none;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 var(--primary-glow);
    }

    70% {
        box-shadow: 0 0 0 22px rgba(255, 87, 34, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 87, 34, 0);
    }
}

/* ---------- PROCESSO (A PONTE YANY) ---------- */
.process {
    padding-block: var(--space);
}

.process .section-title {
    margin-bottom: 80px;
    /* ← aumentar espaço */
}

.process__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 60px;
    /* ← espaço do título */
}

.step {
    position: relative;
    background-color: var(--bg-elev);
    border: 1px solid var(--bg-line);
    border-radius: var(--radius);
    padding: 40px 32px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.step:hover {
    transform: translateY(-12px);
    border-bottom: 6px solid #ff5722;
}

.step__num {
    display: inline-grid;
    place-items: center;
    width: 55px;
    height: 55px;
    border-radius: 8px;
    background-color: var(--primary);
    color: var(--text);
    font-weight: 800;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.step__title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fbfbfb
}

.step__text {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
}

/* Conector entre etapas (desktop) */
.step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 64px;
    right: -14px;
    width: 28px;
    height: 2px;
    background: var(--primary);
}

/* ██ CUSTO DA Vale a penas ter o Catálogo Yany? */
.cost {
    padding-block: var(--space);
}

.cost__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 48px;
}

.cost__image {
    aspect-ratio: 1 / 1;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.cost__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cost__cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cost__card {
    background-color: var(--bg-elev);
    border: 1px solid var(--bg-line);
    border-radius: var(--radius);
    padding: 32px;
    transition: all 0.3s ease;
}

.cost__card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.15);
}

.cost__card-title {
    font-size: 1.5rem !important;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cost__card-title--without {
    color: #ff0000;
}

.cost__card-title--with {
    color: #3ce998;
}

.cost__icon {
    font-weight: 900;
    font-size: 1.3rem;
}

.cost__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cost__list li {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1.5;
}

/* Responsivo */
@media (max-width: 860px) {
    .cost__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ---------- FAQ (Accordion CSS-only) ---------- */
.faq {
    padding-block: var(--space);
}

.faq__list {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 14px;
}

.faq__item {
    background-color: var(--bg-elev);
    border: 1px solid var(--bg-line);
    border-radius: var(--radius);
    padding: 0 24px;
    transition: border-color 0.25s ease;
}

.faq__item[open] {
    border-color: rgba(255, 87, 34, 0.4);
}

.faq__q {
    list-style: none;
    cursor: pointer;
    padding: 22px 0;
    font-size: 1.1rem;
    font-weight: 400;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    color: var(--text);
    /* ← adicionar */
}

.faq__q::-webkit-details-marker {
    display: none;
}

.faq__q::after {
    content: "+";
    color: var(--primary);
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
    transition: transform 0.25s ease;
}

.faq__item[open] .faq__q::after {
    transform: rotate(45deg);
}

.faq__a {
    padding: 0 0 22px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
    line-height: 1.55;
}

/* =========================
-PAGINA 2 CSS COMPLETO --
========================-------- */

html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* GLOBAL — pontos atrás de tudo */
body {
    font-family: var(--font-family-base);
    color: #212529;
    overflow-x: hidden;
    background-color: var(--color-background-gelo);
    background-image: radial-gradient(rgba(17, 50, 36, .14) 1.4px, transparent 1.4px);
    background-size: 22px 22px;
}

.wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- DOT GRID BACKGROUND ---------- */
.dotgrid {
    background-color: #fff;
    background-image: radial-gradient(rgba(17, 50, 36, .14) 1.4px, transparent 1.4px);
    background-size: 22px 22px;
}

/* ---------- HERO ---------- */
.hero {
    background: transparent;
    color: #fff;
    text-align: center;
    padding: 180px 24px 140px;
    position: relative;
    overflow: visible;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(107deg, #0B1E1E 0%, #103A38 38%, #2C5C7A 75%, #6E7FC2 100%);
    border-radius: 0;
    -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, #000 45%);
    mask-image: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, #000 25%);
}

/* ██ HERO · IMAGEM LATERAL FLUTUANTE */
.hero-img-float {
    position: absolute;
    top: 40%;
    /* centro vertical */
    right: 11%;
    /* distância da borda direita */
    transform: translateY(-50%);
    width: 25%;
    /* largura da imagem */
    max-width: 460px;
    height: auto;
    object-fit: contain;
    opacity: 0.92;
    /* 0–1: transparência */
    z-index: -1;
    pointer-events: none;
    animation: hero-img-float 5s ease-in-out infinite;
}

@keyframes hero-img-float {
    0% {
        transform: translateY(calc(-50% + 0px));
    }

    50% {
        transform: translateY(calc(-50% - 14px));
    }

    /* amplitude do float */
    100% {
        transform: translateY(calc(-50% + 0px));
    }
}

@media (max-width: 860px) {
    .hero-img-float {
        display: none;
    }
}

.hero h1 {
    font-size: 33px;
    font-weight: 800;
    line-height: 1.25;
    max-width: 620px;
    margin: 0 auto 22px;
}

.hero h1 .light {
    font-weight: 700;
}

.hero p {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.6;
    max-width: 520px;
    margin: 0 auto 30px;
    opacity: .92;
}

.hero-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 46px;
}

.btn {
    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .3px;
    padding: 13px 22px;
    border-radius: 6px;
    cursor: pointer;
    border: none;
    transition: background .2s ease, transform .2s ease;
}

.btn-solid {
    background: var(--primary);
    color: #fff;
    animation: neon-pulse-orange 1.1s ease-in-out infinite;
}

.btn-solid:hover {
    transform: translateY(-2px);

}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .55);
    animation: neon-pulse-green 1.9s ease-in-out infinite;

}

.btn-outline:hover {
    background: rgba(255, 255, 255, .1);
    border-color: var(--color-secondary);
    transform: translateY(-2px);

}

@keyframes neon-pulse-orange {

    0%,
    100% {
        box-shadow: 0 0 6px var(--primary), 0 0 12px var(--primary-glow);
    }

    50% {
        box-shadow: 0 0 12px var(--primary), 0 0 26px var(--primary-glow), 0 0 50px var(--primary-glow);
    }
}

@keyframes neon-pulse-green {

    0%,
    100% {
        box-shadow: 0 0 6px var(--color-secondary), 0 0 10px rgba(66, 223, 182, .35);
    }

    50% {
        box-shadow: 0 0 12px var(--color-secondary), 0 0 16px rgba(66, 223, 182, .6), 0 0 40px rgba(66, 223, 182, .1);
    }
}

@media (max-width: 768px) {

    .hero {
        color: #fff;
        text-align: center;
        padding: 120px 24px 140px;
    }

    .hero-btns {
        display: flex;
        gap: 40px;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 30px;
    }

    .btn {
        font-size: 17px;
        font-weight: 500;
        border-radius: 8px;
        padding: 13px 10px 20px 10px;
    }
}

/* problem block inside hero bottom */
.problem-title {
    font-size: 23px;
    font-weight: 600;
    margin: 8px 34px 120px;
    line-height: 1.1;
}

@media (max-width: 768px) {
    .problem-title {
        font-size: 22px;
        line-height: 1.2;
        margin: 8px 16px 120px;
    }
}

.problem-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    max-width: 760px;
    margin: -80px auto;
    position: relative;
    z-index: 10;

}

.pcard {
    background: var(--color-badge-bg);
    border-radius: 12px;
    padding: 32px;
    text-align: left;
    position: relative;
    overflow: hidden;
    pointer-events: none;
    border-radius: 12px;
    border: 2px solid var(--color-secondary);
    box-shadow:
        inset 0 0 8px var(--color-secondary),
        inset 0 0 16px rgba(66, 223, 182, .1);

}


.pcard::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url('imagens/Imgem_de_banner_hero_YANY.png');
    background-repeat: no-repeat;
    background-position: top 10px right 0px;
    background-size: 40%;
    opacity: 0.5;
}

.pcard h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.25;
}

.pcard p {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.55;
    opacity: .85;
    margin: 0;
}

/* ---------- VIDEO ---------- */
/* ██ VIDEO · SEÇÃO */
.video-sec {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    min-height: 40vh;
    padding: 60px 24px;
    /* ← espaço interno da seção */
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 1;
}

/* ██ VIDEO · CAPTION (texto abaixo do frame) */
.video-caption {
    font-size: 16px;
    /* ← tamanho do texto */
    font-weight: 700;
    /* ← peso */
    margin-top: 20px;
    /* ← espaço entre frame e texto */
    color: var(--bg);
    text-align: center;
}

@media (max-width: 768px) {
    .video-caption {
        font-size: 14px;
        margin-top: 14px;
    }
}


/* ██ VIDEO · WRAPPER COM BORDA ANIMADA */
.vp-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    animation: border-glow 2.5s ease-in-out infinite;
    box-shadow:
        0 0 0 2px #2ebc94,
        0 0 18px rgba(46, 188, 148, 0.5),
        0 0 40px rgba(46, 188, 148, 0.2);
}

@keyframes border-glow {

    0%,
    100% {
        box-shadow:
            0 0 0 2px #2ebc94,
            0 0 18px rgba(46, 188, 148, 0.5),
            0 0 40px rgba(46, 188, 148, 0.2);
    }

    50% {
        box-shadow:
            0 0 0 3px #42dfb6,
            0 0 30px rgba(66, 223, 182, 0.8),
            0 0 70px rgba(66, 223, 182, 0.35);
    }
}

.vp-wrapper video {
    display: block;
    width: 100%;
}

/* ██ VIDEO · OVERLAY */
.vp-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: transparent;
    transition: opacity 0.25s ease;
}

.vp-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

/* ██ VIDEO · BOTÃO PLAY */
.vp-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    animation: play-pulse 1.6s ease-in-out infinite;
}

@keyframes play-pulse {

    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 8px rgba(255, 87, 34, 0.6));
    }

    50% {
        transform: scale(1.12);
        filter: drop-shadow(0 0 22px rgba(255, 87, 34, 1));
    }
}

.vp-btn svg {
    width: 72px;
    /* ← tamanho do ícone play */
    height: 72px;
    transition: transform 0.2s ease;
}

.vp-btn:hover svg {
    transform: scale(1.1);
}

/* ██ VIDEO · REPLAY */
.vp-btn--replay span {
    color: #fff;
    font-family: var(--font-family-base);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
    margin-top: 8px;
    display: block;
}

.video-sec h2 {
    font-size: 16px;
    font-weight: 700;
    color: var(--bg);
    margin-bottom: 2px;
}

/* ██ VIDEO · PLAYER CUSTOMIZADO */
.video-sec {
    padding: 60px 24px;
    text-align: center;
}

/* ██ VIDEO · CAPTION (texto abaixo do frame) */
.video-caption {
    font-size: 26px !important;
    /* ← tamanho do texto */
    font-weight: 700 !important;
    /* ← peso */
    margin-top: 20px !important;
    /* ← espaço entre frame e texto */
    color: var(--bg) !important;
    /* ← cor */
    text-align: center !important;
}

@media (max-width: 768px) {
    .video-caption {
        font-size: 12px !important;
        margin-top: 14px !important;
    }
}

/* ██ VIDEO · FRAME */
.video-frame {
    width: 100%;
    max-width: 800px;
    /* ← largura máxima */
    aspect-ratio: 16/9;
    margin: 0 auto;
    border-radius: 6px;
}

@media (max-width: 768px) {
    .video-frame {
        max-width: 100%;
        aspect-ratio: 16/9;
        /* ← volta 16/9, o 1/1 cortava */
    }

    .vp-wrapper {
        border-radius: 8px;
    }

    .video-sec {
        padding: 30px 0;
        /* ← remove padding lateral */
    }
}

/* ██ VIDEO · WRAPPER COM BORDA ANIMADA */
.vp-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    animation: border-glow 2.5s ease-in-out infinite;
    box-shadow:
        0 0 0 2px #2ebc94,
        0 0 18px rgba(46, 188, 148, 0.5),
        0 0 40px rgba(46, 188, 148, 0.2);
}

@keyframes border-glow {

    0%,
    100% {
        box-shadow:
            0 0 0 2px #2ebc94,
            0 0 18px rgba(46, 188, 148, 0.5),
            0 0 40px rgba(46, 188, 148, 0.2);
    }

    50% {
        box-shadow:
            0 0 0 3px #42dfb6,
            0 0 30px rgba(66, 223, 182, 0.8),
            0 0 70px rgba(66, 223, 182, 0.35);
    }
}

.vp-wrapper video {
    display: block;
    width: 100%;
}

/* ██ VIDEO · OVERLAY */
.vp-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: transparent;
    transition: opacity 0.25s ease;
}

.vp-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

/* ██ VIDEO · BOTÃO PLAY */
.vp-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    animation: play-pulse 1.6s ease-in-out infinite;
}

@keyframes play-pulse {

    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 8px rgba(255, 87, 34, 0.6));
    }

    50% {
        transform: scale(1.12);
        filter: drop-shadow(0 0 22px rgba(255, 87, 34, 1));
    }
}

.vp-btn svg {
    width: 72px;
    /* ← tamanho do ícone play */
    height: 72px;
    transition: transform 0.2s ease;
}

.vp-btn:hover svg {
    transform: scale(1.1);
}

/* ██ VIDEO · REPLAY */
.vp-btn--replay span {
    color: #fff;
    font-family: var(--font-family-base);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
    margin-top: 8px;
    display: block;
}


/* ---------- SOLUTION ---------- */
.solution {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    /* full-bleed: escapa do container centralizado */
    min-height: 40vh;
    padding: 20px 4px;
    background: transparent;
    /* mostra os pontos do body */
    display: flex;
    flex-direction: column;
    align-items: center;
    /* centro horizontal */
    justify-content: center;
    /* centro vertical */
    text-align: center;
    z-index: 1;
}


.solution h2 {
    font-size: 34px;
    color: #FFFFFF !important;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 36px;
    color: var(--bg);
}

.sol-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.scard {
    background: var(--color-badge-bg);
    color: #fff;
    border-radius: 14px;
    padding: 22px 18px;
    text-align: left;
}

.scard.highlight {
    border: 3px solid #8B5CF6;
    box-shadow: 0 0 18px rgba(139, 92, 246, .55);
}

.scard .ico {
    width: 36px;
    height: 36px;
    margin-bottom: 14px;
    display: block;
    filter: brightness(0) invert(1);
}

.scard h3 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
}

.scard p {
    font-size: 11.5px;
    font-weight: 400;
    line-height: 1.55;
    opacity: .85;
    margin: 0;
}

@media (max-width: 768px) {

    .solution h2 {
        font-size: 28px;
        font-weight: 800;
        line-height: 1;

    }

    .scard {
        background: var(--color-badge-bg);
        color: #fff;
        border-radius: 14px;
        padding: 5px 40px 30px 30px;
        text-align: left;
    }

    .scard h3 {
        font-size: 22px;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .scard .ico {
        width: 48px;
        height: 48px;
        margin-bottom: 8px;
    }

    .scard p {
        font-size: 16px;
        font-weight: 400;
        line-height: 1.2;
    }

}

/* ---------- TIMELINE ---------- */
.timeline {
    background: var(--bg-elev);
    color: #fff;
    text-align: center;
    padding: 60px 24px;
}

.timeline h2 {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 18px;
}

.timeline .sub {
    font-size: 14px;
    font-weight: 500;
    max-width: 480px;
    margin: 0 auto 46px;
    opacity: .9;
}

.chevrons {
    display: flex;
    justify-content: center;
    max-width: 920px;
    margin: 0 auto;
}

.chev {
    position: relative;
    flex: 1;
    color: #fff;
    padding: 26px 30px 26px 46px;
    text-align: left;
    clip-path: polygon(0 0, calc(100% - 26px) 0, 100% 50%, calc(100% - 26px) 100%, 0 100%, 26px 50%);
    margin-left: -22px;
    min-height: 118px;
}

.chev:first-child {
    margin-left: 0;
    clip-path: polygon(0 0, calc(100% - 26px) 0, 100% 50%, calc(100% - 26px) 100%, 0 100%);
}

.chev h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.chev p {
    font-size: 11.5px;
    font-weight: 400;
    line-height: 1.5;
    opacity: .92;
    margin: 0;
}

.chev-1 {
    background: var(--color-accent);
}

.chev-2 {
    background: #1F6B63;
}

.chev-3 {
    background: #0F4D55;
}

/* ---------- FAQ ---------- */
.faq {
    padding: 60px 24px;
    text-align: center;
}

.faq h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--bg);
    margin-bottom: 38px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.fcard {
    background: #dff3ee;
    border: 1px solid #b6efe6;
    border-radius: 8px;
    padding: 16px;
    text-align: left;
    color: #0B3B36;
}

.fcard h3 {
    font-size: 12.5px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 10px;
}

.fcard .lbl {
    font-size: 10px;
    font-weight: 700;
    margin-bottom: 3px;
}

.fcard p {
    font-size: 10px;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
    color: #1a4f4a;
}

/* ---------- FINAL CTA ---------- */
.cta {
    background-color: var(--bg-elev);
    color: #fff;
    padding: 70px 70px;
    position: relative;
    overflow: hidden;
    text-align: left;
}

.cta::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url('imagens/Imgem_de_banner_hero_YANY.png');
    background-repeat: no-repeat;
    background-position: right center;
    /* canto que você quer destacar */
    background-size: 40%;
    /* MENOR — % da largura da seção */
    opacity: 0.25;
    /* MAIS TRANSPARENTE */
}

.cta-inner {
    position: relative;
    z-index: 1;
    /* conteúdo acima do fundo */
    max-width: var(--maxw);
    margin: 0 auto;
}

.cta h2 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.25;
    max-width: 520px;
    margin-bottom: 18px;
}

.cta p {
    font-size: 14px;
    font-weight: 500;
    opacity: .9;
    margin-bottom: 32px;
}

.cta-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-orange {
    background: var(--primary);
    color: #fff;
}

.btn-orange:hover {
    background: #2d1209;
}

.btn-greenline {
    background: transparent;
    color: #fff;
    border: 1px solid var(--color-secondary);
}

.btn-greenline:hover {
    background: rgba(66, 223, 182, .12);
}

/* decorative dot arrow */
.cta-arrow {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 340px;
    height: 340px;
    z-index: 1;
    opacity: .9;
}

/* ---------- RESPONSIVE ---------- */
@media(max-width:860px) {

    .problem-cards,
    .sol-cards,
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .chevrons {
        flex-direction: column;
    }

    .chev,
    .chev:first-child {
        clip-path: none;
        margin-left: 0;
        border-radius: 8px;
        margin-bottom: 8px;
        min-height: auto;
        padding: 20px;
    }

    .cta-arrow {
        display: none;
    }
}

@media(max-width:520px) {

    .problem-cards,
    .sol-cards,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 24px;
    }

    .cta h2 {
        font-size: 24px;
    }
}