:root {
    --gold: #1DB954;
    --red: #1DB954;
    --red2: #15a347;
    --red3: #5ee68a;
    --gold2: #15a347;
    --gold3: #5ee68a;
    --black: #0A0A0A;
    --dark: #111111;
    --dark2: #1A1A1A;
    --dark3: #222222;
    --dark4: #2A2A2A;
    --white: #FFFFFF;
    --gray: #AAAAAA;
    --gray2: #666666;
    --green: #1DB954;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

    body::before {
        content: '';
        position: fixed;
        inset: 0;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
        pointer-events: none;
        z-index: 0;
    }

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    background: rgba(10,10,10,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(29,185,84,0.35);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0
}

.nav-logo-img {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 3px;
    color: var(--red);
    text-decoration: none;
}

.nav-tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--black);
    background: var(--green);
    padding: 3px 9px;
    text-transform: uppercase
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

    .nav-links a {
        color: var(--gray);
        font-size: 13px;
        font-weight: 500;
        text-decoration: none;
        letter-spacing: 0.5px;
        transition: color 0.2s;
    }

        .nav-links a:hover {
            color: var(--red);
        }

.nav-cta {
    background: var(--red) !important;
    color: var(--black) !important;
    padding: 8px 20px;
    font-weight: 600 !important;
    transition: background 0.2s !important;
}

    .nav-cta:hover {
        background: #15a347 !important;
    }

/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 5% 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Animated gold lines background */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-bg-line {
    position: absolute;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(29,185,84,0.12), transparent);
    animation: lineFloat 6s ease-in-out infinite;
}

    .hero-bg-line:nth-child(1) {
        left: 15%;
        height: 60%;
        top: 20%;
        animation-delay: 0s;
    }

    .hero-bg-line:nth-child(2) {
        left: 35%;
        height: 40%;
        top: 30%;
        animation-delay: 1s;
    }

    .hero-bg-line:nth-child(3) {
        left: 55%;
        height: 70%;
        top: 10%;
        animation-delay: 2s;
    }

    .hero-bg-line:nth-child(4) {
        left: 75%;
        height: 50%;
        top: 25%;
        animation-delay: 0.5s;
    }

    .hero-bg-line:nth-child(5) {
        left: 90%;
        height: 45%;
        top: 15%;
        animation-delay: 1.5s;
    }

@keyframes lineFloat {
    0%, 100% {
        opacity: 0.3;
        transform: scaleY(1);
    }

    50% {
        opacity: 0.8;
        transform: scaleY(1.1);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 880px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 32px;
    border: 1px solid rgba(29,185,84,0.3);
    padding: 8px 20px;
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(64px, 10vw, 120px);
    line-height: 0.9;
    letter-spacing: 2px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.hero-title-gold {
    color: var(--red);
    font-size: clamp(64px, 10vw, 120px);
    font-family: 'Bebas Neue', sans-serif;
    line-height: 0.9;
    letter-spacing: 2px;
    display: block;
    text-transform: uppercase;
}

.hero-sub {
    font-size: 17px;
    color: var(--gray);
    max-width: 540px;
    margin: 28px auto 40px;
    font-weight: 300;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red);
    color: var(--black);
    padding: 16px 36px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s;
}

    .btn-primary:hover {
        background: #15a347;
        transform: translateY(-2px);
    }

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--white);
    padding: 16px 36px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.2);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s;
}

    .btn-secondary:hover {
        border-color: var(--red);
        color: var(--red);
    }

/* Scroll indicator */
.scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--gray2);
    animation: bounce 2s ease infinite;
}

    .scroll-hint::after {
        content: '';
        width: 1px;
        height: 40px;
        background: linear-gradient(180deg, var(--red), transparent);
    }

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }

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

/* ── SECTION BASE ── */
section {
    padding: 100px 5%;
    position: relative;
}

.section-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .section-label::after {
        content: '';
        flex: 1;
        max-width: 40px;
        height: 1px;
        background: var(--red);
    }

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1;
    letter-spacing: 1px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.section-sub {
    color: var(--gray);
    max-width: 560px;
    font-weight: 300;
    line-height: 1.7;
}

.gold-bar {
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--red), transparent);
}

/* ── SITUACIÓN ── */
.situacion {
    background: var(--dark);
}

.situacion-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--dark4);
    margin-top: 64px;
    border: 1px solid var(--dark4);
}

.situacion-card {
    background: var(--dark2);
    padding: 44px 32px;
    position: relative;
}

    .situacion-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--red);
    }

.situacion-icon {
    width: 60px;
    height: 60px;
    border: 2px solid rgba(29,185,84,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
}

.situacion-scenario {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.situacion-result {
    font-size: 13px;
    color: var(--gray);
    font-style: italic;
    margin-bottom: 16px;
}

.situacion-login-earn {
    display: inline-block;
    background: rgba(29,185,84,0.15);
    border: 1px solid rgba(29,185,84,0.5);
    color: #1DB954;
    font-weight: 700;
    font-size: 13px;
    padding: 6px 16px;
    letter-spacing: 1px;
    margin-left: 10px;
}

    .situacion-login-earn::after {
        content: "";
    }

.situacion-you {
    display: inline-block;
    background: rgba(29,185,84,0.1);
    border: 1px solid rgba(29,185,84,0.3);
    color: #1DB954;
    font-weight: 700;
    font-size: 15px;
    padding: 6px 16px;
    letter-spacing: 1px;
}

/* ── CÓMO GANAS ── */
.como {
    background: var(--black);
}

.como-flow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 64px;
    position: relative;
}

    .como-flow::before {
        content: '';
        position: absolute;
        top: 40px;
        left: 16%;
        right: 16%;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--red), var(--red), transparent);
        z-index: 0;
    }

.como-card {
    padding: 0 28px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.como-num {
    width: 80px;
    height: 80px;
    margin: 0 auto 28px;
    background: var(--dark2);
    border: 2px solid var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    color: var(--red);
}

.como-title {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.como-desc {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
}

/* ── BENEFICIOS ── */
.beneficios {
    background: var(--dark);
    padding-bottom: 0;
}

.beneficios-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 64px;
}

.beneficio-col-header {
    padding: 16px 24px;
    margin-bottom: 16px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

    .beneficio-col-header.gold-header {
        background: var(--red);
        color: var(--black);
    }

    .beneficio-col-header.outline-header {
        background: transparent;
        color: var(--red);
        border: 1px solid var(--red);
    }

.beneficio-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.beneficio-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--dark2);
    border: 1px solid var(--dark4);
    padding: 18px 20px;
    transition: border-color 0.3s;
}

    .beneficio-item:hover {
        border-color: rgba(29,185,84,0.3);
    }

.beneficio-item-icon {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.beneficio-item-text {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

    .beneficio-item-text strong {
        color: var(--white);
        display: block;
        margin-bottom: 2px;
        font-size: 15px;
    }

/* ── PUNTOS & STATUS ── */
.puntos {
    background: var(--black);
}

.puntos-layout {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 48px;
    margin-top: 64px;
    align-items: start;
}

.puntos-table {
    border: 1px solid var(--dark4);
    overflow: hidden;
}

.puntos-table-header {
    display: grid;
    grid-template-columns: 1fr 120px 80px;
    background: var(--dark2);
    padding: 12px 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--red);
    text-transform: uppercase;
    gap: 16px;
}

.puntos-row {
    display: grid;
    grid-template-columns: 1fr 120px 80px;
    padding: 14px 20px;
    gap: 16px;
    align-items: center;
    border-top: 1px solid var(--dark4);
    transition: background 0.2s;
}

    .puntos-row:hover {
        background: var(--dark2);
    }

    .puntos-row:nth-child(even) {
        background: rgba(255,255,255,0.02);
    }

        .puntos-row:nth-child(even):hover {
            background: var(--dark2);
        }

.puntos-action {
    font-size: 14px;
    color: var(--white);
}

.puntos-val {
    font-size: 14px;
    font-weight: 700;
    text-align: center;
}

    .puntos-val.green {
        color: var(--green);
    }

    .puntos-val.gold {
        color: var(--red);
    }

    .puntos-val.blue {
        color: #1DB954;
    }

.puntos-type {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
    padding: 3px 8px;
}

.type-fijo {
    background: rgba(100,100,100,0.2);
    color: var(--gray);
}

.type-dinamico {
    background: rgba(46,204,113,0.12);
    color: var(--green);
}

.type-premium {
    background: rgba(29,185,84,0.12);
    color: var(--red);
}

.type-bono {
    background: rgba(123,156,255,0.12);
    color: #1DB954;
}

/* Status levels */
.status-box {
    background: var(--dark2);
    border: 1px solid var(--dark4);
    overflow: hidden;
}

.status-header {
    background: var(--dark3);
    padding: 16px 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--red);
    text-transform: uppercase;
    border-bottom: 1px solid var(--dark4);
}

.status-level {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    border-bottom: 1px solid var(--dark4);
    transition: background 0.2s;
}

    .status-level:hover {
        background: var(--dark3);
    }

    .status-level:last-child {
        border-bottom: none;
    }

.status-dot {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

.status-name {
    font-size: 14px;
    font-weight: 700;
    flex: 1;
}

.status-pts {
    font-size: 12px;
    color: var(--gray);
}

.antifraude-box {
    margin-top: 16px;
    background: rgba(29,185,84,0.05);
    border: 1px solid rgba(29,185,84,0.2);
    padding: 20px;
}

.antifraude-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.antifraude-desc {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.6;
}

/* ── FORM ── */
.form-section {
    background: var(--black);
}

.form-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 64px;
    align-items: center;
}

.form-left-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.form-left-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

    .form-left-title span {
        color: var(--red);
    }

.form-left-desc {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 32px;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.step-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px 0;
    border-bottom: 1px solid var(--dark4);
}

    .step-item:last-child {
        border-bottom: none;
    }

.step-circle {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    background: var(--red);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
}

.step-text {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
    padding-top: 4px;
}

    .step-text strong {
        color: var(--white);
        display: block;
        margin-bottom: 2px;
    }

form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--gray);
    text-transform: uppercase;
}

input, select, textarea {
    background: var(--dark2);
    border: 1px solid var(--dark4);
    color: var(--white);
    padding: 14px 16px;
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
}

    input:focus, select:focus, textarea:focus {
        border-color: var(--red);
    }

select {
    cursor: pointer;
}

    select option {
        background: var(--dark2);
    }

textarea {
    resize: vertical;
    min-height: 90px;
}

.form-submit {
    background: var(--red);
    color: var(--black);
    padding: 16px 32px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'DM Sans', sans-serif;
    transition: background 0.2s, transform 0.2s;
    width: 100%;
    margin-top: 8px;
}

    .form-submit:hover {
        background: var(--red2);
        transform: translateY(-2px);
    }

.form-note {
    font-size: 12px;
    color: var(--gray2);
    text-align: center;
    margin-top: 8px;
}

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    text-decoration: none;
    transition: transform 0.3s;
    animation: pulse-wa 2s infinite;
}

    .whatsapp-float:hover {
        transform: scale(1.1);
    }

@keyframes pulse-wa {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    }

    50% {
        box-shadow: 0 4px 32px rgba(37,211,102,0.6);
    }
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    fill: white;
}

/* ── FOOTER ── */
footer {
    background: #000000;
    border-top: 1px solid #222222;
    padding: 40px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 3px;
    color: var(--red);
}

.footer-links {
    display: flex;
    gap: 24px;
}

    .footer-links a {
        font-size: 13px;
        color: #ffffff;
        text-decoration: none;
        transition: color 0.2s;
    }

        .footer-links a:hover {
            color: var(--red);
        }

.footer-copy {
    font-size: 12px;
    color: #ffffff;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    animation: fadeUp 0.7s ease forwards;
}

.fade-up-1 {
    animation-delay: 0.1s;
    opacity: 0;
}

.fade-up-2 {
    animation-delay: 0.25s;
    opacity: 0;
}

.fade-up-3 {
    animation-delay: 0.4s;
    opacity: 0;
}

.fade-up-4 {
    animation-delay: 0.55s;
    opacity: 0;
}


/* ── CTA BOX ── */
.cta-box {
    background: var(--dark2);
    border: 1px solid rgba(29,185,84,0.25);
    border-top: 3px solid var(--red);
    padding: 52px 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 28px;
}

.cta-box-icon {
    width: 72px;
    height: 72px;
    border: 2px solid rgba(29,185,84,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-box-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 40px;
    letter-spacing: 2px;
    color: var(--white);
    line-height: 1.1;
    text-transform: uppercase;
}

    .cta-box-title span {
        color: var(--red);
    }

.cta-box-desc {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
    max-width: 320px;
}

.btn-cta-registro {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--red);
    color: var(--black);
    padding: 18px 44px;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s;
    width: 100%;
    justify-content: center;
}

    .btn-cta-registro:hover {
        background: #15a347;
        transform: translateY(-2px);
        box-shadow: 0 8px 32px rgba(29,185,84,0.35);
    }

.cta-box-note {
    font-size: 12px;
    color: var(--gray2);
}

/* ── RESPONSIVE ── */

/* Tablet */
@media (max-width: 900px) {
    section {
        padding: 72px 5%;
    }

    .nav-links a:not(.nav-cta) {
        display: none;
    }

    .hero {
        padding: 100px 5% 60px;
    }

    .situacion-grid {
        grid-template-columns: 1fr;
    }

    .situacion-card {
        padding: 32px 24px;
    }

    .como-flow {
        grid-template-columns: 1fr;
        gap: 40px;
    }

        .como-flow::before {
            display: none;
        }

    .como-card {
        padding: 0;
    }

    .beneficios-cols {
        grid-template-columns: 1fr;
    }

    .form-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .cta-box {
        padding: 40px 28px;
    }

    footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 16px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    nav {
        padding: 0 4%;
    }

    section {
        padding: 60px 4%;
    }

    .hero {
        padding: 90px 4% 50px;
        min-height: auto;
    }

    .hero-sub {
        font-size: 15px;
        margin: 20px auto 32px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

        .hero-actions a {
            text-align: center;
            justify-content: center;
            padding: 15px 24px;
        }

    .section-title {
        font-size: clamp(32px, 8vw, 48px);
    }

    .hero-title {
        font-size: clamp(48px, 12vw, 80px);
    }

    .hero-title-gold {
        font-size: clamp(48px, 12vw, 80px);
    }

    .situacion-grid {
        grid-template-columns: 1fr;
    }

    .situacion-card {
        padding: 28px 20px;
    }

    .como-flow {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .como-card {
        padding: 0;
        text-align: left;
    }

    .como-num {
        margin: 0 0 20px 0;
    }

    .beneficios-cols {
        grid-template-columns: 1fr;
    }

    .beneficio-item {
        padding: 14px 16px;
    }

    .video-wrapper {
        margin-top: 40px;
    }

    .form-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-left-title {
        font-size: clamp(36px, 10vw, 56px);
    }

    .cta-box {
        padding: 32px 20px;
    }

    .btn-cta-registro {
        padding: 16px 24px;
        font-size: 14px;
    }

    footer {
        padding: 32px 4%;
        gap: 16px;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }

        .footer-links a {
            font-size: 14px;
        }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

        .whatsapp-float svg {
            width: 24px;
            height: 24px;
        }

    .scroll-hint {
        display: none;
    }

    .section-label {
        font-size: 10px;
    }

    .section-sub {
        font-size: 14px;
    }

    .step-item {
        gap: 12px;
    }

    .step-circle {
        width: 28px;
        height: 28px;
        font-size: 16px;
        flex-shrink: 0;
    }

    .hero-eyebrow {
        font-size: 10px;
        letter-spacing: 2px;
        padding: 6px 14px;
    }
}

/* Small mobile */
@media (max-width: 380px) {
    .hero-title {
        font-size: 44px;
    }

    .hero-title-gold {
        font-size: 44px;
    }

    .section-title {
        font-size: 32px;
    }

    .cta-box-title {
        font-size: 32px;
    }
}
