@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&family=IBM+Plex+Mono:wght@400;500&display=swap');

:root {
    /* Paleta Obsidian Dark (Padrão) */
    --bg-dark: #070210; /* Fundo Roxo Escuro Profundo */
    --bg-dark-strong: rgba(11, 3, 23, 0.7);
    --brand-purple: #6e00b3; /* Roxo Predominante Oficial */
    --brand-purple-light: #a855f7; /* Roxo Lavanda para degradês */
    --brand-purple-glow: rgba(110, 0, 179, 0.2);
    
    /* Paleta Clean Light (Seções Claras) */
    --bg-light: #f8f9fa; /* Fundo off-white macio */
    --bg-card: #ffffff; /* Fundo dos cards brancos */
    --text-dark: #0f172a; /* Slate 900 */
    --text-muted: #475569; /* Slate 600 (Escurecido para melhor legibilidade) */
    --line-light: rgba(110, 0, 179, 0.08);
    
    /* Elementos Globais */
    --white: #ffffff;
    --radius-xl: 2rem;
    --radius-lg: 1.5rem;
    --radius-md: 1rem;
    --radius-sm: 0.75rem;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Fontes */
    --font-display: "Outfit", sans-serif;
    --font-sans: "Plus Jakarta Sans", sans-serif;
    --font-mono: "IBM Plex Mono", monospace;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: auto;
    background: var(--bg-dark);
}

body {
    margin: 0;
    min-width: 320px;
    font-family: var(--font-sans);
    font-size: 16px; /* Base 16px para maior legibilidade */
    color: var(--white);
    background-color: var(--bg-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

a,
button {
    font: inherit;
    color: inherit;
    text-decoration: none;
    transition: all 0.3s var(--ease);
}

button {
    border: 0;
    background: none;
    padding: 0;
    cursor: pointer;
}

img {
    max-width: 100%;
    display: block;
}

/* Barra de Rolagem Suave */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(110, 0, 179, 0.08);
    z-index: 100;
}

#scrollProgressBar {
    display: block;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, var(--brand-purple), var(--brand-purple-light));
    transform-origin: left center;
    transform: scaleX(0);
}

/* --- ESTRUTURA E SEÇÕES --- */
.section-inner {
    width: 100%;
    max-width: 1240px; /* Aumentado um pouco para melhor aproveitamento */
    margin: 0 auto;
    padding: clamp(3rem, 7vw, 6.5rem) 1.5rem;
    position: relative;
    z-index: 2;
}

/* Alternância Rítmica de Temas */
.theme--dark {
    background-color: var(--bg-dark);
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(110, 0, 179, 0.18), transparent 45%),
        radial-gradient(circle at 90% 80%, rgba(110, 0, 179, 0.12), transparent 45%);
    color: var(--white);
    border-bottom: 1px solid rgba(110, 0, 179, 0.1);
}

.theme--light {
    background-color: var(--bg-light);
    color: var(--text-dark);
    border-bottom: 1px solid var(--line-light);
}

/* Títulos das Seções */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem); /* Letras Maiores */
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0;
}

/* Título com Ênfase Especial para a área de Planos */
.plans-title-emphasis {
    color: var(--brand-purple) !important; /* Destaque visual */
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
}

.theme--light .section-title {
    color: var(--text-dark);
}

.theme--dark .section-title {
    color: var(--white);
}

.section-subtitle {
    font-size: clamp(1.1rem, 1.5vw, 1.3rem); /* Letras Maiores */
    line-height: 1.6;
    color: var(--text-muted);
    font-weight: 500;
    margin: 0;
    max-width: 700px;
}

.theme--dark .section-subtitle {
    color: var(--white);
    opacity: 0.75;
}

/* --- CABEÇALHO NO TOPO (SEM BARRA) --- */
.site-header {
    position: absolute; /* Rola junto com a página */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 90;
    padding: 2rem 1.5rem 0 1.5rem;
    pointer-events: none;
}

.site-header__inner {
    max-width: 1100px;
    margin: 0 auto;
    height: auto;
    padding: 0; /* Sem padding extra */
    background: transparent; /* Barra removida */
    border: none; /* Bordas removidas */
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: auto;
}

.header-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-left: auto;
    margin-right: 2rem;
}

.header-link {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.85;
    position: relative;
}

.header-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--brand-purple-light);
    transition: width 0.3s var(--ease);
}

.header-link:hover {
    opacity: 1;
    color: var(--brand-purple-light);
    transform: translateY(-2px);
}

.header-link:hover::after {
    width: 100%;
}

@media (max-width: 820px) {
    .header-links {
        display: none; /* Esconde links no mobile por espaço */
    }
}

.brand img {
    height: 140px; /* Logo 5x maior */
    width: auto;
}

.pill--action {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.4rem;
    border-radius: 99px;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.pill--action svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
}

.pill--action:hover {
    background: var(--white);
    color: var(--bg-dark);
    border-color: var(--white);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
}

/* --- SEÇÃO HERO --- */
.hero-shell {
    padding-top: 10rem;
    padding-bottom: 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* --- HUD FUTURISTA E ANIMAÇÕES DO HERO --- */
.hero-hud-ambient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.hud-ring {
    position: absolute;
    width: 500px;
    height: 500px;
    opacity: 0.65;
    mix-blend-mode: screen;
    will-change: transform;
}

.hud-ring.ring-1 {
    left: -5%;
    top: 10%;
    animation: spinClockwise 35s linear infinite;
    filter: drop-shadow(0 0 20px rgba(203, 141, 253, 0.25));
}

.hud-ring.ring-2 {
    right: -5%;
    top: 25%;
    width: 440px;
    height: 440px;
    animation: spinCounterClockwise 25s linear infinite;
    filter: drop-shadow(0 0 15px rgba(0, 229, 255, 0.2));
}

/* Ambient glow orbs floating slowly */
.hud-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.25;
    mix-blend-mode: screen;
    animation: floatGlow 15s ease-in-out infinite alternate;
    will-change: transform, opacity;
}

.hud-glow.glow-cyan {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.35) 0%, transparent 70%);
    left: 10%;
    top: 15%;
    animation-delay: 0s;
}

.hud-glow.glow-purple {
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(110, 0, 179, 0.4) 0%, transparent 70%);
    right: 10%;
    top: 10%;
    animation-delay: -7s;
}

/* Esconder os anéis gigantes do HUD em telas mobile para evitar bugs de layout e manter excelente leitura */
@media (max-width: 768px) {
    .hud-ring {
        display: none !important;
    }
    .hud-glow {
        filter: blur(80px);
        opacity: 0.15;
    }
}

/* Keyframes de Rotação e Flutuação */
@keyframes spinClockwise {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes spinCounterClockwise {
    0% { transform: rotate(360deg); }
    100% { transform: rotate(0deg); }
}

@keyframes floatGlow {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.2;
    }
    50% {
        transform: translate(40px, -30px) scale(1.1);
        opacity: 0.35;
    }
    100% {
        transform: translate(-30px, 40px) scale(0.95);
        opacity: 0.2;
    }
}

.hero__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.2rem, 7.5vw, 6rem); /* Letras Maiores */
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.04em;
    margin: 0;
    text-transform: uppercase;
}

.hero-title span {
    display: block;
}

.hero-title span.violet-text {
    color: #cb8dfd; /* Violeta brilhante das imagens */
    display: inline-block;
}

.hero-body {
    font-size: clamp(1.15rem, 1.6vw, 1.4rem); /* Letras Maiores e mais legíveis */
    line-height: 1.6;
    color: var(--white);
    opacity: 0.85;
    max-width: 750px;
    margin: 0;
    font-weight: 300;
}

.hero-body strong {
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.hero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 2rem;
}

.btn--primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.25rem;
    border-radius: 99px;
    background: var(--white);
    color: var(--bg-dark);
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 800;
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.15);
}

.btn--primary svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    transition: transform 0.3s var(--ease);
}

.btn--primary:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 45px rgba(255, 255, 255, 0.25);
}

.btn--primary:hover svg {
    transform: translateX(4px);
}

.btn--text {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    opacity: 0.6;
}

.btn--text:hover {
    opacity: 1;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.4);
}

.hero__bottom-label {
    margin-top: 5rem;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--white);
    opacity: 0.45;
}

/* Seta de Pulso Vertical */
.hero__pulse-indicator {
    width: 2px;
    height: 60px;
    background: linear-gradient(180deg, var(--white), transparent);
    margin-top: 1.5rem;
    position: relative;
    overflow: hidden;
    opacity: 0.4;
}

.hero__pulse-indicator::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: var(--brand-purple-light);
    animation: flowDown 2.2s infinite var(--ease);
}

@keyframes flowDown {
    0% { transform: translateY(-100%); }
    80%, 100% { transform: translateY(350%); }
}

/* --- SEÇÃO DIFERENCIAIS (Light) --- */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 2rem;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--line-light);
    border-radius: var(--radius-lg);
    padding: 3.5rem 2.5rem;
    text-align: center;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.02), 0 1px 3px rgba(0, 0, 0, 0.01);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.75rem;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 65px rgba(110, 0, 179, 0.05);
}


.step-card__icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Cores específicas de círculos dos passos */
.step-card--first .step-card__icon-wrapper {
    background-color: #0b0f19; /* Círculo Escuro */
    color: var(--white);
}

.step-card--second .step-card__icon-wrapper,
.step-card--featured .step-card__icon-wrapper {
    background-color: #4f46e5; /* Círculo Azul/Indigo */
    color: var(--white);
}

.step-card--third .step-card__icon-wrapper {
    background-color: #059669; /* Círculo Verde */
    color: var(--white);
}

.step-card__icon-wrapper svg {
    width: 32px;
    height: 32px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
}

.step-card__title {
    font-family: var(--font-display);
    font-size: 1.5rem; /* Maior Legibilidade */
    font-weight: 800;
    color: var(--text-dark);
    margin: 0;
}

.step-card__desc {
    font-size: 1.1rem; /* Maior Legibilidade */
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
}

@media (max-width: 960px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* --- GRADE DE PLANOS DE 1 GIGA (Light) - ENFASE MÁXIMA --- */
.plans-section-wrapper {
    background-color: #f0f4f8; /* Um tom ligeiramente diferente para destacar os planos do fundo branco normal */
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem; /* Espaçamento maior entre cards */
    margin-top: 2rem;
}

.plan-card {
    background: var(--bg-card);
    border: 1px solid rgba(110, 0, 179, 0.1);
    border-radius: var(--radius-xl); /* Mais arredondado */
    padding: 3.5rem 2.5rem 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    box-shadow: 0 25px 65px rgba(0, 0, 0, 0.04); /* Sombra mais imponente */
    transition: all 0.4s var(--ease);
}

.plan-card:hover {
    transform: translateY(-10px) scale(1.02); /* Escala ao passar o mouse para ênfase */
    border-color: var(--brand-purple);
    box-shadow: 0 35px 85px rgba(110, 0, 179, 0.12);
}

/* Destaque para o plano Family */
.plan-card--highlight {
    border-color: var(--brand-purple);
    border-width: 2px;
    box-shadow: 0 25px 60px rgba(110, 0, 179, 0.08);
    transform: scale(1.03); /* Ligeiramente maior por padrão */
}

.plan-card--highlight:hover {
    transform: translateY(-10px) scale(1.05);
}

.plan-card--highlight::after {
    content: "MAIS VENDIDO";
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    background: var(--brand-purple);
    color: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: 99px;
    box-shadow: 0 8px 20px rgba(110, 0, 179, 0.35);
}

.plan-card__eyebrow {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--brand-purple);
    margin-bottom: 0.5rem;
}

.plan-card__title {
    font-family: var(--font-display);
    font-size: 2.5rem; /* Aumentado */
    font-weight: 800;
    color: var(--text-dark);
    margin: 0 0 1.5rem 0;
    letter-spacing: -0.02em;
}

/* Badge de Valor Promocional */
.plan-card__promo-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.25rem;
    border-radius: 99px;
    font-family: var(--font-display);
    font-size: 0.95rem; /* Aumentado */
    font-weight: 700;
    background: rgba(110, 0, 179, 0.06);
    border: 1px solid rgba(110, 0, 179, 0.2);
    color: var(--brand-purple);
    margin-bottom: 2.5rem;
}

.plan-card__promo-badge strong {
    font-size: 1.1rem;
    margin-left: 0.2rem;
}

.plan-card__chips {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 3rem;
    flex-grow: 1;
}

.plan-card__chip {
    width: 100%;
    background: #fdfdfd;
    border: 1px solid #f1f3f7;
    border-radius: var(--radius-sm);
    padding: 1rem 1.25rem; /* Mais gordinho */
    font-family: var(--font-display);
    font-size: 0.95rem; /* Mais legível */
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.005);
}

.plan-card__brands-row {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 1.5rem !important;
    margin-top: 1rem !important;
    margin-bottom: 2rem !important;
    width: 100% !important;
}

.plan-card__brand-badge {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #ffffff !important;
    border: 1px solid #eef1f6 !important;
    border-radius: 16px !important; /* Bordas arredondadas modernas */
    width: 72px !important; /* Tamanho quadradinho impecável */
    height: 72px !important; /* Tamanho quadradinho impecável */
    padding: 10px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02) !important;
    transition: all 0.3s var(--ease) !important;
}

.plan-card__brand-badge:hover {
    transform: translateY(-4px) scale(1.06) !important;
    border-color: rgba(110, 0, 179, 0.25) !important;
    box-shadow: 0 8px 24px rgba(110, 0, 179, 0.08) !important;
}

.chip-brand-logo {
    max-height: 75% !important; /* Mantém o logo perfeitamente contido */
    max-width: 85% !important; /* Evita que o logo toque as bordas */
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
}

.chip-brand-text {
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.chip-brand-text--cdntv {
    color: #2563eb;
}

.chip-brand-text--deezer {
    color: #ef4444;
}

.chip-brand-text--disney {
    color: #0ea5e9;
    text-transform: none;
}

.plan-card--highlight .plan-card__chip:nth-child(3) {
    border-color: rgba(110, 0, 179, 0.2);
    background: rgba(110, 0, 179, 0.04);
}

.plan-card__price-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 2rem;
    text-align: center;
}

.plan-card__price-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.plan-card__price-currency {
    font-family: var(--font-display);
    font-size: 1.2rem; /* Aumentado */
    font-weight: 800;
    color: var(--text-dark);
    margin-right: 0.35rem;
}

.plan-card__price {
    font-family: var(--font-display);
    font-size: 3.5rem; /* Gigante e legível */
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
    letter-spacing: -0.04em;
}

.plan-card__price-period {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-left: 0.35rem;
}

.plan-card__price-cond {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.btn--plan {
    width: 100%;
    height: 60px; /* Maior área de clique */
    border-radius: 99px;
    background: var(--brand-purple); /* Botões roxos para maior CTA */
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 1.1rem; /* Mais legível */
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 15px 35px rgba(110, 0, 179, 0.25);
}

.plan-card:hover .btn--plan {
    background: #5b0094;
    box-shadow: 0 20px 45px rgba(110, 0, 179, 0.35);
    transform: translateY(-2px);
}

.btn--plan svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    transition: transform 0.3s var(--ease);
}

.btn--plan:hover svg {
    transform: translateX(6px);
}

@media (max-width: 1080px) {
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    .plan-card--highlight {
        transform: scale(1);
    }
}

/* --- SEÇÃO VANTAGENS CLIENTE (Dark) --- */
.indicated-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.indicated-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(110, 0, 179, 0.15);
    border-radius: var(--radius-lg);
    padding: 3rem;
    display: flex;
    gap: 1.75rem;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4);
    align-items: flex-start;
}

.indicated-card__icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-sm);
    background: rgba(110, 0, 179, 0.1);
    border: 1px solid rgba(110, 0, 179, 0.2);
    color: #cb8dfd;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.indicated-card__icon svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
}

.indicated-card__copy {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.indicated-card__title {
    font-family: var(--font-display);
    font-size: 1.4rem; /* Maior Legibilidade */
    font-weight: 800;
    color: var(--white);
    margin: 0;
}

.indicated-card__desc {
    font-size: 1.1rem; /* Maior Legibilidade */
    line-height: 1.6;
    color: var(--white);
    opacity: 0.8;
    margin: 0;
}

.indicated__cta {
    display: flex;
    justify-content: center;
    margin-top: 5rem;
}

@media (max-width: 820px) {
    .indicated-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .indicated-card {
        padding: 2rem 1.5rem;
    }
}

/* --- SEÇÃO FAQ & AJUDA (Light) --- */
.help-cta-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 5rem;
}

.btn--whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1.1rem 2.5rem;
    border-radius: 99px;
    background: #10b981; /* Verde Whatsapp */
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 800;
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.25);
}

.btn--whatsapp svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.btn--whatsapp:hover {
    background: #059669;
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(16, 185, 129, 0.45);
}

/* Grid de FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.faq-card {
    background: var(--bg-card);
    border: 1px solid var(--line-light);
    border-radius: var(--radius-md);
    padding: 2.25rem;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.02);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    position: relative;
    transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.faq-card:hover {
    border-color: rgba(110, 0, 179, 0.25);
    box-shadow: 0 20px 50px rgba(110, 0, 179, 0.05);
}

.faq-card__header {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.faq-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(110, 0, 179, 0.05);
    border: 1px solid var(--line-light);
    color: var(--brand-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.4s var(--ease), color 0.4s var(--ease);
}

.faq-card:hover .faq-card__icon {
    background: var(--brand-purple);
    color: var(--white);
}

.faq-card__icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
}

.faq-card__title {
    font-family: var(--font-display);
    font-size: 1.1rem; /* Maior Legibilidade */
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.4;
    margin: 0;
}

/* Acordeão (Accordion) */
.faq-card__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease), opacity 0.4s var(--ease), margin-top 0.4s var(--ease);
    opacity: 0;
    font-size: 1.05rem; /* Maior Legibilidade */
    line-height: 1.6;
    color: var(--text-muted);
}

.faq-card.is-active {
    border-color: var(--brand-purple);
    box-shadow: 0 20px 55px rgba(110, 0, 179, 0.08);
}

.faq-card.is-active .faq-card__icon {
    background: var(--brand-purple);
    color: var(--white);
}

.faq-card.is-active .faq-card__body {
    max-height: 300px; /* Altura máxima estendida por causa da fonte maior */
    opacity: 1;
    margin-top: 0.5rem;
}

@media (max-width: 1080px) {
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
    .faq-card {
        padding: 1.75rem;
    }
}

/* --- RODAPÉ EDITORIAL --- */
.footer {
    background-color: #070210;
    border-top: 1px solid rgba(110, 0, 179, 0.15);
    padding: 5rem 0 3rem 0;
    text-align: center;
}

.footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.footer img {
    height: 180px; /* Logo 5x maior no rodapé */
}

.footer-nav {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-nav a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--white);
    opacity: 0.7;
}

.footer-nav a:hover {
    opacity: 1;
    color: #cb8dfd;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1100px;
    margin-top: 4.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--white);
    opacity: 0.35;
}

@media (max-width: 600px) {
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
}

/* --- ESTILO DE VÍDEO DINÂMICO --- */
.video-container-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.video-iframe-container {
    position: relative;
    width: 100%;
    max-width: 880px;
    padding-bottom: 56.25%; /* Proporção 16:9 */
    height: 0;
    border-radius: var(--radius-lg);
    border: 1.5px solid rgba(110, 0, 179, 0.35); /* Brilho neon */
    box-shadow: 
        0 25px 65px rgba(110, 0, 179, 0.15), 
        0 0 45px rgba(0, 0, 0, 0.7);
    overflow: hidden;
    background: #05010b;
}

.video-iframe-container iframe,
.video-iframe-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
}

/* --- VÍDEO DO WIFI 6 FLUTUANTE --- */
.wifi-video-wrapper {
    width: 100%;
    max-width: 280px;
    height: 158px; /* Proporção aproximada de 16:9 */
    border-radius: var(--radius-md);
    margin-top: 1.25rem;
    position: relative;
    display: block;
}

.wifi-video-container {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(110, 0, 179, 0.1);
    background-color: #000000;
    transition: transform 0.5s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.wifi-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

/* Botão de Fechar do PIP */
.wifi-video-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 26px;
    height: 26px;
    background: rgba(7, 2, 16, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border-radius: 50%;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s var(--ease);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.wifi-video-close:hover {
    background: #ef4444;
    border-color: #ef4444;
}

/* Quando estiver flutuando */
.wifi-video-container.is-floating {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 310px;
    height: 174px;
    border-radius: var(--radius-md);
    border: 2px solid var(--brand-purple-light);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(110, 0, 179, 0.35);
    z-index: 9999;
    animation: wifiFloatIn 0.55s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.wifi-video-container.is-floating .wifi-video-close {
    opacity: 1;
    pointer-events: auto;
}

@keyframes wifiFloatIn {
    from {
        transform: translateY(60px) scale(0.92);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* --- WI-FI 6 FULL-SCREEN SCRUB (Estilo Apple AirPods) --- */
.apple-scrub-section {
    position: relative;
    width: 100%;
    height: 400vh; /* Altura 4x maior para permitir rolagem profunda */
    background: #030008;
    margin-top: 4rem;
}

.apple-scrub-sticky {
    position: sticky;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100svh;
    height: 100dvh;
    overflow: hidden;
}

.apple-scrub-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#appleScrubVideo {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cobre a tela inteira */
    opacity: 0.6; /* Baixa opacidade para destacar os textos */
    display: block;
    background: #030008;
}

.apple-scrub-text-container {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    height: 100%;
    pointer-events: none;
}

.scrub-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -30%);
    opacity: 0;
    text-align: center;
    width: 90%;
    max-width: 800px;
    padding: 2rem;
    will-change: opacity, transform;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 5;
    pointer-events: none;
}

.scrub-text-overlay.is-active {
    opacity: 1;
    transform: translate(-50%, -50%);
}

.scrub-text-overlay.is-past {
    opacity: 0;
    transform: translate(-50%, -70%);
}

/* Todos centralizados sem floats alternados */
#scrub-text-1, #scrub-text-2, #scrub-text-3 {
    left: 50%;
}

@media (max-width: 960px) {
    .apple-scrub-section {
        height: 320vh;
    }
    .scrub-text-overlay {
        top: 42%;
        width: calc(100% - 2rem);
        padding: 1.25rem;
    }
    .scrub-text-overlay h2 {
        font-size: 2.4rem !important;
    }
    .scrub-text-overlay p {
        font-size: 1.15rem !important;
    }
}

.scrub-text-overlay h2 {
    font-family: var(--font-display);
    font-size: 3.6rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.65);
}

.scrub-text-overlay p {
    font-size: 1.35rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
    max-width: 680px;
    margin: 0 auto;
}

/* ==========================================================================
   POSTER GRAPHIC CARD STYLES - NEW PREMIUM LOOK (MATCHING USER SCREENSHOT)
   ========================================================================== */

/* Base Graphic Plan Card */
.plan-card--graphic {
    position: relative;
    width: 100%;
    aspect-ratio: 896 / 1240;
    min-height: 520px;
    border-radius: 28px !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    padding: 2.25rem 1.75rem 1.75rem !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15) !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    border: none !important;
    text-align: center !important;
}

.plan-card--graphic:hover {
    transform: translateY(-8px) scale(1.01) !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25) !important;
}

/* Background plates for each card type */
.plan-card--graphic-basic {
    background: radial-gradient(circle at 50% 30%, #e2e8f0 0%, #cbd5e1 100%) !important;
    color: #1e293b !important;
}

.plan-card--graphic-basic::before {
    content: '';
    position: absolute;
    top: 5%;
    right: 5%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.25) 0%, rgba(239, 68, 68, 0) 70%);
    pointer-events: none;
}

.plan-card--graphic-basic::after {
    content: '';
    position: absolute;
    bottom: 30%;
    left: -5%;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.25) 0%, rgba(14, 165, 233, 0) 70%);
    pointer-events: none;
}

.plan-card--graphic-family {
    background: linear-gradient(180deg, #0d5c6b 0%, #032d36 100%) !important;
    color: #ffffff !important;
}

.plan-card--graphic-gamer {
    background: linear-gradient(180deg, #09050d 0%, #150f24 100%) !important;
    border: 3px solid #d4af37 !important; /* Premium Gold Border */
    color: #ffffff !important;
    box-shadow: 0 15px 45px rgba(212, 175, 55, 0.15) !important;
}

/* Character Overlay Container */
.graphic-char {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 48%;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.graphic-char img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transform: scale(1.05);
    transition: transform 0.4s var(--ease);
}

.plan-card--graphic:hover .graphic-char img {
    transform: scale(1.1);
}

/* Dynamic Character Backplates (If no image) */
.graphic-char--basic {
    background:
        radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0) 42%),
        radial-gradient(circle at 50% 100%, rgba(14, 165, 233, 0.2) 0%, rgba(14, 165, 233, 0) 52%),
        linear-gradient(180deg, rgba(30, 41, 59, 0.08) 0%, rgba(30, 41, 59, 0) 100%);
    opacity: 1;
}

.graphic-char--basic::before {
    content: "";
    position: absolute;
    inset: 12% 24% auto;
    height: 155px;
    border-radius: 999px 999px 32px 32px;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.15) 0%, rgba(14, 165, 233, 0.2) 100%);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

.graphic-char--basic::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 10%;
    width: 68%;
    height: 110px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.24) 0%, rgba(14, 165, 233, 0) 72%);
}

.graphic-char--family {
    background: radial-gradient(circle, rgba(14, 165, 233, 0.2) 0%, transparent 80%),
                url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath d='M30,30 L70,70 M70,30 L30,70' stroke='rgba(255,255,255,0.05)' stroke-width='3'/%3E%3C/svg%3E");
    opacity: 0.85;
}

.graphic-char--gamer {
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 80%),
                url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='30' fill='none' stroke='rgba(212,175,55,0.06)' stroke-width='2'/%3E%3C/svg%3E");
    opacity: 0.9;
}

/* Golden Ribbon for Gamer */
.graphic-ribbon {
    position: absolute;
    top: 25px;
    left: -35px;
    width: 150px;
    background: linear-gradient(135deg, #f3e8ff 0%, #d4af37 50%, #aa800a 100%);
    color: #000000;
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1.2;
    padding: 6px 0;
    text-align: center;
    transform: rotate(-45deg);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 5;
    letter-spacing: 0.05em;
}

/* Graphic Content overlaying backgrounds */
.graphic-content {
    position: relative;
    z-index: 2;
    width: 100%;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Typography styles */
.giga-text {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1;
    display: block;
    margin: 0 auto;
}

.plan-card--graphic-basic .giga-text {
    color: #ffffff !important;
    text-shadow: 0px 4px 15px rgba(0, 0, 0, 0.4),
                 0px 0px 30px rgba(0, 0, 0, 0.15) !important;
    -webkit-text-stroke: 1.5px #1e293b;
}

.plan-card--graphic-family .giga-text,
.plan-card--graphic-gamer .giga-text {
    color: #ffffff !important;
    text-shadow: 0 8px 25px rgba(0, 0, 0, 0.5),
                 0 0 40px rgba(14, 165, 233, 0.3) !important;
}

.plus-sign {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: #eab308;
    vertical-align: super;
    margin-left: 2px;
}

.plus-sign-small {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0.5rem;
}

/* Brand specific styling */
.graphic-brands-basic {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
    width: 100%;
}

.hbo-text {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 900;
    color: #ffffff !important;
    line-height: 0.95;
    text-align: right;
    letter-spacing: -0.02em;
    text-shadow: 0px 3px 10px rgba(0,0,0,0.5) !important;
    -webkit-text-stroke: 1px #1e293b;
}

.hbo-text-center {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 900;
    color: #ffffff !important;
    line-height: 0.95;
    text-align: center;
    letter-spacing: -0.02em;
    text-shadow: 0px 4px 15px rgba(0,0,0,0.6) !important;
    margin-bottom: 0.5rem;
}

/* Price Details Layouts */
.price-lockup-basic {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.price-equals {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: #eab308;
    -webkit-text-stroke: 1px #1e293b;
}

.price-details-basic {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1;
}

.price-por {
    font-size: 0.52rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: #1e293b;
    opacity: 0.85;
}

.price-val {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0px 3px 10px rgba(0, 0, 0, 0.45) !important;
    -webkit-text-stroke: 1px #1e293b;
}

.price-big {
    font-size: 2.25rem;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.price-cents {
    font-size: 1.1rem;
    font-weight: 900;
    vertical-align: super;
}

.price-fixo {
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    color: #eab308;
    margin-top: 1px;
    -webkit-text-stroke: 0.5px #1e293b;
}

/* Card 2 Specifics */
.graphic-brands-family {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0.75rem 0;
    width: 100%;
}

.exitlag-text {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    color: #ffffff;
}

.graphic-logo-inline {
    height: 28px !important;
    width: auto !important;
    object-fit: contain;
}

.graphic-logo-disney {
    height: 38px !important; /* Disney logo needs to be slightly larger */
}

.brand-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    font-family: var(--font-display);
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.brand-pill--disney {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.24);
    color: #ffffff;
}

.brand-pill--deezer {
    background: linear-gradient(135deg, #ef4444 0%, #f97316 100%);
    color: #ffffff;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
}

.price-lockup-family {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.price-por-wrapper {
    display: flex;
    flex-direction: column;
    text-align: right;
    line-height: 0.95;
}

.price-por-small {
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.8);
}

.price-asterisk {
    font-size: 1.2rem;
    font-weight: 700;
    vertical-align: super;
    color: rgba(255,255,255,0.7);
}

/* Card 3 Specifics */
.graphic-brands-gamer-top {
    margin-bottom: 0.25rem;
}

.price-lockup-gamer {
    margin-bottom: 0.75rem;
}

.graphic-mesh-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 30px;
    padding: 0.4rem 1rem;
    margin: 0.5rem 0 0.75rem;
    width: fit-content;
}

.mesh-icon {
    width: 14px;
    height: 14px;
    color: #d4af37;
}

.graphic-mesh-info span {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.9);
}

.graphic-gamer-bottom-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
}

.gamer-logo-box {
    background: #000000;
    border: 1.5px solid rgba(212, 175, 55, 0.4);
    border-radius: 8px;
    padding: 0.35rem 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    height: 32px;
}

.gamer-logo-box img {
    height: 16px !important;
    width: auto !important;
}

.deezer-icon {
    filter: brightness(0) invert(1);
}

/* Buttons Graphic Customizations */
.graphic-btn {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 48px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s var(--ease);
    margin-top: auto;
}

.graphic-btn--cyan {
    background: #0ea5e9 !important;
    color: #ffffff !important;
}

.graphic-btn--cyan:hover {
    background: #0284c7 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.3);
}

.graphic-btn--white {
    background: #ffffff !important;
    color: #1e293b !important;
}

.graphic-btn--white:hover {
    background: #f8fafc !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

/* Card Footers */
.graphic-footer {
    display: block;
    font-size: 0.46rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    opacity: 0.55;
    margin-top: 0.5rem;
    text-align: center;
}

.plan-card--graphic-basic .graphic-footer {
    color: #1e293b;
}

.plan-card--graphic-family .graphic-footer {
    color: #ffffff;
}

/* Plan card animated neon glow rings and glass design */
.plan-card--graphic {
    aspect-ratio: 896 / 1240 !important;
    min-height: auto !important;
    height: auto !important;
    border: 2px solid rgba(255, 255, 255, 0.05) !important;
}

/* Glowing animations for the poster cards to capture customer attention */
.plan-card--graphic-basic {
    animation: basicCardGlow 6s ease-in-out infinite;
    border: 2px solid rgba(30, 41, 59, 0.05) !important;
}

.plan-card--graphic-family {
    animation: familyCardGlow 6s ease-in-out infinite;
    animation-delay: -2s;
    border: 2px solid rgba(13, 92, 107, 0.15) !important;
}

.plan-card--graphic-gamer {
    animation: gamerCardGlow 6s ease-in-out infinite;
    animation-delay: -4s;
    border: 2px solid rgba(212, 175, 55, 0.35) !important;
}

@keyframes basicCardGlow {
    0% { box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08) !important; }
    50% { box-shadow: 0 15px 35px rgba(14, 165, 233, 0.18) !important; border-color: rgba(14, 165, 233, 0.2) !important; }
    100% { box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08) !important; }
}

@keyframes familyCardGlow {
    0% { box-shadow: 0 15px 35px rgba(13, 92, 107, 0.15) !important; }
    50% { box-shadow: 0 15px 45px rgba(13, 92, 107, 0.4) !important; border-color: rgba(13, 92, 107, 0.35) !important; }
    100% { box-shadow: 0 15px 35px rgba(13, 92, 107, 0.15) !important; }
}

@keyframes gamerCardGlow {
    0% { box-shadow: 0 15px 45px rgba(212, 175, 55, 0.15) !important; }
    50% { box-shadow: 0 15px 50px rgba(212, 175, 55, 0.45) !important; border-color: rgba(212, 175, 55, 0.6) !important; }
    100% { box-shadow: 0 15px 45px rgba(212, 175, 55, 0.15) !important; }
}

/* Beautiful dynamic list of features/benefits */
.plan-card--graphic .plan-card__chips {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.65rem !important;
    margin-top: 1.75rem !important;
    margin-bottom: 2.25rem !important;
    padding: 0 0.5rem !important;
    width: 100% !important;
    z-index: 3 !important;
    text-align: left !important;
}

.plan-card--graphic .plan-card__chip {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    background: rgba(255, 255, 255, 0.07) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 14px !important;
    padding: 10px 14px !important;
    font-family: var(--font-sans), 'Plus Jakarta Sans', sans-serif !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    color: inherit !important;
    text-align: left !important;
    box-shadow: none !important;
    transition: all 0.3s ease !important;
}

.plan-card--graphic .plan-card__chip:hover {
    background: rgba(255, 255, 255, 0.12) !important;
    transform: translateX(4px);
}

/* Glowing checklist icon */
.plan-card--graphic .plan-card__chip::before {
    content: "✓" !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 16px !important;
    height: 16px !important;
    min-width: 16px !important;
    border-radius: 50% !important;
    background: #10b981 !important;
    color: #ffffff !important;
    font-size: 0.65rem !important;
    font-weight: 900 !important;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.4) !important;
}

/* Specific theme overrides for Light Basic plan list */
.plan-card--graphic-basic .plan-card__chip {
    background: rgba(30, 41, 59, 0.05) !important;
    border: 1px solid rgba(30, 41, 59, 0.08) !important;
    color: #334155 !important;
}

.plan-card--graphic-basic .plan-card__chip:hover {
    background: rgba(30, 41, 59, 0.09) !important;
}

.plan-card--graphic-basic .plan-card__chip::before {
    background: #0ea5e9 !important;
    box-shadow: 0 0 8px rgba(14, 165, 233, 0.4) !important;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .plans-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
    }
}

@media (max-width: 767px) {
    .plans-grid {
        grid-template-columns: 1fr !important;
        max-width: 380px;
        margin: 0 auto;
    }
    .plan-card--graphic {
        aspect-ratio: 896 / 1240 !important;
        min-height: auto !important;
        height: auto !important;
    }
    .giga-text {
        font-size: 3.2rem;
    }
}

/* Custom full-card poster image support (Admin custom arts) */
.graphic-custom-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: 896 / 1240;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.graphic-custom-banner img {
    width: 100%;
    height: 100%;
    aspect-ratio: 896 / 1240;
    object-fit: cover;
    object-position: center;
}

.plan-card--has-custom-banner {
    padding: 0 !important;
    background: transparent !important;
}

.plan-card--has-custom-banner .graphic-bg,
.plan-card--has-custom-banner .graphic-char,
.plan-card--has-custom-banner .graphic-content,
.plan-card--has-custom-banner .graphic-footer,
.plan-card--has-custom-banner .graphic-ribbon {
    display: none !important;
}

/* Invisible overlay click target for custom posters */
.plan-card--has-custom-banner .graphic-btn {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 0 !important;
    z-index: 5 !important;
    margin: 0 !important;
    border-radius: 28px !important;
    cursor: pointer !important;
}

/* --- APP SECTION --- */
.app-section {
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.app-section__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.app-section__image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-section__bg-glow {
    position: absolute;
    width: 90%;
    height: 90%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.35) 0%, rgba(168, 85, 247, 0.15) 50%, transparent 70%);
    filter: blur(40px);
    border-radius: 50%;
    z-index: 0;
}

.app-section__bg-glow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 70%;
    border: 2px solid rgba(14, 165, 233, 0.4);
    border-radius: 50%;
    box-shadow: 0 0 50px rgba(14, 165, 233, 0.6), inset 0 0 30px rgba(14, 165, 233, 0.5);
    animation: pulseRing 4s infinite alternate ease-in-out;
}

@keyframes pulseRing {
    0% { transform: translate(-50%, -50%) scale(0.95); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(1.05); opacity: 1; }
}

.app-mockup-img {
    position: relative;
    z-index: 1;
    width: 140%; /* Tamanho base aumentado para dispensar o scale via CSS */
    max-width: 950px;
    height: auto;
    object-fit: contain;
    max-height: 900px;
    filter: drop-shadow(0 40px 65px rgba(0,0,0,0.7));
}

.app-section__content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.app-section__title {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--color-white);
    letter-spacing: -0.02em;
}

.app-section__subtitle {
    font-size: 1.15rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
}

.app-section__badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(14, 165, 233, 0.15);
    border: 1px solid rgba(14, 165, 233, 0.3);
    color: var(--color-cyan);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    border-radius: 50px;
    margin-bottom: -0.5rem;
    width: fit-content;
}

.app-section__features-list {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    margin: 2rem 0;
    list-style: none;
    padding: 0;
}

.app-feature-line {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.app-feature-line__icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: rgba(14, 165, 233, 0.08);
    border: 1px solid rgba(14, 165, 233, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-cyan);
    box-shadow: 0 0 20px rgba(14, 165, 233, 0.15);
}

.app-feature-line__icon svg {
    width: 26px;
    height: 26px;
}

.app-feature-line__text {
    display: flex;
    flex-direction: column;
}

.app-feature-line__text h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 0.35rem;
    letter-spacing: -0.01em;
}

.app-feature-line__text p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin: 0;
}

.app-section__stores {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.875rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--color-white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.store-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.store-icon {
    width: 30px;
    height: 30px;
}

.store-btn__text {
    display: flex;
    flex-direction: column;
}

.store-btn__small {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.store-btn__large {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1;
}

@media (max-width: 960px) {
    .app-section__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .app-section__badge,
    .app-section__subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .app-feature-line {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .app-section__features-list {
        max-width: 500px;
        margin: 2rem auto;
    }

    .app-section__stores {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .app-section__title {
        font-size: 2.2rem;
    }
    
    .store-btn {
        width: 100%;
        justify-content: center;
    }
}

/* --- SEÇÃO DEPOIMENTOS (GOOGLE REVIEWS DESIGN SYSTEM) --- */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--line-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    margin-top: 50px;
    width: 100%;
}

/* Badge de nova avaliação */
.badge-new-review {
    background: linear-gradient(135deg, #FF007A, #7928CA);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 20px;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 6px rgba(255, 0, 122, 0.3);
}

.testimonial-card {
    grid-column: span 2;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.015);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    right: 15px;
    font-size: 10rem;
    font-family: var(--font-display), serif;
    color: rgba(110, 0, 179, 0.03);
    font-weight: 900;
    pointer-events: none;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(110, 0, 179, 0.06);
    border-color: rgba(110, 0, 179, 0.15);
}

.testimonial-card__header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.testimonial-card__avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.15rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    text-transform: uppercase;
}

/* Cores de avatares estilo Google para dinamizar */
.testimonial-card__avatar--purple {
    background: linear-gradient(135deg, #a855f7, #6b21a8);
}
.testimonial-card__avatar--blue {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}
.testimonial-card__avatar--green {
    background: linear-gradient(135deg, #10b981, #047857);
}
.testimonial-card__avatar--cyan {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.testimonial-card__info {
    display: flex;
    flex-direction: column;
}

.testimonial-card__name {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.testimonial-card__date {
    font-size: 0.8rem;
    color: #767676;
}

.testimonial-card__rating {
    margin-bottom: 15px;
}

.stars-wrapper {
    color: #FFB800; /* Cor Dourada do Google */
    font-size: 1.15rem;
    letter-spacing: 2px;
}

.testimonial-card__text {
    font-size: 0.98rem;
    color: #3c4043;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

/* Alinhamento centralizado para os 2 cards da segunda linha no desktop (esquema 3 + 2) */
.testimonials-grid .testimonial-card:nth-child(4) {
    grid-column: 2 / span 2;
}
.testimonials-grid .testimonial-card:nth-child(5) {
    grid-column: 4 / span 2;
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .testimonial-card,
    .testimonials-grid .testimonial-card:nth-child(4),
    .testimonials-grid .testimonial-card:nth-child(5) {
        grid-column: span 1 !important;
    }
    /* Deixa o 5º card esticado no centro se sobrar no tablet */
    .testimonials-grid .testimonial-card:nth-child(5) {
        grid-column: span 2 !important;
    }
}

@media (max-width: 640px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .testimonial-card,
    .testimonials-grid .testimonial-card:nth-child(4),
    .testimonials-grid .testimonial-card:nth-child(5) {
        grid-column: span 1 !important;
    }
}

/* --- SEÇÃO DE CONTATO --- */
.contact-section {
    padding: 6rem 0;
    position: relative;
    background: #070210;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(110, 0, 179, 0.15) 0%, rgba(110, 0, 179, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.contact-form-container {
    width: 100%;
    max-width: 650px;
    margin: 3rem auto 0;
    background: rgba(15, 8, 25, 0.6);
    border: 1px solid rgba(110, 0, 179, 0.25);
    border-radius: var(--radius-lg);
    padding: 3rem;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    opacity: 0.9;
    letter-spacing: 0.02em;
}

.form-group input {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 1.15rem;
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: all 0.3s var(--ease);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus {
    outline: none;
    border-color: var(--brand-purple);
    background: rgba(110, 0, 179, 0.05);
    box-shadow: 0 0 0 4px rgba(110, 0, 179, 0.15);
}

.btn--form-submit {
    margin-top: 1rem;
    padding: 1.25rem;
    font-size: 1.1rem;
    font-weight: 800;
}

.contact-form-status {
    min-height: 1.45rem;
    margin: -0.25rem 0 0;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.45;
    text-align: center;
    color: rgba(255, 255, 255, 0.82);
}

.contact-form-status.is-success {
    color: #86efac;
}

.contact-form-status.is-error {
    color: #fca5a5;
}

@media (max-width: 600px) {
    .contact-form-container {
        padding: 2rem 1.5rem;
    }
}
