/* MAAT JURÍDICA — Insolvencia · Diseño propio */

:root {
    --black: #030305;
    --dark: #0a0a10;
    --card: #12121a;
    --card-hover: #1a1a26;
    --border: rgba(255, 193, 7, 0.15);
    --gold: #FFC107;
    --gold-bright: #FFE566;
    --gold-deep: #FF9800;
    --gold-glow: rgba(255, 193, 7, 0.45);
    --white: #ffffff;
    --text: #f0f0f5;
    --muted: #9a9ab0;
    --green: #25d366;
    --red: #ff6b6b;
    --font-display: 'Poppins', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --radius: 16px;
    --radius-lg: 24px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--text);
    font-size: 1.02rem;
    line-height: 1.75;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; object-fit: cover; }

a { color: var(--gold-bright); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }

.container { width: min(1140px, 92%); margin-inline: auto; }
.text-center { text-align: center; }

.gradient-text {
    background: linear-gradient(135deg, var(--gold-bright), var(--gold), var(--gold-deep));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; }
h1 { font-weight: 800; font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.15rem; }

.label, .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.section { padding: clamp(4rem, 8vw, 6rem) 0; }
.section-dark { background: var(--dark); }
.section-head { margin-bottom: 2.5rem; max-width: 640px; }
.section-head.text-center { margin-inline: auto; }
.section-head p { color: var(--muted); margin-top: 0.75rem; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.9rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
    position: relative;
    overflow: hidden;
}

.btn:hover { transform: translateY(-2px); }

.btn-gold {
    background: linear-gradient(135deg, var(--gold-bright), var(--gold), var(--gold-deep));
    color: #1a1000;
    box-shadow: 0 4px 24px var(--gold-glow);
}

.btn-gold:hover { color: #1a1000; box-shadow: 0 8px 36px var(--gold-glow); }

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.25);
}

.btn-outline:hover { border-color: var(--gold); color: var(--gold-bright); }

.btn-ghost {
    background: rgba(255,255,255,0.04);
    color: var(--text);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
}

.btn-ghost:hover {
    color: var(--gold-bright);
    border-color: rgba(255,193,7,0.4);
    background: rgba(255,193,7,0.06);
}

.btn-xl { padding: 1.1rem 2.2rem; font-size: 1.02rem; }
.btn-block { width: 100%; }
.btn-header { font-size: 0.88rem; padding: 0.7rem 1.4rem; }

.shine::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0%, 100% { left: -100%; }
    50% { left: 150%; }
}

/* Reveal */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.65s ease, transform 0.65s ease;
    transition-delay: var(--delay, 0s);
}

.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.12s; }

/* Header */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0.85rem 0;
    background: transparent;
    backdrop-filter: none;
    border-bottom: 1px solid transparent;
    transition: padding 0.3s, box-shadow 0.3s, background 0.4s, border-color 0.4s;
}

.site-header.scrolled {
    padding: 0.55rem 0;
    background: rgba(3,3,5,0.92);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 24px rgba(0,0,0,0.5);
    border-bottom-color: rgba(255,193,7,0.08);
}

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.5rem;
}

.logo { display: flex; align-items: center; }
.logo-img { height: 42px; width: auto; }
.logo-img--header { height: 38px; }
.logo-img--footer { height: 72px; }

.nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(1rem, 2.5vw, 2rem);
    flex-wrap: wrap;
}

.nav a {
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.25s;
}

.nav a:hover { color: var(--gold-bright); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold);
    transition: 0.3s;
}

/* Hero — limpio y elegante */
.hero-maat {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 60px);
    min-height: calc(100dvh - 60px);
    background: var(--black);
    overflow: hidden;
}

.hero-maat::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 55%;
    height: 70%;
    background: radial-gradient(ellipse, rgba(255,193,7,0.07) 0%, transparent 70%);
    pointer-events: none;
}

.hero-maat::after {
    content: '';
    position: absolute;
    top: 10%;
    right: -5%;
    width: 45%;
    height: 65%;
    background: radial-gradient(ellipse, rgba(255,193,7,0.06) 0%, transparent 65%);
    pointer-events: none;
}

.hero-maat__wrap {
    position: relative;
    z-index: 1;
    flex: 1;
    display: grid;
    grid-template-columns: 1fr minmax(320px, 460px);
    grid-template-rows: auto auto;
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
    padding: 6.5rem 0 2.5rem;
}

.hero-maat__intro {
    grid-column: 1;
    grid-row: 1;
}

.hero-maat__cta {
    grid-column: 1;
    grid-row: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0;
    align-self: start;
}

.hero-maat__figure {
    grid-column: 2;
    grid-row: 1 / 3;
    position: relative;
    margin: 0;
    justify-self: end;
    align-self: center;
    width: 100%;
    max-width: 440px;
    padding: 8px;
}

.hero-maat__eyebrow {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.hero-maat__intro h1 {
    font-size: clamp(2.15rem, 4.2vw, 3.1rem);
    font-weight: 700;
    line-height: 1.22;
    letter-spacing: -0.025em;
    margin-bottom: 1.35rem;
    max-width: 24ch;
}

.hero-maat__body p {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 48ch;
}

.hero-maat__sign {
    margin-top: 1.1rem !important;
    color: var(--gold-bright) !important;
    font-weight: 600;
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
}

.hero-maat__ring {
    position: absolute;
    border-radius: calc(var(--radius-lg) + 4px);
    border: 1px solid rgba(255,193,7,0.28);
    pointer-events: none;
    z-index: 0;
}

.hero-maat__ring--1 {
    inset: -14px -18px -14px -18px;
    animation: heroRingSpin 24s linear infinite;
}

.hero-maat__ring--2 {
    inset: -28px -34px -28px -34px;
    border-color: rgba(255,193,7,0.14);
    border-radius: calc(var(--radius-lg) + 8px);
    animation: heroRingSpin 32s linear infinite reverse;
}

@keyframes heroRingSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-maat__figure-bg {
    position: absolute;
    inset: 12px -14px -14px 14px;
    border-radius: var(--radius-lg);
    background: linear-gradient(160deg, rgba(255,193,7,0.2), rgba(255,152,0,0.07));
    border: 1px solid rgba(255,193,7,0.18);
    z-index: 0;
}

.hero-maat__figure img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    max-height: min(78vh, 640px);
    object-fit: cover;
    object-position: top center;
    border-radius: var(--radius-lg);
    box-shadow: 0 28px 70px rgba(0,0,0,0.5);
}

.hero-maat__badge {
    position: absolute;
    left: -0.5rem;
    bottom: 1.25rem;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    max-width: calc(100% - 1rem);
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, rgba(18,18,18,0.95), rgba(30,24,10,0.98));
    border: 1px solid rgba(255,193,7,0.45);
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.45), 0 0 20px rgba(255,193,7,0.12);
    backdrop-filter: blur(8px);
}

.hero-maat__badge i {
    flex-shrink: 0;
    font-size: 1.15rem;
    color: var(--gold-bright);
}

.hero-maat__badge span {
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.35;
    color: #fff;
}

.hero-maat__badge strong {
    color: var(--gold-bright);
    font-weight: 700;
}

/* Ticker — se mantiene igual */
.hero-showcase__ticker {
    position: relative;
    z-index: 3;
    margin-top: auto;
    padding: 0.85rem 0;
    background: linear-gradient(90deg, rgba(255,193,7,0.08), rgba(10,10,16,0.95) 20%, rgba(10,10,16,0.95) 80%, rgba(255,193,7,0.08));
    border-top: 1px solid var(--border);
    overflow: hidden;
}

.hero-showcase__ticker-track {
    display: flex;
    gap: 3rem;
    width: max-content;
    animation: tickerScroll 28s linear infinite;
}

.hero-showcase__ticker-track span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--muted);
    white-space: nowrap;
}

.hero-showcase__ticker-track i { color: var(--gold); font-size: 0.65rem; }

@keyframes tickerScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Split section */
.split-section__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.split-section__media { position: relative; }

.split-section__img {
    border-radius: var(--radius-lg);
    aspect-ratio: 4/3;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.split-section__badge {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
    color: #1a1000;
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 8px 30px var(--gold-glow);
}

.split-section__badge strong { display: block; font-size: 1.5rem; font-family: var(--font-display); line-height: 1; }
.split-section__badge span { font-size: 0.75rem; font-weight: 600; }

.split-section__text p { color: var(--muted); margin: 1rem 0 1.5rem; }

.split-section__text-p--mobile { display: none; }

.split-section__benefits-title {
    font-size: 1.15rem;
    margin-bottom: 0.85rem;
    color: var(--gold-bright);
}

.icon-list { list-style: none; display: grid; gap: 0.65rem; }

.icon-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.95rem;
}

.icon-list i { color: var(--gold); margin-top: 0.2rem; }

/* Timeline */
.timeline {
    position: relative;
    max-width: 680px;
    margin-inline: auto;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0.65rem;
    top: 0.5rem;
    bottom: 0.5rem;
    width: 2px;
    background: linear-gradient(180deg, var(--gold), transparent);
}

.timeline__item {
    position: relative;
    padding: 0 0 2rem 1.75rem;
}

.timeline__item:last-child { padding-bottom: 0; }

.timeline__dot {
    position: absolute;
    left: -2rem;
    top: 0.15rem;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--card);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--gold-bright);
}

.timeline__body h3 { margin-bottom: 0.35rem; }
.timeline__body p { color: var(--muted); font-size: 0.95rem; }

.timeline-slider {
    max-width: 680px;
    margin-inline: auto;
}

.timeline-slider__track { overflow: visible; }

.timeline-slider__btn,
.timeline-slider__hint { display: none; }

@media (max-width: 768px) {
    #proceso.section { padding: 2.5rem 0; }
    #proceso .section-head { margin-bottom: 1.5rem; }
    #proceso .text-center { margin-top: 1.5rem !important; }

    .timeline-slider {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        max-width: none;
    }

    .timeline-slider__track {
        flex: 1;
        overflow-x: auto;
        overflow-y: visible;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        scroll-padding-inline: 0.5rem;
        -webkit-overflow-scrolling: touch;
        padding: 0.5rem 0.25rem 0.75rem;
        scrollbar-width: none;
    }

    .timeline-slider__track::-webkit-scrollbar { display: none; }

    .timeline-slider__btn {
        display: flex;
        flex-shrink: 0;
        width: 38px;
        height: 38px;
        border-radius: 50%;
        border: 1px solid rgba(255,193,7,0.35);
        background: var(--card);
        color: var(--gold);
        cursor: pointer;
        align-items: center;
        justify-content: center;
    }

    .timeline-slider__hint {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.4rem;
        margin-top: 0.35rem;
        font-size: 0.8rem;
        color: var(--muted);
    }

    .timeline-slider__hint i { color: var(--gold); font-size: 0.72rem; }

    .timeline {
        display: flex;
        gap: 0.85rem;
        max-width: none;
        padding-left: 0;
    }

    .timeline::before { display: none; }

    .timeline__item {
        flex: 0 0 min(280px, 78vw);
        scroll-snap-align: center;
        padding: 1.15rem;
        background: var(--card);
        border: 1px solid var(--border);
        border-radius: var(--radius);
    }

    .timeline__item:last-child { padding-bottom: 1.15rem; }

    .timeline__dot {
        position: static;
        width: 2rem;
        height: 2rem;
        margin-bottom: 0.65rem;
        font-size: 0.8rem;
    }

    .timeline__body h3 { font-size: 1rem; }
    .timeline__body p { font-size: 0.88rem; line-height: 1.55; }
}

/* Resultados — carrusel horizontal */
.results-section {
    background: var(--dark);
    overflow: hidden;
}

.results-section .section-head {
    margin-inline: auto;
    text-align: center;
    max-width: 640px;
    margin-bottom: 2.5rem;
}

.results-section .section-head p {
    color: var(--muted);
    margin-top: 0.65rem;
}

.results-slider {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0 0.25rem;
}

.results-slider__track {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scroll-padding-inline: 0.5rem;
    -webkit-overflow-scrolling: touch;
    padding: 0.75rem 1.25rem 1.25rem 0.75rem;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) var(--card);
    flex: 1;
}

.results-slider__track::-webkit-scrollbar { height: 6px; }
.results-slider__track::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 3px;
}

.results-card {
    position: relative;
    flex: 0 0 min(300px, 82vw);
    scroll-snap-align: start;
    background: var(--card);
    border: 1px solid rgba(255, 193, 7, 0.22);
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.5rem;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.results-card:first-child {
    margin-left: 2px;
}

.results-card:last-child {
    margin-right: 2px;
}

.results-card--wide {
    flex: 0 0 min(380px, 88vw);
    min-height: 300px;
}

.results-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,193,7,0.35);
    box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}

.results-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255,193,7,0.12);
    border: 1px solid rgba(255,193,7,0.22);
    margin-bottom: 1rem;
}

.results-card__icon i {
    font-size: 1.2rem;
    color: var(--gold);
}

.results-card h3 {
    font-size: 1.08rem;
    margin-bottom: 0.65rem;
    padding-right: 2rem;
}

.results-card p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.7;
    flex: 1;
}

.results-card__num {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255,193,7,0.35);
    letter-spacing: 0.05em;
}

.results-slider__btn {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--card);
    color: var(--gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s, transform 0.25s;
    z-index: 2;
}

.results-slider__btn:hover {
    background: var(--gold);
    color: var(--black);
    transform: scale(1.05);
}

.results-slider__hint {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.results-slider__hint i { color: var(--gold); font-size: 0.75rem; }

@media (max-width: 768px) {
    .results-slider__btn { display: none; }
    .results-slider__track {
        mask-image: none;
        padding: 0.75rem 1rem 0.75rem 1rem;
        scroll-padding-inline: 1rem;
    }
    .results-card:first-child,
    .results-card:last-child { margin-left: 0; margin-right: 0; }
}

/* Compare */
.compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.compare__panel {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--card);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}

.compare__media {
    height: 240px;
    overflow: hidden;
    flex-shrink: 0;
    line-height: 0;
}

.compare__media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
}

.compare__media--before {
    background: #ffffff;
}

.compare__media--before img {
    object-fit: cover;
}

.compare__media--after {
    background: #0a0a10;
}

.compare__media--after img {
    object-position: center 18%;
}

.compare__content {
    padding: 1.5rem;
    flex: 1;
}

.compare__content h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.compare__panel--before h3 i { color: var(--red); }
.compare__panel--after h3 i { color: var(--green); }

.compare__content ul { list-style: none; display: grid; gap: 0.5rem; }

.compare__content li {
    font-size: 0.92rem;
    color: var(--muted);
    padding-left: 1.2rem;
    position: relative;
}

.compare__content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--gold);
}

.compare__panel--after { border-color: rgba(37,211,102,0.25); }

/* Comparativo cuota hipotecaria */
.payment-compare-section { background: var(--dark); }

.payment-compare {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1.25rem;
    align-items: stretch;
    max-width: 820px;
    margin-inline: auto;
}

.payment-compare__card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--card);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}

.payment-compare__head {
    padding: 1.15rem 1.25rem;
    text-align: center;
}

.payment-compare__card--before .payment-compare__head {
    background: linear-gradient(135deg, #1a1a26, #12121a);
    border-bottom: 1px solid rgba(255, 107, 107, 0.25);
}

.payment-compare__card--after .payment-compare__head {
    background: linear-gradient(135deg, rgba(255,193,7,0.28), rgba(255,152,0,0.12));
    border-bottom: 1px solid rgba(255,193,7,0.35);
}

.payment-compare__tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.45rem;
}

.payment-compare__card--after .payment-compare__tag { color: var(--gold-bright); }

.payment-compare__head h3 {
    font-size: 1rem;
    line-height: 1.35;
    color: var(--text);
}

.payment-compare__body {
    padding: 1.5rem 1.25rem 1.35rem;
    text-align: center;
}

.payment-compare__label {
    font-size: 0.88rem;
    color: var(--muted);
    margin-bottom: 0.35rem;
}

.payment-compare__amount {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 4vw, 2.35rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text);
    margin-bottom: 0.85rem;
}

.payment-compare__card--after .payment-compare__amount {
    color: var(--gold-bright);
}

.payment-compare__status {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.45rem 0.85rem;
    border-radius: 50px;
}

.payment-compare__status--bad {
    color: var(--red);
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.25);
}

.payment-compare__status--good {
    color: var(--green);
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.25);
}

.payment-compare__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    align-self: center;
    border-radius: 50%;
    background: var(--card);
    border: 1px solid rgba(255,193,7,0.35);
    color: var(--gold);
    flex-shrink: 0;
}

.payment-compare__note {
    text-align: center;
    color: var(--muted);
    font-size: 0.8rem;
    margin-top: 1.25rem;
}

/* Aplica */
.section-aplica { background: var(--dark); }

.aplica-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.5rem;
    align-items: center;
}

.aplica-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.aplica-checks { display: grid; gap: 0.65rem; margin: 1.25rem 0; }

.aplica-check {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.92rem;
    cursor: default;
}

.aplica-check input {
    accent-color: var(--gold);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.aplica-note {
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 1.25rem;
}

.aplica-visual img {
    border-radius: var(--radius-lg);
    aspect-ratio: 3/4;
    width: 100%;
    object-fit: cover;
    object-position: center top;
    box-shadow: 0 16px 48px rgba(0,0,0,0.35);
}

/* Stats */
.stats-section__head {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2.5rem;
}

.stats-section__head p { color: var(--muted); margin-top: 0.75rem; }

.stats-section__img {
    border-radius: var(--radius);
    aspect-ratio: 4/3;
    width: 100%;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: center;
}

.stats-row__item {
    padding: 1.75rem 1rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.stats-row__item--text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    min-height: 100%;
}

.stats-row__icon {
    font-size: 2rem;
    color: var(--gold-bright);
    line-height: 1;
}

.stats-row__highlight {
    color: var(--gold-bright);
    font-family: var(--font-display);
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    font-weight: 700;
    line-height: 1.35;
    margin: 0;
}

.stats-row__num {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--gold-bright);
    line-height: 1;
}

.stats-row__suffix {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
}

.stats-row__item p { color: var(--muted); font-size: 0.9rem; margin-top: 0.5rem; }

/* Voices */
.voices-slider {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0 0.25rem;
}

.voices-slider__viewport {
    position: relative;
    flex: 1;
    overflow: hidden;
    padding: 0.75rem 0;
}

.voices-slider__viewport::before,
.voices-slider__viewport::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 48px;
    z-index: 2;
    pointer-events: none;
}

.voices-slider__viewport::before {
    left: 0;
    background: linear-gradient(90deg, var(--black) 0%, transparent 100%);
}

.voices-slider__viewport::after {
    right: 0;
    background: linear-gradient(270deg, var(--black) 0%, transparent 100%);
}

.voices-slider__track {
    display: flex;
    gap: 1.25rem;
    width: max-content;
    will-change: transform;
}

.voice-card {
    flex: 0 0 320px;
    width: 320px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.voice-card:hover {
    border-color: rgba(255,193,7,0.35);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.voices-slider__btn {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,193,7,0.35);
    background: var(--card);
    color: var(--gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s, border-color 0.25s, transform 0.25s;
}

.voices-slider__btn:hover {
    background: rgba(255,193,7,0.12);
    border-color: var(--gold);
    transform: scale(1.05);
}

.voices-slider__hint {
    text-align: center;
    color: var(--muted);
    font-size: 0.82rem;
    margin-top: 0.5rem;
}

.voices-slider__hint i { color: var(--gold); font-size: 0.75rem; }

@media (max-width: 768px) {
    .voices-slider__btn {
        width: 38px;
        height: 38px;
        font-size: 0.85rem;
    }
    .voice-card {
        flex: 0 0 min(280px, 78vw);
        width: min(280px, 78vw);
    }
    .voices-slider__viewport::before,
    .voices-slider__viewport::after { width: 28px; }
}

.voice-card__stars { color: var(--gold); font-size: 0.8rem; margin-bottom: 0.75rem; display: flex; gap: 0.15rem; }

.voice-card p { font-style: italic; font-size: 0.95rem; line-height: 1.65; margin-bottom: 1rem; flex: 1; }

.voice-card cite { font-size: 0.8rem; color: var(--muted); font-style: normal; margin-top: auto; }

/* FAQ + Contact */
.faq-contact { background: var(--dark); }

.faq-contact__grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2.5rem;
    align-items: start;
}

.faq-list { display: grid; gap: 0.65rem; margin-top: 1.25rem; }

.faq-list__item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.faq-list__item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    list-style: none;
}

.faq-list__item summary::-webkit-details-marker { display: none; }

.faq-list__item summary i {
    color: var(--gold);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-list__item[open] summary i { transform: rotate(180deg); }

.faq-list__item p {
    padding: 0 1.25rem 1.1rem;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.65;
}

.contact-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--card);
    position: sticky;
    top: 100px;
}

.contact-card img {
    height: 220px;
    width: 100%;
    object-fit: cover;
    object-position: center top;
}

.contact-card__body { padding: 1.5rem; }

.contact-card__body > p { color: var(--muted); font-size: 0.92rem; margin: 0.75rem 0 1rem; }

.contact-card__list { list-style: none; margin-bottom: 1.25rem; display: grid; gap: 0.5rem; }

.contact-card__list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.88rem;
    color: var(--muted);
}

.contact-card__list i { color: var(--gold); }

.contact-card__tagline {
    text-align: center;
    font-size: 0.78rem;
    color: var(--muted);
    margin-top: 1rem;
    font-style: italic;
}

/* Footer */
.site-footer {
    position: relative;
    background: var(--black);
    border-top: 1px solid var(--border);
    padding-top: 3rem;
}

.footer-glow {
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.4;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
}

.footer-tagline { color: var(--muted); font-size: 0.92rem; margin-top: 0.75rem; max-width: 320px; }

.footer-contact h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: var(--gold-bright);
}

.footer-contact p { color: var(--muted); font-size: 0.92rem; margin-bottom: 0.35rem; }

.footer-social-wrap { margin-top: 1rem; }
.social-label { font-size: 0.78rem; color: var(--muted); display: block; margin-bottom: 0.5rem; }

.social-links { display: flex; gap: 0.65rem; }

.social-links a {
    width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: var(--card);
    border: 1px solid var(--border);
    color: var(--muted);
    transition: 0.25s;
}

.social-links a:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 1.25rem 0;
}

.footer-bottom-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.75rem;
    font-size: 0.82rem;
    color: var(--muted);
}

.footer-legal a { color: var(--muted); }
.footer-legal a:hover { color: var(--gold); }

/* WhatsApp float */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--green);
    color: #fff;
    padding: 0.85rem 1.2rem;
    border-radius: 50px;
    box-shadow: 0 6px 30px rgba(37,211,102,0.45);
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform 0.25s;
}

.whatsapp-float:hover { color: #fff; transform: scale(1.05); }
.whatsapp-float i { font-size: 1.4rem; }

.whatsapp-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50px;
    background: var(--green);
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.4); opacity: 0; }
}

.social-float {
    position: fixed;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 998;
}

.social-links--float { flex-direction: column; }

.social-links--float a {
    width: auto;
    border-radius: var(--radius);
    padding: 0.5rem 0.65rem;
    font-size: 0.75rem;
    gap: 0.4rem;
    flex-direction: column;
    height: auto;
}

.social-links--float span { font-size: 0.65rem; }

/* Responsive */
@media (max-width: 960px) {
    .header-inner { grid-template-columns: auto auto; }
    .nav {
        position: fixed;
        top: 0; right: -100%;
        width: min(320px, 85vw);
        height: 100vh;
        background: var(--dark);
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
        transition: right 0.35s;
        border-left: 1px solid var(--border);
    }

    .nav.is-open { right: 0; }
    .nav-toggle { display: flex; }
    .header-actions { display: none; }

    .split-section__inner,
    .compare,
    .payment-compare,
    .aplica-layout,
    .stats-section__head,
    .faq-contact__grid,
    .footer-grid,
    .hero-maat__wrap {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1.75rem;
    }

    .hero-maat__intro {
        order: 1;
        grid-column: 1;
        grid-row: auto;
        text-align: center;
        max-width: 36rem;
        margin-inline: auto;
        padding-inline: 0.25rem;
    }
    .hero-maat__eyebrow { text-align: center; }
    .hero-maat__figure {
        order: 2;
        grid-column: 1;
        grid-row: auto;
        justify-self: center;
        max-width: 360px;
        padding: 12px;
    }
    .hero-maat__badge {
        left: 0.5rem;
        bottom: 0.75rem;
        padding: 0.65rem 0.85rem;
    }
    .hero-maat__badge span { font-size: 0.78rem; }
    .hero-maat__cta {
        order: 3;
        grid-column: 1;
        grid-row: auto;
        justify-content: center;
    }
    .hero-maat__intro h1 {
        max-width: none;
        margin-inline: auto;
        text-wrap: balance;
    }
    .hero-maat__body p {
        max-width: 34rem;
        margin-inline: auto;
        text-wrap: pretty;
    }
    .hero-maat__sign { text-align: center; }

    .stats-section__img { max-height: 220px; }
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .stats-section { padding: 2.5rem 0; }
    .stats-section__head { gap: 1.5rem; margin-bottom: 1.5rem; }
    .stats-section__img { display: none; }
    .stats-row { gap: 0.85rem; }
    .stats-row__item { padding: 1.15rem 0.75rem; }
    .stats-row__num { font-size: 1.9rem; }
    .stats-row__suffix { font-size: 1.15rem; }
    .stats-row__item p { font-size: 0.8rem; margin-top: 0.35rem; }
    .stats-row__icon { font-size: 1.4rem; }
    .stats-row__highlight { font-size: 0.85rem; }
    .stats-row__item--text { gap: 0.45rem; }
    .contact-card { position: static; }
    .social-float { display: none; }
    .whatsapp-label { display: none; }
    .whatsapp-float { padding: 0.85rem; border-radius: 50%; }

    .section { padding: 3.5rem 0; }
    .container { width: 94%; }
    .section-head { margin-bottom: 2rem; }

    .split-section__media { order: -1; }
    .split-section__img { max-height: 200px; }
    #solucion.section { padding: 2.75rem 0; }
    .split-section__text { text-align: center; }
    .split-section__text h2 {
        font-size: 1.35rem;
        line-height: 1.3;
        margin-bottom: 0.75rem;
    }
    .split-section__text-p--full { display: none; }
    .split-section__text-p--mobile {
        display: block;
        font-size: 0.92rem;
        line-height: 1.6;
        margin: 0.5rem auto 1rem;
        max-width: 32rem;
    }
    .split-section__benefits-title {
        font-size: 1rem;
        margin-bottom: 0.65rem;
    }
    .split-section__text .icon-list {
        gap: 0.45rem;
        text-align: left;
        max-width: 22rem;
        margin-inline: auto;
    }
    .split-section__text .icon-list li { font-size: 0.88rem; }
    .split-section__badge {
        right: 0.75rem;
        bottom: -0.35rem;
        padding: 0.75rem 1rem;
    }
    .split-section__badge strong { font-size: 1.25rem; }

    .aplica-layout { gap: 1.25rem; }
    .aplica-visual {
        order: -1;
        justify-self: center;
        width: 100%;
        max-width: 300px;
        margin-inline: auto;
    }
    .aplica-visual img {
        height: 260px;
        aspect-ratio: auto;
        object-fit: cover;
        object-position: center 18%;
    }
    .aplica-card { padding: 1.5rem; }
    .aplica-card h2 { font-size: 1.45rem; line-height: 1.3; }
    .aplica-checks { margin: 1rem 0; gap: 0.55rem; }
    .aplica-check { font-size: 0.88rem; }

    .compare__media { height: 210px; }
    .compare__content { padding: 1.25rem; }

    .payment-compare {
        grid-template-columns: 1fr;
        gap: 0.85rem;
        max-width: 360px;
    }
    .payment-compare__arrow {
        width: 38px;
        height: 38px;
        margin-inline: auto;
        transform: rotate(90deg);
    }
    .payment-compare__head h3 { font-size: 0.92rem; }
    .payment-compare__amount { font-size: 1.75rem; }
    .payment-compare-section .section-head p { font-size: 0.9rem; }

    .stats-section__head { gap: 1.5rem; }
    .stats-section__head h2 { font-size: 1.4rem; }
    .stats-section__head p { font-size: 0.88rem; line-height: 1.55; }
    .voices-slider { gap: 0.5rem; }

    .faq-contact__grid { gap: 2rem; }
    .faq-list__item summary { font-size: 0.9rem; padding: 0.9rem 1rem; }
}

@media (max-width: 600px) {
    .section { padding: 3rem 0; }
    .stats-section { padding: 2rem 0; }
    .stats-row { grid-template-columns: repeat(2, 1fr); gap: 0.65rem; }
    .stats-row__item { padding: 0.9rem 0.5rem; }
    .stats-row__num { font-size: 1.65rem; }
    .stats-row__suffix { font-size: 1rem; }
    .stats-row__item p { font-size: 0.72rem; }
    .stats-row__highlight { font-size: 0.78rem; line-height: 1.25; }
    .stats-section__head { margin-bottom: 1.25rem; }
    .stats-section__head h2 { font-size: 1.25rem; }
    .hero-maat__cta { flex-direction: column; }
    .hero-maat__cta .btn { width: 100%; justify-content: center; }
    .hero-maat__figure { max-width: 300px; }
    .hero-maat__intro h1 { font-size: clamp(1.95rem, 7vw, 2.5rem); }
    .hero-maat__wrap { padding: 5.5rem 0 2rem; }

    .aplica-visual { max-width: 100%; }
    .aplica-visual img {
        height: 220px;
        object-position: center 15%;
    }
    .aplica-card { padding: 1.25rem; }
    .aplica-card h2 { font-size: 1.3rem; }
    .aplica-check { font-size: 0.85rem; gap: 0.5rem; }

    .split-section__inner { gap: 1.25rem; }
    .split-section__text h2 { font-size: 1.25rem; }

    .compare { gap: 1.25rem; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
    .whatsapp-float { bottom: 1rem; right: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; }
    .reveal { opacity: 1; transform: none; }
}
