@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Nunito:wght@600;700;800&display=swap');

:root {
    --bg: #1a0a2e;
    --bg-soft: #120722;
    --surface: #2a1a4e;
    --surface-2: #3d2a6e;
    --text: #ffffff;
    --text-soft: #b8a9d4;
    --line: #4a3a7a;
    --gold: #ffd700;
    --gold-strong: #f4bd1f;
    --royal: #8b5cf6;
    --electric: #00dfff;
    --hero-glow: rgba(0, 223, 255, 0.12);
    --hero-glow-2: rgba(139, 92, 246, 0.24);
}

* { box-sizing: border-box; }
html, body { margin: 0; }
body {
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    background:
        radial-gradient(1000px 500px at 75% -10%, var(--hero-glow), transparent 62%),
        radial-gradient(800px 600px at 18% 3%, var(--hero-glow-2), transparent 58%),
        linear-gradient(180deg, #140824 0%, var(--bg) 65%, #130821 100%);
    color: var(--text);
    line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(18, 7, 35, 0.88);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(10px);
}

.header-inner {
    min-height: 56px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px;
}

.brand img {
    width: clamp(92px, 7.4vw, 124px);
    height: auto;
    display: block;
}
.site-nav { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; }
.site-nav a { color: var(--text-soft); font-weight: 700; font-size: 0.82rem; }
.site-nav a:hover { color: #ffffff; }

/* Home: mostra logo do header apenas após passar do banner */
body.home-page .site-header .brand {
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity 220ms ease, transform 220ms ease;
}
body.home-page .site-header.scrolled .brand {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 800;
}
.btn-primary {
    color: #241100;
    background: linear-gradient(180deg, var(--gold), var(--gold-strong));
    padding: 8px 13px;
    font-size: 0.86rem;
    box-shadow: 0 12px 28px rgba(255, 199, 41, 0.35);
    transition: transform 180ms ease, box-shadow 180ms ease;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(255, 199, 41, 0.45);
}

.hero {
    background: transparent;
    padding: 34px 0 40px;
    min-height: calc(100vh - 56px);
    display: flex;
    align-items: flex-start;
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 0;
    pointer-events: none;
    background: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 28px;
    align-items: center;
}
.hero-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.hero-logo {
    width: min(360px, 88%);
    display: block;
    margin-top: -14px;
    margin-bottom: 8px;
    filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.35));
}
.eyebrow {
    margin: 0 0 12px;
    color: #cfc3ee;
    font-weight: 700;
    font-size: 0.84rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.hero-copy h1 {
    margin: 0;
    font-family: "Nunito", system-ui, sans-serif;
    font-weight: 800;
    font-size: clamp(1.76rem, 3.5vw, 3rem);
    line-height: 1.04;
    max-width: 18ch;
    margin-left: 0;
    margin-right: 0;
    text-align: left;
    text-wrap: balance;
}
.hero-text {
    margin: 10px 0 18px;
    color: var(--text-soft);
    max-width: 50ch;
    line-height: 1.45;
    font-size: 0.96rem;
}
.hero-showcase {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 0;
    min-height: 500px;
    padding-top: 12px;
}
.hero-showcase img {
    width: min(37%, 248px);
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 24px 42px rgba(4, 2, 12, 0.5);
    transition: transform 240ms ease, box-shadow 240ms ease, filter 240ms ease;
    position: absolute;
    bottom: 0;
    transform-origin: center bottom;
}
.hero-showcase img:nth-child(1),
.hero-showcase img:nth-child(3) {
    opacity: 0.92;
    filter: saturate(0.96);
}
.hero-showcase img:nth-child(2) {
    box-shadow:
        0 34px 52px rgba(0, 0, 0, 0.62),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    z-index: 3;
}

.hero-showcase img:nth-child(1) {
    left: 3%;
    z-index: 1;
    transform: rotate(-9deg) translateY(22px) scale(0.94);
}

.hero-showcase img:nth-child(2) {
    left: 50%;
    transform: translateX(-50%) translateY(-14px) scale(1.1);
}

.hero-showcase img:nth-child(3) {
    right: 3%;
    z-index: 2;
    transform: rotate(9deg) translateY(22px) scale(0.94);
}

.hero-showcase img:hover {
    filter: saturate(1.1) brightness(1.05);
    box-shadow:
        0 42px 72px rgba(0, 0, 0, 0.66),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        0 0 54px rgba(255, 199, 41, 0.38);
}

.store-row { display: flex; gap: 12px; flex-wrap: wrap; }
.store-row.center { justify-content: center; }
.hero-copy .store-row {
    margin-top: 2px;
}
.store-badge {
    min-width: 160px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 14px;
    background: rgba(8, 8, 13, 0.95);
    padding: 10px 13px;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 180ms ease, border-color 180ms ease;
}
.store-badge:hover {
    transform: translateY(-2px);
    border-color: var(--electric);
}
.store-icon {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.store-icon svg {
    width: 100%;
    height: 100%;
}
.store-icon svg { fill: currentColor; }
.store-copy {
    display: block;
}
.store-badge strong {
    display: block;
    font-size: 0.66rem;
    text-transform: uppercase;
    color: #c8c8c8;
    letter-spacing: 0.05em;
}
.store-badge span { font-size: 1rem; font-weight: 800; }
.store-copy > span {
    font-size: 1rem;
    font-weight: 800;
}
.store-badge {
    width: 198px;
    min-width: 198px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.58);
    background: #09090d;
    padding: 10px 14px;
    gap: 12px;
    justify-content: flex-start;
}
.store-badge .store-icon {
    width: 24px;
    height: 24px;
    color: #fff;
}
.store-badge .store-copy strong {
    font-size: 0.62rem;
    color: #cfd0d7;
    letter-spacing: 0.07em;
}
.store-badge .store-copy > span {
    font-size: 1.02rem;
    color: #ffffff;
    line-height: 1.1;
}
.store-badge--play .store-icon {
    color: #ffffff;
}
.store-badge--apple {
    position: relative;
    overflow: visible;
}
.store-pill {
    position: absolute;
    top: -9px;
    right: -12px;
    border: 1px solid rgba(34, 24, 0, 0.55);
    color: #2a1900;
    background: linear-gradient(180deg, #ffe37a 0%, #ffc92e 100%);
    border-radius: 6px;
    padding: 3px 8px;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1;
    transform: rotate(-11deg);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}
.store-badge.is-soon {
    opacity: 0.9;
    cursor: not-allowed;
}
.store-badge.is-soon:hover {
    transform: none;
    border-color: rgba(255, 255, 255, 0.58);
}

@media (max-height: 820px) and (min-width: 1025px) {
    .hero {
        padding: 24px 0 16px;
    }
    .hero-logo {
        width: min(320px, 82%);
        margin-top: -20px;
    }
    .hero-copy h1 {
        font-size: clamp(1.56rem, 2.8vw, 2.55rem);
    }
    .hero-text {
        margin: 8px 0 14px;
        font-size: 0.92rem;
    }
    .hero-showcase {
        min-height: 440px;
    }
    .hero-showcase img {
        width: min(35%, 210px);
    }
    .store-badge {
        min-width: 148px;
        padding: 9px 11px;
    }
}

.section { padding: 84px 0; }
.section-soft {
    background: linear-gradient(180deg, rgba(41, 24, 77, 0.58) 0%, rgba(26, 10, 46, 0.58) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Separador estilo game entre seções */
main > section + section {
    position: relative;
}

main > section + section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(760px, 92vw);
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        rgba(255, 212, 71, 0) 0%,
        rgba(255, 212, 71, 0.8) 22%,
        rgba(0, 223, 255, 0.95) 50%,
        rgba(255, 212, 71, 0.8) 78%,
        rgba(255, 212, 71, 0) 100%
    );
    box-shadow:
        0 0 16px rgba(255, 212, 71, 0.42),
        0 0 24px rgba(0, 223, 255, 0.24);
    z-index: 2;
}

main > section + section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(820px, 94vw);
    height: 22px;
    background:
        radial-gradient(circle at 8% 50%, rgba(255, 212, 71, 0.95) 0 5px, transparent 6px),
        radial-gradient(circle at 92% 50%, rgba(255, 212, 71, 0.95) 0 5px, transparent 6px);
    opacity: 0.9;
    z-index: 3;
    pointer-events: none;
}

/* Remove o primeiro separador (hero -> próxima seção) */
main > section:first-of-type + section::before,
main > section:first-of-type + section::after {
    display: none;
}

/* Remove o último separador (antes da seção final) */
main > section:last-of-type::before,
main > section:last-of-type::after {
    display: none;
}
.section-head {
    text-align: center;
    margin-bottom: 30px;
}
.section-head h2 {
    margin: 0;
    font-family: "Nunito", system-ui, sans-serif;
    font-weight: 800;
    font-size: clamp(1.8rem, 3.4vw, 2.8rem);
}
.section-head-spotlight h2 {
    font-size: clamp(2.1rem, 4.4vw, 3.5rem);
    line-height: 1.03;
    color: #ffd447;
    text-shadow: 0 8px 26px rgba(255, 199, 41, 0.24);
}
.section-head-benefits h2 {
    color: #ffd447;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}
.benefit-card {
    background: rgba(61, 42, 110, 0.56);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 20px;
    transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}
.benefit-card:hover {
    transform: translateY(-3px);
    border-color: #6f5cb6;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.22);
}
.benefit-card h3 {
    margin: 0 0 8px;
    font-family: "Nunito", system-ui, sans-serif;
    color: #ffffff;
}
.benefit-card p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.5;
}

.goal-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}
.goal-item {
    background: rgba(42, 26, 78, 0.8);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 14px 16px;
    color: #e8def9;
    font-weight: 700;
}

.shop-showcase {
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(180deg, rgba(52, 34, 92, 0.84) 0%, rgba(34, 20, 64, 0.84) 100%);
    padding: 24px 20px 18px;
}

.shop-showcase-head {
    text-align: center;
    margin-bottom: 16px;
}

.shop-showcase-head h2 {
    margin: 0;
    font-family: "Nunito", system-ui, sans-serif;
    font-size: clamp(1.5rem, 2.7vw, 2rem);
}

.shop-showcase-head p {
    margin: 6px 0 0;
    color: #cdbfe9;
}

.shop-items-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.shop-item {
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: linear-gradient(180deg, rgba(22, 13, 43, 0.95) 0%, rgba(14, 9, 28, 0.98) 100%);
    border-radius: 18px;
    padding: 0 10px 10px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 6px;
    min-height: 252px;
    position: relative;
    overflow: hidden;
    transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.shop-item-band {
    display: block;
    height: 5px;
    margin: 0 -10px;
    border-radius: 18px 18px 0 0;
    background: linear-gradient(90deg, #6f56b8 0%, #8b5cf6 100%);
}

.shop-item-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.shop-item-cat,
.shop-item-tier {
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2px 8px;
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 800;
}

.shop-item-cat {
    color: #d9d0ef;
}

.shop-item-tier {
    color: #ffe9a6;
    border-color: rgba(255, 215, 0, 0.45);
    background: rgba(255, 215, 0, 0.08);
}

.shop-item-media {
    margin-top: 4px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    background: radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.08) 0%, rgba(10, 6, 20, 0.2) 70%);
    min-height: 108px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.62);
    box-shadow: 0 16px 26px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 215, 0, 0.2);
    filter: saturate(1.06);
}

.shop-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.shop-item h3 {
    margin: 4px 0 0;
    color: #f7f2ff;
    font-weight: 700;
    font-size: 0.86rem;
    line-height: 1.15;
    font-family: "Nunito", system-ui, sans-serif;
}

.shop-item p {
    margin: 0;
    color: #bfb2db;
    font-size: 0.72rem;
    line-height: 1.34;
    min-height: 40px;
}

.shop-item-meta {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.power-cost {
    color: #ffd447;
    font-weight: 800;
    font-size: 0.74rem;
}

.shop-item-action {
    color: #0f1020;
    background: linear-gradient(180deg, #ffe37a 0%, #ffc92e 100%);
    border-radius: 999px;
    padding: 4px 8px;
    font-size: 0.66rem;
    font-weight: 800;
}

.shop-item.cat-offensive .shop-item-band {
    background: linear-gradient(90deg, #ff6f47 0%, #ff4500 100%);
}

.shop-item.cat-defensive .shop-item-band {
    background: linear-gradient(90deg, #5ad86e 0%, #22c55e 100%);
}

.shop-item.cat-powerup .shop-item-band {
    background: linear-gradient(90deg, #1de4ff 0%, #00b8d9 100%);
}

.shop-item.cat-psy .shop-item-band {
    background: linear-gradient(90deg, #d56bff 0%, #a855f7 100%);
}

.shop-item.tier-epic {
    border-color: rgba(255, 215, 0, 0.38);
}

.shop-item.tier-epic .shop-item-media {
    box-shadow: inset 0 0 0 1px rgba(255, 215, 0, 0.16);
}

.feature-stack {
    display: grid;
    gap: 20px;
    margin-top: 8px;
}

.feature-panel {
    display: grid;
    grid-template-columns: minmax(320px, 1fr) minmax(220px, 0.8fr);
    align-items: center;
    gap: 22px;
    padding: 8px 0;
    max-width: 980px;
    margin: 0 auto;
    justify-content: center;
}

.feature-panel.is-reverse {
    grid-template-columns: minmax(220px, 0.8fr) minmax(320px, 1fr);
}

.feature-panel.is-reverse .feature-copy {
    order: 2;
}

.feature-panel.is-reverse .feature-phone {
    order: 1;
    justify-content: flex-end;
}

.feature-copy h3 {
    margin: 0 0 10px;
    color: #ffd447;
    font-size: clamp(1.3rem, 2.2vw, 1.8rem);
    line-height: 1.14;
    font-family: "Nunito", system-ui, sans-serif;
}

.feature-copy p {
    margin: 0;
    max-width: 44ch;
    color: #d4c9ec;
    line-height: 1.62;
}

.power-rise {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 14px;
    padding: 8px 16px 8px 8px;
    border-radius: 999px;
    background: rgba(255, 212, 71, 0.16);
    border: 1px solid rgba(255, 212, 71, 0.42);
    overflow: visible;
}

.power-rise img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(255, 212, 71, 0.55));
    animation: powerPulse 1.1s ease-in-out infinite;
}

.power-rise-text {
    color: #ffe27d;
    font-size: 1rem;
    letter-spacing: 0.08em;
    font-weight: 900;
    text-transform: uppercase;
    animation: powerTextUp 1.1s ease-in-out infinite;
}

.power-rise-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #ffd447;
    box-shadow: 0 0 8px rgba(255, 212, 71, 0.65);
    opacity: 0;
}

.power-rise-particle.p1 { left: 16px; top: 50%; animation: powerParticleUp 1.1s ease-out infinite; }
.power-rise-particle.p2 { left: 44px; top: 50%; animation: powerParticleUp 1.1s ease-out 180ms infinite; }
.power-rise-particle.p3 { left: 72px; top: 50%; animation: powerParticleUp 1.1s ease-out 360ms infinite; }

.power-rise-number {
    position: absolute;
    right: -14px;
    top: 55%;
    font-size: 0.94rem;
    font-weight: 900;
    color: #ffd447;
    text-shadow: 0 0 12px rgba(255, 212, 71, 0.55);
    opacity: 0;
    pointer-events: none;
}

.power-rise-number.n1 { animation: powerNumberUp 1.6s ease-out infinite; }
.power-rise-number.n2 { animation: powerNumberUp 1.6s ease-out 520ms infinite; }
.power-rise-number.n3 { animation: powerNumberUp 1.6s ease-out 980ms infinite; }

.judge-hammer {
    position: relative;
    width: 122px;
    height: 80px;
    margin: 0 0 12px;
}

.judge-hammer img {
    position: absolute;
    width: 92px;
    height: 92px;
    object-fit: contain;
    left: -6px;
    top: -22px;
    transform-origin: 72% 76%;
    filter: drop-shadow(0 8px 8px rgba(0, 0, 0, 0.35));
    animation: judgeHammerHit 1.55s cubic-bezier(0.25, 0.8, 0.25, 1) infinite;
}

.judge-base {
    position: absolute;
    right: 12px;
    bottom: 11px;
    width: 52px;
    height: 11px;
    border-radius: 999px;
    background: linear-gradient(180deg, #7d5a2d 0%, #5a3d1d 100%);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35);
}

.judge-impact {
    position: absolute;
    right: 22px;
    bottom: 15px;
    width: 12px;
    height: 12px;
    border: 2px solid rgba(255, 212, 71, 0.9);
    border-radius: 999px;
    opacity: 0;
}

.judge-impact.i1 { animation: judgeImpact 1.55s ease-out infinite; }
.judge-impact.i2 { animation: judgeImpact 1.55s ease-out 120ms infinite; }

@keyframes powerPulse {
    0%, 100% { transform: scale(0.96); }
    50% { transform: scale(1.08); }
}

@keyframes powerTextUp {
    0%, 100% { transform: translateY(0); opacity: 0.9; }
    50% { transform: translateY(-2px); opacity: 1; }
}

@keyframes powerParticleUp {
    0% { transform: translateY(8px) scale(0.6); opacity: 0; }
    25% { opacity: 1; }
    100% { transform: translateY(-18px) scale(1); opacity: 0; }
}

@keyframes powerNumberUp {
    0% { transform: translate(0, 10px) scale(0.9); opacity: 0; }
    20% { opacity: 1; }
    100% { transform: translate(18px, -34px) scale(1.06); opacity: 0; }
}

@keyframes judgeHammerHit {
    0%, 58%, 100% { transform: rotate(-24deg) translate(0, 0); }
    70% { transform: rotate(6deg) translate(7px, 9px); }
    76% { transform: rotate(-8deg) translate(2px, 2px); }
    84% { transform: rotate(-18deg) translate(0, 0); }
}

@keyframes judgeImpact {
    0%, 66% { transform: scale(0.35); opacity: 0; }
    72% { transform: scale(0.95); opacity: 1; }
    100% { transform: scale(2.3); opacity: 0; }
}

.feature-phone {
    display: flex;
    justify-content: flex-start;
    position: relative;
}

.feature-phone::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255, 199, 41, 0.42) 0%, rgba(255, 199, 41, 0.08) 60%, transparent 75%);
    border-radius: 999px;
    right: 14%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 0;
}

.feature-phone img {
    width: min(100%, 224px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 24px 44px rgba(0, 0, 0, 0.46);
    position: relative;
    z-index: 1;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}
.testimonial-grid blockquote {
    margin: 0;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(42, 26, 78, 0.72);
    padding: 18px;
    color: #e7dcff;
    line-height: 1.6;
}
.testimonial-grid cite {
    margin-top: 12px;
    display: block;
    color: #8b7ca7;
    font-style: normal;
    font-weight: 700;
}

.cta {
    background: linear-gradient(180deg, #2d1654 0%, #1a0a2e 100%);
    color: #fff;
}
.cta-box {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 22px;
    text-align: center;
    padding: 34px 22px;
}
.cta-box-refined {
    background: radial-gradient(120% 140% at 50% 0%, rgba(139, 92, 246, 0.24) 0%, rgba(26, 10, 46, 0) 60%);
    border-color: rgba(255, 255, 255, 0.24);
    padding: 40px 24px 30px;
}
.cta-kicker {
    margin: 0 0 8px;
    color: #ffd447;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 800;
}
.cta-box h2 {
    margin: 0 0 8px;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-family: "Nunito", system-ui, sans-serif;
}
.cta-box p {
    margin: 0 0 20px;
    color: #e4d8ff;
}
.cta-trust {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}
.cta-trust span {
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 0.78rem;
    color: #f0e9ff;
}

.site-footer {
    background: #0d0518;
    color: #c6badf;
    padding: 26px 0 30px;
}
.footer-logo {
    width: clamp(118px, 11vw, 168px);
}
.footer-refined {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}
.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 14px;
}
.footer-links a {
    color: #d8cfff;
    font-size: 0.9rem;
}
.footer-links a:hover { color: #fff; }
.footer-copy {
    margin: 2px 0 0;
    color: #9f91bd;
    font-size: 0.82rem;
}

/* Páginas internas */
.header-row {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.brand-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
}
.brand-pill img {
    width: clamp(120px, 12vw, 170px);
    height: auto;
    display: block;
}
.main-nav { display: flex; flex-wrap: wrap; gap: 8px; }
.main-nav a { color: #d8cfff; padding: 8px 10px; border-radius: 9px; font-weight: 700; }
.main-nav a:hover, .main-nav a.active { color: #fff; background: rgba(255,255,255,0.08); }
.legal-content {
    border: 1px solid #3d2d5b;
    border-radius: 14px;
    background: rgba(255,255,255,0.03);
    padding: 22px;
}
.tiny { color: #c6badf; line-height: 1.5; }

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero {
        min-height: auto;
        padding: 44px 0 42px;
        display: block;
    }
    .hero-copy h1 {
        max-width: 20ch;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-copy {
        align-items: center;
    }
    .hero-logo,
    .hero-text {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-showcase {
        min-height: 440px;
        margin-top: 8px;
    }
    .store-row { justify-content: center; }
    .benefit-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .goal-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .shop-items-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .testimonial-grid { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
    .header-inner {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 10px 0;
    }
    .site-nav {
        justify-content: flex-start;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 4px;
    }
    .btn-primary { justify-self: flex-start; }
    .feature-panel,
    .feature-panel.is-reverse {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 14px 0;
    }
    .feature-panel.is-reverse .feature-copy,
    .feature-panel.is-reverse .feature-phone {
        order: initial;
    }
    .feature-copy p {
        margin: 0 auto;
    }
    .feature-phone::before {
        right: auto;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

@media (max-width: 620px) {
    .benefit-grid,
    .goal-grid {
        grid-template-columns: 1fr;
    }
    .shop-showcase {
        padding: 18px 12px 12px;
    }
    .shop-items-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }
    .shop-item {
        min-height: 236px;
    }
    .shop-item img {
        width: 72px;
        height: 72px;
    }
    .hero-logo {
        width: min(360px, 100%);
        margin-top: -16px;
    }
    .hero {
        padding: 48px 0 54px;
    }
    .hero-showcase {
        position: static;
        min-height: 0;
        display: flex;
        gap: 8px;
    }
    .hero-showcase img {
        position: static;
        width: min(32%, 132px);
        border-radius: 18px;
        animation: none !important;
        transform: none !important;
    }
    .footer-refined {
        gap: 10px;
    }
    .footer-links {
        gap: 8px 10px;
    }
}
