/* ========================================
   VARIÁVEIS CSS – Compartilhadas com seleção de homenagens
======================================== */
:root {
    --homenagens-bg-escuro: #121212;
    --homenagens-bg-medio: #1a1a1a;
    --homenagens-bg-card: #1f1f1f;
    --homenagens-vermelho: #b31217;
    --homenagens-dourado: #cfa97f;
    --homenagens-rose: #a85c6f;
    --homenagens-texto-claro: #f5f5f5;
    --homenagens-texto-medio: #b8b8b8;
    --homenagens-texto-escuro: #8a8a8a;
    --homenagens-border-radius: 20px;
    --homenagens-border-radius-sm: 12px;
    --homenagens-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --homenagens-shadow-sm: 0 2px 8px rgba(179, 18, 23, 0.1);
    --homenagens-shadow-md: 0 4px 16px rgba(179, 18, 23, 0.15);
    --homenagens-shadow-lg: 0 8px 32px rgba(179, 18, 23, 0.25);
    --homenagens-font-titulo: 'Playfair Display', Georgia, serif;
    --homenagens-font-texto: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}


/* =========================
   PADRÃO GLOBAL DE TÍTULOS E SUBTÍTULOS
   ========================= */

/* Título de seção (Hero, Benefícios, Demo, 3 Passos, etc.) */
.he-section-title {
    font-family: "Playfair Display", "Times New Roman", serif;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1.2;
    text-align: center;
    color: #f8e6d8;
    margin: 0 0 18px;
    font-size: clamp(2.1rem, 3.4vw, 2.6rem);
}

/* Versão maior para a HERO (título principal da página) */
.he-section-title--hero {
    font-size: clamp(2.3rem, 4.2vw, 3.1rem);
    max-width: 22ch;
    margin: 0 auto 18px;
}

/* Subtítulo padrão das seções */
.he-section-subtitle {
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 0.98rem;
    line-height: 1.7;
    color: #f1e8dc;
    max-width: 520px;
    margin: 0 auto 28px;
    text-align: center;
}

/* Ajuste leve no mobile */
@media (max-width: 600px) {
    .he-section-title {
        font-size: clamp(1.7rem, 6vw, 2.1rem);
        margin-bottom: 16px;
    }

    .he-section-title--hero {
        font-size: clamp(2rem, 7vw, 2.5rem);
        margin-bottom: 18px;
    }

    .he-section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 26px;
    }
}



/* Títulos de seções da home (exceto a Hero) */
.he-benefits__title,
.he-demo__title,
.he-how-it-works__title,
.he-plans__title,
.he-when__title,
.he-faq__title,
.he-final-cta__title
{
    font-family: "Playfair Display", "Times New Roman", serif;
    font-weight: 700;
    font-size: clamp(1.9rem, 3vw, 2.3rem);
    line-height: 1.2;
    letter-spacing: 0.5px;
    color: #f5f5f5;
    text-align: center;
    margin: 0 0 12px;
    text-shadow:  none;
}

/* Ajuste fino – título maior só na Hero */
.he-hero__title {
    font-family: "Playfair Display", "Times New Roman", serif;
    font-size: clamp(2.3rem, 4.5vw, 3.1rem);  /* maior que 1.9–2.3rem das seções */
    line-height: 1.1;
    letter-spacing: 1px;
}

/* GRID GENÉRICO PARA REUSO EM QUALQUER SEÇÃO */
.homenagens-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  align-items: stretch;
}




/* ---------------- HERO BASE ---------------- */

/* Fundo geral da página home (mesmo fundo da hero) */
.he-page {
    position: relative;
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(179,18,23,0.3), transparent 55%),
        radial-gradient(circle at bottom right, rgba(208,94,127,0.25), transparent 60%),
        #1e1e1e;
}


.he-hero {
    position: relative;
    padding: 80px 20px 90px;
    /* ❌ removemos o background daqui para o fundo vir da .he-page */
    color: #ffffff;
    overflow: hidden;
}


.he-hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.6;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(255,255,255,0.08), transparent 55%),
        radial-gradient(circle at 80% 80%, rgba(179,18,23,0.4), transparent 60%);
    mix-blend-mode: screen;
}

.he-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 48px;
    align-items: center;
}




/* =========================
   Corações caindo na Hero - MELHORADO
   ========================= */

/* Contêiner geral dos corações */
.he-hero-hearts {
    position: absolute;
    inset: 0;
    z-index: 2; /* fica acima do fundo, abaixo do conteúdo */
    pointer-events: none;
    overflow: hidden;
}

/* Cada coração (outer) – controla a queda (eixo Y) e rotação */
.he-hero-hearts > span {
    position: absolute;
    top: -12vh; /* inicia fora da tela */
    display: block;
    opacity: 0.95;
    will-change: transform, opacity;
    animation: heHeartFall 10s linear infinite; /* queda */
}

/* Cada coração interno (inner) – MUITO MAIOR E MAIS VISÍVEL */
.he-hero-hearts > span > span {
    display: block;
    font-size: 36px; /* ✅ ERA 18px, AGORA 36px (DOBRO DO TAMANHO) */
    color: rgba(179, 18, 23, 0.85); /* ✅ VERMELHO DO TEMA (#b31217) */
    filter: drop-shadow(0 4px 12px rgba(179, 18, 23, 0.6)); /* ✅ SOMBRA MAIS FORTE */
    will-change: transform;
    animation: heHeartSway 3.2s ease-in-out infinite; /* balanço */
    text-shadow: 
        0 0 8px rgba(179, 18, 23, 0.8),
        0 0 15px rgba(208, 94, 127, 0.5); /* ✅ BRILHO EXTRA */
}

/* Posicionamento, duração e atraso diferentes para cada coração */
.he-hero-hearts > span:nth-child(1) { left: 8%;  animation-duration: 11s;  animation-delay: -1s; }
.he-hero-hearts > span:nth-child(2) { left: 22%; animation-duration: 9s;   animation-delay: -4s; }
.he-hero-hearts > span:nth-child(3) { left: 38%; animation-duration: 12s;  animation-delay: -7s; }
.he-hero-hearts > span:nth-child(4) { left: 56%; animation-duration: 10s;  animation-delay: -2s; }
.he-hero-hearts > span:nth-child(5) { left: 74%; animation-duration: 13s;  animation-delay: -6s; }
.he-hero-hearts > span:nth-child(6) { left: 90%; animation-duration: 9.5s; animation-delay: -3s; }

/* Tamanhos e durações de balanço diferentes (inner) - AUMENTADOS */
.he-hero-hearts > span:nth-child(1) > span { font-size: 28px; animation-duration: 3.0s; animation-delay: -0.5s; }
.he-hero-hearts > span:nth-child(2) > span { font-size: 42px; animation-duration: 2.6s; animation-delay: -1.2s; }
.he-hero-hearts > span:nth-child(3) > span { font-size: 32px; animation-duration: 3.4s; animation-delay: -0.8s; }
.he-hero-hearts > span:nth-child(4) > span { font-size: 48px; animation-duration: 2.9s; animation-delay: -1.6s; }
.he-hero-hearts > span:nth-child(5) > span { font-size: 30px; animation-duration: 3.6s; animation-delay: -0.9s; }
.he-hero-hearts > span:nth-child(6) > span { font-size: 38px; animation-duration: 3.1s; animation-delay: -1.1s; }

/* Animação de queda – movimento vertical + rotação + fade */
@keyframes heHeartFall {
    0%   { transform: translate3d(0, 0, 0) rotate(0deg);   opacity: 0; }
    10%  { opacity: 0.95; }
    100% { transform: translate3d(0, 115vh, 0) rotate(35deg); opacity: 0; }
}

/* Animação de balanço lateral */
@keyframes heHeartSway {
    0%, 100% { transform: translate3d(-6px, 0, 0); }
    50%      { transform: translate3d(6px, 0, 0); }
}

/* Ajustes de isolamento e overflow da hero */
.he-hero {
    position: relative;
    overflow: hidden;
    isolation: isolate; /* garante que o z-index funcione corretamente */
}

/* ===================================
   RESPONSIVIDADE DOS CORAÇÕES
=================================== */

/* Tablet - corações um pouco menores */
@media (max-width: 900px) {
    .he-hero-hearts > span > span {
        font-size: 32px; /* Reduz de 36px */
    }

    .he-hero-hearts > span:nth-child(1) > span { font-size: 24px; }
    .he-hero-hearts > span:nth-child(2) > span { font-size: 36px; }
    .he-hero-hearts > span:nth-child(3) > span { font-size: 28px; }
    .he-hero-hearts > span:nth-child(4) > span { font-size: 40px; }
    .he-hero-hearts > span:nth-child(5) > span { font-size: 26px; }
    .he-hero-hearts > span:nth-child(6) > span { font-size: 32px; }
}

/* Mobile - corações ainda menores mas ainda visíveis */
@media (max-width: 600px) {
    .he-hero-hearts > span > span {
        font-size: 28px; /* Reduz de 36px */
    }

    .he-hero-hearts > span:nth-child(1) > span { font-size: 20px; }
    .he-hero-hearts > span:nth-child(2) > span { font-size: 30px; }
    .he-hero-hearts > span:nth-child(3) > span { font-size: 24px; }
    .he-hero-hearts > span:nth-child(4) > span { font-size: 34px; }
    .he-hero-hearts > span:nth-child(5) > span { font-size: 22px; }
    .he-hero-hearts > span:nth-child(6) > span { font-size: 28px; }
}






/* ---------------- HERO BASE ---------------- */

/* Fundo geral da página home (mesmo fundo da hero) */
.he-page {
    position: relative;
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(179,18,23,0.3), transparent 55%),
        radial-gradient(circle at bottom right, rgba(208,94,127,0.25), transparent 60%),
        #1e1e1e;
}

/* Seção Hero */
.he-hero {
    position: relative;
    padding: 60px 20px 90px;
    color: #ffffff;
    overflow: hidden; /* segura os corações e a faixa dentro da seção */
}

/* Fundo luminoso interno da hero */
.he-hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.6;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(255,255,255,0.08), transparent 55%),
        radial-gradient(circle at 80% 80%, rgba(179,18,23,0.4), transparent 60%);
    mix-blend-mode: screen;
}

/* Container interno da hero – 1 coluna, tudo centralizado */
.he-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}




/* -------- LOGO DENTRO DA HERO -------- */

.he-hero-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 4px;      /* pouco espaço do topo */
    margin-bottom: 60px;  /* espaço entre logo e título */
    width: 100%;
}

.he-hero-logo__img {
    max-height: 140px;
    max-width: 500px;
    width: auto;
    height: auto;
    display: block;
    filter: drop-shadow(0 0 8px rgba(0,0,0,0.7));
}

/* ---------------- TEXTO DA HERO ---------------- */

.he-hero__content {
    max-width: 640px;
    margin: 0 auto;
}

.he-hero__eyebrow {
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    color: #cfa97f;
    margin-bottom: 10px;
}

.he-hero__title {
    font-family: "Playfair Display", "Times New Roman", serif;
    font-size: clamp(2.1rem, 3vw, 2.8rem);
    line-height: 1.1;
    letter-spacing: 1px;
    margin: 0 0 28px;
}

.he-hero__subtitle {
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #f1e8dc;
    max-width: 520px;
    margin: 0 auto 38px;
}

.he-hero__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-bottom: 60px;  /* espaço antes da faixa de destaques */
}

/* Botões genéricos da hero */
.he-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 22px;
    border-radius: 999px;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
}

.he-btn--primary {
    background: linear-gradient(135deg, #b31217 0%, #d05e7f 100%);
    color: #ffffff;
    box-shadow: 0 0 4px rgba(0,0,0,0.7);
}

.he-btn--primary:hover {
    transform: scale(1.04) translateY(-1px);
    box-shadow: 0 0 10px rgba(179,18,23,0.5);
    background: linear-gradient(135deg, #c72a32 0%, #e17495 100%);
}

.he-btn--ghost {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: #f5f5f5;
}

.he-btn--ghost:hover {
    background: rgba(255,255,255,0.06);
}

/* -------- FAIXA DE DESTAQUES (ANIMAÇÃO) -------- */

.he-hero__highlights {
    margin-top: 40px;      /* espaço entre botões e faixa */
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;      /* esconde o que sai pelas laterais */
}

.he-hero__highlights-track {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    will-change: transform;
    animation: he-hero-highlights-scroll 26s linear infinite;
}

.he-hero__highlight-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 0.78rem;
    color: #f8e6d8;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.he-hero__highlight-separator {
    font-size: 0.85rem;
    color: #d05e7f;
    opacity: 0.8;
}

/* Animação de rolagem horizontal */
@keyframes he-hero-highlights-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        /* como duplicamos o conteúdo no HTML, -50% faz um loop suave */
        transform: translateX(-50%);
    }
}

/* ---------------- AJUSTES RESPONSIVOS ---------------- */

/* Mobile / tablet */
@media (max-width: 900px) {
    .he-hero {
        padding: 40px 16px 70px;
    }
    .he-hero-logo {
        margin-bottom: 34px; /* 🔴 valor específico para mobile */
    }
    
    .he-hero__title {
        margin-bottom: 42px;  /* 🔴 espaçamento específico só no mobile */
    }

    .he-hero__content {
        max-width: 100%;
    }

    .he-hero__title {
        font-size: clamp(1.9rem, 6vw, 2.3rem);
        margin-bottom: 22px;
    }

    .he-hero__subtitle {
        font-size: 0.94rem;
        margin-bottom: 28px;
    }

    .he-hero__actions {
        margin-bottom: 40px;
    }

    .he-hero__highlights {
        margin-top: 30px;
        margin-bottom: 18px;
    }

    /* Garante que nada estoure pros lados */
    .he-page,
    .he-hero {
        overflow-x: hidden;
    }
}

/* Mobile pequeno – detalhes ainda mais compactos */
@media (max-width: 600px) {
    .he-hero {
        padding-top: 50px;
        padding-bottom: 60px;
    }

    .he-hero-logo__img {
        max-width: 90%;
        max-height: 120px;
    }

    .he-hero__highlight-pill {
        font-size: 0.72rem;
        padding: 5px 11px;
    }
}

/* AJUSTE FINO – HERO NO MOBILE PEQUENO (<= 600px) */
@media (max-width: 600px) {

    /* 1) Espaço entre TOPO e LOGO */
    .he-hero {
        padding-top: 30px;   /* antes 50px – sobe um pouco tudo */
        padding-bottom: 60px;
    }

    .he-hero-logo {
        margin-top: 0;       /* cola mais no topo da hero */
        margin-bottom: 58px; /* MAIS espaço entre logo e título */
    }

    /* 2) Espaço entre TÍTULO e SUBTÍTULO */
    .he-hero__title {
        margin-bottom: 56px; /* antes chegava a 16px no mobile – bem apertado */
    }

    /* 3) Espaço entre SUBTÍTULO e BOTÃO */
    .he-hero__subtitle {
        margin-bottom: 70px; /* antes 24px – dá mais respiro antes do botão */
        
    }
    .he-hero__phrases{
        margin-bottom: 70px !important; /* espaço entre frases e botões */
    }

    .he-hero__actions {
        margin-bottom: 70px; /* espaço até a faixa animada */
    }

    /* 4) Espaço entre BOTÕES e FAIXA DE DESTAQUES */
    .he-hero__highlights {
        margin-top: 30px;
        margin-bottom: 18px;
    }
    
    /* Faixa animada full-width */
    .he-hero__highlights{
      width: 100vw;
      margin-left: calc(50% - 50vw);
      margin-right: calc(50% - 50vw);
      padding: 0 20px;
    }

}








/* =========================
   SEÇÃO BENEFÍCIOS NA HOME
   (usa os estilos da seleção de homenagens)
   ========================= */

.he-section.he-benefits {
    background: transparent; /* deixa aparecer o fundo da .he-hero */
    padding: 100px 20px 80px;
    color: #ffffff;
}

.he-benefits__container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

/* Título / subtítulo reutilizando classes da seleção */
.he-benefits__title {
    /* classe homenagens-main-title já aplica fonte/gradiente; */
    margin-top: 20px;
    margin-bottom: 32px;   /* antes 10px – pode testar 24, 28, 32... */
}

.he-benefits__subtitle {
    margin: 0 auto 44px;
}

/* Grid dos cards – mesmo da seleção */
.he-benefits__grid.homenagens-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 10px;
}

/* CARD – Reuso direto do estilo da seleção */
.homenagens-card {
    position: relative;
    background: linear-gradient(145deg, var(--homenagens-bg-card), var(--homenagens-bg-medio));
    border-radius: var(--homenagens-border-radius);
    padding: 40px 30px;
    box-shadow: var(--homenagens-shadow-sm);
    transition: var(--homenagens-transition);
    overflow: hidden;
    cursor: default; /* aqui é informativo, não um link */
    border: 1px solid rgba(179, 18, 23, 0.1);
}

.homenagens-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--homenagens-vermelho), var(--homenagens-rose), var(--homenagens-dourado));
    opacity: 0;
    transition: var(--homenagens-transition);
}

.homenagens-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--homenagens-shadow-lg);
    border-color: rgba(179, 18, 23, 0.3);
}

.homenagens-card:hover::before {
    opacity: 1;
}

/* Inner do card */
.homenagens-card-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 1;
}

/* Ícones dos cards */
.homenagens-card-icon-wrapper {
    position: relative;
    margin-bottom: 30px;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.homenagens-card-icon {
    font-size: 60px;
    line-height: 1;
    display: block;
    transition: var(--homenagens-transition);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.homenagens-card:hover .homenagens-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.homenagens-card-icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    opacity: 0;
    transition: var(--homenagens-transition);
}

.homenagens-card:hover .homenagens-card-icon-glow {
    opacity: 1;
    animation: pulseGlow 2s infinite;
}

/* Textos dos cards */
.homenagens-card-title {
    font-family: var(--homenagens-font-titulo);
    font-size: clamp(1.4rem, 2.3vw, 1.7rem);
    font-weight: 700;
    color: var(--homenagens-texto-claro);
    margin-bottom: 12px;
    line-height: 1.3;
    letter-spacing: 0.3px;
}

.homenagens-card-description {
    font-family: var(--homenagens-font-texto);
    font-size: 0.95rem;
    color: var(--homenagens-texto-medio);
    line-height: 1.6;
    margin: 0;
}

/* Animações já usadas na seleção */
@keyframes pulseGlow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.3; }
}

/* Responsivo – mesma ideia da seleção */
@media (max-width: 768px) {
    .he-section.he-benefits {
        padding: 70px 16px 56px;
    }

    .homenagens-card {
        padding: 30px 20px;
    }

    .homenagens-card-icon-wrapper {
        width: 80px;
        height: 80px;
    }

    .homenagens-card-icon {
        font-size: 50px;
    }

    .he-benefits__subtitle {
        margin-bottom: 32px;
    }
}




/* =========================
   SEÇÃO DEMO – MOCKUP CELULAR
   ========================= */

.he-demo {
    padding: 60px 16px 80px;
    background: transparent;
    color: #ffffff;
}

.he-demo__container {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 46px;
    align-items: center;
}

/* Texto: centralizado no mobile, alinhado à esquerda no desktop */
.he-demo__content {
    text-align: center;
}

.he-demo__title {
    font-family: "Playfair Display", "Times New Roman", serif;
    font-size: clamp(1.9rem, 2.3vw, 2.2rem);
    letter-spacing: 1px;
    margin: 0 0 12px;
    text-shadow: 0 0 7px rgba(207,169,127,0.45);
}

.he-demo__subtitle {
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 0.98rem;
    line-height: 1.7;
    color: #e2ddd4;
    max-width: 520px;
    margin: 0 auto 10px;
}

.he-demo__note {
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 0.9rem;
    color: #c5b9aa;
    max-width: 520px;
    margin: 0 auto 22px;
}

/* Botão da seção demo */
.he-demo__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: 999px;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.25);
    color: #f5f5f5;
    background: rgba(0,0,0,0.25);
    transition: all 0.25s ease;
}

.he-demo__button:hover {
    background: rgba(255,255,255,0.06);
    box-shadow: 0 0 10px rgba(0,0,0,0.6);
    transform: translateY(-1px);
}

/* Coluna do mockup */
.he-demo__preview {
    display: flex;
    justify-content: center;
}

/* ===================================
   ESTRUTURA DO CELULAR - MELHORADA
=================================== */

.he-demo-phone {
    position: relative;
    width: min(340px, 100%); /* ✅ Largura otimizada - mais estreita */
    height: 680px; /* ✅ Altura proporcional */
    border-radius: 32px;
    padding: 16px 10px 18px;
    background: radial-gradient(circle at top, rgba(255,255,255,0.08), transparent 65%),
                #000000;
    box-shadow: 
        0 25px 60px rgba(0,0,0,0.85),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset; /* ✅ Borda interna sutil */
    display: flex;
    flex-direction: column;
    overflow: visible; /* ✅ Permite o glow aparecer fora */
}

/* ✅ GLOW ANIMADO EXTERNO - Brilho moderno */
.he-demo-phone::before {
    content: "";
    position: absolute;
    inset: -12px; /* ✅ Quanto o brilho sai para fora */
    border-radius: 42px;
    background:
        radial-gradient(circle at 30% 20%, rgba(255,255,255,0.25), transparent 55%),
        radial-gradient(circle at 70% 80%, rgba(208,94,127,0.25), transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(179,18,23,0.20), transparent 62%);
    filter: blur(12px);
    opacity: 0.55;
    pointer-events: none;
    z-index: -1;
    animation: hePhoneGlow 3.8s ease-in-out infinite;
}

/* ✅ BORDA DE LUZ PREMIUM - Linha gradiente animada */
.he-demo-phone::after {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 34px;
    background: linear-gradient(135deg,
        rgba(255,255,255,0.12),
        rgba(208,94,127,0.25),
        rgba(179,18,23,0.20),
        rgba(255,255,255,0.10)
    );
    opacity: 0.4;
    pointer-events: none;
    z-index: -1;
    padding: 2px; /* ✅ Espessura da borda */
    -webkit-mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
    mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

/* ✅ Animação do glow pulsante */
@keyframes hePhoneGlow {
    0%, 100% { 
        opacity: 0.55; 
        filter: blur(12px); 
    }
    50% { 
        opacity: 0.85; 
        filter: blur(9px); 
    }
}

/* ✅ Notch (entalhe superior) mais realista */
.he-demo-phone__top {
    width: 40%;
    height: 8px;
    border-radius: 999px;
    background: rgba(255,255,255,0.18); /* ✅ Mais visível */
    margin: 0 auto 10px;
    position: relative;
    z-index: 10;
}

/* ✅ Moldura interna da tela */
.he-demo-phone__frame {
    flex: 1;
    border-radius: 24px;
    overflow: hidden;
    background: #0a0a0a; /* ✅ Preto mais profundo */
    position: relative;
    z-index: 1;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.03) inset; /* ✅ Borda interna sutil */
}

/* ✅ Iframe da homenagem - Sem achatamento */
.he-demo-phone__iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    transform: scale(1); /* ✅ Garante proporção 1:1 */
    transform-origin: center;
}

/* ✅ Melhorar contraste do conteúdo dentro do mockup */
.he-demo-phone__frame {
    filter: brightness(1.05) contrast(1.1); /* ✅ Conteúdo mais vibrante */
}

.he-demo-phone:hover .he-demo-phone__frame {
    filter: brightness(1.1) contrast(1.15);
}

/* ✅ Footer da seção demo */
.he-demo__footer {
    margin-top: 20px;
    text-align: center;
}

.he-demo__footer .he-demo__button {
    margin-top: 8px;
}

/* ===================================
   RESPONSIVIDADE
=================================== */

/* Tablet e mobile: empilha e centraliza */
@media (max-width: 900px) {
    .he-demo__container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .he-demo__content {
        text-align: center;
    }

    .he-demo__subtitle,
    .he-demo__note {
        margin-left: auto;
        margin-right: auto;
    }

    .he-demo__preview {
        justify-content: center;
    }

    .he-demo-phone {
        width: min(300px, 100%); /* ✅ Menor no mobile */
        height: 600px;
    }
}

/* Desktop: texto alinhado à esquerda */
@media (min-width: 901px) {
    .he-demo__content {
        text-align: left;
    }
}

/* Telas muito pequenas */
@media (max-width: 480px) {
    .he-demo-phone {
        width: min(280px, 100%);
        height: 560px;
    }

    .he-demo-phone__top {
        width: 35%;
        height: 6px;
    }
}






/* =========================
   SEÇÃO: COMO FUNCIONA EM 3 PASSOS
   ========================= */

.he-how-it-works {
    background: transparent; /* continua o fundo da página */
    padding: 80px 20px 80px;
    color: #ffffff;
}

.he-how-it-works__container {
    max-width: 1120px;
    margin: 0 auto;
    text-align: center;
}

/* Título já herda visual de .homenagens-main-title,
   aqui só controlamos margem para essa seção */
.he-how-it-works__title {
    margin-bottom: 10px;
}

/* Subtítulo mais emotivo */
.he-how-it-works__subtitle {
    max-width: 520px;
    margin: 0 auto 42px;
    font-family: var(--homenagens-font-texto);
    font-size: 0.98rem;
    color: var(--homenagens-texto-medio);
}

/* Grid dos passos – reusa o grid dos cards */
.he-how-it-works__steps.homenagens-cards-grid {
    margin-top: 10px;
    margin-bottom: 40px;
}

/* Ajustes finos dos ícones nessa seção */
.he-how-step .homenagens-card-icon-wrapper {
    margin-bottom: 24px;
}

.he-how-it-works__cta {
    display: flex;
    justify-content: center;  /* 🔴 centraliza o botão horizontalmente */
}

.he-how-it-works__btn {
    margin-top: 4px;
    padding: 14px 34px;
    font-size: 1rem;
}


/* Responsivo */
@media (max-width: 768px) {
    .he-how-it-works {
        padding: 60px 16px 70px;
    }

    .he-how-it-works__subtitle {
        margin-bottom: 32px;
    }

    .he-how-it-works__steps.homenagens-cards-grid {
        gap: 22px;
        margin-bottom: 34px;
    }
}




/* =========================
   SEÇÃO: QUANDO / POR QUE CRIAR (TIMELINE)
   ========================= */

.he-when {
  background: transparent;
  padding: 80px 20px 90px;
  color: #fff;
}

.he-when__container {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

/* Título e subtítulo (seguem seu padrão de seções) */
.he-when__title {
  margin: 0 0 18px;
}

.he-when__subtitle {
  max-width: 560px;
  margin: 0 auto 44px;
  font-family: var(--homenagens-font-texto);
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--homenagens-texto-medio);
}

/* Timeline */
.he-when__timeline {
  --line-x: 22px; /* posição da linha/bolinha */
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 820px;
  position: relative;
  text-align: left;
}

/* linha vertical */
.he-when__timeline::before {
  content: "";
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: var(--line-x);
  width: 2px;
  background: linear-gradient(
    to bottom,
    rgba(207,169,127,0.15),
    rgba(208,94,127,0.55),
    rgba(179,18,23,0.45),
    rgba(207,169,127,0.15)
  );
}

/* item */
.he-when__item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: start;
  padding: 18px 0;
  position: relative;
}

/* marcador (bolinha com ícone) */
.he-when__marker {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  margin-left: calc(var(--line-x) - 22px); /* centraliza no eixo */
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 0 16px rgba(179,18,23,0.18);
  font-size: 1.2rem;
}

/* conteúdo */
.he-when__content {
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(0,0,0,0.22); /* “cartão” bem leve, não vira card pesado */
  border: 1px solid rgba(255,255,255,0.06);
}

.he-when__item-title {
  font-family: var(--homenagens-font-titulo);
  font-size: 1.2rem;
  margin: 0 0 6px;
  color: var(--homenagens-texto-claro);
}

.he-when__item-text {
  font-family: var(--homenagens-font-texto);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  color: var(--homenagens-texto-medio);
}

/* CTA */
.he-when__cta {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.he-when__btn {
  padding: 14px 34px;
  font-size: 1rem;
}

/* Mobile */
@media (max-width: 600px) {
  .he-when {
    padding: 64px 16px 72px;
  }

  .he-when__subtitle {
    margin-bottom: 34px;
  }

  .he-when__timeline {
    --line-x: 16px;
  }

  .he-when__item {
    grid-template-columns: 48px 1fr;
    gap: 14px;
  }

  .he-when__marker {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
    margin-left: calc(var(--line-x) - 20px);
  }

  .he-when__content {
    padding: 12px 14px;
  }
}






/* =========================
   SEÇÃO: PLANOS & DURAÇÃO
   ========================= */

.he-plans {
    background: transparent;
    padding: 80px 20px 90px;
    color: #ffffff;
}

.he-plans__container {
    max-width: 1120px;
    margin: 0 auto;
    text-align: center;
}

/* Título e subtítulo da seção de planos */
.he-plans__title {
    margin: 0 0 12px;
}

.he-plans__subtitle {
    max-width: 520px;
    margin: 0 auto 42px;
    font-family: var(--homenagens-font-texto);
    font-size: 0.98rem;
    color: var(--homenagens-texto-medio);
}

/* Grid dos planos – usa a mesma base dos cards */
.he-plans__grid.homenagens-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 26px;
    margin-bottom: 32px;
}

/* Card de plano – reuso do .homenagens-card */
.he-plan {
    position: relative;
}

/* Badge acima do nome do plano */
.he-plan__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 12px;
    border-radius: 999px;
    font-family: var(--homenagens-font-texto);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.he-plan__badge--light {
    background: rgba(0,0,0,0.5);
    color: #f5f5f5;
    border: 1px solid rgba(255,255,255,0.12);
}

.he-plan__badge--highlight {
    background: linear-gradient(135deg, #b31217, #d05e7f);
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow: 0 0 12px rgba(179, 18, 23, 0.6);
}

/* Nome do plano */
.he-plan__name {
    font-family: var(--homenagens-font-titulo);
    font-size: 1.35rem;
    margin: 0 0 8px;
}

/* Preço */
.he-plan__price {
    font-family: var(--homenagens-font-titulo);
    font-size: 1.6rem;
    margin: 0 0 12px;
    color: #f8e6d8;
}

.he-plan__price-small {
    display: block;
    font-family: var(--homenagens-font-texto);
    font-size: 0.8rem;
    color: var(--homenagens-texto-medio);
    margin-top: 2px;
}

/* Lista de benefícios do plano */
.he-plan__features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    font-family: var(--homenagens-font-texto);
    font-size: 0.92rem;
    color: var(--homenagens-texto-medio);
    text-align: left;
}

.he-plan__features li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 6px;
}

.he-plan__features li::before {
    content: "•";
    position: absolute;
    left: 4px;
    top: 0;
    color: #d05e7f;
}

/* CTA dentro do card */
.he-plan__cta {
    display: flex;
    justify-content: center;
}

.he-plan__btn {
    width: 100%;
    max-width: 240px;
}

/* Destaque para o plano vitalício */
.he-plan--highlight {
    border-color: rgba(207, 169, 127, 0.7);
    box-shadow: var(--homenagens-shadow-lg);
    transform: translateY(-4px);
}

.he-plan--highlight .he-plan__name {
    color: #fbead4;
}

/* CTA principal abaixo dos cards */
.he-plans__cta-main {
    display: flex;
    justify-content: center;
    margin-top: 8px;
}

.he-plans__btn-main {
    padding: 13px 40px;
    font-size: 1rem;
}

/* Responsivo */
@media (max-width: 768px) {
    .he-plans {
        padding: 64px 16px 72px;
    }

    .he-plans__subtitle {
        margin-bottom: 32px;
    }

    .he-plans__grid.homenagens-cards-grid {
        gap: 22px;
        margin-bottom: 26px;
    }

    .he-plan--highlight {
        transform: none; /* evita ficar muito "saltado" no mobile */
    }
}





/* =========================
   SEÇÃO: FAQ (ACCORDION)
   ========================= */

.he-faq {
  background: transparent;
  padding: 80px 20px 90px;
  color: #fff;
}

.he-faq__container {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.he-faq__title {
  margin: 0 0 18px;
  text-shadow: none; /* garantia: sem sombra */
}

.he-faq__subtitle {
  max-width: 560px;
  margin: 0 auto 42px;
  font-family: var(--homenagens-font-texto);
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--homenagens-texto-medio);
}

.he-faq__list {
  text-align: left;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(0,0,0,0.18);
}

/* Item */
.he-faq__item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.he-faq__item:last-child {
  border-bottom: 0;
}

/* Pergunta (summary) */
.he-faq__question {
  list-style: none;
  cursor: pointer;
  padding: 18px 18px;
  font-family: var(--homenagens-font-texto);
  font-weight: 600;
  color: var(--homenagens-texto-claro);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.he-faq__question::-webkit-details-marker {
  display: none;
}

.he-faq__question::after {
  content: "+";
  font-size: 1.2rem;
  color: #d05e7f;
  line-height: 1;
  flex: 0 0 auto;
  transition: transform 0.2s ease;
}

.he-faq__item[open] .he-faq__question::after {
  content: "–";
}

/* Resposta */
.he-faq__answer {
  padding: 0 18px 18px;
}

.he-faq__answer p {
  margin: 0;
  font-family: var(--homenagens-font-texto);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--homenagens-texto-medio);
}

/* CTA */
.he-faq__cta {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.he-faq__btn {
  padding: 14px 34px;
  font-size: 1rem;
}

@media (max-width: 600px) {
  .he-faq {
    padding: 64px 16px 72px;
  }
}




/* =========================
   SEÇÃO: ÚLTIMO CTA (FECHAMENTO)
   ========================= */

.he-final-cta {
  background: transparent;
  padding: 90px 20px 110px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* brilho de fundo sutil só nessa área */
.he-final-cta::before {
  content: "";
  position: absolute;
  inset: -80px;
  background:
    radial-gradient(circle at 20% 30%, rgba(179,18,23,0.26), transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(208,94,127,0.20), transparent 60%);
  pointer-events: none;
  filter: blur(2px);
  opacity: 0.9;
}

.he-final-cta__container {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
}

.he-final-cta__panel {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  padding: 34px 26px;
  border-radius: 22px;
  background: rgba(0,0,0,0.26);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 18px 60px rgba(0,0,0,0.55);
}

.he-final-cta__title {
  margin: 0 0 14px;
  text-shadow: none; /* garantia: sem sombra */
}

.he-final-cta__subtitle {
  max-width: 620px;
  margin: 0 auto 22px;
  font-family: var(--homenagens-font-texto);
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--homenagens-texto-medio);
}

.he-final-cta__checks {
  max-width: 640px;
  margin: 0 auto 26px;
  padding: 0;
  list-style: none;
  text-align: left;
  font-family: var(--homenagens-font-texto);
  color: var(--homenagens-texto-claro);
  font-size: 0.95rem;
}

.he-final-cta__checks li {
  position: relative;
  padding-left: 26px;
  margin: 10px 0;
  color: #eae3da;
}

.he-final-cta__checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #d05e7f;
  font-weight: 700;
}

.he-final-cta__actions {
  display: flex;
  justify-content: center;
  margin-top: 6px;
}

.he-final-cta__btn {
  padding: 14px 40px;
  font-size: 1rem;
}

.he-final-cta__note {
  margin: 16px auto 0;
  max-width: 560px;
  font-family: var(--homenagens-font-texto);
  font-size: 0.88rem;
  color: rgba(241,232,220,0.82);
}

@media (max-width: 600px) {
  .he-final-cta {
    padding: 70px 16px 84px;
  }

  .he-final-cta__panel {
    padding: 28px 18px;
  }

  .he-final-cta__checks {
    text-align: left;
  }
}




/* =========================
   RODAPÉ
   ========================= */

.he-footer {
  padding: 64px 20px 34px;
  color: #fff;
  background: rgba(0, 0, 0, 0.22);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.he-footer__container {
  max-width: 1120px;
  margin: 0 auto;
}

.he-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 26px;
  align-items: start;
}

/* ===== Rodapé: topo com logo centralizada ===== */

.he-footer__brand{
  text-align: center;
}

.he-footer__logo-link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}


.he-footer__brand-slogan{
  margin: 12px 0 0;
  font-family: var(--homenagens-font-titulo);
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.3;
  letter-spacing: 0.3px;
  color: #f8e6d8;
  text-shadow: none; /* garante sem sombra no texto */
}

/* Se você quiser que a primeira coluna (marca) fique "mais estreita" visualmente */
.he-footer__tagline{
  display: none; /* caso ainda exista no HTML antigo; pode remover essa regra se não existir */
}

@media (min-width: 901px){
  .he-footer__brand{
    grid-column: 1 / -1;
    margin-bottom: 6px;
  }
}


.he-footer__tagline {
  margin: 0;
  max-width: 42ch;
  font-family: var(--homenagens-font-texto);
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(241,232,220,0.82);
}

.he-footer__col {
  text-align: left;
}

.he-footer__title {
  margin: 0 0 12px;
  font-family: var(--homenagens-font-texto);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(248,230,216,0.92);
  text-shadow: none; /* garante sem sombra */
}

.he-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.he-footer__link {
  display: inline-flex;
  padding: 8px 0;
  font-family: var(--homenagens-font-texto);
  font-size: 0.95rem;
  color: rgba(241,232,220,0.78);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.he-footer__link:hover {
  color: #f8e6d8;
  transform: translateX(2px);
}

.he-footer__bottom {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.he-footer__copy {
  margin: 0;
  font-family: var(--homenagens-font-texto);
  font-size: 0.9rem;
  color: rgba(241,232,220,0.72);
}

.he-footer__actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.he-footer__btn {
  padding: 12px 22px;
  font-size: 0.95rem;
}

/* Responsivo */
@media (max-width: 900px) {
  .he-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .he-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .he-footer {
    padding: 54px 16px 28px;
  }

  .he-footer__grid {
    grid-template-columns: 1fr;
  }

  .he-footer__bottom {
    align-items: flex-start;
  }
}
/* FORÇA tamanho da logo do rodapé (contra overrides do tema/Elementor) */
.he-footer .he-footer__logo-link .he-footer__logo-img{
  width: 200px !important;     /* mude aqui e deve refletir */
  max-width: none !important;
  height: auto !important;
  display: block;
  margin: 0 auto;
}

/* Se o tema estiver aplicando width:100% em todas as imagens */
.he-footer img{
  width: auto;
}








/* =========================
   HERO: faixa animada full-bleed (100vw)
========================= */
.he-hero__highlights{
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin: 40px 0 10px;   /* mantém seu espaçamento */
  padding: 0 20px;       /* mantém o respiro interno */
  overflow: hidden;      /* continua escondendo as bordas do loop */
}

/* opcional: garante que a faixa respeite a largura e não "encolha" */
.he-hero__highlights-track{
  display: flex;         /* em vez de inline-flex, mais previsível */
  width: max-content;
}





/* HERO – FRASES ANIMADAS (sem corte em 2 linhas) */
.he-hero__phrases{
  position: relative;
  margin: 22px auto 0;     /* mais respiro em cima */
  padding: 4px 0;          /* pequeno respiro vertical */
  display: flex;
  justify-content: center;
  align-items: center;

  height: auto;            /* remove o travamento */
  min-height: 3.2em;       /* ~2 linhas (line-height 1.5) */
  overflow: hidden;        /* pode manter se quiser "mascarar" transições */
}

.he-hero__phrase{
  position: absolute;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;

  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #f1e8dc;
  text-align: center;

  padding: 0 14px;
  max-width: min(560px, 92vw);  /* evita quebrar cedo demais */
}

.he-hero__phrase.active{
  opacity: 1;
}


