/* ============================
       RESET & BASE
    ============================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --negro: #06080F;
    --magenta: #E91E8C;
    --verde: #39D353;
    --turquesa: #00D4FF;
    --azul: #1040C2;
    --naranja: #FF6B1A;
    --amarillo: #F4D03F;
    --rojo: #E53935;
    --navy: #0A0F2E;

    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-blur: blur(12px);

    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--negro);
    color: #e0e0e0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================
       CURSOR GLOW
    ============================ */
#cursor-dot {
    display: none;
}

#cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(233, 30, 140, 0.08) 0%, rgba(16, 64, 194, 0.04) 40%, transparent 70%);
    transition: transform 0.25s cubic-bezier(0.23, 1, 0.32, 1);
}

body:has(a:hover) #cursor-dot,
body:has(button:hover) #cursor-dot,
body:has(.btn:hover) #cursor-dot,
body:has(.product-card:hover) #cursor-dot {
    width: 18px;
    height: 18px;
    background: #fff;
    box-shadow: 0 0 12px var(--magenta), 0 0 30px rgba(233, 30, 140, 0.8);
}

/* cursor nativo preservado */

a {
    text-decoration: none;
    color: inherit;
}

/* ============================
       UTILITY
    ============================ */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-magenta {
    background: var(--magenta);
    color: #fff;
    box-shadow: 0 0 20px rgba(233, 30, 140, 0.4);
}

.btn-magenta:hover {
    background: #ff2fa0;
    box-shadow: 0 0 40px rgba(233, 30, 140, 0.7);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-ghost:hover {
    border-color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-2px);
}

.section-label {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--magenta);
    margin-bottom: 12px;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================
       NAV
    ============================ */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(6, 8, 15, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    transition: background 0.3s ease;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    letter-spacing: 2px;
    color: #fff;
}

.nav-logo span {
    color: var(--magenta);
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
    transition: color 0.25s;
}

.nav-links a:hover {
    color: #fff;
}

.nav-cta {
    font-size: 0.85rem;
    padding: 10px 22px;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
}

@media (max-width: 768px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }
}

/* ============================
       HERO
    ============================ */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: radial-gradient(ellipse at 60% 40%, #0d1a4a 0%, var(--negro) 70%);
}

#particle-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
}

/* Hero 2-col en desktop */
.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    width: 100%;
}

@media (max-width: 960px) {
    .hero-layout {
        grid-template-columns: 1fr;
    }

    .hero-carousel-side {
        display: none;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* ============================
       HERO CAROUSEL
    ============================ */
.hero-carousel-side {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.carousel-progress {
    height: 2px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    overflow: hidden;
}

.carousel-progress-bar {
    height: 100%;
    background: var(--magenta);
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(233, 30, 140, 0.6);
    transition: width 0.05s linear;
}

.carousel-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 28px 26px;
}

.carousel-card.magenta {
    border-color: rgba(233, 30, 140, 0.3);
    box-shadow: 0 8px 40px rgba(233, 30, 140, 0.12);
}

.carousel-card.amarillo {
    border-color: rgba(244, 208, 63, 0.3);
    box-shadow: 0 8px 40px rgba(244, 208, 63, 0.1);
}

.carousel-card.turquesa {
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 8px 40px rgba(0, 212, 255, 0.1);
}

.carousel-card.verde {
    border-color: rgba(57, 211, 83, 0.3);
    box-shadow: 0 8px 40px rgba(57, 211, 83, 0.1);
}

.carousel-card.naranja {
    border-color: rgba(255, 107, 26, 0.3);
    box-shadow: 0 8px 40px rgba(255, 107, 26, 0.1);
}

.carousel-card.azul {
    border-color: rgba(16, 64, 194, 0.4);
    box-shadow: 0 8px 40px rgba(16, 64, 194, 0.15);
}

.carousel-card-icon {
    font-size: 2.2rem;
    display: block;
    margin-bottom: 12px;
}

.carousel-card-badge {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 100px;
    margin-bottom: 12px;
}

.carousel-card.magenta .carousel-card-badge {
    background: rgba(233, 30, 140, 0.15);
    color: var(--magenta);
    border: 1px solid rgba(233, 30, 140, 0.3);
}

.carousel-card.amarillo .carousel-card-badge {
    background: rgba(244, 208, 63, 0.12);
    color: var(--amarillo);
    border: 1px solid rgba(244, 208, 63, 0.3);
}

.carousel-card.turquesa .carousel-card-badge {
    background: rgba(0, 212, 255, 0.1);
    color: var(--turquesa);
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.carousel-card.verde .carousel-card-badge {
    background: rgba(57, 211, 83, 0.1);
    color: var(--verde);
    border: 1px solid rgba(57, 211, 83, 0.3);
}

.carousel-card.naranja .carousel-card-badge {
    background: rgba(255, 107, 26, 0.12);
    color: var(--naranja);
    border: 1px solid rgba(255, 107, 26, 0.3);
}

.carousel-card.azul .carousel-card-badge {
    background: rgba(16, 64, 194, 0.18);
    color: #6b9fff;
    border: 1px solid rgba(16, 64, 194, 0.4);
}

.carousel-card-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: #fff;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.carousel-card-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.65;
    margin-bottom: 18px;
}

.carousel-card-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.carousel-card-features li {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    display: flex;
    align-items: center;
    gap: 8px;
}

.carousel-card-features li::before {
    content: '→';
    opacity: 0.4;
    font-size: 0.7rem;
}

/* Vue transition fade+slide */
.card-fade-enter-active {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.card-fade-leave-active {
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.card-fade-enter-from {
    opacity: 0;
    transform: translateY(18px);
}

.card-fade-leave-to {
    opacity: 0;
    transform: translateY(-12px);
}

/* Dots indicadores */
.carousel-dots {
    display: flex;
    gap: 8px;
    justify-content: flex-start;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.carousel-dot.active {
    background: var(--magenta);
    box-shadow: 0 0 8px rgba(233, 30, 140, 0.7);
    width: 22px;
    border-radius: 4px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(233, 30, 140, 0.12);
    border: 1px solid rgba(233, 30, 140, 0.3);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--magenta);
    margin-bottom: 28px;
}

.hero-eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--magenta);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--magenta);
    animation: pulse 1.5s infinite;
}

.hero-headline {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: 1;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 24px;
}

.hero-headline .accent {
    color: var(--magenta);
}

.hero-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 500px;
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero-chips {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.chip {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    padding: 8px 18px;
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.chip-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
}

/* ============================
       PRODUCTOS
    ============================ */
#productos {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--negro) 0%, #080c1e 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: #fff;
    letter-spacing: 1px;
    line-height: 1.1;
}

.section-desc {
    margin-top: 14px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 24px;
}

/* PagaYa ocupa toda la primera fila */
.product-card.star {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.product-card.star .card-main {}

.product-card.star .card-features-extended {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 4px;
}

.product-card.star .card-features-extended li {
    font-size: 0.83rem;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    list-style: none;
}

.product-card.star .card-features-extended li .fi {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: rgba(233, 30, 140, 0.12);
    border: 1px solid rgba(233, 30, 140, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.product-card.star .card-features-extended li div strong {
    display: block;
    font-size: 0.84rem;
    font-weight: 600;
    color: #fff;
}

.product-card.star .card-features-extended li div span {
    font-size: 0.77rem;
    color: rgba(255, 255, 255, 0.4);
}

.star-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(90deg, rgba(233, 30, 140, 0.25), rgba(16, 64, 194, 0.2));
    border: 1px solid rgba(233, 30, 140, 0.4);
    border-radius: 100px;
    padding: 4px 12px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 14px;
}

.star-badge::before {
    content: '★';
    color: var(--amarillo);
    font-size: 0.75rem;
}

.product-card.star .card-title {
    font-size: 2.6rem;
}

.product-card.star .card-desc {
    font-size: 0.92rem;
    max-width: 340px;
}

/* métricas rápidas en la star card */
.star-metrics {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: flex-start;
}

.star-metric {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 16px 18px;
}

.star-metric-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--magenta);
    line-height: 1;
    text-shadow: 0 0 20px rgba(233, 30, 140, 0.5);
}

.star-metric-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 4px;
}

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

    .product-card.star {
        grid-column: 1 / -1;
        grid-template-columns: 1fr;
    }

    .star-metrics {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

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

.product-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 36px 28px;
    cursor: pointer;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.15);
}

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

.product-card.magenta:hover {
    box-shadow: 0 20px 60px rgba(233, 30, 140, 0.25);
}

.product-card.magenta::before {
    background: radial-gradient(ellipse at top left, rgba(233, 30, 140, 0.08), transparent 60%);
}

.product-card.amarillo:hover {
    box-shadow: 0 20px 60px rgba(244, 208, 63, 0.2);
}

.product-card.amarillo::before {
    background: radial-gradient(ellipse at top left, rgba(244, 208, 63, 0.07), transparent 60%);
}

.product-card.turquesa:hover {
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
}

.product-card.turquesa::before {
    background: radial-gradient(ellipse at top left, rgba(0, 212, 255, 0.07), transparent 60%);
}

.product-card.verde:hover {
    box-shadow: 0 20px 60px rgba(57, 211, 83, 0.2);
}

.product-card.verde::before {
    background: radial-gradient(ellipse at top left, rgba(57, 211, 83, 0.07), transparent 60%);
}

.product-card.naranja:hover {
    box-shadow: 0 20px 60px rgba(255, 107, 26, 0.22);
}

.product-card.naranja::before {
    background: radial-gradient(ellipse at top left, rgba(255, 107, 26, 0.08), transparent 60%);
}

.naranja .card-badge {
    background: rgba(255, 107, 26, 0.14);
    color: var(--naranja);
    border: 1px solid rgba(255, 107, 26, 0.3);
}

.naranja .card-link {
    color: var(--naranja);
}

.product-card.azul:hover {
    box-shadow: 0 20px 60px rgba(16, 64, 194, 0.3);
}

.product-card.azul::before {
    background: radial-gradient(ellipse at top left, rgba(16, 64, 194, 0.1), transparent 60%);
}

.azul .card-badge {
    background: rgba(16, 64, 194, 0.18);
    color: #6b9fff;
    border: 1px solid rgba(16, 64, 194, 0.4);
}

.azul .card-link {
    color: #6b9fff;
}

.card-icon {
    font-size: 2.4rem;
    margin-bottom: 18px;
    display: block;
}

.card-badge {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 100px;
    margin-bottom: 14px;
}

.magenta .card-badge {
    background: rgba(233, 30, 140, 0.18);
    color: var(--magenta);
    border: 1px solid rgba(233, 30, 140, 0.3);
}

.amarillo .card-badge {
    background: rgba(244, 208, 63, 0.15);
    color: var(--amarillo);
    border: 1px solid rgba(244, 208, 63, 0.3);
}

.turquesa .card-badge {
    background: rgba(0, 212, 255, 0.12);
    color: var(--turquesa);
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.verde .card-badge {
    background: rgba(57, 211, 83, 0.12);
    color: var(--verde);
    border: 1px solid rgba(57, 211, 83, 0.3);
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #fff;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.card-desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.65;
    margin-bottom: 20px;
}

.card-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 24px;
}

.card-features li {
    font-size: 0.83rem;
    color: rgba(255, 255, 255, 0.65);
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-features li::before {
    content: '→';
    font-size: 0.75rem;
    opacity: 0.5;
}

.card-link {
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
}

.magenta .card-link {
    color: var(--magenta);
}

.amarillo .card-link {
    color: var(--amarillo);
}

.turquesa .card-link {
    color: var(--turquesa);
}

.verde .card-link {
    color: var(--verde);
}

.card-link:hover {
    gap: 10px;
}

/* ============================
       PAGAYA FEATURE
    ============================ */
#pagaya {
    padding: 100px 0;
    background: #07090f;
}

.feature-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

@media (max-width: 900px) {
    .feature-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 28px 0 36px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.feature-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(233, 30, 140, 0.12);
    border: 1px solid rgba(233, 30, 140, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 0 14px rgba(233, 30, 140, 0.2);
}

.feature-text strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 3px;
}

.feature-text span {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
}

/* Mockup teléfono */
.phone-mockup {
    display: flex;
    justify-content: center;
}

.phone {
    width: 220px;
    height: 420px;
    background: #10131f;
    border-radius: 36px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    box-shadow:
        0 0 0 8px rgba(255, 255, 255, 0.02),
        0 40px 80px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(233, 30, 140, 0.15);
    overflow: hidden;
    animation: phoneFloat 4s ease-in-out infinite;
}

@keyframes phoneFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.phone-notch {
    width: 80px;
    height: 20px;
    background: #06080F;
    border-radius: 0 0 14px 14px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.phone-screen {
    padding: 16px 14px;
}

.phone-header {
    font-size: 0.62rem;
    font-weight: 700;
    color: var(--magenta);
    font-family: var(--font-heading);
    letter-spacing: 1px;
    margin-bottom: 14px;
    text-align: center;
}

.qr-box {
    width: 120px;
    height: 120px;
    margin: 0 auto 14px;
    background: #fff;
    border-radius: 10px;
    padding: 8px;
    position: relative;
}

.qr-inner {
    width: 100%;
    height: 100%;
    background:
        repeating-linear-gradient(90deg, #000 0px, #000 3px, transparent 3px, transparent 7px),
        repeating-linear-gradient(0deg, #000 0px, #000 3px, transparent 3px, transparent 7px);
    opacity: 0.85;
    border-radius: 4px;
}

.qr-scan-line {
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    height: 2px;
    background: var(--magenta);
    box-shadow: 0 0 8px var(--magenta);
    animation: scan 2s linear infinite;
}

@keyframes scan {
    0% {
        top: 8px;
        opacity: 1;
    }

    90% {
        top: calc(100% - 10px);
        opacity: 1;
    }

    100% {
        top: 8px;
        opacity: 0;
    }
}

.phone-amount {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 6px;
}

.phone-status {
    text-align: center;
    font-size: 0.6rem;
    color: var(--verde);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 14px;
}

.phone-status::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--verde);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--verde);
    animation: pulse 1.5s infinite;
}

.phone-btn {
    display: block;
    text-align: center;
    background: var(--magenta);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 8px;
    border-radius: 8px;
    font-family: var(--font-body);
}

/* ============================
       CÓMO FUNCIONA — TIMELINE
    ============================ */
#como-funciona {
    padding: 100px 0;
    background: linear-gradient(180deg, #07090f 0%, var(--negro) 100%);
}

.timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    margin-top: 60px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.15) 0px, rgba(255, 255, 255, 0.15) 8px, transparent 8px, transparent 16px);
    z-index: 0;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 16px;
    position: relative;
    z-index: 1;
}

.step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(233, 30, 140, 0.1);
    border: 1px solid rgba(233, 30, 140, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--magenta);
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(233, 30, 140, 0.2);
    flex-shrink: 0;
}

.step-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 22px 18px;
    width: 100%;
}

.step-card h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.step-card p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.55;
}

@media (max-width: 768px) {
    .timeline {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .timeline::before {
        display: none;
    }
}

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

/* ============================
       STATS
    ============================ */
#stats {
    padding: 80px 0;
    background: var(--negro);
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-pill {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-pill:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-number .stat-accent {
    color: var(--magenta);
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 500;
}

@media (max-width: 640px) {
    .stats-row {
        grid-template-columns: 1fr 1fr;
    }
}

/* ============================
       TESTIMONIOS
    ============================ */
#testimonios {
    padding: 100px 0;
    background: #07090f;
    position: relative;
    overflow: hidden;
}

.testimonios-bg-quote {
    position: absolute;
    top: 20px;
    left: -20px;
    font-family: var(--font-heading);
    font-size: 20rem;
    color: rgba(255, 255, 255, 0.015);
    line-height: 1;
    user-select: none;
    pointer-events: none;
}

.testimonios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
}

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

.testi-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
}

.testi-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.testi-stars {
    color: var(--amarillo);
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testi-quote {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--magenta), var(--azul));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: #fff;
    flex-shrink: 0;
}

.testi-name {
    font-size: 0.88rem;
    font-weight: 600;
    color: #fff;
}

.testi-role {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ============================
       CTA FINAL
    ============================ */
#cta-final {
    padding: 120px 0;
    background: linear-gradient(135deg, #5c0a36 0%, #0a1a6e 50%, #0a1a3a 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

#cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-final-inner {
    position: relative;
    z-index: 2;
}

.cta-headline {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: #fff;
    line-height: 1.05;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.cta-sub {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 40px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.risk-reversal {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.5px;
}

.risk-reversal span {
    color: rgba(255, 255, 255, 0.6);
    margin: 0 6px;
}

/* ============================
       FOOTER
    ============================ */
footer {
    background: #030408;
    padding: 50px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 36px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: #fff;
}

.footer-logo span {
    color: var(--magenta);
}

.footer-links {
    display: flex;
    gap: 28px;
    list-style: none;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 0.83rem;
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.25s;
}

.footer-links a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.footer-copy {
    text-align: center;
    font-size: 0.77rem;
    color: rgba(255, 255, 255, 0.2);
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

/* ============================
       ANIMATIONS
    ============================ */
@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}