        :root {
            --bg: #ffffff;
            --fg: #0b2b45;
            --fg-soft: #2f4c63;
            --border: rgba(11, 43, 69, 0.18);
            --brand-900: #0b2b45;
            --brand-700: #134a70;
            --brand-500: #1f7fb0;
            --brand-400: #26a7c9;
            --brand-200: #d7effa;
            --surface: #f7fbff;
            --shadow: 0 10px 30px rgba(11, 43, 69, 0.12);
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html,
        body {
            background: var(--bg);
            color: var(--fg);
            font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        body {
            line-height: 1.6;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        img {
            max-width: 100%;
            display: block;
        }

        .page {
            min-height: 100vh;
        }

        /* Header flotante */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 50;
            background: rgba(255, 255, 255, 0.92);
            border-bottom: 1px solid var(--border);
            backdrop-filter: blur(8px);
        }

        .header-inner {
            max-width: 1120px;
            margin: 0 auto;
            padding: 0.9rem 1.5rem;
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        /* Empuja nav + botón hacia la derecha en desktop */
        @media (min-width: 768px) {
            nav.desktop-nav {
                margin-left: auto;
            }
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            font-size: 0.85rem;
        }

        .brand-logo {
            height: 32px;
            width: auto;
            object-fit: contain;
            display: block;
        }

        nav.desktop-nav {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.14em;
        }

        nav.desktop-nav a {
            position: relative;
        }

        nav.desktop-nav a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -0.2rem;
            width: 0;
            height: 1px;
            background: var(--fg);
            transition: width 0.2s ease;
        }

        nav.desktop-nav a:hover::after,
        nav.desktop-nav a.is-active::after {
            width: 100%;
        }

        nav.desktop-nav a.is-active {
            font-weight: 600;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .hamburger-btn {
            display: none;
            background: transparent;
            border: none;
            cursor: pointer;
            color: var(--fg);
            padding: 0.25rem;
            align-items: center;
            justify-content: center;
        }

        .close-btn {
            background: transparent;
            border: none;
            cursor: pointer;
            color: var(--fg);
            padding: 0.25rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Mobile Menu */
        .mobile-menu-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(4px);
            z-index: 60;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            right: 0;
            height: 100vh;
            width: 85%;
            max-width: 380px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            z-index: 65;
            flex-direction: column;
            transform: translateX(100%);
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow: -10px 0 40px rgba(11, 43, 69, 0.12);
            border-left: 1px solid rgba(255, 255, 255, 0.4);
        }

        /* Active classes generated by JS */
        .mobile-menu-overlay.is-open {
            display: block;
            opacity: 1;
        }

        .mobile-menu.is-open {
            display: flex;
            transform: translateX(0);
        }

        body.menu-open {
            overflow: hidden;
        }

        /* Bloquea scroll cuando el modal está abierto */
        body.modal-open {
            overflow: hidden;
        }

        .mobile-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.25rem 1.5rem;
            border-bottom: 1px solid var(--border);
        }

        nav.mobile-nav {
            display: flex;
            flex-direction: column;
            padding: 2rem 1.5rem;
            gap: 1.5rem;
        }

        nav.mobile-nav a {
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 0.14em;
            text-decoration: none;
            color: var(--fg);
            font-weight: 500;
            position: relative;
            padding-left: 0;
            transition: padding-left 0.2s ease, color 0.2s ease;
        }

        nav.mobile-nav a.is-active {
            font-weight: 700;
            padding-left: 1rem;
        }

        nav.mobile-nav a.is-active::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 3px;
            height: 1.1em;
            background: var(--fg);
            border-radius: 2px;
        }

        nav.mobile-nav a.btn-primary {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.6rem;
            margin-top: 2rem;
            padding: 1.1rem;
            background: linear-gradient(135deg, var(--brand-900), var(--brand-500));
            color: #ffffff;
            border-radius: 999px;
            box-shadow: 0 10px 25px rgba(11, 43, 69, 0.25);
            font-size: 0.95rem;
            font-weight: 600;
            letter-spacing: 0.16em;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        nav.mobile-nav a.btn-primary:active {
            transform: scale(0.96);
            box-shadow: 0 4px 15px rgba(11, 43, 69, 0.2);
        }

        .header-cta {
            border: 1px solid rgba(11, 43, 69, 0.25);
            padding: 0.45rem 1.2rem;
            text-transform: uppercase;
            letter-spacing: 0.16em;
            font-size: 0.75rem;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.8);
        }

        .header-cta:hover {
            background: var(--brand-900);
            color: #ffffff;
        }

        /* Layout general */
        main {
            max-width: 1120px;
            margin: 0 auto;
            padding: 2.6rem 1.15rem;
        }

        section {
            border-bottom: 1px solid var(--border);
            padding: 2.6rem 0;
            position: relative;
            z-index: 1;
        }

        section:first-of-type,
        section:last-of-type {
            border-bottom: none;
        }

        .section-label {
            text-transform: uppercase;
            letter-spacing: 0.14em;
            font-size: 0.68rem;
            color: var(--fg-soft);
            margin-bottom: 1rem;
        }

        /* Hero */
        .hero {
            display: grid;
            grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
            align-items: center;
            gap: 3rem;
            padding-top: 0.6rem;
        }

        .hero::before {
            content: "";
            position: absolute;
            top: -10vh;
            left: 50%;
            transform: translateX(-50%);
            width: 100vw;
            height: 120%;
            background: radial-gradient(circle at 50% 0%, rgba(31, 127, 176, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
            z-index: -1;
            pointer-events: none;
        }

        .hero-title {
            font-size: 1.35rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            line-height: 1.2;
        }

        .hero-title span {
            display: block;
        }

        .hero-subtitle {
            margin-top: 1.1rem;
            max-width: 28rem;
            color: var(--fg-soft);
            font-size: 0.9rem;
        }

        .hero-subtitle-strong {
            color: var(--fg);
        }

        .hero-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin-top: 1.35rem;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.16em;
        }

        .hero-meta-item {
            border: 1px solid var(--border);
            padding: 0.75rem 1.2rem;
            border-radius: 999px;
        }

        .hero-cta-row {
            margin-top: 1.6rem;
            display: flex;
            flex-wrap: wrap;
            gap: 1rem 1.5rem;
            align-items: center;
        }

        @media (max-width: 767px) {
            .hero-cta-btn {
                display: none;
            }
        }

        .btn-primary {
            border-radius: 999px;
            padding: 0.85rem 1.9rem;
            border: 1px solid rgba(255, 255, 255, 0.25);
            background: linear-gradient(135deg, var(--brand-900), var(--brand-500));
            color: #ffffff;
            text-transform: uppercase;
            letter-spacing: 0.18em;
            font-size: 0.8rem;
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
            display: inline-flex;
            justify-content: center;
            align-items: center;
        }

        .btn-primary::after {
            content: '';
            position: absolute;
            top: 0;
            left: -150%;
            width: 50%;
            height: 100%;
            background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
            transform: skewX(-25deg);
            animation: mirror-shine 5s cubic-bezier(0.19, 1, 0.22, 1) infinite;
            z-index: 1;
        }

        @keyframes mirror-shine {
            0% {
                left: -150%;
            }

            15% {
                left: 200%;
            }

            100% {
                left: 200%;
            }
        }

        .btn-primary:hover {
            background: linear-gradient(135deg, var(--brand-700), var(--brand-400));
            color: #ffffff;
        }

        .hero-note {
            font-size: 0.8rem;
            color: var(--fg-soft);
        }

        .hero-image-frame {
            border: none;
            padding: 0;
            aspect-ratio: 3 / 2.4;
            margin-bottom: 1.5rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .hero-carousel {
            position: relative;
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
            background: rgba(255, 255, 255, 0.9);
            border: 1px solid var(--border);
            border-radius: 50%;
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            color: var(--fg);
        }

        .hero-nav:hover {
            background: var(--fg);
            color: var(--bg);
            transform: translateY(-50%) scale(1.1);
        }

        .hero-prev {
            left: 1rem;
        }

        .hero-next {
            right: 1rem;
        }

        .hero-bullets {
            display: flex;
            justify-content: center;
            gap: 0.75rem;
            margin-top: 1rem;
        }

        .hero-bullet {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid var(--border);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 0;
        }

        .hero-bullet.active {
            background: var(--fg);
            border-color: var(--fg);
        }

        .hero-bullet:hover {
            transform: scale(1.2);
        }

        .hero-image-placeholder {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.18em;
            color: var(--fg-soft);
            position: relative;
            cursor: zoom-in;
            overflow: hidden;
            transition: border-color 0.3s ease;
        }

        .hero-image-placeholder img {
            width: 70%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.4s ease;
        }

        .hero-image-placeholder:hover img {
            transform: scale(1.02);
        }

        .expand-icon {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: rgba(255, 255, 255, 0.9);
            border: 1px solid var(--border);
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.3s ease;
        }

        .hero-image-placeholder:hover .expand-icon {
            opacity: 1;
            transform: translateY(0);
        }

        .hero-gallery {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 0.5rem;
        }

        .hero-thumb {
            aspect-ratio: 1;
            border: 1px solid var(--border);
            background: white;
            border-radius: 8px;
            cursor: pointer;
            opacity: 0.7;
            transition: all 0.3s ease;
            overflow: hidden;
        }

        .hero-thumb img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .hero-thumb:hover,
        .hero-thumb.is-active {
            opacity: 1;
        }

        .hero-thumb.is-active {
            border-width: 2px;
            border-color: var(--fg);
        }

        .hero-image-caption {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            font-size: 0.6rem;
            text-transform: uppercase;
            letter-spacing: 0.18em;
        }

        .hero-image-caption span:last-child {
            color: var(--fg-soft);
        }

        /* Sección combinada (Fórmula + Resultados + Uso) */
        .combined-sub {
            padding: 2.8rem 0;
            position: relative;
            z-index: 1;
        }

        .combined-sub:first-child {
            padding-top: 0;
        }

        #experiencias::before {
            content: "";
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100vw;
            height: 100%;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(215, 239, 250, 0.25) 30%, rgba(215, 239, 250, 0.25) 70%, rgba(255, 255, 255, 0) 100%);
            z-index: -1;
            pointer-events: none;
        }

        .combined-divider {
            border-top: 1px dashed var(--border);
            opacity: 0.6;
        }

        /* Iconos en beneficios */
        .benefit-icon {
            width: 36px;
            height: 36px;
            border: 1px solid var(--border);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 0.9rem;
            font-size: 0.85rem;
            color: var(--fg);
        }

        .benefit-points li {
            display: flex;
            align-items: flex-start;
            gap: 0.45rem;
        }

        .benefit-points li i {
            margin-top: 0.18em;
            font-size: 0.65rem;
            flex-shrink: 0;
            opacity: 0.7;
        }

        /* Iconos en métricas */
        .metric-icon {
            font-size: 1rem;
            margin-bottom: 0.4rem;
            color: var(--fg-soft);
        }

        /* Icono comillas */
        .quote-fa-icon {
            font-size: 1.4rem;
            color: var(--fg);
            opacity: 0.15;
            display: block;
            margin-bottom: 0.8rem;
        }

        /* Iconos en premium-list */
        .premium-list li {
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
        }

        .premium-list li i {
            margin-top: 0.18em;
            font-size: 0.75rem;
            flex-shrink: 0;
            opacity: 0.65;
        }

        /* Icono en section-label */
        .section-label i {
            font-size: 0.7rem;
            opacity: 0.7;
            margin-right: 0.2rem;
        }

        /* Beneficios */
        .benefits {
            position: relative;
        }

        .benefits::before {
            content: "";
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100vw;
            height: 100%;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(215, 239, 250, 0.2) 100%);
            z-index: -1;
            pointer-events: none;
        }

        .benefits-header {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: flex-end;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .benefits-title {
            text-transform: uppercase;
            letter-spacing: 0.18em;
            font-size: 0.95rem;
        }

        .benefits-copy {
            max-width: 26rem;
            font-size: 0.9rem;
            color: var(--fg-soft);
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 2rem;
        }

        .benefit-item {
            padding: 1.8rem 1.4rem;
            border-radius: 12px;
            border: 1px solid var(--border);
            background: #ffffff;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .benefit-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
        }

        .benefit-item:nth-child(even) {
            background: linear-gradient(135deg, var(--brand-900), var(--brand-700));
            color: #ffffff;
            border-color: transparent;
            box-shadow: 0 12px 30px rgba(11, 43, 69, 0.2);
        }

        .benefit-item:nth-child(even) .benefit-icon {
            border-color: rgba(255, 255, 255, 0.2);
            color: #ffffff;
            background: rgba(255, 255, 255, 0.05);
        }

        .benefit-item:nth-child(even) .benefit-text,
        .benefit-item:nth-child(even) .benefit-points {
            color: rgba(255, 255, 255, 0.85);
        }

        .benefit-index {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 26px;
            height: 26px;
            border-radius: 999px;
            border: 1px solid var(--border);
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.16em;
            margin-bottom: 0.75rem;
        }

        .benefit-title {
            text-transform: uppercase;
            letter-spacing: 0.16em;
            font-size: 0.85rem;
            margin-bottom: 0.6rem;
        }

        .benefit-text {
            font-size: 0.9rem;
            color: var(--fg-soft);
            margin-bottom: 0.75rem;
        }

        .benefit-points {
            list-style: none;
            font-size: 0.8rem;
            color: var(--fg-soft);
        }

        .benefit-points li+li {
            margin-top: 0.35rem;
        }

        /* Sección premium */
        .premium {
            display: grid;
            grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
            gap: 2.5rem;
            align-items: stretch;
        }

        .premium-block {
            border: 1px solid var(--border);
            padding: 1.8rem 1.6rem;
        }

        .premium-tagline {
            text-transform: uppercase;
            letter-spacing: 0.18em;
            font-size: 0.75rem;
            margin-bottom: 1.2rem;
        }

        .premium-title {
            font-size: 1.05rem;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            margin-bottom: 1.25rem;
        }

        .premium-list {
            list-style: none;
            font-size: 0.9rem;
            color: var(--fg-soft);
        }

        .premium-list li+li {
            margin-top: 0.6rem;
        }

        .premium-meta {
            margin-top: 1.6rem;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.16em;
            color: var(--fg-soft);
        }

        .premium-image-placeholder {
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.18em;
            color: var(--fg-soft);
            background: #ffffff;
        }

        .premium-image-placeholder img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        /* Evidencia / testimonios */
        .proof-grid {
            display: grid;
            grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
            gap: 2.5rem;
        }

        .metrics-row {
            display: flex;
            flex-wrap: wrap;
            gap: 2.5rem;
            margin-top: 1.5rem;
        }

        .metric {
            min-width: 120px;
        }

        .metric-value {
            font-size: 1.4rem;
            text-transform: uppercase;
            letter-spacing: 0.16em;
        }

        .metric-label {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.18em;
            color: var(--fg-soft);
            margin-top: 0.4rem;
        }

        .quote-block {
            border-left: 1px solid var(--border);
            padding-left: 1.5rem;
            font-size: 0.9rem;
            color: var(--fg-soft);
        }

        .quote-author {
            margin-top: 0.9rem;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.16em;
            color: var(--fg);
        }

        /* CTA final */
        #cta::before {
            content: "";
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100vw;
            height: 100%;
            background: linear-gradient(135deg, var(--brand-900), var(--brand-700));
            z-index: -1;
            pointer-events: none;
        }

        #cta .section-label,
        #cta .cta-subtitle {
            color: rgba(255, 255, 255, 0.85);
        }

        #cta .cta-title {
            color: #ffffff;
        }

        #cta .cta-main {
            border-color: rgba(255, 255, 255, 0.15);
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
        }

        #cta .cta-secondary-row {
            color: rgba(255, 255, 255, 0.75);
        }

        #cta .cta-pill {
            border-color: rgba(255, 255, 255, 0.2);
            background: rgba(255, 255, 255, 0.05);
            color: rgba(255, 255, 255, 0.9);
        }

        #cta .btn-primary {
            background: #ffffff;
            color: var(--brand-900);
            border-color: #ffffff;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
        }

        #cta .btn-primary::after {
            background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(11, 43, 69, 0.12) 50%, rgba(0, 0, 0, 0) 100%);
        }

        #cta .btn-primary:hover {
            background: var(--brand-200);
            color: var(--brand-900);
            transform: translateY(-2px);
        }

        .cta {
            display: flex;
            flex-direction: column;
            gap: 1.8rem;
            align-items: stretch;
        }

        .cta-main {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            align-items: center;
            justify-content: space-between;
            border: 1px solid var(--border);
            padding: 1.8rem 1.6rem;
        }

        .cta-text {
            max-width: 22rem;
        }

        .cta-title {
            text-transform: uppercase;
            letter-spacing: 0.16em;
            font-size: 0.95rem;
            margin-bottom: 0.75rem;
        }

        .cta-subtitle {
            font-size: 0.9rem;
            color: var(--fg-soft);
        }

        .cta-secondary-row {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.16em;
            color: var(--fg-soft);
        }

        .cta-pill {
            border: 1px solid var(--border);
            padding: 0.6rem 1.2rem;
            border-radius: 999px;
        }

        /* Social / redes - oculto temporalmente */
        .social-section {
            display: none;
            border-top: 1px solid var(--border);
            padding: 2.5rem 0 0;
            margin-top: 1rem;
        }

        .social-header {
            max-width: 1120px;
            margin: 0 auto 1.5rem auto;
            text-align: center;
        }

        .social-title {
            font-size: 1.4rem;
            text-transform: uppercase;
            letter-spacing: 0.16em;
            margin-bottom: 0.4rem;
        }

        .social-handle {
            font-size: 0.9rem;
            color: var(--fg-soft);
        }

        .social-row {
            display: flex;
            gap: 0.75rem;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            overflow: hidden;
            margin-top: 1rem;
        }

        .social-row:first-of-type {
            flex-wrap: nowrap;
            overflow-x: auto;
            justify-content: flex-start;
            padding-bottom: 0.8rem;
            scrollbar-width: thin;
            scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
        }

        .social-row:first-of-type::-webkit-scrollbar {
            height: 4px;
        }

        .social-row:first-of-type::-webkit-scrollbar-thumb {
            background: rgba(0, 0, 0, 0.2);
            border-radius: 4px;
        }

        .social-row:first-of-type .social-item {
            flex: 1 0 180px;
        }

        .social-item,
        .social-strip-item {
            flex: 0 0 auto;
            border: 1px solid var(--border);
            background: #ffffff;
            aspect-ratio: 4 / 3;
            max-height: 130px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.16em;
            color: var(--fg-soft);
        }

        .social-item img,
        .social-strip-item img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            background: #ffffff;
        }

        .social-strip {
            display: inline-flex;
            gap: 0.75rem;
            animation: social-scroll 32s linear infinite;
        }

        @keyframes social-scroll {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        /* ── FAQ ── */
        #faq {
            max-width: 1120px;
            margin: 0 auto;
            padding: 3.5rem 1.5rem;
            border-bottom: 1px solid var(--border);
        }

        .faq-header {
            margin-bottom: 2.5rem;
        }

        .faq-title {
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            margin-bottom: 0.5rem;
        }

        .faq-subtitle {
            font-size: 0.9rem;
            color: var(--fg-soft);
        }

        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .faq-item {
            border-top: 1px solid var(--border);
        }

        .faq-item:last-child {
            border-bottom: 1px solid var(--border);
        }

        .faq-question {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            background: transparent;
            border: none;
            cursor: pointer;
            text-align: left;
            padding: 1.25rem 0;
            font-size: 0.92rem;
            font-family: inherit;
            font-weight: 500;
            color: var(--fg);
            text-transform: uppercase;
            letter-spacing: 0.12em;
            line-height: 1.4;
            transition: color 0.2s ease;
        }

        .faq-question:hover {
            color: var(--fg-soft);
        }

        /* Ícono + / × */
        .faq-icon {
            flex-shrink: 0;
            width: 22px;
            height: 22px;
            border: 1px solid var(--border);
            border-radius: 50%;
            position: relative;
            transition: transform 0.3s ease, background 0.2s ease;
        }

        .faq-icon::before,
        .faq-icon::after {
            content: '';
            position: absolute;
            background: var(--fg);
            border-radius: 2px;
            transition: transform 0.3s ease, opacity 0.3s ease;
        }

        /* línea horizontal */
        .faq-icon::before {
            width: 10px;
            height: 1px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        /* línea vertical */
        .faq-icon::after {
            width: 1px;
            height: 10px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        /* Estado abierto: ocultar línea vertical (efecto ×) */
        .faq-question[aria-expanded="true"] .faq-icon::after {
            transform: translate(-50%, -50%) rotate(90deg);
            opacity: 0;
        }

        .faq-question[aria-expanded="true"] .faq-icon {
            background: var(--fg);
        }

        .faq-question[aria-expanded="true"] .faq-icon::before {
            background: var(--bg);
        }

        /* Panel de respuesta */
        .faq-answer {
            overflow: hidden;
            max-height: 0;
            transition: max-height 0.35s ease, padding 0.3s ease;
            padding: 0 0;
        }

        .faq-answer.is-open {
            max-height: 600px;
            padding: 0 0 1.4rem;
        }

        .faq-answer[hidden] {
            display: block !important;
            /* override para permitir animación CSS */
            visibility: hidden;
            pointer-events: none;
        }

        .faq-answer.is-open[hidden] {
            visibility: visible;
            pointer-events: auto;
        }

        .faq-answer p {
            font-size: 0.9rem;
            color: var(--fg-soft);
            line-height: 1.7;
            max-width: 720px;
        }

        .faq-answer strong {
            color: var(--fg);
            font-weight: 600;
        }

        /* Responsive: en móvil el texto de pregunta un poco más pequeño */
        @media (max-width: 600px) {
            .faq-question {
                font-size: 0.82rem;
                padding: 1rem 0;
            }

            .faq-answer p {
                font-size: 0.85rem;
            }
        }

        /* Modal compra */
        .modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.6);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.2s ease;
            z-index: 70;
            padding: 1rem;
        }

        .modal-overlay.is-active {
            opacity: 1;
            pointer-events: auto;
        }

        .modal {
            background: #ffffff;
            color: #000000;
            border: 1px solid var(--border);
            padding: 2.5rem 1rem;
            max-width: 420px;
            width: 100%;
            position: relative;
            margin-top: 15px;
        }

        .modal-close-btn {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: transparent;
            border: none;
            cursor: pointer;
            color: var(--fg);
            transition: transform 0.2s ease;
        }

        .modal-close-btn:hover {
            transform: scale(1.1);
        }

        .purchase-modal {
            max-width: 580px;
            max-height: calc(100vh - 2rem);
            overflow-y: auto;
        }

        /* Scrollbar modal */
        .purchase-modal::-webkit-scrollbar {
            width: 6px;
        }

        .purchase-modal::-webkit-scrollbar-thumb {
            background: rgba(0, 0, 0, 0.2);
            border-radius: 4px;
        }

        .modal-header {
            margin-bottom: 1.5rem;
        }

        .modal-headline {
            text-transform: uppercase;
            letter-spacing: 0.16em;
            font-size: 0.8rem;
            margin-bottom: 0.5rem;
            color: var(--fg-soft);
        }

        .modal-title {
            font-size: 1.4rem;
            text-transform: uppercase;
            letter-spacing: 0.12em;
        }

        .packages-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }

        .package-option {
            cursor: pointer;
        }

        .package-option input[type="radio"] {
            display: none;
        }

        .package-card {
            border: 1px solid var(--border);
            padding: 0.85rem 1rem;
            display: grid;
            grid-template-columns: 64px 1fr auto;
            align-items: center;
            gap: 1rem;
            transition: all 0.2s ease;
            background: var(--bg);
            border-radius: 8px;
        }

        .package-option input:checked+.package-card {
            background: linear-gradient(135deg, var(--brand-900), var(--brand-700));
            border-color: var(--brand-900);
            border-width: 2px;
            border-radius: 8px;
            box-shadow: 0 8px 25px rgba(11, 43, 69, 0.2);
        }

        .package-option input:checked+.package-card .pkg-title {
            color: #fff;
        }

        .package-option input:checked+.package-card .pkg-badge--promo {
            background: rgba(255, 255, 255, 0.15);
            color: #ffffff;
        }

        .package-option input:checked+.package-card .pkg-badge--save {
            background: rgba(255, 255, 255, 0.15);
            color: #ffffff;
        }

        .package-option input:checked+.package-card .pkg-price-original {
            color: rgba(255, 255, 255, 0.5);
        }

        .package-option input:checked+.package-card .pkg-price-final {
            color: #fff;
        }

        /* Imagen(es) izquierda */
        .pkg-img-stack {
            position: relative;
            height: 52px;
            width: 100%;
        }

        .pkg-img {
            height: 52px;
            width: auto;
            object-fit: contain;
        }

        .pkg-img-stack .pkg-img {
            position: absolute;
            top: 0;
        }

        .pkg-img-stack .pkg-img:nth-child(1) {
            left: 0;
            z-index: 1;
        }

        .pkg-img-stack .pkg-img:nth-child(2) {
            left: 14px;
            z-index: 2;
        }

        .pkg-img-stack .pkg-img:nth-child(3) {
            left: 28px;
            z-index: 3;
        }

        /* Centro: nombre + badge */
        .pkg-info {
            display: flex;
            flex-direction: column;
            gap: 0.35rem;
        }

        .pkg-title {
            text-transform: uppercase;
            letter-spacing: 0.14em;
            font-size: 0.78rem;
            font-weight: 600;
        }

        .pkg-badge {
            display: inline-block;
            padding: 0.2rem 0.55rem;
            border-radius: 3px;
            font-size: 0.68rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            width: fit-content;
        }

        .pkg-badge--promo {
            background: #1ec96e;
            color: #fff;
        }

        .pkg-badge--save {
            background: #1ec96e;
            color: #fff;
        }

        /* Derecha: precio */
        .pkg-pricing {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 0.1rem;
            min-width: 72px;
        }

        .pkg-price-original {
            font-size: 0.75rem;
            color: var(--fg-soft);
            text-decoration: line-through;
            letter-spacing: 0.05em;
        }

        .pkg-price-final {
            font-size: 1.05rem;
            font-weight: 700;
            letter-spacing: 0.05em;
        }

        .delivery-trust-msg {
            display: flex;
            align-items: center;
            gap: 1.2rem;
            background: linear-gradient(to right, rgba(30, 201, 110, 0.08), rgba(30, 201, 110, 0.02));
            border: 1px solid rgba(30, 201, 110, 0.3);
            padding: 1.2rem;
            border-radius: 8px;
            margin-bottom: 1.5rem;
            box-shadow: 0 4px 15px rgba(30, 201, 110, 0.05);
        }

        .delivery-trust-icon {
            font-size: 1.25rem;
            color: #1ec96e;
            margin-left: 0.2rem;
            vertical-align: text-bottom;
        }

        .delivery-trust-text {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
        }

        .delivery-trust-text strong {
            color: #0d9c6b;
            font-size: 0.95rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .delivery-trust-text span {
            color: var(--fg-soft);
            font-size: 0.85rem;
            line-height: 1.4;
        }

        .step-alert-msg {
            display: flex;
            align-items: center;
            gap: 1.2rem;
            background: linear-gradient(to right, rgba(31, 127, 176, 0.08), rgba(31, 127, 176, 0.02));
            border: 1px solid rgba(31, 127, 176, 0.3);
            padding: 1.2rem;
            border-radius: 8px;
            margin-bottom: 2rem;
            box-shadow: 0 4px 15px rgba(31, 127, 176, 0.05);
        }

        .step-alert-icon {
            font-size: 1.35rem;
            color: var(--brand-500);
            margin-left: 0.35rem;
            vertical-align: text-bottom;
        }

        .step-alert-text {
            display: flex;
            flex-direction: column;
            gap: 0.35rem;
        }

        .step-alert-text strong {
            color: var(--brand-900);
            font-size: 0.95rem;
            font-weight: 800;
        }

        .step-alert-text span {
            color: var(--fg-soft);
            font-size: 0.85rem;
            line-height: 1.4;
        }

        .form-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .form-grid.cols-3 {
            grid-template-columns: repeat(3, 1fr);
        }

        .span-full {
            grid-column: 1 / -1;
        }

        .form-control {
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
        }

        .form-control label {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.14em;
            color: var(--fg-soft);
            display: flex;
            align-items: center;
            gap: 0.45rem;
        }

        .form-control label i {
            color: var(--brand-500);
            font-size: 0.8rem;
        }

        .form-control input,
        .form-control select {
            padding: 0.75rem;
            border: 1px solid var(--border);
            border-radius: 0;
            background: var(--bg);
            font-family: inherit;
            font-size: 0.9rem;
            color: var(--fg);
        }

        .form-control input:focus,
        .form-control select:focus {
            outline: none;
            border-width: 1.5px;
        }

        .checkbox-control {
            display: flex;
            align-items: flex-start;
            gap: 0.6rem;
            font-size: 0.8rem;
            margin-bottom: 1.5rem;
            cursor: pointer;
            color: var(--fg-soft);
        }

        .checkbox-control input {
            margin-top: 0.2rem;
            accent-color: var(--fg);
        }

        .w-full {
            width: 100%;
        }

        .submit-btn {
            font-size: 0.9rem;
            padding: 1.1rem;
        }

        /* ── Ubigeo selects ── */
        .ubigeo-wrap {
            position: relative;
        }

        .ubigeo-wrap select {
            width: 100%;
        }

        /* Estado deshabilitado / cargando */
        .form-control select:disabled {
            opacity: 0.55;
            cursor: not-allowed;
            background: #f5f5f5;
            animation: ubigeo-pulse 1.5s ease-in-out infinite;
        }

        /* Solo pulsa si contiene "Cargando" como placeholder */
        .form-control select:disabled:has(option[value=""]:only-child) {
            animation: ubigeo-pulse 1.5s ease-in-out infinite;
        }

        @keyframes ubigeo-pulse {

            0%,
            100% {
                opacity: 0.55;
            }

            50% {
                opacity: 0.35;
            }
        }



        /* Lightbox Galería */
        .lightbox-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.95);
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .lightbox-overlay.is-active {
            opacity: 1;
            pointer-events: auto;
        }

        .lightbox-content {
            max-width: 90vw;
            max-height: 90vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .lightbox-content img {
            max-width: 100%;
            max-height: 90vh;
            object-fit: contain;
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        }

        .lightbox-close {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            background: transparent;
            border: none;
            color: #ffffff;
            cursor: pointer;
            padding: 0.5rem;
            z-index: 101;
            transition: transform 0.2s ease;
        }

        .lightbox-close:hover {
            transform: scale(1.1);
        }

        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: transparent;
            border: none;
            color: #ffffff;
            cursor: pointer;
            padding: 1rem;
            z-index: 101;
            transition: transform 0.2s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .lightbox-nav:hover {
            transform: translateY(-50%) scale(1.1);
        }

        .lightbox-prev {
            left: 1rem;
        }

        .lightbox-next {
            right: 1rem;
        }

        footer {
            max-width: 1120px;
            margin: 0 auto;
            padding: 2.5rem 1.5rem;
            font-size: 0.75rem;
            color: var(--fg-soft);
            display: flex;
            flex-direction: column;
            gap: 2rem;
            border-top: 1px solid var(--border);
        }

        .footer-top {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 1rem;
        }

        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.6rem;
            text-transform: uppercase;
            letter-spacing: 0.16em;
            font-size: 0.65rem;
        }

        .btn-blink {
            display: inline-flex;
            align-items: center;
            padding: 0.35rem 0.8rem;
            background: var(--fg);
            color: var(--bg);
            border-radius: 999px;
            text-decoration: none;
            font-weight: 500;
            animation: blink-anim 1.5s infinite;
        }

        @keyframes blink-anim {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0.4;
            }
        }

        /* Responsive */
        @media (max-width: 840px) {
            .header-inner {
                padding: 0.75rem 1rem;
                display: grid;
                grid-template-columns: 1fr auto 1fr;
                align-items: center;
            }

            .header-inner>.brand {
                justify-content: flex-start;
            }

            .text-hide {
                display: none;
            }

            .header-inner>.header-actions {
                grid-column: 2 / -1;
                justify-content: flex-end;
                width: 100%;
            }

            .header-inner>.header-actions>.header-cta {
                position: absolute;
                left: 50%;
                transform: translateX(-50%);
            }

            nav.desktop-nav {
                display: none;
            }

            .hamburger-btn {
                display: flex;
                margin-left: auto;
            }

            .mobile-menu-overlay {
                display: block;
                /* It stays hidden via opacity/pointer-events controlled by is-open */
                pointer-events: none;
            }

            .mobile-menu-overlay.is-open {
                pointer-events: auto;
            }

            .mobile-menu {
                display: flex;
                /* Hide via transform rather than display none */
            }

            main {
                padding-top: 1rem;
            }

            .hero,
            .premium,
            .proof-grid {
                grid-template-columns: minmax(0, 1fr);
            }

            .hero aside {
                order: -1;
            }

            .hero-image-frame {
                max-width: none;
                width: 100%;
                margin-inline: 0;
            }

            .benefits-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 840px) {
            .hero-nav {
                display: none;
            }
        }

        @media (max-width: 640px) {
            .modal-overlay {
                align-items: flex-start;
                padding: 0;
                padding-top: env(safe-area-inset-top, 0);
                padding-bottom: env(safe-area-inset-bottom, 0);
            }

            .modal.purchase-modal {
                margin: 0;
                max-width: 100%;
                width: 100%;
                max-height: calc(100vh - env(safe-area-inset-top, 0) - env(safe-area-inset-bottom, 0));
                height: auto;
                min-height: calc(100vh - env(safe-area-inset-top, 0) - env(safe-area-inset-bottom, 0));
                border-radius: 0;
                padding: 1.5rem 1.25rem 2rem;
                box-sizing: border-box;
                overflow-y: auto;
            }

            .modal-title {
                font-size: 0.9rem;
                line-height: 1.3;
            }

            .modal-headline {
                font-size: 0.6rem;
            }

            .modal-close-btn {
                top: 1rem;
                right: 1rem;
                width: 32px;
                height: 32px;
            }

            .benefits-grid {
                grid-template-columns: minmax(0, 1fr);
            }

            .packages-group {
                flex-direction: column;
            }

            .package-card {
                grid-template-columns: 56px 1fr auto;
                gap: 0.75rem;
            }

            .pkg-img {
                height: 44px;
            }

            .pkg-img-stack {
                height: 44px;
            }

            .form-grid.cols-3 {
                grid-template-columns: minmax(0, 1fr);
            }

            .form-grid {
                grid-template-columns: minmax(0, 1fr);
            }

            .cta-main {
                align-items: flex-start;
            }

            .hero-meta-item {
                width: 100%;
            }

            .hero-image-frame {
                width: calc(100% + 3rem);
                margin-left: -1.5rem;
                margin-right: -1.5rem;
            }

            .hero-bullets {
                padding-left: 1.5rem;
                padding-right: 1.5rem;
            }

            /* Espacio inferior para que el botón flotante no tape el contenido */
            main {
                padding-bottom: 5rem;
            }

            footer {
                padding-bottom: 5rem;
            }

            /* Reducir tamaños de fuente de títulos grandes a solicitud del usuario */
            .hero-title {
                font-size: 1.15rem;
                line-height: 1.25;
            }

            .hero-title span {
                display: inline;
            }

            .benefits-title {
                font-size: 0.85rem;
            }

            .premium-title {
                font-size: 0.9rem;
            }

            .cta-title {
                font-size: 0.85rem;
            }

            .exp-title {
                font-size: 0.95rem;
            }

            /* Ajustes finos para textos, subtítulos e interlineados en móvil */
            .hero-subtitle {
                font-size: 0.85rem;
                margin-top: 0.8rem;
                line-height: 1.45;
            }

            .hero-meta {
                gap: 0.8rem;
                font-size: 0.75rem;
            }

            .hero-meta-item {
                padding: 0.65rem 1rem;
            }

            .btn-primary {
                font-size: 0.75rem;
                padding: 0.8rem 1.6rem;
            }

            .benefits-copy,
            .benefit-text,
            .premium-list,
            .premium-meta,
            .exp-text,
            .security-desc,
            .cta-subtitle {
                font-size: 0.85rem;
                line-height: 1.5;
            }

            /* Ajustes de paddings seccionales para no quitar tanto espacio en pantalla */
            section {
                padding: 2.2rem 0;
            }

            .combined-sub {
                padding: 2.2rem 0;
            }

            .premium-block {
                padding: 1.4rem 1.25rem;
            }

            .security-block {
                padding: 1.6rem 1.25rem;
            }

            .exp-card {
                padding: 1.4rem 1.25rem;
            }

            .benefit-item {
                padding-top: 1.25rem;
            }

            .cta-main {
                padding: 1.4rem 1.25rem;
            }

            /* Métricas e info secundaria */
            .metrics-row {
                gap: 0.8rem;
                display: flex;
                flex-wrap: nowrap;
            }

            .metric {
                min-width: 0;
                flex: 1 1 0;
            }

            .metric-value {
                font-size: 0.95rem;
                white-space: nowrap;
            }

            .metric-label {
                font-size: 0.6rem;
            }

            .metric-icon {
                font-size: 0.85rem;
                margin-bottom: 0.2rem;
            }

            .partner-tag,
            .pay-method,
            .cta-pill {
                padding: 0.55rem 0.9rem;
                font-size: 0.72rem;
            }

            .security-title {
                font-size: 0.88rem;
            }

            .exp-trust-item {
                padding: 1.2rem 1.25rem;
            }

            .exp-trust-val {
                font-size: 1.15rem;
            }

            /* Imagen de etiqueta premium (la imagen del hero se respeta su tamaño) */
            .premium-image-placeholder {
                min-height: 220px;
                padding: 1rem;
            }

            /* Ajustes para evitar desbordamiento en logos/socios */
            .partner-grid {
                gap: 0.5rem;
            }

            .partner-grid .partner-img-box {
                height: 44px;
                padding: 0.35rem;
            }

            .partner-grid .pay-img {
                height: 38px;
                padding: 0.25rem;
            }

            .couriers-row {
                gap: 0.5rem;
            }

            .partner-img-wrapper .partner-img-box {
                padding: 0.35rem;
                height: 44px;
                min-width: 0;
            }

            .couriers-row .partner-img-box {
                flex: 1 1 0;
            }

            .partner-img-box img {
                max-width: 100%;
                max-height: 100%;
                object-fit: contain;
            }
        }

        /* Botón flotante de compra — solo móvil */
        .mobile-buy-bar {
            display: none;
        }

        @media (max-width: 840px) {
            .mobile-buy-bar {
                display: flex;
                position: fixed;
                bottom: 0;
                left: 0;
                right: 0;
                z-index: 55;
                padding: 0.9rem 5%;
                background: rgba(255, 255, 255, 0.97);
                border-top: 1px solid var(--border);
                backdrop-filter: blur(8px);
            }

            .mobile-buy-btn {
                width: 100%;
                padding: 1rem;
                background: linear-gradient(135deg, var(--brand-900), var(--brand-500));
                color: #ffffff;
                border: none;
                border-radius: 999px;
                font-size: 1rem;
                font-weight: 600;
                text-transform: uppercase;
                letter-spacing: 0.14em;
                cursor: pointer;
                font-family: inherit;
                transition: transform 0.2s ease, box-shadow 0.2s ease;
                box-shadow: 0 8px 20px rgba(11, 43, 69, 0.25);
                position: relative;
                overflow: hidden;
            }

            .mobile-buy-btn::after {
                content: '';
                position: absolute;
                top: 0;
                left: -150%;
                width: 50%;
                height: 100%;
                background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
                transform: skewX(-25deg);
                animation: mirror-shine 5s cubic-bezier(0.19, 1, 0.22, 1) infinite;
                z-index: 1;
            }

            .mobile-buy-btn:active {
                transform: scale(0.96);
                box-shadow: 0 4px 10px rgba(11, 43, 69, 0.15);
            }

            .hero-image-placeholder img {
                width: 95%;
            }
        }

        /* ═══════════════════════════════════════════════════════
           TICKER STRIP — Franja infinita
        ═══════════════════════════════════════════════════════ */

        .ticker-strip {
            width: 100%;
            background: linear-gradient(135deg, var(--brand-900) 0%, var(--brand-500) 100%);
            overflow: hidden;
            padding: 0.85rem 0;
            /* Se remueven los bordes para eliminar la "línea negra" artefacto en la parte superior */
            border: none;
            /* Saca el ticker del max-width de main */
            position: relative;
            left: 50%;
            right: 50%;
            margin-left: -50vw;
            margin-right: -50vw;
            width: 100vw;
            /* Mask para desvanecer los bordes */
            -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
            mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
        }

        /* Pausa al hover */
        .ticker-strip:hover .ticker-track {
            animation-play-state: paused;
        }

        .ticker-track {
            display: flex;
            align-items: center;
            gap: 0;
            width: max-content;
            /* Webkit prefixes for old iOS Safari */
            -webkit-animation: ticker-scroll 40s linear infinite;
            animation: ticker-scroll 40s linear infinite;
        }

        @-webkit-keyframes ticker-scroll {
            0% {
                -webkit-transform: translateX(0);
                transform: translateX(0);
            }

            100% {
                -webkit-transform: translateX(-50%);
                transform: translateX(-50%);
            }
        }

        @keyframes ticker-scroll {
            0% {
                -webkit-transform: translateX(0);
                transform: translateX(0);
            }

            100% {
                -webkit-transform: translateX(-50%);
                transform: translateX(-50%);
            }
        }

        .ticker-item {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: rgba(255, 255, 255, 0.92);
            font-size: 0.78rem;
            text-transform: uppercase;
            letter-spacing: 0.18em;
            white-space: nowrap;
            padding: 0 2rem;
            font-weight: 500;
        }

        .ticker-item i {
            font-size: 0.7rem;
            opacity: 0.8;
        }

        .ticker-dot {
            color: rgba(255, 255, 255, 0.22);
            font-size: 1.1rem;
            flex-shrink: 0;
            line-height: 1;
        }

        /* Reduce velocidad en móvil para mejor legibilidad */
        @media (max-width: 600px) {
            .ticker-track {
                animation-duration: 28s;
            }

            .ticker-item {
                font-size: 0.72rem;
                padding: 0 1.4rem;
                letter-spacing: 0.14em;
            }
        }

        /* Se elimina @media prefers-reduced-motion para que no se congele en móviles con ahorro de batería (Low Power Mode) */


        /* ═══════════════════════════════════════════════════════
           EXPERIENCIAS — Sección de testimonios
        ═══════════════════════════════════════════════════════ */

        .exp-header {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 1rem;
            margin-bottom: 1rem;
            /* Margen reducido porque la grid agregará padding-top */
        }

        .exp-header-text {
            flex: 1;
        }

        .exp-title {
            font-size: 1.05rem;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            margin-bottom: 0.6rem;
        }

        .exp-subtitle {
            font-size: 0.9rem;
            color: var(--fg-soft);
            max-width: 32rem;
        }

        .exp-controls {
            display: flex;
            gap: 0.5rem;
            flex-shrink: 0;
            padding-bottom: 0.2rem;
        }

        .exp-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 1px solid var(--border);
            background: transparent;
            color: var(--fg);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }

        .exp-btn:hover {
            background: var(--fg);
            color: var(--bg);
        }

        @media (max-width: 600px) {
            .exp-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 1.2rem;
            }

            .exp-controls {
                display: none;
                /* En móvil el swipe es más natural */
            }
        }

        /* Carrusel horizontal fluido (CSS Scroll Snap) */
        .exp-grid {
            display: flex;
            gap: 1.25rem;
            margin-bottom: 2.5rem;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            padding-bottom: 1.5rem;
            /* Padding superior fuerte para que el hover (translateY) no recorte la tarjeta */
            padding-top: 1.5rem;
            /* Ocultar barra de scroll en Firefox e IE */
            scrollbar-width: none;
            -ms-overflow-style: none;
            /* Margen negativo para extender el área scrolleable hasta el borde de la pantalla en móvil */
            margin-left: -1.5rem;
            margin-right: -1.5rem;
            padding-left: 1.5rem;
            padding-right: 1.5rem;
        }

        /* Ocultar barra de scroll en Chrome/Safari */
        .exp-grid::-webkit-scrollbar {
            display: none;
        }

        .exp-card {
            border: 1px solid var(--border);
            padding: 1.6rem 1.4rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            /* Transición más lenta (0.4s) y suave */
            transition: box-shadow 0.4s ease, transform 0.4s ease;
            background: #fff;

            /* Comportamiento carrusel */
            flex: 0 0 calc(33.333% - 1rem);
            scroll-snap-align: center;
        }

        .exp-card:hover {
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            /* Transformación más suave */
            transform: translateY(-3px);
        }

        @media (max-width: 960px) {
            .exp-card {
                flex: 0 0 calc(50% - 1rem);
            }
        }

        @media (max-width: 600px) {
            .exp-card {
                flex: 0 0 85%;
            }
        }

        /* Tarjeta destacada — fondo premium, texto blanco */
        .exp-card--featured {
            background: linear-gradient(135deg, var(--brand-900), var(--brand-700));
            border-color: var(--brand-900);
            box-shadow: 0 8px 25px rgba(11, 43, 69, 0.15);
        }

        .exp-card--featured .exp-text {
            color: rgba(255, 255, 255, 0.95);
        }

        .exp-card--featured .exp-name {
            color: #fff;
        }

        .exp-card--featured .exp-detail {
            color: rgba(255, 255, 255, 0.65);
        }

        .exp-card--featured .exp-avatar {
            background: rgba(255, 255, 255, 0.15);
            color: #fff;
            border-color: rgba(255, 255, 255, 0.2);
        }

        .exp-card--featured .exp-stars i {
            color: rgba(255, 255, 255, 0.9);
        }

        .exp-card--featured .exp-rating-score {
            color: rgba(255, 255, 255, 0.9);
        }

        .exp-stars {
            display: flex;
            gap: 0.2rem;
            align-items: center;
        }

        .exp-stars i {
            font-size: 0.65rem;
            color: #000;
        }

        .exp-rating-score {
            font-size: 0.75rem;
            font-weight: 700;
            margin-left: 0.3rem;
            color: var(--fg);
        }

        .exp-text {
            font-size: 0.88rem;
            color: var(--fg-soft);
            line-height: 1.7;
            flex: 1;
            font-style: italic;
        }

        .exp-author {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .exp-avatar {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.6rem;
            font-weight: 700;
            letter-spacing: 0.05em;
            color: var(--fg-soft);
            flex-shrink: 0;
            overflow: hidden;
        }

        .exp-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .exp-name {
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: var(--fg);
        }

        .exp-detail {
            font-size: 0.72rem;
            color: var(--fg-soft);
            letter-spacing: 0.08em;
            margin-top: 0.1rem;
        }

        /* Barra de métricas de confianza */
        .exp-trust {
            display: flex;
            flex-wrap: wrap;
            gap: 0;
            border: 1px solid var(--border);
            overflow: hidden;
        }

        .exp-trust-item {
            flex: 1 1 0;
            min-width: 160px;
            padding: 1.4rem 1.6rem;
            display: flex;
            flex-direction: column;
            gap: 0.3rem;
        }

        .exp-trust-sep {
            width: 1px;
            background: var(--border);
            align-self: stretch;
        }

        .exp-trust-val {
            font-size: 1.3rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--fg);
        }

        .exp-trust-label {
            font-size: 0.72rem;
            text-transform: uppercase;
            letter-spacing: 0.14em;
            color: var(--fg-soft);
        }

        @media (max-width: 600px) {
            .exp-trust {
                flex-direction: column;
            }

            .exp-trust-sep {
                width: 100%;
                height: 1px;
            }

            .exp-trust-item {
                min-width: 0;
            }
        }

        /* ═══════════════ SEGURIDAD Y CONFIANZA ═══════════════ */
        #seguridad {
            max-width: 1120px;
            margin: 0 auto;
            padding: 3.5rem 1.5rem;
            border-bottom: 1px solid var(--border);
        }

        .security-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
            margin-top: 1.5rem;
        }

        .security-block {
            border: 1px solid var(--border);
            padding: 2.2rem 2rem;
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
            background-color: var(--bg);
        }

        .security-title {
            text-transform: uppercase;
            letter-spacing: 0.16em;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 0.25rem;
        }

        .security-title i {
            font-size: 1.15rem;
            color: var(--fg);
        }

        .security-desc {
            font-size: 0.9rem;
            color: var(--fg-soft);
            line-height: 1.6;
        }

        .partners-logos,
        .payment-methods {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            margin-top: 0.5rem;
        }

        .partner-tag,
        .pay-method {
            border: 1px solid var(--border);
            padding: 0.6rem 1rem;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            border-radius: 999px;
            background-color: #f9f9f9;
            color: var(--fg);
            font-weight: 500;
        }

        .partner-tag i,
        .pay-method i {
            color: var(--fg-soft);
        }

        .coming-soon {
            margin-top: auto;
            padding-top: 1.5rem;
            border-top: 1px dashed var(--border);
        }

        .soon-label {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.16em;
            color: var(--fg-soft);
            display: block;
            margin-bottom: 1rem;
        }

        .pharmacy-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
        }

        .pharmacy-tag {
            background: #111;
            color: #fff;
            padding: 0.5rem 1rem;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            border-radius: 4px;
            font-weight: 600;
        }

        .security-badges {
            display: flex;
            flex-direction: column;
            gap: 1.1rem;
            margin-top: 1rem;
            margin-bottom: 1rem;
        }

        .badge-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--fg);
        }

        .badge-item i {
            font-size: 1.35rem;
            color: var(--fg);
            width: 24px;
            text-align: center;
        }

        /* ── Experiencias Modernizadas ── */
        .exp-card-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 0.2rem;
        }

        .verified-icon {
            color: #1ec96e;
            font-size: 0.75rem;
            margin-left: 0.2rem;
        }

        .social-source-icon {
            font-size: 1.1rem;
            color: var(--fg-soft);
            opacity: 0.7;
        }

        /* ── Socios y Laboratorio con Imágenes ── */
        .partners-logos-imgs {
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
            margin-top: 0.5rem;
        }

        .partner-img-wrapper {
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
        }

        .partner-sm-label {
            font-size: 0.65rem;
            text-transform: uppercase;
            letter-spacing: 0.16em;
            color: var(--fg-soft);
        }

        .partner-img-box {
            display: flex;
            align-items: center;
            justify-content: center;
            background: #fdfdfd;
            border: 1px solid var(--border);
            padding: 0.5rem 1rem;
            height: 52px;
            border-radius: 8px;
        }

        .partner-img-box img {
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            opacity: 0.65;
            transition: all 0.3s ease;
        }

        .partner-img-box:hover img {
            filter: grayscale(0%);
            opacity: 1;
        }

        .couriers-row {
            display: flex;
            gap: 0.75rem;
        }

        .couriers-row .partner-img-box {
            flex: 1;
        }

        .fallback-logo {
            font-size: 0.7rem;
            font-weight: 700;
            color: var(--fg-soft);
            display: flex;
            align-items: center;
            gap: 0.5rem;
            letter-spacing: 0.08em;
        }

        /* ── Grillas responsivas para logos ── */
        .partner-grid {
            display: grid;
            gap: 0.75rem;
            margin-top: 0.5rem;
        }

        .partner-grid.grid-2 {
            grid-template-columns: repeat(2, 1fr);
        }

        .partner-grid.grid-3 {
            grid-template-columns: repeat(3, 1fr);
        }

        .partner-grid .partner-img-box {
            width: 100%;
            height: 52px;
            padding: 0.5rem;
        }

        .partner-grid .pay-img {
            height: 48px;
            padding: 0.35rem;
        }

        @media (max-width: 480px) {
            .partner-grid.grid-3 {
                grid-template-columns: repeat(2, 1fr);
            }
        }