﻿/* ═══════════════════════════════════════════════════
   ClubManager Landing — Professional Product Page
   ═══════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --primary: #1a73e8;
    --primary-dark: #1557b0;
    --primary-light: #e8f0fe;
    --secondary: #34a853;
    --accent: #ff6b35;
    --dark: #0f172a;
    --dark-soft: #1e293b;
    --text: #1f2937;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    --bg: #ffffff;
    --bg-alt: #f8fafc;
    --border: #e2e8f0;
    --gradient: linear-gradient(135deg, #1a73e8 0%, #34a853 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --shadow-sm: 0 1px 3px rgba(0,0,0,.06);
    --shadow: 0 4px 16px rgba(0,0,0,.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,.15);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;
    --transition: all .3s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    background: var(--bg);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ─── Navbar ─── */
.l-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

    .l-nav.scrolled {
        border-color: var(--border);
        box-shadow: var(--shadow-sm);
    }

    .l-nav .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 72px;
    }

.l-nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--dark);
}

    .l-nav-brand span {
        background: var(--gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.l-nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

    .l-nav-links a {
        color: var(--text-secondary);
        font-weight: 500;
        font-size: .95rem;
    }

        .l-nav-links a:hover {
            color: var(--primary);
        }

.l-nav-cta {
    background: var(--gradient);
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: .9rem;
    box-shadow: 0 4px 15px rgba(26,115,232,.3);
}

    .l-nav-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(26,115,232,.4);
    }

.l-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    color: var(--dark);
}

    .l-nav-toggle svg {
        width: 24px;
        height: 24px;
    }

/* ─── Hero ─── */
.l-hero {
    padding: 160px 0 100px;
    background: linear-gradient(170deg, #f0f4ff 0%, #fff 50%, #f0fdf4 100%);
    position: relative;
    overflow: hidden;
}

    .l-hero::before {
        content: '';
        position: absolute;
        top: -200px;
        right: -200px;
        width: 600px;
        height: 600px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(26,115,232,.08) 0%, transparent 70%);
    }

    .l-hero::after {
        content: '';
        position: absolute;
        bottom: -150px;
        left: -150px;
        width: 500px;
        height: 500px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(52,168,83,.06) 0%, transparent 70%);
    }

    .l-hero .container {
        position: relative;
        z-index: 1;
        text-align: center;
    }

.l-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-light);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: .85rem;
    margin-bottom: 28px;
    border: 1px solid rgba(26,115,232,.15);
}

.l-hero h1 {
    font-size: clamp(2.5rem, 5.5vw, 4.2rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.l-hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.l-hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.l-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.l-btn-sm {
    padding: 10px 20px;
    font-size: .9rem;
}

.l-btn-primary {
    background: var(--gradient);
    color: #fff;
    box-shadow: 0 4px 20px rgba(26,115,232,.3);
}

    .l-btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(26,115,232,.4);
        color: #fff;
    }

.l-btn-outline {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--border);
}

    .l-btn-outline:hover {
        border-color: var(--primary);
        color: var(--primary);
        transform: translateY(-2px);
    }

.l-hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.l-hero-stat {
    text-align: center;
}

    .l-hero-stat strong {
        display: block;
        font-size: 2rem;
        font-weight: 800;
        color: var(--primary);
    }

    .l-hero-stat span {
        font-size: .9rem;
        color: var(--text-muted);
    }

/* ─── Secciones ─── */
.l-section {
    padding: 100px 0;
}

.l-section-alt {
    background: var(--bg-alt);
}

.l-section-dark {
    background: var(--gradient-dark);
    color: #fff;
}

    .l-section-dark .l-section-subtitle {
        color: rgba(255,255,255,.7);
    }

.l-section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.2;
}

.l-section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 60px;
}

/* ─── Logos / Social Proof ─── */
.l-logos {
    padding: 60px 0;
    border-bottom: 1px solid var(--border);
    text-align: center;
}

    .l-logos p {
        font-size: .9rem;
        color: var(--text-muted);
        margin-bottom: 24px;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

.l-logos-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
    opacity: .5;
}

    .l-logos-row span {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--text-secondary);
    }

/* ─── Features Grid ─── */
.l-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.l-feature-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}

    .l-feature-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-lg);
        border-color: transparent;
    }

    .l-feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--gradient);
        opacity: 0;
        transition: var(--transition);
    }

    .l-feature-card:hover::before {
        opacity: 1;
    }

.l-feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

    .l-feature-icon.blue {
        background: #e8f0fe;
    }

    .l-feature-icon.green {
        background: #e6f4ea;
    }

    .l-feature-icon.orange {
        background: #fff3e0;
    }

    .l-feature-icon.purple {
        background: #f3e8fd;
    }

    .l-feature-icon.red {
        background: #fce8e6;
    }

    .l-feature-icon.teal {
        background: #e0f7fa;
    }

    .l-feature-icon.amber {
        background: #fff8e1;
    }

    .l-feature-icon.pink {
        background: #fce4ec;
    }

.l-feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.l-feature-card p {
    color: var(--text-secondary);
    font-size: .95rem;
    line-height: 1.6;
}

/* ─── Carrusel de Capturas ─── */
.l-carousel-section {
    position: relative;
}

.l-carousel-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
}

.l-carousel-track {
    display: flex;
    transition: transform .5s cubic-bezier(.4,0,.2,1);
}

.l-carousel-slide {
    min-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.l-carousel-caption {
    text-align: center;
    margin-top: 20px;
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.l-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,.95);
    border: 1px solid var(--border);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    z-index: 10;
    font-size: 1.2rem;
}

    .l-carousel-btn:hover {
        background: var(--primary);
        color: #fff;
        border-color: var(--primary);
    }

.l-carousel-prev {
    left: -26px;
}

.l-carousel-next {
    right: -26px;
}

.l-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
}

.l-carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

    .l-carousel-dot.active {
        background: var(--primary);
        width: 32px;
        border-radius: 5px;
    }

/* ─── Carousel Slide con screenshot ─── */
.l-slide-card {
    aspect-ratio: 16/9;
    border-radius: 16px;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    padding: 32px 40px 0;
}

.l-slide-text {
    text-align: center;
    flex-shrink: 0;
    padding-bottom: 20px;
}

.l-slide-emoji {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.l-slide-text h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.l-slide-text p {
    opacity: .8;
    font-size: .9rem;
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.5;
}

.l-slide-screenshot {
    flex: 1;
    width: 88%;
    max-width: 700px;
    min-height: 0;
}

.l-screenshot-frame {
    background: rgba(0,0,0,.25);
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.12);
    border-bottom: none;
    box-shadow: 0 -8px 40px rgba(0,0,0,.3);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.l-screenshot-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(30,30,30,.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    flex-shrink: 0;
}

    .l-screenshot-bar > span:nth-child(-n+3) {
        display: block;
        width: 9px;
        min-width: 9px;
        height: 9px;
        border-radius: 50%;
        flex-shrink: 0;
    }

    .l-screenshot-bar > span:nth-child(1) {
        background: #ff5f57;
    }

    .l-screenshot-bar > span:nth-child(2) {
        background: #ffbd2e;
    }

    .l-screenshot-bar > span:nth-child(3) {
        background: #27c93f;
    }

.l-screenshot-title {
    display: block;
    flex: 1;
    min-width: 0;
    margin-left: 10px;
    font-size: .75rem;
    font-weight: 500;
    opacity: .85;
    letter-spacing: .3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: normal;
}

.l-screenshot-body {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: rgba(255,255,255,.15);
    background: rgba(255,255,255,.05);
    position: relative;
    min-height: 180px;
}

    .l-screenshot-body img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top;
        border-radius: 0;
        box-shadow: none;
        border: none;
    }

/* ─── Cómo funciona ─── */
.l-steps {
    display: flex;
    gap: 32px;
    counter-reset: step;
}

.l-step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 32px 20px;
}

    .l-step::before {
        counter-increment: step;
        content: counter(step);
        display: flex;
        align-items: center;
        justify-content: center;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: var(--gradient);
        color: #fff;
        font-size: 1.5rem;
        font-weight: 800;
        margin: 0 auto 20px;
        box-shadow: 0 6px 20px rgba(26,115,232,.3);
    }

    .l-step h3 {
        font-size: 1.1rem;
        font-weight: 700;
        margin-bottom: 8px;
    }

    .l-step p {
        color: var(--text-secondary);
        font-size: .95rem;
    }

/* ─── Pricing ─── */
.l-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: start;
}

.l-pricing-card {
    background: var(--bg);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

    .l-pricing-card.featured {
        border-color: var(--primary);
        transform: scale(1.05);
        box-shadow: 0 20px 50px rgba(26,115,232,.15);
    }

.l-pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: #fff;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 700;
}

.l-pricing-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.l-pricing-card .price {
    font-size: 3rem;
    font-weight: 900;
    color: var(--dark);
    margin: 16px 0;
}

    .l-pricing-card .price span {
        font-size: 1rem;
        font-weight: 500;
        color: var(--text-muted);
    }

.l-pricing-card .price-period {
    font-size: .9rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.l-pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
}

    .l-pricing-features li {
        padding: 10px 0;
        border-bottom: 1px solid var(--border);
        font-size: .95rem;
        color: var(--text-secondary);
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .l-pricing-features li::before {
            content: '✓';
            color: var(--secondary);
            font-weight: 700;
        }

.l-pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.l-pricing-card.featured:hover {
    transform: scale(1.05) translateY(-4px);
}

/* ─── Testimonios ─── */
.l-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.l-testimonials-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 0;
    color: var(--text-muted);
}

.l-spinner {
    width: 36px;
    height: 36px;
    border: 3px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: l-spin 1s linear infinite;
    margin: 0 auto 16px;
}

@keyframes l-spin {
    to {
        transform: rotate(360deg);
    }
}

.l-testimonial {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: var(--transition);
}

    .l-testimonial:hover {
        box-shadow: var(--shadow-lg);
        transform: translateY(-4px);
    }

.l-testimonial-stars {
    color: #f59e0b;
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.l-testimonial p {
    color: var(--text-secondary);
    font-size: .95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.l-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.l-testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.l-testimonial-name {
    font-weight: 600;
    font-size: .95rem;
}

.l-testimonial-role {
    font-size: .85rem;
    color: var(--text-muted);
}

/* ─── CTA Final ─── */
.l-cta {
    padding: 100px 0;
    text-align: center;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

    .l-cta::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 30% 50%, rgba(26,115,232,.2) 0%, transparent 60%), radial-gradient(circle at 70% 50%, rgba(52,168,83,.15) 0%, transparent 60%);
    }

    .l-cta .container {
        position: relative;
        z-index: 1;
    }

    .l-cta h2 {
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 900;
        color: #fff;
        margin-bottom: 16px;
    }

    .l-cta p {
        font-size: 1.15rem;
        color: rgba(255,255,255,.75);
        max-width: 540px;
        margin: 0 auto 40px;
    }

.l-btn-white {
    background: #fff;
    color: var(--dark);
    font-weight: 700;
}

    .l-btn-white:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(0,0,0,.2);
        color: var(--dark);
    }

/* ─── FAQ ─── */
.l-faq {
    max-width: 720px;
    margin: 0 auto;
}

.l-faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}

    .l-faq-item.open {
        border-color: var(--primary);
        box-shadow: 0 2px 12px rgba(26,115,232,.1);
    }

.l-faq-question {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    text-align: left;
    font-family: inherit;
}

    .l-faq-question::after {
        content: '+';
        font-size: 1.4rem;
        color: var(--primary);
        transition: transform .3s;
        flex-shrink: 0;
    }

.l-faq-item.open .l-faq-question::after {
    content: '−';
}

.l-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
    padding: 0 24px;
}

.l-faq-item.open .l-faq-answer {
    max-height: 300px;
    padding-bottom: 20px;
}

.l-faq-answer p {
    color: var(--text-secondary);
    font-size: .95rem;
    line-height: 1.7;
}

/* ─── Footer ─── */
.l-footer {
    background: var(--dark);
    color: rgba(255,255,255,.7);
    padding: 60px 0 30px;
}

.l-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.l-footer-brand {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.l-footer-desc {
    font-size: .9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.l-footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .l-footer-contact a {
        color: rgba(255,255,255,.7);
        font-size: .9rem;
        display: flex;
        align-items: center;
        gap: 6px;
    }

        .l-footer-contact a:hover {
            color: #fff;
        }

.l-footer h4 {
    color: #fff;
    font-size: .95rem;
    margin-bottom: 16px;
}

.l-footer ul {
    list-style: none;
}

.l-footer li {
    margin-bottom: 10px;
}

.l-footer a {
    color: rgba(255,255,255,.6);
    font-size: .9rem;
}

    .l-footer a:hover {
        color: #fff;
    }

.l-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 24px;
    text-align: center;
    font-size: .85rem;
}

/* ─── Cookie Banner ─── */
.l-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--dark);
    color: rgba(255,255,255,.9);
    padding: 20px 24px;
    box-shadow: 0 -4px 20px rgba(0,0,0,.2);
    display: flex;
    justify-content: center;
}

.l-cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

    .l-cookie-content p {
        flex: 1;
        font-size: .9rem;
        line-height: 1.6;
        min-width: 280px;
    }

        .l-cookie-content p a {
            color: #90caf9;
            text-decoration: underline;
        }

.l-cookie-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.l-cookie-more {
    color: rgba(255,255,255,.6) !important;
    font-size: .85rem;
}

    .l-cookie-more:hover {
        color: #fff !important;
    }

/* ─── Legal Pages ─── */
.l-legal {
    padding: 120px 0 80px;
}

    .l-legal h1 {
        font-size: 2rem;
        font-weight: 800;
        margin-bottom: 8px;
    }

    .l-legal .l-legal-date {
        color: var(--text-muted);
        font-size: .9rem;
        margin-bottom: 40px;
    }

    .l-legal h2 {
        font-size: 1.3rem;
        font-weight: 700;
        margin: 32px 0 12px;
        color: var(--dark);
    }

    .l-legal p, .l-legal li {
        color: var(--text-secondary);
        font-size: .95rem;
        line-height: 1.8;
        margin-bottom: 12px;
    }

    .l-legal ul {
        padding-left: 24px;
        margin-bottom: 16px;
    }

/* ═══════════════════════════════════════════════════
   Página de Opiniones / Reviews
   ═══════════════════════════════════════════════════ */

/* ─── Hero variante reviews ─── */
.l-hero.l-hero-reviews {
    padding: 150px 0 90px;
    background: linear-gradient(170deg, #eef2ff 0%, #fff 40%, #f0fdf4 80%, #fefce8 100%);
}

    .l-hero.l-hero-reviews h1 {
        font-size: clamp(2.2rem, 5vw, 3.8rem);
    }

    .l-hero.l-hero-reviews p {
        font-size: 1.15rem;
        max-width: 580px;
    }

/* ─── Stats Bar flotante ─── */
.l-reviews-stats-bar {
    position: relative;
    z-index: 2;
    margin-top: -48px;
    padding: 0 24px;
    margin-bottom: 16px;
}

.l-reviews-stats-inner {
    max-width: 860px;
    margin: 0 auto;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 36px;
    gap: 32px;
    flex-wrap: wrap;
}

.l-reviews-stats-loading {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--text-muted);
    width: 100%;
    justify-content: center;
    padding: 12px 0;
}

    .l-reviews-stats-loading p {
        margin: 0;
    }

.l-rstats-card {
    display: flex;
    align-items: center;
    gap: 14px;
}

    .l-rstats-card.l-rstats-highlight .l-rstats-big {
        font-size: 3.2rem;
        background: var(--gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.l-rstats-big {
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1;
    color: var(--dark);
}

.l-rstats-icon {
    font-size: 2.4rem;
    line-height: 1;
}

.l-rstats-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

    .l-rstats-text strong {
        font-size: .95rem;
        font-weight: 700;
        color: var(--dark);
    }

    .l-rstats-text span {
        font-size: .82rem;
        color: var(--text-muted);
        font-weight: 500;
    }

.l-rstats-stars {
    color: #f59e0b;
    font-size: 1.15rem;
    letter-spacing: 2px;
}

.l-rstats-divider {
    width: 1px;
    height: 52px;
    background: var(--border);
    flex-shrink: 0;
}

.l-rstats-distribution {
    flex-direction: column;
    gap: 5px;
    min-width: 200px;
}

.l-rbar {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.l-rbar-label {
    font-size: .75rem;
    font-weight: 600;
    color: var(--text-secondary);
    min-width: 24px;
    text-align: right;
}

.l-rbar-track {
    flex: 1;
    height: 7px;
    background: var(--border);
    border-radius: 4px;
    overflow: hidden;
}

.l-rbar-fill {
    height: 100%;
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
    border-radius: 4px;
    transition: width .8s cubic-bezier(.4,0,.2,1);
}

.l-rbar-count {
    font-size: .72rem;
    color: var(--text-muted);
    min-width: 16px;
    font-weight: 600;
}

/* ─── Review Form Card ─── */
.l-review-form-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 44px 40px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

    .l-review-form-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--gradient);
    }

/* ─── Review Form Layout ─── */
.l-review-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* ─── Form Groups ─── */
.l-form-group {
    margin-bottom: 22px;
}

    .l-form-group label {
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: .88rem;
        font-weight: 600;
        color: var(--dark);
        margin-bottom: 10px;
    }

.l-form-required {
    font-size: .72rem;
    font-weight: 600;
    color: #ef4444;
    background: #fef2f2;
    padding: 2px 8px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.l-form-optional {
    font-size: .72rem;
    font-weight: 500;
    color: var(--text-muted);
    background: var(--bg-alt);
    padding: 2px 8px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

/* ─── Inputs & Textareas ─── */
.l-form-group input,
.l-form-group textarea {
    width: 100%;
    padding: 13px 18px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: .95rem;
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--bg);
    transition: var(--transition);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

    .l-form-group input:hover,
    .l-form-group textarea:hover {
        border-color: var(--text-muted);
    }

    .l-form-group input:focus,
    .l-form-group textarea:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 4px rgba(26,115,232,.1);
    }

    .l-form-group input::placeholder,
    .l-form-group textarea::placeholder {
        color: var(--text-muted);
        font-weight: 400;
    }

.l-form-group textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.7;
}

.l-form-hint {
    font-size: .78rem;
    color: var(--text-muted);
    margin-top: 8px;
    font-style: italic;
}

.l-char-count {
    font-size: .75rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color .2s;
}

/* ─── Star Selector ─── */
.l-star-selector-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
}

.l-star-selector {
    display: flex;
    gap: 4px;
    background: var(--bg-alt);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    border: 2px solid var(--border);
    transition: var(--transition);
}

    .l-star-selector:hover {
        border-color: #f59e0b;
        box-shadow: 0 0 0 4px rgba(245,158,11,.08);
    }

.l-star-btn {
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #d4d4d8;
    transition: all .15s ease;
    padding: 2px;
    line-height: 1;
}

    .l-star-btn.active {
        color: #f59e0b;
        filter: drop-shadow(0 2px 4px rgba(245,158,11,.3));
        transform: scale(1.1);
    }

    .l-star-btn.hovered {
        color: #fbbf24;
        transform: scale(1.15);
    }

    .l-star-btn:hover {
        transform: scale(1.25);
    }

.l-star-label {
    font-size: .88rem;
    font-weight: 600;
    color: #f59e0b;
    white-space: nowrap;
    min-width: 70px;
}

/* ─── Form Actions ─── */
.l-review-form-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.l-review-form-trust {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: .8rem;
    color: var(--text-muted);
    line-height: 1.5;
    flex: 1;
    min-width: 200px;
}

.l-btn-submit {
    min-width: 240px;
    justify-content: center;
    font-size: 1.05rem;
    padding: 16px 32px;
}

.l-btn-spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,.4);
    border-top-color: #fff;
    border-radius: 50%;
    animation: l-spin .7s linear infinite;
}

/* ─── Success Message ─── */
.l-review-success {
    display: none;
    align-items: center;
    justify-content: center;
    min-height: 340px;
    position: relative;
}

.l-review-success-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(52,168,83,.08) 0%, transparent 70%);
    pointer-events: none;
}

.l-review-success-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.l-review-success-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: successBounce .6s cubic-bezier(.4,0,.2,1);
}

.l-review-success h3,
.l-review-success-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--dark);
}

.l-review-success p,
.l-review-success-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 440px;
    margin: 0 auto;
    line-height: 1.7;
}

@keyframes successBounce {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* ─── Testimonial Top / Badge ─── */
.l-testimonial-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.l-testimonial-badge {
    font-size: .72rem;
    font-weight: 600;
    color: var(--text-muted);
    background: var(--bg-alt);
    padding: 3px 10px;
    border-radius: 50px;
    border: 1px solid var(--border);
}

/* ─── Reviews Filters ─── */
.l-reviews-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.l-filter-btn {
    padding: 10px 22px;
    border-radius: 50px;
    border: 2px solid var(--border);
    background: var(--bg);
    font-family: 'Inter', sans-serif;
    font-size: .88rem;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
}

    .l-filter-btn:hover {
        border-color: var(--primary);
        color: var(--primary);
        transform: translateY(-2px);
    }

    .l-filter-btn.active {
        background: var(--gradient);
        color: #fff;
        border-color: transparent;
        box-shadow: 0 4px 15px rgba(26,115,232,.3);
    }

/* ─── Reviews Grid ─── */
.l-reviews-grid {
    gap: 24px;
}

    .l-reviews-grid .l-testimonial {
        display: flex;
        flex-direction: column;
    }

        .l-reviews-grid .l-testimonial p {
            flex: 1;
        }

/* ─── Reviews Empty ─── */
.l-reviews-empty {
    text-align: center;
    padding: 80px 24px;
    color: var(--text-muted);
}

.l-reviews-empty-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: .6;
}

.l-reviews-empty h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.l-reviews-empty p {
    font-size: .95rem;
    color: var(--text-muted);
}

/* ─── Toast ─── */
@keyframes toastIn {
    from {
        opacity: 0;
        transform: translateX(80px) scale(.95);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

/* ─── Reviews Responsive ─── */
@media (max-width: 1024px) {
    .l-rstats-distribution {
        display: none;
    }
}

@media (max-width: 768px) {
    .l-hero.l-hero-reviews {
        padding: 120px 0 60px;
    }

    .l-reviews-stats-bar {
        margin-top: -32px;
    }

    .l-reviews-stats-inner {
        flex-direction: column;
        padding: 24px;
        gap: 20px;
    }

    .l-rstats-divider {
        width: 100%;
        height: 1px;
    }

    .l-rstats-card.l-rstats-highlight .l-rstats-big {
        font-size: 2.6rem;
    }

    .l-review-form-card {
        padding: 28px 20px;
    }

    .l-review-form-row {
        grid-template-columns: 1fr;
    }

    .l-review-form-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .l-review-form-trust {
        text-align: center;
        justify-content: center;
    }

    .l-btn-submit {
        min-width: auto;
    }

    .l-reviews-filters {
        gap: 8px;
    }

    .l-filter-btn {
        padding: 8px 16px;
        font-size: .82rem;
    }

    .l-reviews-grid .l-testimonial {
        padding: 24px;
    }
}

/* ─── Animaciones ─── */
.l-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: all .6s cubic-bezier(.4,0,.2,1);
}

    .l-fade.visible {
        opacity: 1;
        transform: translateY(0);
    }

.l-fade-delay-1 {
    transition-delay: .1s;
}

.l-fade-delay-2 {
    transition-delay: .2s;
}

.l-fade-delay-3 {
    transition-delay: .3s;
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .l-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .l-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .l-pricing-card.featured {
        transform: none;
    }

        .l-pricing-card.featured:hover {
            transform: translateY(-4px);
        }

    .l-testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .l-footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .l-steps {
        flex-wrap: wrap;
    }

    .l-step {
        flex: 1 1 45%;
    }

    .l-slide-card {
        aspect-ratio: 3/2;
        padding: 28px 32px 0;
    }
}

@media (max-width: 768px) {
    .l-nav-links {
        display: none;
    }

        .l-nav-links.open {
            display: flex;
            flex-direction: column;
            position: absolute;
            top: 72px;
            left: 0;
            right: 0;
            background: #fff;
            border-bottom: 1px solid var(--border);
            padding: 16px 24px;
            gap: 16px;
            box-shadow: var(--shadow);
        }

    .l-nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .l-hero {
        padding: 120px 0 60px;
    }

    .l-hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .l-features-grid {
        grid-template-columns: 1fr;
    }

    .l-section {
        padding: 64px 0;
    }

    .l-steps {
        flex-direction: column;
    }

    .l-step {
        flex: 1 1 100%;
    }

    .l-carousel-prev {
        left: 4px;
    }

    .l-carousel-next {
        right: 4px;
    }

    .l-footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .l-hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .l-cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .l-cookie-actions {
        justify-content: center;
    }

    .l-slide-card {
        aspect-ratio: auto;
        padding: 24px 20px 0;
    }

    .l-slide-emoji {
        font-size: 2rem;
    }

    .l-slide-text h3 {
        font-size: 1.15rem;
    }

    .l-slide-screenshot {
        width: 95%;
    }

    .l-screenshot-body {
        min-height: 120px;
        font-size: 3rem;
    }


}
