:root {
    --bg: #05060a;
    --ink: #f4f6fb;
    --muted: #a8adbd;
    --line: rgba(255, 255, 255, 0.09);
    --card: rgba(18, 20, 28, 0.55);
    --card-strong: rgba(22, 24, 34, 0.78);
    --accent: #7fb2ff;
    --accent-2: #b8d0ff;
    --silver: #dfe6f2;
    --radius: 22px;
    --shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.75);
    --tg: #229ed9;
    --maxw: 1120px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: "Sora", system-ui, sans-serif;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

.bg {
    position: fixed;
    inset: 0;
    background: url("assets/fondo_web.png") center top / cover no-repeat;
    z-index: -3;
    transform: scale(1.05);
    animation: bgFloat 26s ease-in-out infinite alternate;
}
@keyframes bgFloat {
    from { transform: scale(1.05) translateY(0); }
    to   { transform: scale(1.12) translateY(-24px); }
}
.bg-overlay {
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(1200px 600px at 50% -5%, rgba(127, 178, 255, 0.14), transparent 60%),
        linear-gradient(180deg, rgba(5, 6, 10, 0.35) 0%, rgba(5, 6, 10, 0.55) 40%, rgba(5, 6, 10, 0.9) 82%, #05060a 100%);
}
.grain {
    position: fixed;
    inset: 0;
    z-index: -1;
    opacity: 0.05;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.shell {
    width: min(100% - 40px, var(--maxw));
    margin: 0 auto;
    padding: 40px 0 120px;
}

.hero {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 40px;
    padding: 64px 4px 30px;
}
.hero-copy { min-width: 0; }
@keyframes spin { to { transform: rotate(360deg); } }

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-2);
}
.kicker-line {
    width: 38px; height: 2px; border-radius: 2px;
    background: linear-gradient(90deg, var(--accent), transparent);
}

.brand {
    font-size: clamp(3rem, 9vw, 5.4rem);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.045em;
    margin-top: 18px;
}
.brand-word {
    position: relative;
    background: linear-gradient(96deg, #ffffff 0%, #cdd9f2 45%, #7fb2ff 100%);
    -webkit-background-clip: text; background-clip: text;
    color: transparent;
}
.brand-word::after {
    content: "";
    position: absolute;
    left: 2px;
    bottom: 0.08em;
    width: 0.62em;
    height: 0.14em;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--accent), transparent);
}

.tagline {
    max-width: 460px;
    margin-top: 22px;
    color: var(--muted);
    font-size: 1.06rem;
}
.tagline em { color: var(--silver); font-style: normal; font-weight: 600; }

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 32px;
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    padding: 14px 26px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    color: #05060a;
    background: linear-gradient(135deg, #a9c9ff, #e6eeff);
    box-shadow: 0 16px 40px -16px rgba(127, 178, 255, 0.9);
    transition: transform 0.22s, box-shadow 0.22s;
}
.btn-primary svg { color: #1b6fd6; transition: transform 0.22s; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 22px 50px -14px rgba(127, 178, 255, 0.95); }
.btn-primary:hover svg { transform: translateX(4px); }

.pulse-dot {
    width: 9px; height: 9px; border-radius: 50%;
    background: #17a34a;
    box-shadow: 0 0 0 0 rgba(23, 163, 74, 0.6);
    animation: pulse 1.8s infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(23, 163, 74, 0.55); }
    70% { box-shadow: 0 0 0 10px rgba(23, 163, 74, 0); }
    100% { box-shadow: 0 0 0 0 rgba(23, 163, 74, 0); }
}

.owner-row {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
    color: var(--ink);
    padding: 6px 8px 6px 6px;
    border-radius: 14px;
    transition: background 0.22s;
}
.owner-row:hover { background: rgba(255, 255, 255, 0.05); }
.owner-mini {
    width: 38px; height: 38px;
    border-radius: 11px;
    object-fit: cover;
    border: 1px solid var(--line);
}
.owner-meta { display: flex; flex-direction: column; line-height: 1.25; }
.owner-handle {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 600;
    font-size: 0.98rem;
}
.verified { color: #3f8eff; }
.owner-role { color: var(--muted); font-size: 0.76rem; }

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 40px;
    max-width: 460px;
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    background: rgba(14, 16, 24, 0.5);
    backdrop-filter: blur(10px);
}
.stat {
    padding: 18px 16px;
    text-align: left;
}
.stat + .stat { border-left: 1px solid var(--line); }
.stat .num {
    display: block;
    font-size: 1.7rem;
    font-weight: 800;
    font-family: "Space Grotesk", sans-serif;
    background: linear-gradient(180deg, #fff, #9fb5da);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat .lbl {
    display: block;
    color: var(--muted);
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.hero-visual {
    display: flex;
    justify-content: center;
    perspective: 1000px;
}
.badge-card {
    position: relative;
    width: 100%;
    max-width: 320px;
    padding: 22px;
    border-radius: 24px;
    background:
        radial-gradient(120% 80% at 20% 0%, rgba(63, 142, 255, 0.22), transparent 55%),
        linear-gradient(165deg, rgba(24, 30, 48, 0.9), rgba(10, 12, 20, 0.92));
    border: 1px solid rgba(127, 178, 255, 0.22);
    box-shadow: 0 40px 90px -34px rgba(20, 70, 170, 0.85), inset 0 1px 0 rgba(255,255,255,0.06);
    backdrop-filter: blur(16px);
    transform: rotate(-2.4deg);
    animation: badgeFloat 7s ease-in-out infinite alternate;
}
@keyframes badgeFloat {
    from { transform: rotate(-2.4deg) translateY(0); }
    to   { transform: rotate(-1deg) translateY(-12px); }
}
.badge-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.live-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: #cfe0ff;
}
.live-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #34e0a1;
    box-shadow: 0 0 0 0 rgba(52, 224, 161, 0.7);
    animation: pulse 1.8s infinite;
}
.badge-id {
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.66rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
}
.badge-logo {
    margin: 22px auto 20px;
    width: 150px; height: 150px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    background: radial-gradient(circle at 50% 35%, rgba(127,178,255,0.28), transparent 70%);
}
.badge-logo img {
    width: 100%; height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 12px 26px rgba(63, 142, 255, 0.5));
}
.badge-bottom {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding-top: 16px;
    border-top: 1px dashed rgba(127, 178, 255, 0.22);
}
.badge-name {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
}
.badge-sub { color: var(--muted); font-size: 0.8rem; }

.section { padding: 60px 8px; }
.section-head { position: relative; text-align: center; max-width: 620px; margin: 0 auto 48px; }
.eyebrow {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 0.72rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 800;
    margin-bottom: 14px;
    padding: 7px 16px;
    border-radius: 999px;
    background: rgba(127, 178, 255, 0.09);
    border: 1px solid rgba(127, 178, 255, 0.28);
    box-shadow: 0 0 24px -6px rgba(127, 178, 255, 0.5);
}
.eyebrow::before {
    content: "";
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 10px 2px rgba(127, 178, 255, 0.9);
    animation: pulse 1.8s infinite;
}
.section-head h2 {
    position: relative;
    display: inline-block;
    font-size: clamp(1.9rem, 5.4vw, 2.9rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    background: linear-gradient(96deg, #ffffff 0%, #cfdcf7 42%, #7fb2ff 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
    text-shadow: 0 0 40px rgba(127, 178, 255, 0.18);
}
.section-head h2::after {
    content: "";
    display: block;
    width: 68px; height: 4px;
    margin: 16px auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    box-shadow: 0 0 18px rgba(127, 178, 255, 0.8);
    animation: headBar 3.4s ease-in-out infinite;
}
@keyframes headBar {
    0%, 100% { opacity: 0.6; transform: scaleX(0.8); }
    50% { opacity: 1; transform: scaleX(1.25); }
}
.section-head p { color: var(--muted); margin-top: 14px; }

.shopcase-section { padding-top: 30px; }
.shopcase {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 26px;
    max-width: 720px;
    margin: 0 auto;
}
.shopcase-glow {
    position: absolute;
    top: -6%;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    height: 78%;
    background: radial-gradient(60% 60% at 50% 40%, rgba(63, 142, 255, 0.55), transparent 70%);
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
    animation: shopPulse 5s ease-in-out infinite alternate;
}
@keyframes shopPulse {
    from { opacity: 0.55; }
    to   { opacity: 0.95; }
}
.shopcase-frame {
    position: relative;
    z-index: 1;
    width: 100%;
    border-radius: 26px;
    padding: 14px;
    background:
        linear-gradient(160deg, rgba(28, 42, 78, 0.72), rgba(12, 16, 28, 0.85));
    border: 1px solid rgba(127, 178, 255, 0.32);
    box-shadow:
        0 30px 80px -24px rgba(23, 84, 190, 0.75),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    overflow: hidden;
}
.shopcase-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 26px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(127,178,255,0.9), transparent 35%, transparent 65%, rgba(127,178,255,0.6));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
}
.shopcase-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 8px 12px;
}
.sc-dot {
    width: 11px; height: 11px; border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
}
.sc-dot:nth-child(1) { background: #ff5f57; }
.sc-dot:nth-child(2) { background: #febc2e; }
.sc-dot:nth-child(3) { background: #28c840; }
.sc-verified {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #bcd6ff;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(127, 178, 255, 0.14);
    border: 1px solid rgba(127, 178, 255, 0.3);
}
.sc-verified svg { color: #7fb2ff; }
.shopcase-media {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    line-height: 0;
}
.shopcase-media img {
    width: 100%;
    height: auto;
    border-radius: 18px;
}
.shopcase-shine {
    position: absolute;
    top: 0;
    left: -60%;
    width: 45%;
    height: 100%;
    background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.22), transparent);
    transform: skewX(-18deg);
    animation: shopShine 6.5s ease-in-out infinite;
    pointer-events: none;
}
@keyframes shopShine {
    0%, 60% { left: -60%; }
    100% { left: 130%; }
}
.shopcase-info {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
}
.shopcase-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
.sc-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #d8e4fb;
    background: var(--card);
    border: 1px solid var(--line);
    backdrop-filter: blur(10px);
}
.sc-live {
    width: 9px; height: 9px; border-radius: 50%;
    background: #34e0a1;
    box-shadow: 0 0 0 0 rgba(52, 224, 161, 0.7);
    animation: pulse 1.8s infinite;
}
.shopcase-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 34px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.08rem;
    color: #05060a;
    background: linear-gradient(135deg, #9fc4ff, #dfe9ff);
    box-shadow: 0 18px 44px -14px rgba(127, 178, 255, 0.85);
    transition: transform 0.25s, box-shadow 0.25s;
}
.shopcase-btn svg { color: #1b6fd6; }
.shopcase-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 24px 56px -12px rgba(127, 178, 255, 0.95);
}

.apps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.app-card {
    position: relative;
    padding: 36px 26px;
    border-radius: var(--radius);
    background: var(--card-strong);
    border: 1px solid var(--line);
    backdrop-filter: blur(14px);
    text-align: center;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(.16,1,.3,1), border-color 0.3s, box-shadow 0.35s;
}
.app-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(120% 90% at 50% -10%, var(--c2), transparent 60%),
                linear-gradient(160deg, var(--c1), var(--c2));
    opacity: 0.18;
    transition: opacity 0.35s;
}
.app-card::after {
    content: "";
    position: absolute;
    top: 0; left: -70%;
    width: 45%; height: 100%;
    background: linear-gradient(105deg, transparent, rgba(255,255,255,0.14), transparent);
    transform: skewX(-18deg);
    transition: left 0.7s ease;
    pointer-events: none;
    z-index: 2;
}
.app-card:hover {
    transform: translateY(-10px) scale(1.015);
    border-color: color-mix(in srgb, var(--c2) 70%, transparent);
    box-shadow: 0 30px 70px -24px var(--c2), 0 0 40px -14px var(--c2);
}
.app-card:hover::before { opacity: 0.42; }
.app-card:hover::after { left: 130%; }
.app-card > * { position: relative; z-index: 1; }
.app-icon {
    width: 100px; height: 100px;
    margin: 0 auto 18px;
    border-radius: 26px;
    display: grid; place-items: center;
    background: rgba(0,0,0,0.35);
    border: 1px solid var(--line);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
    transition: transform 0.35s cubic-bezier(.16,1,.3,1), box-shadow 0.35s;
}
.app-card:hover .app-icon {
    transform: translateY(-3px) scale(1.06);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 12px 30px -10px var(--c2);
}
.app-icon img { width: 74px; height: 74px; border-radius: 16px; object-fit: cover; }
.app-card h3 { font-size: 1.3rem; font-weight: 800; }
.app-card p { color: var(--muted); font-size: 0.9rem; margin-top: 4px; }
.chip {
    display: inline-block;
    margin-top: 18px;
    padding: 6px 16px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #34e0a1;
    border: 1px solid rgba(52, 224, 161, 0.4);
    border-radius: 999px;
    background: rgba(52, 224, 161, 0.08);
    transition: background 0.3s, box-shadow 0.3s;
}
.app-card:hover .chip { background: rgba(52, 224, 161, 0.16); box-shadow: 0 0 20px -6px rgba(52, 224, 161, 0.8); }

.price-tabs {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 0 auto 38px;
    padding: 6px;
    width: max-content;
    max-width: 100%;
    border-radius: 999px;
    background: var(--card);
    border: 1px solid rgba(127, 178, 255, 0.18);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 34px -14px rgba(127, 178, 255, 0.6);
}
.price-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border: none;
    border-radius: 999px;
    background: transparent;
    color: var(--muted);
    font-family: inherit;
    font-weight: 700;
    font-size: 0.98rem;
    cursor: pointer;
    transition: color 0.25s, background 0.25s, box-shadow 0.25s, transform 0.25s;
}
.price-tab:hover { color: #fff; }
.price-tab .pt-ico { display: inline-block; vertical-align: -3px; }
.price-tab.is-active {
    color: #05060a;
    background: linear-gradient(135deg, #7fb2ff, #b8d0ff);
    box-shadow: 0 10px 30px -8px rgba(127, 178, 255, 0.9);
    transform: translateY(-1px);
}

.price-panel { display: none; animation: viewIn 0.4s ease; }
.price-panel.is-active { display: block; }

.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.price-card {
    --pc-accent: #7fb2ff;
    --pc-accent-2: #b8d0ff;
    position: relative;
    padding: 26px 22px 28px;
    border-radius: 24px;
    background:
        radial-gradient(130% 90% at 50% -10%, color-mix(in srgb, var(--pc-accent) 16%, transparent), transparent 60%),
        linear-gradient(180deg, rgba(21, 26, 40, 0.92), rgba(11, 14, 22, 0.96));
    border: 1px solid var(--line);
    backdrop-filter: blur(14px);
    overflow: hidden;
    container-type: inline-size;
    transition: transform 0.4s cubic-bezier(.16,1,.3,1), border-color 0.3s, box-shadow 0.4s;
}
/* halo superior */
.price-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(90% 60% at 50% 0%, color-mix(in srgb, var(--pc-accent) 22%, transparent), transparent 65%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
    z-index: 0;
}
/* barrido de brillo */
.price-card::after {
    content: "";
    position: absolute;
    top: 0; left: -60%;
    width: 45%; height: 100%;
    background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.16), transparent);
    transform: skewX(-18deg);
    pointer-events: none;
    z-index: 3;
    transition: none;
}
.price-card:hover {
    transform: translateY(-10px) scale(1.015);
    border-color: color-mix(in srgb, var(--pc-accent) 60%, transparent);
    box-shadow: 0 34px 70px -24px color-mix(in srgb, var(--pc-accent) 70%, transparent), 0 0 34px -14px var(--pc-accent);
}
.price-card:hover::before { opacity: 1; }
.price-card:hover::after { animation: pcShine 0.9s ease; }
@keyframes pcShine {
    0% { left: -60%; }
    100% { left: 130%; }
}
.price-card.popular {
    --pc-accent: #7fb2ff;
    --pc-accent-2: #b8d0ff;
    border-color: transparent;
    background:
        linear-gradient(180deg, rgba(21, 26, 40, 0.94), rgba(11, 14, 22, 0.97)) padding-box,
        linear-gradient(135deg, #7fb2ff, #b8d0ff, #7fb2ff) border-box;
    box-shadow: 0 0 42px -12px rgba(127, 178, 255, 0.7);
}
.price-card.best {
    --pc-accent: #34e0a1;
    --pc-accent-2: #b8f0cf;
    border-color: transparent;
    background:
        linear-gradient(180deg, rgba(16, 30, 26, 0.94), rgba(9, 15, 13, 0.97)) padding-box,
        linear-gradient(135deg, #34e0a1, #b8f0cf, #34e0a1) border-box;
    box-shadow: 0 0 42px -12px rgba(52, 224, 161, 0.65);
}
.pc-ribbon {
    position: absolute;
    top: 16px; right: -36px;
    transform: rotate(45deg);
    background: linear-gradient(135deg, #7fb2ff, #5b7fbf);
    color: #05060a;
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    padding: 5px 42px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.45);
    z-index: 4;
}
.price-card.best .pc-ribbon { background: linear-gradient(135deg, #34e0a1, #14b87d); }
.pc-head { position: relative; z-index: 1; margin-bottom: 20px; }
.pc-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--pc-accent);
    padding: 5px 12px;
    border: 1px solid color-mix(in srgb, var(--pc-accent) 40%, transparent);
    border-radius: 999px;
    background: color-mix(in srgb, var(--pc-accent) 12%, transparent);
}
.pc-tag::before {
    content: "";
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--pc-accent);
    box-shadow: 0 0 8px var(--pc-accent);
}
.pc-tag.ios { color: #e6ebf5; border-color: rgba(230, 235, 245, 0.3); background: rgba(230, 235, 245, 0.06); }
.pc-tag.ios::before { background: #e6ebf5; box-shadow: 0 0 8px #e6ebf5; }
.pc-body { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.pc-pay, .pc-get { display: flex; flex-direction: column; gap: 4px; flex: 1 1 0; min-width: 0; }
.pc-get { text-align: right; align-items: flex-end; }
.pc-pay small, .pc-get small {
    color: var(--muted); font-size: clamp(0.62rem, 3cqi, 0.72rem);
    letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600;
    white-space: nowrap;
}
.pc-pay b {
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(0.9rem, 7.2cqi, 1.4rem); font-weight: 700; color: #fff;
    white-space: nowrap;
}
.pc-get b {
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(0.95rem, 7.6cqi, 1.55rem); font-weight: 800;
    white-space: nowrap;
    background: linear-gradient(180deg, #d6ffe9, #34e0a1);
    -webkit-background-clip: text; background-clip: text; color: transparent;
    filter: drop-shadow(0 0 14px rgba(52, 224, 161, 0.5));
}
.pc-x {
    flex-shrink: 0;
    color: #05060a;
    width: 34px; height: 34px; border-radius: 50%;
    display: grid; place-items: center;
    background: linear-gradient(135deg, var(--pc-accent), var(--pc-accent-2));
    box-shadow: 0 6px 18px -6px var(--pc-accent);
    transition: transform 0.4s ease;
    animation: pcArrow 1.8s ease-in-out infinite;
}
@keyframes pcArrow {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(4px); }
}
.price-card:hover .pc-x { transform: scale(1.12); }

/* Cuando la tarjeta es estrecha, apila los montos para que nunca se corten */
@container (max-width: 235px) {
    .pc-body { flex-direction: column; align-items: stretch; gap: 12px; }
    .pc-pay, .pc-get { text-align: center; align-items: center; }
    .pc-pay b, .pc-get b { font-size: 1.5rem; }
    .pc-pay small, .pc-get small { font-size: 0.72rem; }
    .pc-x { transform: rotate(90deg); animation: none; }
    .price-card:hover .pc-x { transform: rotate(90deg) scale(1.12); }
}

.vip-card {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 30px;
    padding: 28px 32px;
    border-radius: 26px;
    overflow: hidden;
    background:
        radial-gradient(600px 200px at 0% 0%, rgba(255, 209, 102, 0.2), transparent 60%),
        var(--card-strong);
    border: 1px solid rgba(255, 209, 102, 0.4);
    backdrop-filter: blur(14px);
    box-shadow: 0 24px 60px -20px rgba(0,0,0,0.75), 0 0 40px -16px rgba(255, 209, 102, 0.55);
}
.vip-card::after {
    content: "";
    position: absolute;
    top: 0; left: -60%;
    width: 40%; height: 100%;
    background: linear-gradient(105deg, transparent, rgba(255, 233, 170, 0.18), transparent);
    transform: skewX(-18deg);
    animation: shopShine 7s ease-in-out infinite;
    pointer-events: none;
}
.vip-card > * { position: relative; z-index: 1; }
.vip-crown { color: #ffd166; display: grid; place-items: center; filter: drop-shadow(0 6px 14px rgba(255, 209, 102, 0.5)); animation: voidBob 4s ease-in-out infinite; }
.vip-info { flex: 1; min-width: 220px; }
.vip-info h3 { font-size: 1.25rem; font-weight: 800; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.vip-badge {
    font-size: 0.66rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
    color: #2a2100; background: linear-gradient(135deg, #ffd166, #ffb020);
    padding: 4px 10px; border-radius: 999px;
}
.vip-info p { color: var(--muted); font-size: 0.92rem; margin-top: 6px; }
.vip-note { font-size: 0.82rem !important; opacity: 0.85; }
.vip-price { text-align: center; }
.vip-amount {
    display: block;
    font-family: "Space Grotesk", sans-serif; font-weight: 800; font-size: 2rem;
    background: linear-gradient(180deg, #fff5d6, #ffd166);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.vip-per { color: var(--muted); font-size: 0.82rem; }
.vip-btn {
    padding: 14px 30px; border-radius: 999px; text-decoration: none;
    font-weight: 800; color: #2a2100;
    background: linear-gradient(135deg, #ffd166, #ffb020);
    box-shadow: 0 14px 34px -12px rgba(255, 176, 32, 0.8);
    transition: transform 0.25s, filter 0.25s;
}
.vip-btn:hover { transform: translateY(-3px); filter: brightness(1.06); }

.bodega {
    display: grid;
    grid-template-columns: 1.7fr 1fr;
    gap: 22px;
    align-items: stretch;
}
.bodega-main {
    padding: 34px 32px;
    border-radius: var(--radius);
    background: var(--card-strong);
    border: 1px solid var(--line);
    backdrop-filter: blur(14px);
}
.bodega-tag {
    display: inline-block;
    font-size: 0.68rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--accent);
    padding: 5px 12px; border-radius: 999px;
    border: 1px solid rgba(127, 178, 255, 0.35);
    background: rgba(127, 178, 255, 0.08);
}
.bodega-main h3 { font-size: clamp(1.3rem, 3.4vw, 1.7rem); font-weight: 800; margin-top: 16px; letter-spacing: -0.01em; }
.bodega-lead { color: var(--muted); margin-top: 10px; font-size: 0.96rem; }
.bodega-list { list-style: none; margin-top: 22px; display: flex; flex-direction: column; gap: 14px; }
.bodega-list li {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--line);
    transition: transform 0.25s, border-color 0.25s, background 0.25s;
}
.bodega-list li:hover { transform: translateX(4px); border-color: rgba(127, 178, 255, 0.4); background: rgba(127, 178, 255, 0.06); }
.bl-ico {
    flex-shrink: 0;
    width: 44px; height: 44px; border-radius: 12px;
    display: grid; place-items: center;
    color: var(--accent);
    background: rgba(127, 178, 255, 0.12);
    border: 1px solid rgba(127, 178, 255, 0.24);
}
.bodega-list li > div { display: flex; flex-direction: column; gap: 3px; }
.bodega-list b { font-size: 1rem; font-weight: 700; color: var(--ink); }
.bodega-list span { color: var(--muted); font-size: 0.9rem; }

.bodega-buy {
    position: relative;
    display: flex; flex-direction: column; align-items: center; text-align: center;
    justify-content: center; gap: 6px;
    padding: 34px 26px;
    border-radius: var(--radius);
    overflow: hidden;
    background:
        radial-gradient(500px 260px at 50% 0%, rgba(52, 224, 161, 0.2), transparent 65%),
        var(--card-strong);
    border: 1px solid rgba(52, 224, 161, 0.4);
    backdrop-filter: blur(14px);
    box-shadow: 0 24px 60px -20px rgba(0,0,0,0.75), 0 0 44px -18px rgba(52, 224, 161, 0.6);
}
.bodega-buy::after {
    content: "";
    position: absolute;
    top: 0; left: -60%;
    width: 45%; height: 100%;
    background: linear-gradient(105deg, transparent, rgba(52, 224, 161, 0.14), transparent);
    transform: skewX(-18deg);
    animation: shopShine 7.5s ease-in-out infinite;
    pointer-events: none;
}
.bodega-buy > * { position: relative; z-index: 1; }
.bb-label { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.bb-price {
    font-family: "Space Grotesk", sans-serif; font-weight: 800; font-size: 2.7rem; line-height: 1.1;
    background: linear-gradient(180deg, #d6ffe9, #34e0a1);
    -webkit-background-clip: text; background-clip: text; color: transparent;
    filter: drop-shadow(0 0 16px rgba(52, 224, 161, 0.5));
}
.bb-btn {
    margin-top: 14px; padding: 14px 34px; border-radius: 999px; text-decoration: none;
    font-weight: 800; color: #05170f;
    background: linear-gradient(135deg, #34e0a1, #14b87d);
    box-shadow: 0 14px 34px -12px rgba(52, 224, 161, 0.8);
    transition: transform 0.25s, filter 0.25s;
}
.bb-btn:hover { transform: translateY(-3px); filter: brightness(1.06); }
.bb-warn { margin-top: 16px; color: #ff9ea8; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.02em; }
.bb-handle { color: var(--muted); font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 0.9rem; }

@media (max-width: 760px) {
    .bodega { grid-template-columns: 1fr; }
}

.void {
    position: relative;
    margin: 90px auto;
    padding: 72px 24px 80px;
    border-radius: 30px;
    overflow: hidden;
    text-align: center;
    background:
        radial-gradient(900px 400px at 50% -10%, rgba(160, 0, 0, 0.35), transparent 60%),
        linear-gradient(180deg, #0a0000 0%, #050505 60%, #000 100%);
    border: 1px solid rgba(255, 0, 0, 0.25);
    box-shadow: 0 0 80px -10px rgba(180, 0, 0, 0.35), inset 0 0 120px rgba(0, 0, 0, 0.9);
}
.void-noise {
    position: absolute; inset: 0; z-index: 0; opacity: 0.06; pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    mix-blend-mode: screen;
    animation: voidNoise 0.6s steps(2) infinite;
}
@keyframes voidNoise { 0% { transform: translate(0,0);} 50% { transform: translate(-6px,4px);} 100% { transform: translate(4px,-4px);} }
.void-fog {
    position: absolute; inset: -20%; z-index: 0; pointer-events: none;
    background:
        radial-gradient(closest-side, rgba(120, 0, 0, 0.4), transparent 70%),
        radial-gradient(closest-side, rgba(40, 0, 0, 0.5), transparent 70%);
    background-position: 25% 40%, 75% 60%;
    background-repeat: no-repeat;
    filter: blur(50px);
    animation: voidFog 9s ease-in-out infinite alternate;
}
@keyframes voidFog { from { transform: translateX(-4%) scale(1);} to { transform: translateX(6%) scale(1.12);} }
.void-flicker {
    position: absolute; inset: 0; z-index: 1; pointer-events: none;
    background: rgba(0, 0, 0, 0.0);
    animation: voidFlicker 5s linear infinite;
}
@keyframes voidFlicker {
    0%, 96%, 100% { background: rgba(0,0,0,0); }
    97% { background: rgba(0,0,0,0.55); }
    98% { background: rgba(120,0,0,0.15); }
    99% { background: rgba(0,0,0,0.4); }
}
.void-inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; }

.void-mask {
    filter: drop-shadow(0 0 22px rgba(255, 0, 0, 0.55));
    animation: voidBob 4s ease-in-out infinite;
}
@keyframes voidBob { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-10px);} }
.void-eye { animation: voidEye 3.4s ease-in-out infinite; }
@keyframes voidEye {
    0%, 90%, 100% { opacity: 1; }
    93% { opacity: 0.2; }
    95% { opacity: 1; }
}

.void-eyebrow {
    margin-top: 18px;
    font-size: 0.72rem; letter-spacing: 0.34em; text-transform: uppercase;
    color: #ff5252; font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.6);
}
.void-title {
    position: relative;
    margin-top: 10px;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2.4rem, 9vw, 5rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #f3f3f3;
    text-shadow: 0 0 18px rgba(255, 0, 0, 0.35);
}
.glitch::before, .glitch::after {
    content: attr(data-text);
    position: absolute;
    left: 0; top: 0; width: 100%;
    overflow: hidden;
}
.glitch::before { color: #ff003c; z-index: -1; animation: glitchTop 2.4s infinite linear alternate-reverse; }
.glitch::after { color: #00e5ff; z-index: -2; animation: glitchBot 3s infinite linear alternate-reverse; }
@keyframes glitchTop {
    0% { clip-path: inset(0 0 82% 0); transform: translate(-3px,-2px); }
    25% { clip-path: inset(0 0 60% 0); transform: translate(3px,1px); }
    50% { clip-path: inset(0 0 40% 0); transform: translate(-2px,2px); }
    75% { clip-path: inset(0 0 65% 0); transform: translate(2px,-1px); }
    100% { clip-path: inset(0 0 55% 0); transform: translate(-3px,1px); }
}
@keyframes glitchBot {
    0% { clip-path: inset(70% 0 0 0); transform: translate(3px,2px); }
    25% { clip-path: inset(50% 0 0 0); transform: translate(-3px,-1px); }
    50% { clip-path: inset(60% 0 0 0); transform: translate(2px,-2px); }
    75% { clip-path: inset(45% 0 0 0); transform: translate(-2px,1px); }
    100% { clip-path: inset(65% 0 0 0); transform: translate(3px,-1px); }
}
.void-sub { margin-top: 16px; max-width: 560px; color: #d9b3b3; font-size: 1.02rem; }
.void-sub strong { color: #ff5252; }

.void-plans {
    display: grid;
    grid-template-columns: repeat(3, minmax(140px, 1fr));
    gap: 16px;
    margin: 34px auto 6px;
    width: min(100%, 640px);
}
.void-plan {
    position: relative;
    padding: 26px 18px;
    border-radius: 20px;
    background: rgba(20, 0, 0, 0.6);
    border: 1px solid rgba(255, 0, 0, 0.28);
    backdrop-filter: blur(6px);
    display: flex; flex-direction: column; gap: 8px; align-items: center;
    transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.void-plan:hover { transform: translateY(-6px); border-color: rgba(255, 40, 40, 0.7); box-shadow: 0 16px 40px -14px rgba(255, 0, 0, 0.6); }
.void-plan.featured { border-color: rgba(255, 40, 40, 0.75); background: rgba(40, 0, 0, 0.7); box-shadow: 0 0 34px -8px rgba(255, 0, 0, 0.5); }
.vp-flag {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    font-size: 0.64rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
    color: #150000; background: linear-gradient(135deg, #ff2b2b, #ff6b6b);
    padding: 4px 12px; border-radius: 999px; white-space: nowrap;
    box-shadow: 0 6px 16px -4px rgba(255, 0, 0, 0.7);
}
.vp-dur { color: #e8cccc; font-weight: 600; font-size: 0.95rem; letter-spacing: 0.02em; }
.vp-price {
    font-family: "Space Grotesk", sans-serif; font-weight: 800; font-size: 1.7rem;
    color: #fff; text-shadow: 0 0 14px rgba(255, 0, 0, 0.5);
}

.void-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 32px; }
.void-btn {
    padding: 15px 30px; border-radius: 999px; text-decoration: none;
    font-weight: 800; font-size: 1rem;
    transition: transform 0.25s, box-shadow 0.25s, filter 0.25s;
}
.void-btn.info {
    color: #ffdede;
    background: rgba(255, 0, 0, 0.08);
    border: 1px solid rgba(255, 0, 0, 0.5);
}
.void-btn.info:hover { transform: translateY(-3px); background: rgba(255, 0, 0, 0.16); box-shadow: 0 14px 34px -12px rgba(255, 0, 0, 0.6); }
.void-btn.buy {
    color: #fff;
    background: linear-gradient(135deg, #b00000, #ff2b2b);
    box-shadow: 0 16px 40px -12px rgba(255, 0, 0, 0.8);
}
.void-btn.buy:hover { transform: translateY(-3px) scale(1.02); filter: brightness(1.08); }
.void-handle { margin-top: 22px; color: #a05252; font-weight: 700; letter-spacing: 0.06em; font-family: "Space Grotesk", sans-serif; }

.nav-void, .mm-void { color: #ff6b6b !important; }
.nav-void:hover { background: rgba(255, 0, 0, 0.12) !important; color: #ff8f8f !important; }

@media (max-width: 620px) {
    .void-plans { grid-template-columns: 1fr; width: 100%; }
    .void { padding: 54px 16px 60px; margin: 60px auto; }
    .vip-card { flex-direction: column; text-align: center; }
    .vip-info { text-align: center; }
    .vip-info h3 { justify-content: center; }
}

.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.feature {
    position: relative;
    padding: 30px 22px;
    border-radius: var(--radius);
    background: var(--card);
    border: 1px solid var(--line);
    backdrop-filter: blur(12px);
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(.16,1,.3,1), background 0.3s, border-color 0.3s, box-shadow 0.35s;
}
.feature::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(80% 60% at 50% 0%, rgba(127, 178, 255, 0.16), transparent 65%);
    opacity: 0;
    transition: opacity 0.35s;
    pointer-events: none;
}
.feature:hover {
    transform: translateY(-8px);
    background: var(--card-strong);
    border-color: rgba(127, 178, 255, 0.4);
    box-shadow: 0 26px 60px -24px rgba(23, 84, 190, 0.7), 0 0 30px -16px rgba(127, 178, 255, 0.6);
}
.feature:hover::before { opacity: 1; }
.feature > * { position: relative; z-index: 1; }
.f-ico {
    color: var(--accent);
    width: 60px; height: 60px;
    display: grid; place-items: center;
    border-radius: 16px;
    background: rgba(127, 178, 255, 0.12);
    border: 1px solid rgba(127, 178, 255, 0.22);
    margin-bottom: 16px;
    transition: transform 0.35s cubic-bezier(.16,1,.3,1), box-shadow 0.35s, background 0.35s;
}
.feature:hover .f-ico {
    transform: translateY(-3px) scale(1.08);
    background: rgba(127, 178, 255, 0.2);
    box-shadow: 0 10px 26px -8px rgba(127, 178, 255, 0.8);
}
.feature h4 { font-size: 1.1rem; font-weight: 800; }
.feature p { color: var(--muted); font-size: 0.9rem; margin-top: 6px; }

/* ===== Calidad garantizada (destacada) ===== */
.garantia { position: relative; }
.garantia-glow {
    position: absolute;
    left: 50%; top: 40px;
    width: min(760px, 90%); height: 340px;
    transform: translateX(-50%);
    background: radial-gradient(closest-side, rgba(52, 224, 161, 0.16), rgba(127, 178, 255, 0.1) 45%, transparent 72%);
    filter: blur(10px);
    pointer-events: none;
    z-index: 0;
}
.garantia .section-head { position: relative; z-index: 1; }
.garantia-title {
    background: linear-gradient(100deg, #ffffff 0%, #b8f0cf 45%, #7fb2ff 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.garantia-seal {
    display: inline-flex; align-items: center; gap: 8px;
    margin-top: 18px;
    padding: 8px 18px;
    border-radius: 999px;
    font-weight: 800; font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase;
    color: #062017;
    background: linear-gradient(135deg, #34e0a1, #b8f0cf);
    box-shadow: 0 12px 30px -10px rgba(52, 224, 161, 0.75);
    animation: sealPulse 2.6s ease-in-out infinite;
}
@keyframes sealPulse {
    0%, 100% { box-shadow: 0 12px 30px -10px rgba(52, 224, 161, 0.6); transform: translateY(0); }
    50% { box-shadow: 0 16px 40px -8px rgba(52, 224, 161, 0.95); transform: translateY(-2px); }
}
.garantia .features { position: relative; z-index: 1; }
.garantia .feature {
    background: var(--card-strong);
    border-color: rgba(127, 178, 255, 0.18);
}
.garantia .feature::after {
    content: "";
    position: absolute;
    left: 0; right: 0; top: 0; height: 3px;
    background: linear-gradient(90deg, transparent, var(--fc, #7fb2ff), transparent);
    opacity: 0.55;
    transition: opacity 0.35s;
}
.garantia .feature:hover::after { opacity: 1; }
.garantia .feature:nth-child(1) { --fc: #7fb2ff; }
.garantia .feature:nth-child(2) { --fc: #34e0a1; }
.garantia .feature:nth-child(3) { --fc: #ff7ac0; }
.garantia .feature:nth-child(4) { --fc: #ffd166; }
.garantia .feature .f-ico {
    color: #05060a;
    background: linear-gradient(135deg, var(--fc, #7fb2ff), #ffffff);
    border-color: transparent;
    box-shadow: 0 10px 26px -10px var(--fc, #7fb2ff);
}
.garantia .feature:hover {
    border-color: color-mix(in srgb, var(--fc, #7fb2ff) 55%, transparent);
    box-shadow: 0 26px 60px -24px color-mix(in srgb, var(--fc, #7fb2ff) 60%, transparent), 0 0 30px -16px var(--fc, #7fb2ff);
}
.garantia .feature:hover .f-ico {
    box-shadow: 0 14px 30px -8px var(--fc, #7fb2ff);
}

.cta { padding: 40px 8px; }
.cta-card {
    text-align: center;
    padding: 64px 32px;
    border-radius: 30px;
    background:
        radial-gradient(800px 300px at 50% 0%, rgba(34,158,217,0.22), transparent 65%),
        var(--card-strong);
    border: 1px solid rgba(127, 178, 255, 0.28);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow);
}
.cta-card h2 { font-size: clamp(1.8rem, 5vw, 2.8rem); font-weight: 800; letter-spacing: -0.02em; }
.cta-card p { color: var(--muted); margin-top: 12px; max-width: 460px; margin-inline: auto; }
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
    padding: 17px 40px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    color: #fff;
    background: linear-gradient(135deg, #229ed9, #2ab7ff);
    box-shadow: 0 18px 42px -12px rgba(34, 158, 217, 0.8);
    transition: transform 0.25s, box-shadow 0.25s, filter 0.25s;
}
.cta-btn:hover { transform: translateY(-3px) scale(1.03); filter: brightness(1.08); box-shadow: 0 24px 56px -12px rgba(34, 158, 217, 0.9); }
.cta-note { display: block; margin-top: 18px; color: var(--muted); font-size: 0.82rem; }

.footer {
    text-align: center;
    padding: 60px 16px 20px;
    border-top: 1px solid var(--line);
    margin-top: 40px;
}
.foot-logo { width: 46px; height: 46px; border-radius: 50%; margin: 0 auto 12px; border: 2px solid var(--line); }
.foot-brand { font-weight: 700; }
.foot-copy { color: var(--muted); font-size: 0.82rem; margin-top: 6px; }
.foot-hidden {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.82rem;
    opacity: 0.6;
    transition: opacity 0.25s, color 0.25s;
}
.foot-hidden:hover { opacity: 1; color: var(--accent); }
.foot-dev {
    display: block;
    margin-top: 18px;
    font-size: 0.6rem;
    letter-spacing: 0.08em;
    color: rgba(168, 173, 189, 0.28);
    user-select: none;
}

.float-cta {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 60px; height: 60px;
    border-radius: 50%;
    display: grid; place-items: center;
    color: #fff;
    background: linear-gradient(135deg, #229ed9, #2ab7ff);
    box-shadow: 0 14px 34px -8px rgba(34, 158, 217, 0.8);
    z-index: 50;
    transition: transform 0.25s;
    animation: floaty 3s ease-in-out infinite;
}
.float-cta:hover { transform: scale(1.1); }
@keyframes floaty { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-8px);} }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (max-width: 860px) {
    .features { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 34px;
        padding-top: 52px;
    }
    .hero-visual { order: -1; }
    .badge-card { max-width: 280px; }
    .hero-stats { max-width: 100%; }
}
@media (max-width: 620px) {
    .apps { grid-template-columns: 1fr; }
    .features { grid-template-columns: 1fr; }
    .hero { padding-top: 40px; }
    .cta-card { padding: 46px 20px; }
    .hero-stats { grid-template-columns: 1fr; }
    .stat + .stat { border-left: none; border-top: 1px solid var(--line); }
    .stat { text-align: center; }
    .hero-actions { gap: 14px; }
}

@media (prefers-reduced-motion: reduce) {
    .bg, .badge-card, .float-cta, .pulse-dot, .live-dot { animation: none; }
    .reveal { transition: none; opacity: 1; transform: none; }
    .void-noise, .void-fog, .void-flicker, .void-mask, .void-eye,
    .glitch::before, .glitch::after { animation: none; }
    .glitch::before, .glitch::after { display: none; }
    .section-head h2::after, .pc-x, .vip-card::after, .vip-crown,
    .bodega-buy::after, .eyebrow::before, .app-card::after { animation: none; }
}

.intro {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    background: radial-gradient(1200px 700px at 50% 40%, #0b1030 0%, #05060a 60%, #000 100%);
    overflow: hidden;
    perspective: 1400px;
    transition: opacity 0.9s ease, visibility 0.9s ease;
}
.intro.hide { opacity: 0; visibility: hidden; pointer-events: none; }
body.intro-lock { overflow: hidden; }

.intro-stars {
    position: absolute; inset: 0;
    background-image:
        radial-gradient(1.5px 1.5px at 20% 30%, #fff, transparent),
        radial-gradient(1.5px 1.5px at 70% 60%, #cfe0ff, transparent),
        radial-gradient(1px 1px at 40% 80%, #fff, transparent),
        radial-gradient(1px 1px at 85% 20%, #9fb5da, transparent),
        radial-gradient(1.5px 1.5px at 55% 15%, #fff, transparent),
        radial-gradient(1px 1px at 10% 70%, #fff, transparent),
        radial-gradient(1px 1px at 90% 85%, #cfe0ff, transparent);
    background-repeat: no-repeat;
    opacity: 0.8;
    animation: starTwinkle 3s ease-in-out infinite alternate;
}
@keyframes starTwinkle { from { opacity: 0.35; } to { opacity: 0.9; } }

.intro-aurora {
    position: absolute;
    width: 140%; height: 60%;
    top: 20%; left: -20%;
    background:
        radial-gradient(closest-side, rgba(127,178,255,0.35), transparent 70%),
        radial-gradient(closest-side, rgba(214,0,143,0.25), transparent 70%);
    background-position: 30% 50%, 70% 50%;
    background-repeat: no-repeat;
    filter: blur(60px);
    animation: auroraMove 6s ease-in-out infinite alternate;
}
@keyframes auroraMove {
    from { transform: translateX(-4%) scale(1); }
    to   { transform: translateX(6%) scale(1.1); }
}

.intro-stage { position: relative; text-align: center; transform-style: preserve-3d; }

.intro-scene {
    position: relative;
    width: 260px; height: 260px;
    margin: 0 auto;
    transform-style: preserve-3d;
    animation: sceneIn 1.4s cubic-bezier(.16,1,.3,1) both, sceneSpin 14s linear 1.4s infinite;
}
@keyframes sceneIn {
    from { transform: rotateX(70deg) rotateZ(-40deg) scale(0.2); opacity: 0; }
    to   { transform: rotateX(18deg) rotateZ(0deg) scale(1); opacity: 1; }
}
@keyframes sceneSpin {
    from { transform: rotateX(18deg) rotateY(0deg); }
    to   { transform: rotateX(18deg) rotateY(360deg); }
}

.orbit {
    position: absolute; inset: 0;
    border-radius: 50%;
    border: 2px solid transparent;
    transform-style: preserve-3d;
}
.orbit-1 { border-top-color: #7fb2ff; border-bottom-color: rgba(127,178,255,0.3); transform: rotateX(78deg); animation: orbSpin 3.5s linear infinite; box-shadow: 0 0 24px rgba(127,178,255,0.4); }
.orbit-2 { border-left-color: #d6008f; border-right-color: rgba(214,0,143,0.3); transform: rotateY(78deg); animation: orbSpin 4.5s linear infinite reverse; box-shadow: 0 0 24px rgba(214,0,143,0.35); }
.orbit-3 { border-top-color: #dfe6f2; inset: 26px; transform: rotateX(60deg) rotateY(30deg); animation: orbSpin 5.5s linear infinite; }
@keyframes orbSpin { to { transform: rotateX(78deg) rotateZ(360deg); } }
.orbit-2 { }

.intro-logo-wrap {
    position: absolute;
    inset: 60px;
    border-radius: 50%;
    display: grid; place-items: center;
    transform: translateZ(40px);
    animation: logoFloat 3s ease-in-out infinite alternate;
}
@keyframes logoFloat { from { transform: translateZ(30px) translateY(-6px);} to { transform: translateZ(50px) translateY(6px);} }
.intro-logo {
    width: 140px; height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255,255,255,0.85);
    box-shadow: 0 0 50px rgba(127,178,255,0.7), inset 0 0 20px rgba(0,0,0,0.4);
}
.intro-halo {
    position: absolute; inset: -18px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(127,178,255,0.55), transparent 68%);
    filter: blur(10px);
    animation: haloPulse 2s ease-in-out infinite;
}
@keyframes haloPulse { 0%,100% { transform: scale(1); opacity: .6;} 50% { transform: scale(1.15); opacity: 1;} }
.intro-sheen {
    position: absolute; inset: 0;
    border-radius: 50%;
    background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.55) 48%, transparent 60%);
    mix-blend-mode: overlay;
    animation: sheen 2.6s ease-in-out infinite;
}
@keyframes sheen { 0% { transform: translateX(-120%) rotate(8deg);} 60%,100% { transform: translateX(120%) rotate(8deg);} }

.spark {
    position: absolute; top: 50%; left: 50%;
    width: 6px; height: 6px; border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 10px 2px rgba(127,178,255,0.9);
    animation: sparkFly 2.4s ease-out infinite;
}
.spark.s1 { --a: 0deg;   animation-delay: .0s; }
.spark.s2 { --a: 60deg;  animation-delay: .3s; }
.spark.s3 { --a: 120deg; animation-delay: .6s; }
.spark.s4 { --a: 180deg; animation-delay: .9s; }
.spark.s5 { --a: 240deg; animation-delay: 1.2s; }
.spark.s6 { --a: 300deg; animation-delay: 1.5s; }
@keyframes sparkFly {
    0% { transform: rotate(var(--a)) translateX(0) scale(0); opacity: 0; }
    30% { opacity: 1; }
    100% { transform: rotate(var(--a)) translateX(150px) scale(1); opacity: 0; }
}

.intro-title {
    margin-top: 40px;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2.2rem, 9vw, 4rem);
    font-weight: 700;
    letter-spacing: 0.35em;
    padding-left: 0.35em;
    color: transparent;
    background: linear-gradient(90deg, #7fb2ff, #ffffff, #d6008f, #7fb2ff);
    background-size: 200% auto;
    -webkit-background-clip: text; background-clip: text;
    animation: titleShine 3s linear infinite, titleUp 1s ease .6s both;
}
@keyframes titleShine { to { background-position: 200% center; } }
@keyframes titleUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
.intro-sub {
    margin-top: 6px;
    letter-spacing: 0.5em;
    padding-left: 0.5em;
    font-size: 0.8rem;
    color: #9fb5da;
    animation: titleUp 1s ease .9s both;
}
.intro-bar {
    width: 200px; height: 4px;
    margin: 26px auto 0;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    overflow: hidden;
    animation: titleUp 1s ease 1.1s both;
}
.intro-bar span {
    display: block; height: 100%; width: 0;
    background: linear-gradient(90deg, #7fb2ff, #d6008f);
    border-radius: 999px;
    animation: loadBar 2.6s ease .6s forwards;
}
@keyframes loadBar { to { width: 100%; } }

.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px clamp(16px, 4vw, 40px);
    background: rgba(5, 6, 10, 0);
    border-bottom: 1px solid transparent;
    transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
}
.nav.scrolled {
    background: rgba(5, 6, 10, 0.72);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
}
.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); font-weight: 800; font-size: 1.15rem; }
.nav-brand img { width: 38px; height: 38px; border-radius: 50%; border: 2px solid rgba(127,178,255,0.5); object-fit: cover; }
.nav-links { list-style: none; display: flex; align-items: center; gap: 8px; }
.nav-links a {
    text-decoration: none; color: var(--muted);
    font-weight: 600; font-size: 0.95rem;
    padding: 9px 16px; border-radius: 999px;
    white-space: nowrap;
    transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.06); }
.nav-links .nav-cta {
    color: #05060a;
    background: linear-gradient(135deg, #7fb2ff, #b8d0ff);
    font-weight: 800;
}
.nav-links .nav-cta:hover { filter: brightness(1.08); background: linear-gradient(135deg, #7fb2ff, #b8d0ff); color:#05060a; }

.hamburger { display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 12px; background: rgba(255,255,255,0.04); cursor: pointer; align-items: center; justify-content: center; }
.hamburger span { width: 22px; height: 2.5px; background: #fff; border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-menu {
    position: fixed;
    top: 0; right: 0;
    height: 100dvh;
    width: min(80vw, 320px);
    z-index: 210;
    background: rgba(10, 12, 20, 0.96);
    backdrop-filter: blur(18px);
    border-left: 1px solid var(--line);
    display: flex; flex-direction: column;
    padding: 90px 24px 24px;
    gap: 6px;
    transform: translateX(105%);
    transition: transform 0.4s cubic-bezier(.16,1,.3,1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { text-decoration: none; color: var(--ink); font-weight: 600; font-size: 1.1rem; padding: 15px 16px; border-radius: 14px; transition: background 0.2s; }
.mobile-menu a:hover { background: rgba(255,255,255,0.06); }
.mobile-menu .mm-cta { margin-top: 10px; text-align: center; color: #05060a; background: linear-gradient(135deg, #7fb2ff, #b8d0ff); font-weight: 800; }
.mobile-backdrop { position: fixed; inset: 0; z-index: 205; background: rgba(0,0,0,0.55); opacity: 0; visibility: hidden; transition: opacity 0.3s; }
.mobile-backdrop.open { opacity: 1; visibility: visible; }

.shell { padding-top: 84px; }

.chip-tap { color: #ff7ac0; border-color: rgba(255, 122, 192, 0.5); background: rgba(255, 122, 192, 0.1); }
.app-nequi { cursor: pointer; }
.app-nequi:focus-visible { outline: 2px solid #ff7ac0; outline-offset: 3px; }

.pay-screen {
    position: fixed; inset: 0; z-index: 500;
    display: grid; place-items: center;
    padding: 16px;
    background: rgba(3, 4, 8, 0.6);
    backdrop-filter: blur(8px);
    opacity: 0; visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}
.pay-screen.open { opacity: 1; visibility: visible; }

.pay-panel {
    width: min(440px, 100%);
    max-height: 92dvh;
    overflow-y: auto;
    border-radius: 28px;
    background: linear-gradient(180deg, #2b0a4a 0%, #3d0e63 22%, #14061f 100%);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 40px 90px -20px rgba(0,0,0,0.8);
    transform: translateY(30px) scale(0.96);
    transition: transform 0.4s cubic-bezier(.16,1,.3,1);
    -webkit-overflow-scrolling: touch;
}
.pay-screen.open .pay-panel { transform: none; }

.pay-head {
    position: sticky; top: 0; z-index: 2;
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 18px;
    background: linear-gradient(180deg, rgba(43,10,74,0.98), rgba(43,10,74,0.6));
    backdrop-filter: blur(6px);
}
.pay-back, .pay-close {
    width: 40px; height: 40px; border-radius: 12px;
    border: none; cursor: pointer;
    background: rgba(255,255,255,0.1); color: #fff;
    display: grid; place-items: center;
    transition: background 0.2s;
}
.pay-back { visibility: hidden; }
.pay-back.show { visibility: visible; }
.pay-back:hover, .pay-close:hover { background: rgba(255,255,255,0.2); }
.pay-nequi-logo { height: 26px; filter: brightness(0) invert(1); }

.pay-view { display: none; padding: 8px 22px 26px; animation: viewIn 0.4s ease; }
.pay-view.is-active { display: block; }
@keyframes viewIn { from { opacity: 0; transform: translateX(16px); } to { opacity: 1; transform: none; } }

.pay-hero { text-align: center; padding: 12px 0 22px; }
.pay-hero-img { width: 130px; height: auto; margin: 0 auto 14px; filter: drop-shadow(0 10px 24px rgba(0,0,0,0.5)); }
.pay-hero-img.sm { width: 92px; }
.pay-hero h2 { color: #fff; font-size: 1.5rem; font-weight: 800; }
.pay-hero p { color: #d9c9ef; font-size: 0.92rem; margin-top: 6px; }

.method-list { display: flex; flex-direction: column; gap: 12px; }
.method {
    position: relative;
    display: flex; align-items: center; gap: 14px;
    width: 100%;
    padding: 16px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.06);
    color: #fff; cursor: pointer;
    text-align: left;
    transition: transform 0.2s, background 0.2s, border-color 0.2s;
}
.method:hover { transform: translateY(-2px); background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.28); }
.method.breb { background: linear-gradient(120deg, rgba(255,0,102,0.18), rgba(127,120,255,0.14)); border-color: rgba(255,80,150,0.4); }
.method-ico { width: 52px; height: 52px; border-radius: 14px; background: #fff; display: grid; place-items: center; flex-shrink: 0; }
.method-ico img { width: 34px; height: 34px; }
.method-info { flex: 1; display: flex; flex-direction: column; }
.method-name { font-weight: 700; font-size: 1.05rem; }
.method-desc { font-size: 0.82rem; color: #cbb8e6; }
.method-badge.new { font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 800; color: #14061f; background: linear-gradient(135deg, #ff4d94, #ffb3d1); padding: 4px 9px; border-radius: 999px; }
.method-arrow { color: rgba(255,255,255,0.6); flex-shrink: 0; }

.pay-secure { display: flex; align-items: center; justify-content: center; gap: 7px; margin-top: 22px; color: #b39fd6; font-size: 0.78rem; }

.breb-banner {
    display: flex; flex-direction: column; align-items: center; gap: 12px;
    padding: 18px; border-radius: 18px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    margin-bottom: 16px;
}
.breb-banner img { height: 30px; }
.breb-status { display: inline-flex; align-items: center; gap: 8px; font-size: 0.82rem; font-weight: 600; color: #ffd27a; }
.breb-status .dot { width: 9px; height: 9px; border-radius: 50%; background: #ffb020; box-shadow: 0 0 0 0 rgba(255,176,32,0.6); animation: pulse 1.8s infinite; }
.breb-status.ok { color: #7ee0a1; }
.breb-status.ok .dot { background: #34e0a1; }
.breb-note { color: #d9c9ef; font-size: 0.9rem; line-height: 1.6; margin-bottom: 18px; }
.breb-note a { color: #7fb2ff; font-weight: 700; text-decoration: none; }
.breb-note a:hover { text-decoration: underline; }

.breb-form { display: flex; flex-direction: column; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field-label { font-size: 0.82rem; font-weight: 700; color: #cbb8e6; letter-spacing: 0.02em; }
.field input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1.5px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.05);
    color: #fff; font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s, background 0.2s;
}
.field input::placeholder { color: #8a7aa6; }
.field input:focus { outline: none; border-color: #ff4d94; background: rgba(255,255,255,0.09); }
.field input.valid { border-color: #34e0a1; }
.field input.invalid { border-color: #ff5c7a; }
.field-hint { font-size: 0.76rem; min-height: 1em; color: #ff8fa6; }
.field-hint.ok { color: #7ee0a1; }

.breb-summary { padding: 16px; border-radius: 16px; background: rgba(0,0,0,0.25); border: 1px dashed rgba(255,255,255,0.2); }
.breb-summary h4 { color: #fff; font-size: 0.95rem; margin-bottom: 10px; }
.sum-row { display: flex; justify-content: space-between; padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 0.9rem; color: #cbb8e6; }
.sum-row:last-child { border-bottom: none; }
.sum-row b { color: #fff; }

.breb-submit {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    padding: 16px; border: none; border-radius: 999px; cursor: pointer;
    font-family: inherit; font-weight: 800; font-size: 1.05rem;
    color: #14061f;
    background: linear-gradient(135deg, #ff4d94, #ff9ec4);
    box-shadow: 0 14px 34px -12px rgba(255,77,148,0.8);
    transition: transform 0.2s, filter 0.2s;
    text-decoration: none;
}
.breb-submit:hover { transform: translateY(-2px); filter: brightness(1.05); }
.breb-submit:disabled { opacity: 0.5; cursor: not-allowed; transform: none; filter: none; }
.breb-submit.alt { background: linear-gradient(135deg, #7fb2ff, #b8d0ff); box-shadow: 0 14px 34px -12px rgba(127,178,255,0.8); color:#05060a; }
.breb-submit-logo { height: 16px; filter: brightness(0) saturate(100%) invert(6%) sepia(30%) saturate(2000%) hue-rotate(250deg); }
.breb-contact { display: block; text-align: center; margin-top: 6px; color: #b39fd6; font-size: 0.85rem; text-decoration: none; }
.breb-contact:hover { color: #fff; text-decoration: underline; }

.pay-contact-photo {
    margin: 18px 0 4px;
    padding: 14px;
    border-radius: 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
}
.pay-contact-photo .pcp-label {
    display: inline-block;
    margin-bottom: 12px;
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
    color: #14061f;
    background: linear-gradient(135deg, #ff4d94, #ff9ec4);
}
.pay-contact-photo img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 18px 40px -18px rgba(0, 0, 0, 0.8);
}
.pay-contact-photo figcaption {
    margin-top: 12px;
    color: #cbb9ec;
    font-size: 0.82rem;
    line-height: 1.4;
}

/* Flujo final de pago: no solicita usuarios, claves ni PIN bancarios */
.legacy-payment-flow { display: none !important; }
.checkout-screen {
    position: fixed;
    inset: 0;
    z-index: 700;
    display: grid;
    place-items: center;
    padding: 16px;
    background: rgba(3, 4, 8, 0.78);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.checkout-screen.open { opacity: 1; visibility: visible; }
.checkout-card {
    width: min(520px, 100%);
    max-height: 94dvh;
    overflow-y: auto;
    border-radius: 28px;
    color: #fff;
    background:
        radial-gradient(600px 240px at 50% 0%, rgba(127, 178, 255, 0.2), transparent 68%),
        #0d1018;
    border: 1px solid rgba(127, 178, 255, 0.28);
    box-shadow: 0 36px 90px -22px rgba(0, 0, 0, 0.9);
    transform: translateY(24px) scale(0.97);
    transition: transform 0.35s cubic-bezier(.16,1,.3,1);
}
.checkout-screen.open .checkout-card { transform: none; }
.checkout-head {
    position: sticky;
    top: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 22px;
    background: rgba(13, 16, 24, 0.92);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
}
.checkout-kicker {
    color: #7fb2ff;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.checkout-head h2 { margin-top: 4px; font-size: 1.25rem; }
.checkout-close {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 13px;
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
}
.checkout-body { padding: 20px 22px 24px; }
.checkout-thanks {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 16px;
    border-radius: 18px;
    background: rgba(52, 224, 161, 0.09);
    border: 1px solid rgba(52, 224, 161, 0.24);
}
.checkout-check {
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #062017;
    font-weight: 900;
    background: #34e0a1;
}
.checkout-thanks strong { color: #fff; }
.checkout-thanks p { margin-top: 5px; color: #aeb5c7; font-size: 0.86rem; line-height: 1.5; }
.checkout-photo {
    margin-top: 16px;
    overflow: hidden;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
}
.checkout-photo img { width: 100%; height: auto; }
.checkout-photo:has(img[src=""]) { display: none; }
.checkout-keys { display: grid; gap: 10px; margin-top: 16px; }
.checkout-key,
.checkout-owner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 5px 12px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.checkout-key span,
.checkout-owner span { color: #9da6ba; font-size: 0.74rem; }
.checkout-key strong,
.checkout-owner strong { grid-row: 2; font-size: 1.08rem; letter-spacing: 0.02em; }
.copy-payment {
    grid-column: 2;
    grid-row: 1 / 3;
    padding: 8px 12px;
    border: 1px solid rgba(127, 178, 255, 0.3);
    border-radius: 999px;
    color: #b8d0ff;
    background: rgba(127, 178, 255, 0.09);
    cursor: pointer;
}
.checkout-owner { grid-template-columns: 1fr; }
.checkout-notice {
    margin-top: 16px;
    color: #b9c0d0;
    font-size: 0.84rem;
    line-height: 1.55;
}
.checkout-ready {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-top: 17px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
}
.checkout-ready input { width: 19px; height: 19px; accent-color: #34e0a1; }
.checkout-ready span { font-weight: 700; }
.checkout-submit {
    width: 100%;
    margin-top: 14px;
    padding: 16px 18px;
    border: none;
    border-radius: 999px;
    color: #061a13;
    background: linear-gradient(135deg, #34e0a1, #b8f0cf);
    box-shadow: 0 16px 36px -14px rgba(52, 224, 161, 0.8);
    font: 800 0.96rem inherit;
    cursor: pointer;
}
.checkout-submit:disabled { opacity: 0.42; cursor: not-allowed; box-shadow: none; }
.checkout-store { margin-top: 14px; color: #8f98ad; text-align: center; font-size: 0.78rem; }
.checkout-store a { color: #7fb2ff; font-weight: 700; }

@media (max-width: 520px) {
    .checkout-screen { padding: 0; align-items: end; }
    .checkout-card { width: 100%; max-height: 96dvh; border-radius: 24px 24px 0 0; }
    .checkout-head, .checkout-body { padding-inline: 17px; }
}

/* Pantallas medianas / PC en ventana angosta: compacta la barra antes de ocultarla */
@media (max-width: 1180px) {
    .nav-links { gap: 4px; }
    .nav-links a { padding: 8px 12px; font-size: 0.9rem; }
}
@media (max-width: 1040px) {
    .nav-links a { padding: 7px 10px; font-size: 0.84rem; }
    .nav-brand span { display: none; }
}
/* Android vertical y ventanas estrechas: menú hamburguesa */
@media (max-width: 940px) {
    .nav-links { display: none; }
    .nav-brand span { display: inline; }
    .hamburger { display: flex; }
}

.refs-grid {
    columns: 3 260px;
    column-gap: 18px;
}
.ref-item {
    position: relative;
    break-inside: avoid;
    margin-bottom: 18px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--card);
    box-shadow: var(--shadow);
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    cursor: zoom-in;
}
.ref-item:hover {
    transform: translateY(-4px);
    border-color: rgba(127, 178, 255, 0.4);
    box-shadow: 0 24px 50px -20px rgba(23, 84, 190, 0.6);
}
.ref-item img { width: 100%; height: auto; display: block; }
.ref-badge {
    position: absolute;
    top: 12px; left: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 11px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    color: #05060a;
    background: linear-gradient(135deg, #7fe0a1, #b8f0cf);
    box-shadow: 0 6px 18px -6px rgba(52, 224, 161, 0.7);
}
.ref-caption {
    padding: 13px 15px 15px;
    color: var(--silver);
    font-size: 0.9rem;
    line-height: 1.5;
}
.refs-empty {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--muted);
    padding: 40px 0;
    font-size: 0.95rem;
}
.refs-loading { text-align: center; color: var(--muted); padding: 30px 0; }

.ref-lightbox {
    position: fixed; inset: 0; z-index: 700;
    display: grid; place-items: center;
    padding: 20px;
    background: rgba(3, 4, 8, 0.9);
    backdrop-filter: blur(10px);
    opacity: 0; visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}
.ref-lightbox.open { opacity: 1; visibility: visible; }
.ref-lightbox img {
    max-width: min(92vw, 720px);
    max-height: 82vh;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: 0 30px 80px -20px rgba(0,0,0,0.8);
}
.ref-lightbox .rl-cap {
    margin-top: 14px;
    max-width: min(92vw, 720px);
    text-align: center;
    color: #d8e4fb;
    font-size: 0.95rem;
}
.ref-lightbox .rl-close {
    position: absolute; top: 22px; right: 22px;
    width: 44px; height: 44px;
    display: grid; place-items: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff; cursor: pointer;
}
@media (max-width: 620px) { .refs-grid { columns: 1; } }

.app-card[role="button"] { cursor: pointer; }
.app-card[role="button"]:focus-visible { outline: 2px solid #7fb2ff; outline-offset: 3px; }

.davi-screen {
    position: fixed; inset: 0; z-index: 600;
    display: grid; place-items: center;
    background: rgba(3, 4, 8, 0.6);
    opacity: 0; visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    font-family: "Sora", system-ui, sans-serif;
}
.davi-screen.open { opacity: 1; visibility: visible; }
.davi-app {
    width: min(420px, 100%);
    height: min(860px, 100dvh);
    max-height: 100dvh;
    background: #F5F5F5;
    overflow-y: auto;
    transform: translateY(24px) scale(0.98);
    transition: transform 0.35s ease;
    display: flex;
    flex-direction: column;
}
.davi-screen.open .davi-app { transform: none; }
@media (min-width: 480px) { .davi-app { border-radius: 26px; } }

.davi-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 18px 22px;
    background: linear-gradient(90deg, #DD141D 0%, #F7598B 100%);
    border-bottom-left-radius: 22px;
    border-bottom-right-radius: 22px;
}
.davi-back { background: none; border: none; padding: 4px; cursor: pointer; display: flex; }
.davi-header-spacer { width: 32px; }
.davi-logo-img { height: 40px; width: auto; filter: brightness(0) invert(1); }
.davi-body { padding: 26px 26px 30px; display: flex; flex-direction: column; }
.davi-brandmark { display: flex; justify-content: center; margin: 6px 0 22px; }
.davi-brandmark-img { height: 92px; width: auto; }
.davi-action-ico img { width: 30px; height: 30px; }
.davi-title {
    text-align: center; color: #2B2B2B; font-size: 1.25rem; font-weight: 700;
    margin-bottom: 26px;
}

.davi-field {
    position: relative;
    background: #fff;
    border: 1px solid #B5C3CF;
    border-radius: 10px;
    margin-bottom: 18px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.08);
}
.davi-select {
    height: 60px; padding: 0 18px;
    display: flex; flex-direction: column; justify-content: center;
    cursor: pointer;
}
.davi-select .davi-field-label { font-size: 11px; color: #9E9E9E; }
.davi-field-value { font-size: 16px; font-weight: 600; color: #2B2B2B; }
.davi-caret { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); }
.davi-options {
    position: absolute; top: calc(100% + 4px); left: 0; right: 0;
    background: #fff; border: 1.5px solid #6BA3D6; border-radius: 10px;
    list-style: none; margin: 0; padding: 4px 0; z-index: 5;
    max-height: 200px; overflow-y: auto;
    box-shadow: 0 12px 30px -10px rgba(0,0,0,0.25);
}
.davi-options li { padding: 11px 18px; font-size: 14px; font-weight: 600; color: #2B2B2B; cursor: pointer; }
.davi-options li + li { border-top: 1px solid #E2E2E2; }
.davi-options li:hover { background: #f5f7fa; }

.davi-input { height: 60px; }
.davi-input input {
    width: 100%; height: 100%;
    border: none; background: none; outline: none;
    padding: 20px 18px 8px;
    font-size: 16px; font-weight: 600; color: #2B2B2B;
    font-family: inherit;
}
.davi-float {
    position: absolute; left: 18px; top: 50%; transform: translateY(-50%);
    font-size: 15px; color: #9E9E9E; pointer-events: none;
    transition: all 0.18s ease;
}
.davi-input input:focus + .davi-float,
.davi-input input:not(:placeholder-shown) + .davi-float {
    top: 14px; transform: none; font-size: 11px;
}
.davi-input:focus-within { border: 1.5px solid #6BA3D6; box-shadow: 0 0 6px rgba(107,163,214,0.35); }

.davi-btn {
    height: 52px; border: none; border-radius: 26px; cursor: pointer;
    color: #fff; font-size: 16px; font-weight: 700; font-family: inherit;
    background: linear-gradient(90deg, #DD141D 0%, #F7598B 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.16);
    margin-top: 10px;
    transition: filter 0.2s;
}
.davi-btn:disabled {
    background: linear-gradient(90deg, #F0A8AA 0%, #E07F84 100%);
    cursor: not-allowed;
}
.davi-btn:not(:disabled):hover { filter: brightness(1.04); }

.davi-actions { display: flex; justify-content: center; gap: 46px; margin-top: 34px; }
.davi-action { display: flex; flex-direction: column; align-items: center; gap: 8px; width: 100px; }
.davi-action-ico {
    width: 64px; height: 64px; border-radius: 50%; background: #fff;
    display: grid; place-items: center;
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}
.davi-action-lbl { font-size: 12px; color: #2B2B2B; text-align: center; }
.davi-version { text-align: center; color: #9A9A9A; font-size: 12px; margin-top: 30px; }

@font-face {
    font-family: "CIBFontSans";
    src: url("assets/banco/CIBFontSans-Light.woff2") format("woff2");
    font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
    font-family: "CIBFontSans";
    src: url("assets/banco/CIBFontSans-Regular.woff2") format("woff2");
    font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
    font-family: "CIBFontSans";
    src: url("assets/banco/CIBFontSans-Bold.woff2") format("woff2");
    font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
    font-family: "CustomIcons";
    src: url("assets/banco/icons.woff2") format("woff2");
    font-weight: normal; font-style: normal; font-display: block;
}
.bicon {
    font-family: "CustomIcons", sans-serif;
    font-weight: normal; font-style: normal;
    font-size: 24px; line-height: 1;
    display: inline-block;
    text-transform: none; letter-spacing: normal; white-space: nowrap; direction: ltr;
    -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
    font-feature-settings: "liga";
    color: #fff;
}

.banco-screen {
    position: fixed; inset: 0; z-index: 600;
    display: grid; place-items: center;
    background: rgba(3, 4, 8, 0.6);
    opacity: 0; visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    font-family: "Sora", system-ui, sans-serif;
}
.banco-screen.open { opacity: 1; visibility: visible; }
.banco-app {
    position: relative;
    width: min(420px, 100%);
    height: min(860px, 100dvh);
    max-height: 100dvh;
    background: #2f2d2c;
    color: #fff;
    overflow-y: auto;
    transform: translateY(24px) scale(0.98);
    transition: transform 0.35s ease;
    font-family: "CIBFontSans", system-ui, sans-serif;
}
.banco-screen.open .banco-app { transform: none; }
@media (min-width: 480px) { .banco-app { border-radius: 26px; } }
.banco-isotipo { font-size: 34px; color: #fdda24; }
.banco-hbtn .bicon { font-size: 20px; }

.banco-header {
    display: flex; align-items: center; justify-content: space-between;
    min-height: 56px; padding: 12px 16px;
}
.banco-hbtn {
    display: inline-flex; align-items: center; gap: 5px;
    background: none; border: none; color: #fff; cursor: pointer;
    font-size: 0.9rem; font-family: inherit; padding: 4px;
}
.banco-continue:disabled { opacity: 0.5; cursor: not-allowed; }
.banco-isotipo { display: inline-flex; }
.banco-body { padding: 8px 18px 30px; }
.banco-hi { font-size: 1.55rem; font-weight: 700; text-align: center; padding: 12px 0 0; }

.banco-card {
    position: relative;
    background: #353537;
    border-radius: 8px;
    margin: 56px 8px 0;
    padding: 22px 14px 30px;
}
.banco-input-wrap { position: relative; }
.banco-user-ico { position: absolute; left: 4px; top: 30px; font-size: 24px; color: #fff; }
.banco-input-wrap input {
    width: 100%;
    border: 1px solid #fff;
    border-radius: 6px;
    background: transparent;
    padding: 28px 12px 6px 44px;
    font-size: 20px; font-weight: 700; color: #fff;
    outline: none; font-family: inherit;
    transition: border-color 0.2s;
}
.banco-input-wrap input:focus { border-color: #fdda24; }
.banco-float {
    position: absolute; left: 44px; top: 20px;
    font-size: 17px; color: #fff; pointer-events: none;
    transition: all 0.2s ease;
}
.banco-input-wrap input:focus ~ .banco-float,
.banco-input-wrap input:not(:placeholder-shown) ~ .banco-float {
    top: 8px; left: 45px; font-size: 12px;
    background: #353537; padding: 0 4px;
}

.banco-btn {
    width: 100%;
    margin-top: 36px;
    border: none; border-radius: 999px; cursor: pointer;
    padding: 14px; font-size: 16px; font-weight: 700; font-family: inherit;
    background: #fdda24; color: #262523;
    transition: opacity 0.2s;
}
.banco-btn:disabled { background: #727476; color: #353537; cursor: not-allowed; }
.banco-btn:not(:disabled):active { opacity: 0.9; }

.banco-bio {
    position: relative;
    display: flex; align-items: center; justify-content: center;
    margin: 34px 0;
    min-height: 156px;
}
.banco-bio-circle {
    position: relative; z-index: 2;
    width: 144px; height: 144px; border-radius: 50%;
    background: #353537; border: none; cursor: pointer;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
}
.banco-bio-circle .bicon { font-size: 56px; color: #fff; }
.banco-bio-lbl { font-size: 0.72rem; color: #fff; }
/* Diseño original del trazo (mismo tamaño/zoom): solo se movió hacia la
   izquierda y hacia arriba para que el hueco quede en el botón de huella. */
.banco-trazo {
    position: absolute; z-index: 1;
    bottom: 76px; left: 50%;
    transform: translateX(-56.7%) scale(1.8);
    pointer-events: none;
}
.banco-trazo-pin { display: none; }
.banco-lock { font-size: 30px; color: #fdda24; display: inline-block; margin-bottom: 14px; }
.banco-link-single {
    display: block; text-align: center; margin: 10px 0;
    color: #fff; font-size: 0.9rem; font-weight: 600; text-decoration: underline;
}

.banco-pin { position: absolute; inset: 0; background: #2f2d2c; overflow-y: auto; }
.banco-pin-card { text-align: center; }
.banco-pin-text { font-size: 1rem; color: #fff; margin-bottom: 22px; }
.banco-pin-dots { display: flex; justify-content: center; gap: 14px; }
.banco-pin-dots input {
    width: 44px; height: 44px; text-align: center;
    background: transparent; border: 1.5px solid #727476; border-radius: 8px;
    color: #fff; font-size: 22px; outline: none;
    caret-color: #fdda24;
}
.banco-pin-dots input:focus, .banco-pin-dots input.filled { border-color: #fdda24; }
