@import url('../../assets/css/fonts.css?v=2');


:root {
    --primary:       #2a9d58;   /* verde bosque suave */
    --primary-hover: #1e7a42;
    --accent:        var(--primary);
    --accent-hover:  #186038;
    --bg-light:      #bfdcca;   /* sage pastel principal */
    --bg-card:       #d8ecdf;   /* blanco con tinte sage */
    --text-main:     #1a3527;   /* verde oscuro para contraste */
    --text-muted:    #5e7d6c;   /* sage medio */
    --white:         #ffffff;
    --transition:    all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

body {
    background: linear-gradient(135deg, #b0d4bf 0%, #bfdcca 45%, #d0e8d8 100%);
    background-attachment: fixed;
    color: var(--text-main);
    line-height: 1.6;
    letter-spacing: -0.01em;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.04em;
}



section {
    padding: 100px 5%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.animate {
    animation: fadeInUp 0.8s forwards;
}

/* Header */
header {
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(191, 220, 202, 0.88);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(42, 157, 88, 0.12);
    transition: padding 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
}


.logo {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--text-main);
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    gap: 2px;
}

.logo span {
    color: var(--accent);
    font-weight: 400;
}



/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at top right, rgba(42, 157, 88, 0.1), transparent),
        radial-gradient(circle at bottom left, rgba(42, 157, 88, 0.06), transparent);
    padding-top: 80px;
}

.hero-content {
    max-width: 900px;
}

.hero h1 {
    font-size: clamp(3rem, 10vw, 5.5rem);
    margin-bottom: 24px;
    color: var(--text-main);
}


.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.cta-button {
    display: inline-block;
    padding: 18px 36px;
    background-color: var(--primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(42, 157, 88, 0.28);
}


/* Features/Benefits */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.card {
    background: var(--bg-card);
    padding: 36px 28px;
    border-radius: 4px;
    border: 1px solid rgba(42, 157, 88, 0.12);
    border-top: 2px solid rgba(42, 157, 88, 0.35);
    box-shadow: 0 10px 40px rgba(26, 53, 39, 0.06);
    transition: var(--transition);
}

.card:hover {
    border-color: var(--accent);
    border-top-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(42, 157, 88, 0.12);
}

.card i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 24px;
    display: block;
}


.card h3 {
    margin-bottom: 15px;
}

.card p {
    color: var(--text-muted);
}

/* How it works */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    counter-reset: step-counter;
}

.step {
    position: relative;
    padding-top: 40px;
}

.step::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* For whom section */
.target-audience {
    background: rgba(42, 157, 88, 0.04);
}

.audience-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 40px;
}

.badge {
    padding: 12px 24px;
    background: var(--bg-card);
    border: 1px solid rgba(42, 157, 88, 0.2);
    border-radius: 4px;
    font-weight: 500;
    color: var(--text-main);
    transition: var(--transition);
}

.badge:hover {
    border-color: var(--accent);
    color: var(--accent);
}


/* Tenants Grid */
.tenants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 50px;
}

.tenant-card {
    background: var(--bg-card);
    border: 1px solid rgba(42, 157, 88, 0.12);
    border-radius: 8px;
    padding: 32px 20px;
    text-align: center;
    text-decoration: none;
    color: var(--text-main);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.tenant-card:hover {
    border-color: var(--accent);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(42, 157, 88, 0.14);
}

.tenant-logo-wrap {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(42, 157, 88, 0.08);
    border: 2px solid rgba(42, 157, 88, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}

.tenant-logo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tenant-initials {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
}

.tenant-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.tenant-slug {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.tenant-cta {
    font-size: 0.75rem;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 6px;
}

.tenants-empty {
    text-align: center;
    color: var(--text-muted);
    margin-top: 40px;
}

/* Final CTA */
.final-cta {
    text-align: center;
    background: var(--bg-light);
    border-top: 1px solid rgba(42, 157, 88, 0.12);
}


/* Footer */
footer {
    padding: 50px 5%;
    border-top: 1px solid rgba(42, 157, 88, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 20px;
    transition: var(--transition);
}

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

/* Eyebrow text */
.eyebrow {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
}

/* Stats Strip */
.stats-strip {
    padding: 48px 5%;
    border-top: 1px solid rgba(42, 157, 88, 0.15);
    border-bottom: 1px solid rgba(42, 157, 88, 0.15);
}

.stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 64px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    letter-spacing: -2px;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.stat-divider {
    width: 1px;
    height: 44px;
    background: rgba(42, 157, 88, 0.2);
}

@media (max-width: 480px) {
    .stats-grid { gap: 32px; }
    .stat-divider { display: none; }
    .stat-number { font-size: 1.8rem; }
}

/* Generic Section Styles */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-title p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Header nav button */
.header-cta {
    padding: 10px 20px;
    font-size: 0.9rem;
    margin-left: 20px;
}

/* Final CTA section */
.final-cta h2,
.final-cta-heading {
    font-size: clamp(2rem, 6vw, 3.5rem);
    margin-bottom: 20px;
}

.final-cta p,
.final-cta-text {
    margin-bottom: 40px;
    color: var(--text-muted);
    font-size: clamp(1rem, 2vw, 1.25rem);
}

.cta-button-lg {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    padding: clamp(14px, 3vw, 20px) clamp(24px, 5vw, 40px);
}

/* Responsive: tablet grande */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Responsive: tablet */
@media (max-width: 768px) {
    section {
        padding: 60px 5%;
    }

    .hero {
        height: auto;
        min-height: 100svh;
        padding-top: 120px;
        padding-bottom: 80px;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .section-title h2 {
        font-size: clamp(1.6rem, 4vw, 2.5rem);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .card {
        padding: 36px 28px;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    footer {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .footer-links a {
        margin: 0 10px;
    }
}

/* Responsive: móvil */
@media (max-width: 480px) {
    header {
        padding: 14px 5%;
    }

    .logo {
        font-size: 1.4rem;
    }

    .header-cta {
        padding: 8px 14px;
        font-size: 0.8rem;
        margin-left: 10px;
    }

    section {
        padding: 50px 5%;
    }

    .hero {
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-title h2 {
        font-size: 1.75rem;
    }

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

    .card {
        padding: 28px 22px;
    }

    .steps {
        gap: 24px;
    }

    .audience-list {
        gap: 10px;
    }

    .badge {
        padding: 10px 16px;
        font-size: 0.875rem;
    }
}


/* ===========================
   SCROLL & MODERN EFFECTS
   =========================== */

/* Barra de progreso de scroll */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background: linear-gradient(90deg, var(--primary), #4ade80);
    z-index: 9999;
    box-shadow: 0 0 10px rgba(42, 157, 88, 0.5), 0 0 25px rgba(42, 157, 88, 0.2);
    pointer-events: none;
}

/* Header con scroll */
header.scrolled {
    padding: 12px 5%;
    background: rgba(191, 220, 202, 0.98);
    box-shadow: 0 2px 30px rgba(26, 53, 39, 0.1);
}

/* Orbes flotantes en hero */
.hero {
    position: relative;
    overflow: hidden;
}

.hero::before,
.hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.hero::before {
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(42, 157, 88, 0.16), transparent 65%);
    top: -250px;
    right: -180px;
    animation: floatOrb1 11s ease-in-out infinite;
}

.hero::after {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(42, 157, 88, 0.10), transparent 65%);
    bottom: -120px;
    left: -150px;
    animation: floatOrb2 14s ease-in-out infinite;
}

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

@keyframes floatOrb1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    35%       { transform: translate(5%, -6%) scale(1.08); }
    70%       { transform: translate(-3%, 4%) scale(0.94); }
}

@keyframes floatOrb2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%       { transform: translate(-6%, 5%) scale(1.12); }
}

/* Hero h1: word split */
.hero h1 .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(0.8em);
    transition: opacity 0.5s ease,
                transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: calc(var(--i, 0) * 0.065s);
}

.hero h1.words-visible .word {
    opacity: 1;
    transform: translateY(0);
}

/* Pulso en botón CTA del hero */
@keyframes pulseRing {
    0%   { box-shadow: 0 10px 30px rgba(42, 157, 88, 0.28), 0 0 0 0    rgba(42, 157, 88, 0.3); }
    60%  { box-shadow: 0 10px 30px rgba(42, 157, 88, 0.28), 0 0 0 14px rgba(42, 157, 88, 0); }
    100% { box-shadow: 0 10px 30px rgba(42, 157, 88, 0.28), 0 0 0 0    rgba(42, 157, 88, 0); }
}

.hero .cta-button {
    animation: pulseRing 3s ease-out infinite;
}

/* Reveal genérico con scroll */
.reveal {
    opacity: 0;
    transform: translateY(45px);
    transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: var(--stagger-delay, 0s);
    will-change: opacity, transform;
}

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

/* Section titles: reveal + subrayado animado */
.title-animate {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.title-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

.title-animate h2 {
    padding-bottom: 8px;
    background: linear-gradient(var(--primary), var(--primary)) no-repeat center bottom;
    background-size: 0 2px;
    transition: background-size 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.title-animate.visible h2 {
    background-size: 48px 2px;
}

/* Pop-in con spring para badges */
.badge-pop {
    opacity: 0;
    transform: scale(0.7) translateY(15px);
    transition: opacity 0.4s ease,
                transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
    transition-delay: var(--stagger-delay, 0s);
}

.badge-pop.visible {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* Número de paso con glow al aparecer */
.step::before {
    transition: box-shadow 0.6s ease 0.2s;
}

.step.visible::before {
    box-shadow: 0 0 0 5px rgba(42, 157, 88, 0.18),
                0 0 22px rgba(42, 157, 88, 0.30);
}

/* Preview Section */
.preview-section {
    padding-top: 0;
    padding-bottom: 80px;
}

.preview-wrapper {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(42, 157, 88, 0.15);
    box-shadow:
        0 50px 120px rgba(26, 53, 39, 0.12),
        0 0 0 1px rgba(42, 157, 88, 0.08),
        0 0 80px rgba(42, 157, 88, 0.07);
}

/* Browser mockup bar */
.browser-bar {
    background: rgba(42, 157, 88, 0.04);
    border-bottom: 1px solid rgba(42, 157, 88, 0.10);
    padding: 11px 16px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.browser-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    flex-shrink: 0;
}

.browser-dot:nth-child(1) { background: rgba(255, 95, 87, 0.75); }
.browser-dot:nth-child(2) { background: rgba(255, 189, 46, 0.75); }
.browser-dot:nth-child(3) { background: rgba(39, 201, 63, 0.75); }

.browser-url {
    flex: 1;
    text-align: center;
    font-size: 0.7rem;
    color: rgba(26, 53, 39, 0.35);
    background: rgba(42, 157, 88, 0.06);
    border-radius: 4px;
    padding: 3px 0;
    margin: 0 16px;
    letter-spacing: 0.3px;
}

.preview-img {
    width: 100%;
    display: block;
}

/* Perspective scroll-driven — controlado por JS */
.reveal-perspective {
    will-change: opacity, transform;
    transform-origin: center bottom;
}

/* ══════════════════════════════════════════
   HOLOGRAPHIC SHOWCASE
══════════════════════════════════════════ */

.holo-section {
    position: relative;
    overflow: hidden;
    padding: 100px 5%;
    background: var(--bg-light);
}

/* Orbes flotantes de fondo */
.holo-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.18;
    pointer-events: none;
}
.holo-orb-1 {
    width: 550px; height: 550px;
    background: radial-gradient(circle, #2a9d58, transparent 70%);
    top: -120px; right: -120px;
    animation: orbDrift 9s ease-in-out infinite;
}
.holo-orb-2 {
    width: 420px; height: 420px;
    background: radial-gradient(circle, #818cf8, transparent 70%);
    bottom: -100px; left: -100px;
    animation: orbDrift 11s ease-in-out infinite reverse;
}
.holo-orb-3 {
    width: 320px; height: 320px;
    background: radial-gradient(circle, #06b6d4, transparent 70%);
    top: 45%; left: 38%;
    animation: orbDrift 7s ease-in-out infinite 2.5s;
}
@keyframes orbDrift {
    0%, 100% { transform: translate(0,    0)    scale(1);    }
    33%       { transform: translate(35px, -35px) scale(1.06); }
    66%       { transform: translate(-20px, 22px) scale(0.96); }
}

/* Layout lado a lado */
.holo-layout {
    display: flex;
    align-items: center;
    gap: 80px;
}

/* Bloque de texto */
.holo-copy {
    flex: 1;
    min-width: 0;
}
.holo-copy h2 {
    font-size: clamp(2rem, 3.5vw, 2.9rem);
    margin: 14px 0 18px;
    line-height: 1.1;
}
.holo-copy p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 420px;
}

/* Contenedor de la tarjeta */
.holo-card-wrap {
    flex: 1.2;
    position: relative;
    min-width: 0;
    padding: 24px;
}

/* Resplandor ambiental detrás */
.holo-glow-behind {
    position: absolute;
    inset: -20px;
    background: radial-gradient(ellipse at center, rgba(42,157,88,0.18) 0%, transparent 68%);
    border-radius: 50%;
    animation: ambientPulse 3.5s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}
@keyframes ambientPulse {
    0%, 100% { opacity: 0.55; transform: scale(1);    }
    50%       { opacity: 1;    transform: scale(1.08); }
}

/* Borde animado arcoíris */
.holo-border-ring {
    position: absolute;
    inset: 21px;
    border-radius: 19px;
    background: conic-gradient(
        from 0deg,
        #2a9d58, #06b6d4, #818cf8, #ec4899, #f59e0b, #2a9d58
    );
    animation: hueShift 4s linear infinite;
    z-index: 1;
    pointer-events: none;
}
@keyframes hueShift {
    to { filter: hue-rotate(360deg); }
}

/* La tarjeta en sí */
.holo-card {
    position: relative;
    z-index: 2;
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg-card);
    transform-style: preserve-3d;
    transition: transform 0.1s ease;
    cursor: crosshair;
    will-change: transform;
}

/* Barra del browser dentro de la card */
.holo-frame-bar {
    background: rgba(42, 157, 88, 0.04);
    border-bottom: 1px solid rgba(42, 157, 88, 0.08);
    padding: 11px 16px;
    display: flex;
    align-items: center;
    gap: 7px;
}
.holo-dot {
    width: 11px; height: 11px;
    border-radius: 50%;
    flex-shrink: 0;
}
.holo-dot:nth-child(1) { background: rgba(255, 95,  87, 0.75); }
.holo-dot:nth-child(2) { background: rgba(255,189,  46, 0.75); }
.holo-dot:nth-child(3) { background: rgba( 39,201,  63, 0.75); }
.holo-frame-url {
    flex: 1;
    text-align: center;
    font-size: 0.7rem;
    color: rgba(26, 53, 39, 0.35);
    background: rgba(42, 157, 88, 0.06);
    border-radius: 4px;
    padding: 3px 0;
    margin: 0 16px;
    letter-spacing: 0.3px;
}

/* Imagen */
.holo-img {
    width: 100%;
    display: block;
}

/* Destello siguiendo el mouse */
.holo-glare {
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: 16px;
    mix-blend-mode: multiply;
    transition: background 0.04s linear;
}

/* Barrido de brillo en hover */
.holo-shine {
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: 16px;
    background: linear-gradient(
        125deg,
        transparent   30%,
        rgba(255,255,255,0.05) 44%,
        rgba(255,255,255,0.18) 50%,
        rgba(255,255,255,0.05) 56%,
        transparent   70%
    );
    background-size: 250% 250%;
    background-position: 0% 0%;
    transition: background-position 0.7s ease;
}
.holo-card:hover .holo-shine {
    background-position: 100% 100%;
}

/* Badges levitantes */
.holo-badge {
    position: absolute;
    background: rgba(247, 251, 248, 0.92);
    border: 1px solid rgba(42,157,88,0.30);
    color: var(--text-main);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 9px 15px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 7px;
    backdrop-filter: blur(12px);
    z-index: 3;
    white-space: nowrap;
    box-shadow: 0 6px 24px rgba(26, 53, 39, 0.12), 0 0 14px rgba(42,157,88,0.12);
}
.holo-badge i { width: 14px; height: 14px; color: var(--primary); }
.holo-badge-tl {
    top: 8px; left: 0;
    animation: badgeLevitate 4s ease-in-out infinite;
}
.holo-badge-br {
    bottom: 8px; right: 0;
    animation: badgeLevitate 4s ease-in-out infinite 2s;
}
@keyframes badgeLevitate {
    0%, 100% { transform: translateY(0px);  }
    50%       { transform: translateY(-9px); }
}

/* Responsive */
@media (max-width: 900px) {
    .holo-layout { flex-direction: column; gap: 50px; }
    .holo-copy p { max-width: 100%; }
    .holo-badge-tl { top: 4px;  left: 8px;  }
    .holo-badge-br { bottom: 4px; right: 8px; }
}

/* ══════════════════════════════════════════
   QUE-ES: parallax + clip-path reveal
══════════════════════════════════════════ */

#que-es {
    position: relative;
    overflow: hidden;
    padding: 100px 5%;
}

/* Imagen de fondo — empieza oculta con clip-path */
.que-es-bg {
    position: absolute;
    inset: -25%;
    background-image: url('/imagenes/puntocatalogo/Gemini_Generated_Image_rkz6xmrkz6xmrkz6.png');
    background-size: cover;
    background-position: center;
    clip-path: inset(0 50% 0 50%);
    transition: clip-path 1.6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, clip-path;
}

/* Cuando entra al viewport se expande */
.que-es-bg.que-es-revealed {
    clip-path: inset(0 0% 0 0%);
}

/* Overlay para que el texto se lea sobre la foto */
.que-es-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(26, 53, 39, 0.78) 0%,
        rgba(26, 53, 39, 0.55) 50%,
        rgba(26, 53, 39, 0.78) 100%
    );
}

/* El texto queda encima */
#que-es .container {
    position: relative;
    z-index: 1;
}

/* Texto del que-es sobre fondo oscuro → blanco */
#que-es .section-title h2,
#que-es .section-title p,
#que-es .eyebrow {
    color: rgba(255, 255, 255, 0.92);
}
#que-es .eyebrow {
    color: #6ee7a0;
}

/* Final CTA: resplandor ambiental pulsante */
@keyframes ctaAmbient {
    0%, 100% { box-shadow: none; }
    50%       { box-shadow: 0 -30px 80px rgba(42, 157, 88, 0.08); }
}

.final-cta {
    animation: ctaAmbient 6s ease-in-out infinite;
}


/* ===========================
   EXTRA EFFECTS
   =========================== */

/* 1. Cursor spotlight */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: radial-gradient(
        600px circle at var(--mx, -9999px) var(--my, -9999px),
        rgba(42, 157, 88, 0.06),
        transparent 40%
    );
    pointer-events: none;
    z-index: 9998;
}

/* 2. Card shimmer scan */
.card {
    position: relative;
    overflow: hidden;
}

@keyframes cardShimmer {
    from { transform: translateX(-100%) skewX(-12deg); }
    to   { transform: translateX(400%)  skewX(-12deg); }
}

.card::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 30%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
    transform: translateX(-100%) skewX(-12deg);
    pointer-events: none;
}

.card:hover::after {
    animation: cardShimmer 0.65s ease-out forwards;
}

/* 3. Step number ping */
@keyframes stepPing {
    0%   { box-shadow: 0 0 0 0px  rgba(42,157,88,0.6),  0 0 0 5px rgba(42,157,88,0.18), 0 0 22px rgba(42,157,88,0.30); }
    65%  { box-shadow: 0 0 0 20px rgba(42,157,88,0),    0 0 0 5px rgba(42,157,88,0.18), 0 0 22px rgba(42,157,88,0.30); }
    100% { box-shadow: 0 0 0 0px  rgba(42,157,88,0),    0 0 0 5px rgba(42,157,88,0.18), 0 0 22px rgba(42,157,88,0.30); }
}

.step.pinged::before {
    animation: stepPing 1.1s ease-out forwards;
}

/* 4. Hero h1 shimmer scan */
.hero h1 { position: relative; }

@keyframes h1ShimmerScan {
    from { transform: translateX(-100%); }
    to   { transform: translateX(600%); }
}

.hero h1.shimmer-active::after {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 20%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
    animation: h1ShimmerScan 1.5s ease-out forwards;
    pointer-events: none;
}

/* 5. Hero stagger: keyframe solo opacidad + translate sutil */
@keyframes fadeInUpSubtle {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}
