/* index.css — estilos propios de index.html (extraidos de bloques <style> embebidos) */

        /* Desactivar transiciones CSS para que GSAP las controle de forma limpia */
        .carousel-eyebrow,
        .carousel-title,
        .carousel-desc,
        .carousel-actions {
            transition: none !important;
            transform: none !important;
            opacity: 1 !important;
        }

        /* ===== FEATURES MINI-CARDS — HORIZONTAL SCROLL MOBILE ===== */
        @media (max-width: 767px) {

            .features-scroll-wrapper {
                position: relative;
                margin: 0 -1rem;
                overflow: hidden;
                /* oculta las cards vecinas */
                padding-bottom: 4px;
            }

            .features-scroll-wrapper::before {
                content: 'Desliza para ver más →';
                display: block;
                text-align: center;
                font-size: 11px;
                font-weight: 600;
                letter-spacing: 0.04em;
                color: #f10075;
                opacity: 0.75;
                margin-bottom: 10px;
                font-family: inherit;
            }

            .features-scroll-track {
                display: flex;
                flex-direction: row;
                gap: 1.5rem;
                /* espacio en blanco que separa las cards */
                overflow-x: auto;
                overflow-y: visible;
                scroll-snap-type: x mandatory;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
                padding: 8px 1rem 20px 1rem;
                /* márgenes laterales para respiro visual */
            }

            .features-scroll-track::-webkit-scrollbar {
                display: none;
            }

            /* Cada card ocupa el ancho visible menos los márgenes laterales */
            .features-scroll-track>div {
                flex: 0 0 calc(100% - 2rem);
                min-height: 200px;
                scroll-snap-align: center;
                width: calc(100% - 2rem) !important;
                max-width: none !important;
                min-width: 0 !important;
                /* Espaciado interno propio */
                border-radius: 20px !important;
                margin: 0 !important;
                /* gap y padding se encargan del espaciado */
                padding: 24px 22px !important;
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
                border: 1px solid rgba(0, 0, 0, 0.06) !important;
                box-sizing: border-box;
                /* Sin scale */
                transform: none !important;
            }

            /* Icono */
            .features-scroll-track>div .w-12 {
                width: 52px !important;
                height: 52px !important;
                border-radius: 16px !important;
                margin-bottom: 16px !important;
            }

            /* Texto */
            .features-scroll-track>div h3 {
                font-size: 1.05rem !important;
                font-weight: 800 !important;
                margin-bottom: 8px !important;
            }

            .features-scroll-track>div p {
                font-size: 0.82rem !important;
                line-height: 1.55 !important;
                color: #6b7280 !important;
            }

            /* Número stat */
            .features-scroll-track>div .text-3xl,
            .features-scroll-track>div .text-4xl {
                font-size: 2.4rem !important;
                margin-bottom: 4px !important;
            }

            /* Dots */
            .features-scroll-dots {
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 7px;
                margin-top: 6px;
                padding-bottom: 4px;
            }

            .features-scroll-dots span {
                display: inline-block;
                width: 7px;
                height: 7px;
                border-radius: 50%;
                background: #d1d5db;
                transition: background 0.3s, width 0.3s, border-radius 0.3s;
                cursor: pointer;
                flex-shrink: 0;
            }

            .features-scroll-dots span.active {
                background: #f10075;
                width: 22px;
                border-radius: 4px;
            }
        }

        /* En desktop: el wrapper no altera nada */
        @media (min-width: 768px) {
            .features-scroll-wrapper {
                display: contents;
            }

            .features-scroll-track {
                display: contents;
            }

            .features-scroll-dots {
                display: none;
            }

            .features-scroll-wrapper::before {
                display: none;
            }
        }

        /* ===== PLANES DE ACOMPAÑAMIENTO — HORIZONTAL SCROLL MOBILE ===== */
        @media (max-width: 767px) {

            .plans-scroll-wrapper {
                position: relative;
                margin: 0 -1rem;
                overflow: hidden;
                /* oculta el plan vecino */
            }

            .plans-scroll-wrapper::before {
                content: 'Desliza para ver más →';
                display: block;
                text-align: center;
                font-size: 11px;
                font-weight: 600;
                letter-spacing: 0.04em;
                color: #f10075;
                opacity: 0.75;
                margin-bottom: 10px;
                font-family: inherit;
            }

            #plansScrollTrack {
                display: flex !important;
                flex-direction: row !important;
                gap: 1.5rem !important;
                /* espacio en blanco entre planes */
                overflow-x: auto;
                overflow-y: visible;
                scroll-snap-type: x mandatory;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
                padding: 16px 1rem 20px 1rem !important;
                /* márgenes laterales para respiro visual */
                grid-template-columns: none !important;
            }

            #plansScrollTrack::-webkit-scrollbar {
                display: none;
            }

            /* Cada plan: ancho visible menos márgenes laterales */
            .plans-card {
                flex: 0 0 calc(100% - 2rem) !important;
                width: calc(100% - 2rem) !important;
                max-width: none !important;
                min-width: 0 !important;
                min-height: 360px;
                scroll-snap-align: center;
                border-radius: 24px !important;
                margin: 0 !important;
                /* gap y padding se encargan del espaciado */
                padding: 28px 24px !important;
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
                box-sizing: border-box;
                transform: none !important;
                scale: unset !important;
            }

            .plans-card--featured {
                border-width: 2px !important;
                box-shadow: 0 6px 28px rgba(241, 0, 117, 0.18) !important;
            }

            /* Dots */
            .plans-scroll-dots {
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 7px;
                margin-top: 6px;
                padding-bottom: 4px;
            }

            .plans-scroll-dots span {
                display: inline-block;
                width: 7px;
                height: 7px;
                border-radius: 50%;
                background: #d1d5db;
                transition: background 0.3s, width 0.3s, border-radius 0.3s;
                cursor: pointer;
                flex-shrink: 0;
            }

            .plans-scroll-dots span.active {
                background: #f10075;
                width: 22px;
                border-radius: 4px;
            }
        }

        @media (min-width: 768px) {
            .plans-scroll-wrapper::before {
                display: none;
            }

            .plans-scroll-dots {
                display: none;
            }
        }

        /* ===== LA DIFERENCIA KJA — V3 REFERENCE ===== */
        .glass-bubbles {
            position: relative;
            background: radial-gradient(120% 120% at 0% 0%, #1a73e8 0%, #004fb0 40%, #03142e 100%);
            border: 1px solid rgba(255, 255, 255, 0.1);
            overflow: hidden;
        }

        .glass-bubbles::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            z-index: 1;
            pointer-events: none;
        }

        .glass-bubble {
            position: absolute;
            border-radius: 50%;
            filter: blur(1px);
            pointer-events: none;
            z-index: 0;
        }

        .glass-bubble--1 {
            width: 140px;
            height: 140px;
            background: rgba(241, 0, 117, 0.12);
            top: 10%;
            left: 5%;
            animation: bubbleFloat1 7s ease-in-out infinite;
        }

        .glass-bubble--2 {
            width: 90px;
            height: 90px;
            background: rgba(0, 79, 176, 0.15);
            top: 60%;
            left: 15%;
            animation: bubbleFloat2 5s ease-in-out infinite;
        }

        .glass-bubble--3 {
            width: 180px;
            height: 180px;
            background: rgba(255, 255, 255, 0.04);
            top: 30%;
            right: 10%;
            animation: bubbleFloat3 9s ease-in-out infinite;
        }

        .glass-bubble--4 {
            width: 70px;
            height: 70px;
            background: rgba(241, 0, 117, 0.08);
            bottom: 15%;
            right: 25%;
            animation: bubbleFloat1 6s ease-in-out infinite 1s;
        }

        .glass-bubble--5 {
            width: 110px;
            height: 110px;
            background: rgba(0, 79, 176, 0.1);
            bottom: 30%;
            left: 40%;
            animation: bubbleFloat2 8s ease-in-out infinite 0.5s;
        }

        .glass-bubble--6 {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.06);
            top: 5%;
            right: 40%;
            animation: bubbleFloat3 4s ease-in-out infinite 1.5s;
        }

        @keyframes bubbleFloat1 {

            0%,
            100% {
                transform: translate(0, 0) scale(1);
            }

            33% {
                transform: translate(15px, -20px) scale(1.05);
            }

            66% {
                transform: translate(-10px, 10px) scale(0.97);
            }
        }

        @keyframes bubbleFloat2 {

            0%,
            100% {
                transform: translate(0, 0) scale(1);
            }

            50% {
                transform: translate(-20px, -15px) scale(1.08);
            }
        }

        @keyframes bubbleFloat3 {

            0%,
            100% {
                transform: translate(0, 0) scale(1);
            }

            25% {
                transform: translate(10px, 15px) scale(1.03);
            }

            75% {
                transform: translate(-15px, -10px) scale(0.96);
            }
        }

        .glass-avatar-profile {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(8px);
            z-index: 20;
        }

        @media (min-width: 768px) {
            .glass-avatar-profile {
                top: 2rem;
                right: 2rem;
                width: 64px;
                height: 64px;
            }
        }

        @media (min-width: 1024px) {
            .glass-avatar-profile {
                top: 2.5rem;
                right: 2.5rem;
                width: 72px;
                height: 72px;
            }
        }

        .therapy-pill-v3 {
            font-size: 12px;
            padding: 0.5rem 1rem;
            border-radius: 9999px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            background: rgba(255, 255, 255, 0.08);
            color: rgba(255, 255, 255, 0.9);
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            font-family: inherit;
            font-weight: 600;
            line-height: 1.3;
            letter-spacing: 0.01em;
        }

        .therapy-pill-v3:hover {
            background: rgba(255, 255, 255, 0.18);
            border-color: rgba(255, 255, 255, 0.4);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.05);
        }

        .therapy-pill-v3.active {
            background: rgba(241, 0, 117, 0.5);
            border-color: rgba(241, 0, 117, 0.8);
            color: #fff;
            box-shadow: 0 4px 20px rgba(241, 0, 117, 0.35), 0 0 0 1px rgba(241, 0, 117, 0.5);
        }

        /* ===== COMMITMENT CARDS ===== */
        .commitment-card {
            background: #fff;
            border-radius: 1.25rem;
            padding: 1.25rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            transition: box-shadow 0.3s ease, transform 0.3s ease;
            display: flex;
            flex-direction: column;
            border: 1px solid rgba(0, 0, 0, 0.04);
        }

        .commitment-card:hover {
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
            transform: translateY(-3px);
        }

        .commitment-card--dark {
            background: linear-gradient(135deg, #004fb0 0%, #002f6c 100%);
            color: #fff;
            border: none;
            box-shadow: 0 12px 30px rgba(0, 79, 176, 0.2);
        }

        .commitment-card--dark .commitment-eyebrow {
            color: #f10075;
        }

        .commitment-card--dark .commitment-title {
            color: #fff;
        }

        .commitment-card--dark .google-review-bubble {
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(255, 255, 255, 0.15);
        }

        .commitment-card--dark .google-review-bubble::before {
            background: rgba(255, 255, 255, 0.12);
            border-bottom-color: rgba(255, 255, 255, 0.15);
            border-right-color: rgba(255, 255, 255, 0.15);
        }

        .commitment-card--dark .google-review-text {
            color: rgba(255, 255, 255, 0.9);
        }

        .commitment-card--dark .google-review-author {
            color: #fff;
        }

        .commitment-card--dark .profile-icon {
            border-color: rgba(255, 255, 255, 0.25);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .commitment-eyebrow {
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: #f10075;
            margin-bottom: 1.25rem;
        }

        .commitment-title {
            font-size: 0.95rem;
            font-weight: 800;
            color: #111827;
            line-height: 1.3;
            margin-bottom: 0.5rem;
        }

        .commitment-subtitle {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 1rem;
        }

        .profile-icon {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            overflow: hidden;
            border: 2px solid #fff;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            background: #dbe4ff;
        }

        .profile-icon svg {
            width: 100%;
            height: 100%;
        }

        .google-review-bubble {
            background: #f8f9ff;
            border: 1px solid rgba(0, 79, 176, 0.08);
            border-radius: 1.25rem;
            padding: 1rem 1.25rem;
            position: relative;
            margin-bottom: 1rem;
        }

        .google-review-bubble::before {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 28px;
            width: 16px;
            height: 16px;
            background: #f8f9ff;
            border-bottom: 1px solid rgba(0, 79, 176, 0.08);
            border-right: 1px solid rgba(0, 79, 176, 0.08);
            transform: rotate(45deg);
        }

        .google-review-header {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.4rem;
        }

        .google-review-logo {
            font-size: 0.75rem;
            font-weight: 700;
            color: #4285F4;
            display: flex;
            align-items: center;
            gap: 2px;
        }

        .google-review-stars {
            display: flex;
            gap: 2px;
        }

        .google-review-stars svg {
            width: 12px;
            height: 12px;
            fill: #f59e0b;
        }

        .google-review-text {
            font-size: 0.8rem;
            color: #4b5563;
            line-height: 1.55;
            font-style: italic;
        }

        .google-review-author {
            font-size: 0.75rem;
            font-weight: 700;
            color: #111827;
            margin-top: 0.75rem;
            padding-left: 0.5rem;
        }

        .flex-icons-row {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            margin: 1.25rem 0;
            flex-wrap: wrap;
        }

        .flex-icon-box-xl {
            width: 64px;
            height: 64px;
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #eef2ff, #f8fafc);
            border: 1px solid rgba(0, 79, 176, 0.1);
            color: #004fb0;
            box-shadow: 0 4px 14px rgba(0, 79, 176, 0.08);
        }

        .flex-icon-box-xl svg {
            width: 28px;
            height: 28px;
        }

        .flex-arrow {
            color: #cbd5e1;
            font-size: 1.2rem;
        }

        .stat-big {
            font-size: 3.5rem;
            font-weight: 900;
            line-height: 1;
            background: linear-gradient(135deg, #004fb0, #f10075);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.25rem;
        }

        .stat-curve-area {
            width: 100%;
            height: 70px;
            margin: 0.5rem 0 0.75rem;
        }

        .mini-testi {
            background: #f8f9ff;
            border-radius: 1rem;
            padding: 0.75rem 1rem;
            font-size: 0.78rem;
            color: #4b5563;
            line-height: 1.5;
            margin-top: auto;
        }

        .mini-testi strong {
            color: #111827;
            font-weight: 700;
        }

        .connect-line {
            flex: 1;
            height: 2px;
            background: linear-gradient(90deg, #004fb0, #f10075);
            border-radius: 1px;
            min-width: 20px;
            max-width: 40px;
        }

        /* ===== TERAPIA INFANTIL CARD ===== */
        .ti-icons-container {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 0.5rem 0;
        }

        .ti-col-side {
            display: flex;
            flex-direction: column;
            justify-content: space-around;
            gap: 14px;
            flex: 1;
        }

        .ti-col-center {
            flex: 1.4;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .ti-icon-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
        }

        .ti-icon-box {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: #f0f4ff;
            border: 1px solid rgba(0, 79, 176, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .ti-icon-label {
            font-size: 0.62rem;
            font-weight: 700;
            color: #374151;
            text-align: center;
        }

        /* ===== CARD BORDERED ===== */
        .commitment-card--bordered {
            border: 2px solid #f10075;
        }

        /* ===== CAROUSEL DOTS ===== */
        .carousel-dots {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 6px;
            margin-top: 1rem;
        }

        .carousel-dot {
            width: 8px;
            height: 8px;
            border-radius: 4px;
            background: #d1d5db;
            transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
            cursor: pointer;
        }

        .carousel-dot.active {
            background: #004fb0;
            width: 22px;
        }

        /* ===== DYNAMIC THERAPY CARD ===== */
        .therapy-card-dynamic {
            position: relative;
            width: 100%;
            aspect-ratio: 16 / 10;
            overflow: hidden;
            border-radius: 1.25rem;
        }

        .therapy-card-dynamic>img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: opacity 0.4s ease, transform 0.6s ease;
        }

        .therapy-card-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 1.25rem;
            background: linear-gradient(to top, rgba(0, 15, 50, 0.88) 0%, rgba(0, 15, 50, 0.45) 55%, transparent 100%);
            transition: opacity 0.4s ease;
        }

        .therapy-tag {
            display: inline-flex;
            align-items: center;
            padding: 0.2rem 0.65rem;
            border-radius: 9999px;
            font-size: 0.6rem;
            font-weight: 700;
            color: white;
            letter-spacing: 0.04em;
        }

        .therapy-card-dynamic.fading>img {
            opacity: 0;
            transform: scale(1.03);
        }

        .therapy-card-dynamic.fading .therapy-card-overlay {
            opacity: 0;
        }

        /* ===== COMMITMENT TRACK (marquee) ===== */
        .commitment-marquee-container {
            width: 100%;
            overflow: hidden;
            position: relative;
            /* Fades on the edges for smoother entry/exit */
            mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
            -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
        }

        .commitment-track {
            display: flex;
            width: max-content;
            animation: marquee-scroll 45s linear infinite;
        }

        .commitment-track:hover {
            animation-play-state: paused;
        }

        .commitment-track > article {
            width: 320px; /* Fija un ancho estándar para las tarjetas */
            flex-shrink: 0;
            margin-right: 1.5rem;
            white-space: normal;
        }

        @keyframes marquee-scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%); /* Moves exactly half the width (which is one full set of duplicated items) */
            }
        }

        /* ===== FACEBOOK TESTIMONIAL CARDS (renderizadas por JS en #commitmentTrack) ===== */
        .fb-post {
            padding: 0;
            overflow: hidden;
            background: #fff;
            border: 1px solid #e4e6ea;
            border-radius: 12px;
        }

        .fb-post__bar {
            background: #1877f2;
            padding: 0.45rem 0.75rem;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .fb-post__bar svg {
            width: 14px;
            height: 14px;
            flex-shrink: 0;
        }

        .fb-post__bar-name {
            font-size: 0.6rem;
            font-weight: 700;
            color: #fff;
            letter-spacing: 0.04em;
        }

        .fb-post__bar-tag {
            font-size: 0.55rem;
            color: rgba(255, 255, 255, 0.7);
            margin-left: auto;
        }

        .fb-post__body {
            padding: 0.9rem 1rem;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .fb-post__user {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 0.6rem;
        }

        .fb-post__avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            object-fit: cover;
            flex-shrink: 0;
            border: 2px solid #1877f2;
        }

        .fb-post__name {
            font-size: 0.78rem;
            font-weight: 700;
            color: #050505;
            line-height: 1.2;
        }

        .fb-post__meta {
            font-size: 0.62rem;
            color: #65676b;
            line-height: 1.4;
        }

        .fb-post__meta strong {
            color: #1877f2;
        }

        .fb-post__time {
            font-size: 0.62rem;
            color: #65676b;
            display: flex;
            align-items: center;
            gap: 3px;
        }

        .fb-post__time svg {
            width: 10px;
            height: 10px;
        }

        .fb-post__stars {
            font-size: 0.85rem;
            color: #f59e0b;
            margin-bottom: 0.5rem;
            letter-spacing: 1px;
        }

        .fb-post__text {
            font-size: 0.76rem;
            color: #1c1e21;
            line-height: 1.55;
            margin-bottom: 0.75rem;
            flex: 1;
        }

        .fb-post__footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-top: 1px solid #e4e6ea;
            padding-top: 0.6rem;
            margin-top: auto;
        }

        .fb-post__reactions {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .fb-post__badge {
            width: 16px;
            height: 16px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .fb-post__badge--like {
            background: #1877f2;
        }

        .fb-post__badge--love {
            background: #f33e58;
            margin-left: -6px;
            border: 1px solid #fff;
        }

        .fb-post__badge svg {
            width: 9px;
            height: 9px;
        }

        .fb-post__count {
            font-size: 0.6rem;
            color: #65676b;
            margin-left: 2px;
        }

        .fb-post__comments {
            font-size: 0.6rem;
            color: #65676b;
        }


        /* ===== STAT PULSE ===== */
        @keyframes statPulse {

            0%,
            100% {
                transform: scale(1);
                filter: brightness(1);
            }

            50% {
                transform: scale(1.05);
                filter: brightness(1.08);
            }
        }

        .stat-pulse-anim {
            animation: statPulse 3.5s ease-in-out infinite;
        }

        /* ===== FLEXIBILIDAD BLOCKS ===== */
        .flex-mode-block {
            flex: 1;
            border-radius: 14px;
            padding: 0.85rem 0.4rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-between;
            gap: 8px;
            min-height: 100px;
            position: relative;
            overflow: hidden;
        }

        .flex-mode-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.18);
            border: 1px solid rgba(255, 255, 255, 0.25);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .flex-mode-label {
            font-size: 0.55rem;
            font-weight: 800;
            color: rgba(255, 255, 255, 0.9);
            text-transform: uppercase;
            letter-spacing: 0.06em;
            text-align: center;
        }

        /* ===== ONLINE/PRESENCIAL PANEL ===== */
        .mode-panel {
            flex: 1;
            border-radius: 12px;
            padding: 0.7rem 0.55rem;
            display: flex;
            flex-direction: column;
            gap: 5px;
            overflow: hidden;
        }

        .mode-panel-label {
            font-size: 0.52rem;
            font-weight: 800;
            color: white;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 4px;
        }

        .mode-panel-sub {
            font-size: 0.42rem;
            color: rgba(255, 255, 255, 0.45);
            text-align: center;
            margin-top: 1px;
        }

        @keyframes liveBlink {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0.25;
            }
        }

        @keyframes mapPulse {
            0% {
                r: 6;
                opacity: 0.7;
            }

            100% {
                r: 14;
                opacity: 0;
            }
        }

        @keyframes glowPulse {

            0%,
            100% {
                opacity: 0.5;
                transform: translate(-50%, -50%) scale(1);
            }

            50% {
                opacity: 0.9;
                transform: translate(-50%, -50%) scale(1.25);
            }
        }

        /* ===== PREMIUM CARD ENHANCEMENTS ===== */
        .commitment-card {
            transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .commitment-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 32px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(241, 0, 117, 0.1);
        }

        .mode-panel {
            transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
            position: relative;
        }

        .mode-panel::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: inherit;
            box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.15);
            pointer-events: none;
        }

        .mode-panel:hover {
            transform: scale(1.02) translateY(-2px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
        }

        @keyframes shineSweep {
            0% {
                transform: translateX(-100%);
            }

            100% {
                transform: translateX(200%);
            }
        }

        .premium-shine {
            position: relative;
            overflow: hidden;
        }

        .premium-shine::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 50%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transform: skewX(-20deg) translateX(-150%);
            animation: shineSweep 3s infinite cubic-bezier(0.22, 1, 0.36, 1);
            pointer-events: none;
        }

        .animated-gradient-text {
            background-size: 200% 200%;
            animation: gradientShift 4s ease infinite;
        }

        @keyframes gradientShift {
            0% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }

            100% {
                background-position: 0% 50%;
            }
        }

            @keyframes elegant-pulse {

                0%,
                100% {
                    opacity: 0.8;
                    transform: translateY(0) scale(1);
                }

                50% {
                    opacity: 1;
                    transform: translateY(-2px) scale(1.02);
                }
            }

            .animate-elegant {
                animation: elegant-pulse 3s infinite ease-in-out;
            }

            .custom-text-gradient {
                background: linear-gradient(90deg, #1e3a8a 0%, #3b82f6 100%);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
                color: transparent;
            }

            .custom-line-right {
                background: linear-gradient(to right, transparent, #60a5fa, #1d4ed8);
            }

            .custom-line-left {
                background: linear-gradient(to left, transparent, #60a5fa, #1d4ed8);
            }

                .btn-pink-glow {
                    display: inline-flex;
                    align-items: center;
                    justify-content: center;
                    gap: 10px;
                    background-color: #f10075;
                    color: white;
                    font-weight: 800;
                    font-size: 0.95rem;
                    letter-spacing: 1px;
                    text-transform: uppercase;
                    padding: 16px 36px;
                    border-radius: 50px;
                    box-shadow: 0 8px 25px rgba(241, 0, 117, 0.35);
                    transition: all 0.3s ease;
                    position: relative;
                    z-index: 10;
                    text-decoration: none;
                }

                .btn-pink-glow:hover {
                    transform: translateY(-2px);
                    box-shadow: 0 12px 30px rgba(241, 0, 117, 0.45);
                    color: white;
                }

                .btn-ripple {
                    position: absolute;
                    top: 0;
                    left: 0;
                    right: 0;
                    bottom: 0;
                    border-radius: 50px;
                    border: 2px solid #f10075;
                    opacity: 0;
                    pointer-events: none;
                    z-index: -1;
                }

                        @keyframes blob {
                            0% {
                                transform: translate(0px, 0px) scale(1);
                            }

                            33% {
                                transform: translate(30px, -50px) scale(1.1);
                            }

                            66% {
                                transform: translate(-20px, 20px) scale(0.9);
                            }

                            100% {
                                transform: translate(0px, 0px) scale(1);
                            }
                        }

                        .animate-blob {
                            animation: blob 7s infinite;
                        }

                        .animation-delay-2000 {
                            animation-delay: 2s;
                        }

                        .animation-delay-4000 {
                            animation-delay: 4s;
                        }

                        @keyframes slideInUpCustom {
                            from {
                                opacity: 0;
                                transform: translateY(20px);
                            }

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

                        .stagger-1 {
                            animation: slideInUpCustom 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards 0.1s;
                            opacity: 0;
                        }

                        .stagger-2 {
                            animation: slideInUpCustom 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards 0.2s;
                            opacity: 0;
                        }

                        .stagger-3 {
                            animation: slideInUpCustom 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards 0.3s;
                            opacity: 0;
                        }

                        .stagger-4 {
                            animation: slideInUpCustom 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards 0.4s;
                            opacity: 0;
                        }

                        .stagger-5 {
                            animation: slideInUpCustom 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards 0.5s;
                            opacity: 0;
                        }

                        @keyframes shimmer {
                            100% {
                                transform: translateX(100%);
                            }
                        }
