      :root {
              --primary-dark: #0a0b0f;
            --primary-darker: #05060a;
            --primary-light: #1a1d24;
            --accent-blue: #4adeff;
            --accent-blue-2: #4adeffde;
            --accent-blue-3: #4adeffad;
            --accent-green: #5eff9ef8;
            --accent-green-2: #5eff9e8c;
            --accent-purple: #046dcfb4;
            --accent-pink: #ff5e9e;
            --accent-gradient: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-green) 100%);
            --accent-gradient-2: linear-gradient(135deg, var(--accent-blue-3) 0%, var(--accent-green-2) 100%);
            --accent-gradient-hover: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-blue) 100%);
            --text-primary: #ffffffdc;
            --text-secondary: #b0b8c5;
            --glass-light: rgba(255, 255, 255, 0.05);
            --glass-medium: rgba(255, 255, 255, 0.08);
            --glass-dark: rgba(5, 6, 10, 0.98);
            --glass-border: rgba(255, 255, 255, 0.1);
            --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.3);
            --shadow-accent: 0 0 25px rgba(74, 223, 255, 0.4);
            --transition-slow: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            --transition-fast: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            --muted: #a0aec0;
            --border-radius: 16px;
            --border-radius-sm: 10px;
            --header-height: 80px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent;
            -webkit-overflow-scrolling: touch;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
            overflow-x: hidden;
            width: 100%;
            height: 100%;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--primary-darker);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
            /* -webkit-font-smoothing: antialiased; */
            /* -moz-osx-font-smoothing: grayscale; */
            /* width: 100%;
            height: 100%; */
            /* position: relative; */
            /* touch-action: pan-y; */
            /* -webkit-overflow-scrolling: touch; */
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -0.02em;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

          .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }



        section {
            padding: 80px 0;
        }

        

        /* Animaciones premium */
        @keyframes float {
            0%, 100% { transform: translateY(0) translateX(0); }
            25% { transform: translateY(-10px) translateX(5px); }
            50% { transform: translateY(-5px) translateX(-5px); }
            75% { transform: translateY(-10px) translateX(0); }
        }

        @keyframes pulse-glow {
            0%, 100% { opacity: 0.6; transform: scale(1); }
            50% { opacity: 0.8; transform: scale(1.05); }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

      .animate-on-scroll {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }

        /* Navbar Premium */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: var(--glass-dark);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            border-bottom: 1px solid var(--glass-border);
            z-index: 1000;
            padding: 0;
            height: var(--header-height);
            transition: all var(--transition-fast);
            display: flex;
            align-items: center;
        }

        .navbar.scrolled {
            height: 70px;
            background-color: rgba(5, 6, 10, 0.95);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
        }

        .navbar-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            height: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

       .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.3rem;
            font-weight: 800;
            background: var(--accent-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            transition: all var(--transition-fast);
            position: relative;
        }

        .logo::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--accent-gradient);
            bottom: -4px;
            left: 0;
            transition: width var(--transition-fast);
        }

        .logo:hover::after {
            width: 100%;
        }

        .logo-icon {
            font-size: 1.8rem;
            animation: pulse-glow 3s ease-in-out infinite;
        }



/* LOGO */
.nav-logo {
  display: flex;
  align-items: center;
  height: 46px;
}

.nav-logo img {
  height: 40px;     /* tamaño ideal */
  width: auto;
  display: block;
  object-fit: contain;
}

/* AJUSTE PARA MOVILES */
@media (max-width: 480px) {
  .navbar-container {
    padding-left: 6px !important;  /* mueve el logo más a la izquierda */
    /* padding-right: 16px; */
  }

  .nav-logo img {
    height: 40px;  /* tamaño ligeramente menor para móviles */
  }
}


        
        .nav-menu {
            display: flex;
            gap: 40px;
            align-items: center;
        }

        .nav-link {
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--text-secondary);
            transition: all var(--transition-fast);
            position: relative;
            padding: 8px 0;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .nav-link:hover, .nav-link.active {
            color: var(--text-primary);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--accent-gradient);
            bottom: 0;
            left: 0;
            transition: width var(--transition-fast);
            border-radius: 1px;
        }

        .nav-link:hover::after, .nav-link.active::after {
            width: 100%;
        }

        .nav-cta {
            background: var(--accent-gradient);
            color: var(--primary-dark);
            padding: 10px 28px;
            border-radius: var(--border-radius);
            font-weight: 700;
            font-size: 0.9rem;
            transition: all var(--transition-fast);
            box-shadow: 0 4px 15px rgba(74, 223, 255, 0.2);
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            position: relative;
            overflow: hidden;
        }

        .nav-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.7s ease;
        }

        .nav-cta:hover::before {
            left: 100%;
        }

        .nav-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(74, 223, 255, 0.3);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
            width: 30px;
            height: 24px;
            background: transparent;
            border: none;
            padding: 0;
            z-index: 1001;
        }

        .hamburger span {
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, var(--accent-blue), var(--accent-green));
            transition: all var(--transition-fast);
            border-radius: 2px;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
            background: var(--accent-blue);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
            background: var(--accent-green);
        }

        /* HERO FULL-SCREEN PREMIUM */
        .hero-section {
            min-height: 90vh;
            position: relative;
            display: flex;
            align-items: center;
            overflow: hidden;
            padding: 0;
            background: var(--primary-darker);
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            overflow: hidden;
        }

        .hero-bg::before {
            content: '';

            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 15% 30%, rgba(74, 223, 255, 0.15) 0%, transparent 40%),
                radial-gradient(circle at 85% 20%, rgba(94, 255, 158, 0.12) 0%, transparent 40%),
                radial-gradient(circle at 50% 70%, rgba(74, 100, 223, 0.1) 0%, transparent 40%);
                
            z-index: 1;
        }

       .hero-bg::before {
         
            background: 
                /* radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(42, 157, 143, 0.1) 0%, transparent 50%), */
                linear-gradient(180deg, rgba(10, 10, 10, 0.233) 0%, rgba(10, 10, 10, 0.322) 100%),
                url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
            z-index: -1;
            opacity: 0.18;
        }

        .hero-grid {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
            background-size: 50px 50px;
            z-index: 0;
            opacity: 0.3;
        }

        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            z-index: 2;
            pointer-events: none;
        }

        .floating-element {
            position: absolute;
            width: 250px;
            height: 250px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(74, 223, 255, 0.06) 0%, transparent 70%);
            filter: blur(30px);
            animation: float 20s ease-in-out infinite;
        }

       .floating-element:nth-child(1) {
            top: 15%;
            left: 10%;
            animation-delay: 0s;
            width: 300px;
            height: 300px;
        }

        .floating-element:nth-child(2) {
            top: 55%;
            right: 10%;
            animation-delay: -5s;
            width: 280px;
            height: 280px;
            background: radial-gradient(circle, rgba(94, 255, 158, 0.05) 0%, transparent 70%);
        }

        .floating-element:nth-child(3) {
            bottom: 20%;
            left: 20%;
            animation-delay: -10s;
            width: 250px;
            height: 250px;
            background: radial-gradient(circle, rgba(74, 100, 223, 0.06) 0%, transparent 70%);
        }

        .hero-container {
            position: relative;
            z-index: 3;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            min-height: 100vh;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            padding: 30px 0;
        }

        .hero-badge {
            display: inline-block;
            background: var(--glass-medium);
            border: 1px solid var(--glass-border);
            padding: 10px 24px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--accent-blue);
            margin-bottom: 40px;
            backdrop-filter: blur(10px);
            letter-spacing: 1px;
            text-transform: uppercase;
        }

/* 
        ************************* */



        .hero-content-2 {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            /* padding: 60px 0; */
        }

        .hero-badge-2 {
            display: inline-block;
            background: var(--glass-medium);
            border: 1px solid var(--glass-border);
            padding: 10px 24px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--accent-blue);
            margin-bottom: 40px;
            backdrop-filter: blur(10px);
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .hero-title {
            font-size: clamp(2.2rem, 5vw, 2.8rem);
            font-weight: 800;
            line-height: 1.07;
            margin-bottom: 25px;
            background: linear-gradient(135deg, 
                #ffffff 0%, 
                var(--accent-blue) 30%, 
                var(--accent-green) 60%, 
                #ffffff 100%);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            animation: gradientShift 6s ease infinite;
            letter-spacing: -0.02em;
        }

       .hero-subtitle {
            font-size: clamp(1.1rem, 2vw, 1.3rem);
            color: var(--text-secondary);
            margin-bottom: 40px;
            line-height: 1.5;
            max-width: 650px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 400;
            opacity: 0.9;
        }

      .hero-cta {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 30px;
        }

        .cta-primary {
            background: var(--accent-gradient);
            color: var(--primary-dark);
            padding: 16px 36px;
            border-radius: var(--border-radius);
            font-weight: 700;
            font-size: 1rem;
            transition: all var(--transition-fast);
            box-shadow: 0 6px 20px rgba(74, 223, 255, 0.25);
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            position: relative;
            overflow: hidden;
            min-width: 180px;
        }

        

        .cta-primary:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 15px 40px rgba(74, 223, 255, 0.4);
        }

        .cta-secondary {
            background: transparent;
            color: var(--text-primary);
            padding: 18px 42px;
            border-radius: var(--border-radius);
            font-weight: 600;
            font-size: 1.1rem;
            transition: all var(--transition-fast);
            border: 2px solid var(--glass-border);
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            min-width: 200px;
            backdrop-filter: blur(10px);
        }

        .cta-secondary:hover {
            border-color: var(--accent-blue);
            background: rgba(74, 223, 255, 0.05);
            transform: translateY(-3px);
        }

        .hero-scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 3;
            animation: bounce 2s ease infinite;
        }

        .scroll-arrow {
            width: 24px;
            height: 40px;
            border: 2px solid var(--glass-border);
            border-radius: 12px;
            position: relative;
        }

        .scroll-arrow::before {
            content: '';
            position: absolute;
            top: 8px;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 10px;
            background: var(--accent-blue);
            border-radius: 2px;
            animation: scrollDown 1.5s ease infinite;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
            40% { transform: translateX(-50%) translateY(-10px); }
            60% { transform: translateX(-50%) translateY(-5px); }
        }

        @keyframes scrollDown {
            0% { transform: translateX(-50%) translateY(0); opacity: 0; }
            30% { opacity: 1; }
            60% { opacity: 1; }
            100% { transform: translateX(-50%) translateY(15px); opacity: 0; }
        }

        /* MÉTRICAS - Separación clara del Hero */
         /* MÉTRICAS REFINADAS */
        .metrics-section {
            padding: 80px 0;
            background: var(--primary-dark);
            position: relative;
            border-top: 1px solid var(--glass-border);
            border-bottom: 1px solid var(--glass-border);
        }

        .metrics-container {
            position: relative;
            z-index: 2;
        }

        .metrics-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .metrics-title {
            font-size: clamp(1.6rem, 2.5vw, 2rem);
            font-weight: 700;
            margin-bottom: 15px;
            background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-blue) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .metrics-subtitle {
            color: var(--text-secondary);
            font-size: 1rem;
            max-width: 550px;
            margin: 0 auto;
            opacity: 0.8;
        }

        .metrics-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }

        .metric-card {
            background: var(--glass-light);
            border: 1px solid var(--glass-border);
            border-radius: var(--border-radius);
            padding: 35px 25px;
            text-align: center;
            transition: all var(--transition-fast);
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
        }

        .metric-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(74, 223, 255, 0.04), transparent);
            transition: left 0.7s ease;
        }

        .metric-card:hover::before {
            left: 100%;
        }

        .metric-card:hover {
            transform: translateY(-5px);
            border-color: var(--accent-blue);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .metric-value {
            font-size: 2.8rem;
            font-weight: 800;
            background: var(--accent-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1;
            margin-bottom: 8px;
            display: block;
        }

        .metric-label {
            font-size: 1rem;
            color: var(--text-secondary);
            font-weight: 600;
            letter-spacing: 0.3px;
        }


         /* Stats Section */
        .stats {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            text-align: center;
            margin: 60px 0;
        }

        .stat-item {
            margin: 20px;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            background: var(--accent-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: block;
            line-height: 1;
        }

        .stat-text {
            font-size: 1rem;
            color: var(--text-secondary);
            margin-top: 10px;
        }

        /* Estilos para el resto del contenido (se mantienen igual que antes) */
        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }

            .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title {
            font-size: 2.5rem;
            background: var(--accent-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: inline-block;
            margin-bottom: 1.5rem;
        }

        .section-title h2 {
            font-size: clamp(2rem, 4vw, 2.8rem);
            margin-bottom: 15px;
            background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-blue) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .section-title p {
            max-width: 700px;
            margin: 0 auto;
            color: var(--text-secondary);
            font-size: clamp(1rem, 2vw, 1.1rem);
            padding: 0 10px;
        }

        
        .section-subtitle {
            font-size: 1.1rem;
            color: var(--text-secondary);
            max-width: 700px;
            margin: 0 auto;
        }


             /* Problem Section */
        .problem-section {
            background: var(--primary-light);
        }

        .problem-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }

        .problem-item {
            background: var(--glass-light);
            border-radius: var(--border-radius);
            padding: 30px;
            border: 1px solid var(--glass-border);
            transition: all var(--transition-fast);
        }

        .problem-item:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-soft);
        }

        .problem-item i {
            font-size: 2rem;
            margin-bottom: 20px;
            color: var(--accent-blue);
        }

        .problem-item h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
        }

        .problem-item p {
            color: var(--text-secondary);
        }


        .btn {
            display: inline-block;
            padding: 15px 30px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all var(--transition-fast);
            font-size: 1.2rem;
            border: none;
            cursor: pointer;
            font-family: 'Montserrat', sans-serif;
        }

        .btn-primary {
            background: var(--accent-gradient);
            color: var(--primary-dark);
            box-shadow: var(--shadow-soft);
        }

        .btn-primary:hover {
            background: var(--accent-gradient-hover);
            transform: translateY(-3px);
            box-shadow: var(--shadow-accent);
        }

        .btn-secondary {
            background: transparent;
            color: var(--text-primary);
            border: 2px solid var(--accent-blue);
        }

        .btn-secondary:hover {
            background: rgba(74, 223, 255, 0.1);
            transform: translateY(-3px);
        }


        /* --- BOTÓN PRIMARY PREMIUM LÍQUIDO --- */
.btn-primary {
    position: relative;
    overflow: hidden;
    z-index: 1;
    backdrop-filter: blur(4px);
    transition: all .4s ease;
}

/* Capa líquida profunda */
.btn-primary::before {
    content: "";
    position: absolute;
    inset: -20%;
    z-index: -2;
    background: linear-gradient(
        140deg,
        var(--accent-blue) 0%,
        var(--accent-green) 20%,
        var(--accent-purple) 60%,
        var(--accent-pink) 90%
    );
    background-size: 250% 250%;
    border-radius: 60px;
    filter: blur(14px) brightness(1.2);
    opacity: 0.65;
    animation: premiumLiquid 10s ease-in-out infinite;
}

/* Capa superior para brillo suave premium */
.btn-primary::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: radial-gradient(
        circle at 30% 30%,
        rgba(255,255,255,0.22),
        transparent 60%
    );
    opacity: 0.5;
    mix-blend-mode: soft-light;
    transition: opacity .4s ease;
}

/* Animación premium suave y profunda */
@keyframes premiumLiquid {
    0% { transform: translate(-10%, -10%); background-position: 0% 40%; }
    50% { transform: translate(10%, 10%); background-position: 100% 60%; }
    100% { transform: translate(-10%, -10%); background-position: 0% 40%; }
}

/* Hover más elegante, no agresivo */
.btn-primary:hover {
    transform: translateY(-4px) scale(1.015);
}

.btn-primary:hover::before {
    animation-duration: 6s;
    opacity: 0.85;
}

.btn-primary:hover::after {
    opacity: 0.7;
}


   /* Testimonial */
.testimonial {
    background: var(--primary-light);
    border-radius: var(--border-radius);
    padding: 48px 40px;
    margin: 80px auto;
    max-width: 800px;
    border-left: 4px solid var(--accent-green);
    position: relative;
    
    text-align: left;
}

/* Comilla decorativa */
.testimonial::before {
    content: "“";
    font-size: 5rem;
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%); /* CENTRADO REAL */
    color: var(--accent-green);
    opacity: 0.25;
    font-family: serif;
}

/* Texto */
.testimonial p {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* Línea decorativa inferior */
.testimonial::after {
    content: "";
    display: block;
    width: 235px;
    height: 1px;
    margin: 32px auto 0;
    background: linear-gradient(
        to right,
        transparent,
        var(--accent-green),
        transparent
    );
    opacity: 0.4;
}

  /* Program Section */
        .program-features {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .feature-card {
            background: var(--glass-light);
            border-radius: var(--border-radius);
            padding: 35px 25px;
            text-align: center;
            border: 1px solid var(--glass-border);
            transition: all var(--transition-fast);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-soft);
            border-color: var(--accent-blue);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(74, 223, 255, 0.1);
            font-size: 1.8rem;
            color: var(--accent-blue);
        }

         /* CTA Section */
        .cta-section {
            text-align: center;
            background: var(--primary-light);
            border-radius: var(--border-radius);
            padding: 80px 40px;
            margin: 80px auto;
            max-width: 900px;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(186, 176, 194, 0.212) 0%, transparent 70%);
            z-index: 0;
        }

        .cta-content {
            position: relative;
            z-index: 1;
        }

        .cta-title {
            font-size: 2.8rem;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .cta-text {
            font-size: 1.2rem;
            color: var(--text-secondary);
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }


        /* FAQ */
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--glass-light);
            border-radius: var(--border-radius);
            margin-bottom: 15px;
            border: 1px solid var(--glass-border);
            overflow: hidden;
        }

        .faq-question {
            padding: 20px 25px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            transition: all var(--transition-fast);
        }

        .faq-question:hover {
            background: rgba(255, 255, 255, 0.05);
        }

        .faq-answer {
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: all var(--transition-slow);
            color: var(--text-secondary);
        }

        
/* 
        .faq-item.active .faq-answer {
            padding: 0 25px 25px;
            max-height: 300px;
        } */

        .faq-item.active .faq-answer {
    padding: 12px 25px 27px; /* 🔥 AIRE REAL */
    max-height: 400px;
}

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

/* Título con degradado */
.gradient-title {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.25;
    text-align: center;

    background: linear-gradient(
        90deg,
        #ffffff,
        var(--accent-green)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

    margin-bottom: 32px;
}



        /* Problemas reales */

        .problems-header {
    margin-top: 120px;   /* 🔥 separación clara */
    text-align: center;
}

.problem-list {
    margin-bottom: 80px; /* 🔥 aire antes del siguiente bloque */
}


.real-problems {
    padding: 100px 20px 60px;
}

.problems-header {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.problems-icon {
    width: 95px;
    height: 95px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: rgba(255, 193, 7, 0.12); /* warning soft */
    display: flex;
    align-items: center;
    justify-content: center;
}

.problems-icon i {
    font-size: 2.5rem;
    color: #ffc107; /* warning */
}

.problems-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.problems-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Glass card */
.glass-claim {
    max-width: 620px;
    margin: 0 auto 64px;
    padding: 24px 32px;

    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.18);

    text-align: center;
}

/* Texto */
.glass-claim p {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.6;
    color: #b7ffe7;
}


/* Sección base */
.root-problem-section {
    padding: 120px 20px;
}

/* Header */
.root-problem-header {
    text-align: center;
    margin-bottom: 48px;
}

.root-problem-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-top: 12px;
}


.list-x p {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.55);
}

.list-x p::before {
  content: "×";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-48%);
  font-size: 1.5rem;
  color: rgba(248, 113, 113, 0.8); /* rojo controlado */
  font-weight: 700;
}


/* Card glass */
.glass-card {
    max-width: 720px;
    margin: 0 auto 48px;
    padding: 40px;

    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

/* Intro */
.root-problem-intro p {
    margin: 0 0 8px;
    font-size: 1.15rem;
    font-weight: 500;
    color: #ffffff;
}

/* Divider */
.root-problem-divider {
    width: 100%;
    height: 1px;
    margin: 28px 0;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255,255,255,0.25),
        transparent
    );
}

/* Core */
.root-problem-claim {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 16px;
}

/* Lista */
.root-problem-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.root-problem-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 1.05rem;
    color: var(--text-secondary);
}

.root-problem-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-size: 1.4rem;
    line-height: 1;
}

/* Footer */
.root-problem-footer {
    text-align: center;
    max-width: 620px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Mobile */
@media (max-width: 768px) {
    .root-problem-section {
        padding: 80px 16px;
    }

    .glass-card {
        padding: 28px 24px;
    }

    .root-problem-subtitle {
        font-size: 1.1rem;
    }

    .root-problem-intro p {
        font-size: 1.05rem;
    }

    .root-problem-claim {
        font-size: 1.1rem;
    }
}


/* Cierre destacado */
.root-problem-closing {
    max-width: 720px;
    margin: 60px auto 0;
    padding: 32px 36px;

    text-align: center;

    background: linear-gradient(
        180deg,
        rgba(255,255,255,0.06),
        rgba(255,255,255,0.02)
    );

    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.12);
}

/* Icono */
.closing-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 16px;

    border-radius: 50%;
    background: rgba(255,255,255,0.08);

    display: flex;
    align-items: center;
    justify-content: center;
}

.closing-icon i {
    font-size: 1.4rem;
    color: var(--accent-green);
}

/* Texto */
.root-problem-closing p {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Texto resaltado */
.root-problem-closing span {
    display: inline-block;
    margin-top: 6px;
    font-weight: 700;
    color: #ffffff;
}

/* Mobile */
@media (max-width: 768px) {
    .root-problem-closing {
        margin-top: 40px;
        padding: 24px 24px;
    }

    .root-problem-closing p {
        font-size: 1.1rem;
    }

    .closing-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 12px;
    }

    .closing-icon i {
        font-size: 1.2rem;
    }
}




.silent-error {
    /* margin: 120px auto; */
    max-width: 900px;
    padding: 0 20px;
}

.silent-error {
    margin: 60px auto 80px;
}




.silent-error-card {
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.06),
        rgba(255, 255, 255, 0.02)
    );
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-radius: 20px;
    padding: 60px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.25);
}

.silent-error-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 30px;
}

.silent-error-header i {
    font-size: 1.8rem;
    color: var(--accent-green);
    opacity: 0.9;
}

.gradient-title-2 {
  display: inline-block;

  background: linear-gradient(
    120deg,
    #60a5fa,
    #d0c8e7,
    #34d399
  );

  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.gradient-title-2 {
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  font-weight: 800;
  line-height: 1.25;
}



.gradient-title-3 {
  display: inline-block;

  font-weight: 800;            /* CLAVE */
  letter-spacing: -0.01em;     /* mejora percepción de peso */

  background: linear-gradient(
    120deg,
    #fab760,
    #d0c8e7,
    #34d399
  );

  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}


.gradient-title-4 {
  display: inline-block;

  font-weight: 800;            /* CLAVE */
  letter-spacing: -0.01em;     /* mejora percepción de peso */

  background: linear-gradient(
    120deg,
    #ddd7cfc4,
    #bbe4bde3,
    #34ced3
  );

  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}



.gradient-icon {
  font-size: 1.8rem;

  background: linear-gradient(
    120deg,
    #60a5fa,
    #a78bfa,
    #34d399
  );

  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;

  opacity: 0.95;
}

/* .silent-error-header h3 {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin: 0;
} */




.silent-error-intro {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.7;
}

.silent-error-highlight {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    padding-left: 25px;
    margin: 40px 0;
    border-left: 3px solid var(--accent-green);
}

.silent-error-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.silent-error-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 18px;
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.silent-error-list li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: 700;
}


.uncomfortable-truth {
    max-width: 900px;
    margin: 50px auto 70px;
    padding: 0 20px;
}

.truth-wrapper {
    padding: 50px 60px;
    border-left: 4px solid var(--accent-green);
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.04),
        rgba(255, 255, 255, 0)
    );
}

.truth-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}

.truth-header i {
    font-size: 1.4rem;
    color: var(--accent-green);
    opacity: 0.9;
}

.truth-header h3 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.truth-main {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.truth-main strong {
    color: var(--text-primary);
    font-weight: 600;
}

.truth-result span {
    display: block;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent-green);
    margin-bottom: 14px;
}

.truth-result ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.truth-result li {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 10px;
    padding-left: 22px;
    position: relative;
}

.truth-result li::before {
    content: "›";
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: 700;
}


.stuck-point {
    max-width: 900px;
    margin: 50px auto 80px;
    padding: 0 20px;
}

.stuck-wrapper {
    padding: 55px 60px;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.03),
        rgba(255, 255, 255, 0)
    );
    border-radius: 18px;
    position: relative;
}

.stuck-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(
        180deg,
        var(--accent-green),
        transparent
    );
}

.stuck-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 26px;
}

.stuck-header i {
    font-size: 1.4rem;
    color: var(--accent-green);
}

.stuck-header h3 {
    font-size: 1.9rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.stuck-intro {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.stuck-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
}

.stuck-list li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 14px;
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.stuck-list li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: 700;
}

.stuck-conclusion {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.stuck-conclusion i {
    font-size: 1.4rem;
    color: var(--accent-green);
    margin-top: 4px;
}

.stuck-conclusion p {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.7;
}

.stuck-conclusion span {
    font-weight: 700;
}






/* ================================
   TRUTH IMPACT BLOCK (PREMIUM)
================================ */

.truth-impact {
    max-width: 860px;
    margin: 60px auto 90px;
    padding: 0 20px;
}

.truth-impact-wrapper {
    position: relative;
    padding-left: 55px;
}

/* Línea vertical (dirección) */
.truth-impact-wrapper::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(
        180deg,
        var(--accent-green),
        rgba(255, 255, 255, 0)
    );
}

/* Header pequeño */
.truth-impact-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.truth-impact-header i {
    font-size: 1.2rem;
    color: var(--accent-green);
}

.truth-impact-header h3 {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: var(--text-secondary);
    margin: 0;
}


.list-x span {
  display: block;
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.6rem;
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
}

.list-x span::before {
  content: "×";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-48%);
  font-size: 1.7rem;
  font-weight: 600;
  color: rgba(248, 113, 113, 0.85); /* rojo controlado */
}


/* Título principal */
.truth-impact-title {
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    background: linear-gradient(
    120deg,
    #fab760,
    #d0c8e7,
    #34d399
  );

  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
    margin-bottom: 22px;
}

/* Frases contundentes */
.truth-impact-lines {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.truth-impact-lines span {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-primary);
}

/* Separador */
.truth-impact-divider {
    width: 60px;
    height: 3px;
    background: var(--accent-green);
    margin: 28px 0;
}

/* Texto explicativo */
.truth-impact-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 18px;
}

.truth-impact-text strong {
    color: var(--text-primary);
    font-weight: 700;
}

/* Cierre */
.truth-impact-close {
    margin-top: 35px;
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-primary);
}

.truth-impact-close span {
    font-weight: 800;
}

/* ================================
   RESPONSIVE (MOBILE)
================================ */

@media (max-width: 768px) {
    .truth-impact {
        margin: 45px auto 70px;
    }

    .truth-impact-wrapper {
        padding-left: 32px;
    }

    .truth-impact-title {
        font-size: 2rem;
    }

    .truth-impact-lines span {
        font-size: 1.1rem;
    }

    .truth-impact-text {
        font-size: 1.05rem;
    }

    .truth-impact-close {
        font-size: 1.1rem;
    }
}






/* ================================
   FRICTION ERROR – REFINED
================================ */

.friction-error {
    max-width: 860px;            /* antes 900 */
    margin: 60px auto 85px;      /* menos separación */
    padding: 0 20px;
}

.friction-card {
    background: linear-gradient(
        160deg,
        rgba(255, 255, 255, 0.05),
        rgba(255, 255, 255, 0.015)
    );
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 48px 52px;          /* antes más grande */
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.22);
}

/* Título */
.friction-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.7rem;           /* antes 1.9 */
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary-2);
    margin-bottom: 26px;
}

/* CONTENEDOR DEL TÍTULO */
.friction-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 700; /* más cuerpo, no delgado */
  line-height: 1.25;
  margin: 0;
}

/* DEGRADADO BASE (reutilizable) */
.gradient-friction {
  background: linear-gradient(
    120deg,
    #fbbf24, /* ámbar premium */
    #fb7185, /* coral */
    #60a5fa  /* azul */
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ICONO CON DEGRADADO */
.gradient-icon {
  font-size: 1.8rem;
  background: linear-gradient(
    120deg,
    #fbbf24,
    #fb7185,
    #60a5fa
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* TEXTO SECUNDARIO (SPAN) */
.friction-title span {
  font-weight: 600;
  opacity: 0.85;
}

/* MOBILE FINO */
@media (max-width: 480px) {
  .friction-title {
    font-size: 1.6rem;
    gap: 0.6rem;
  }

  .gradient-icon {
    font-size: 1.5rem;
  }
}


.friction-title i {
    color: var(--accent-green);
    font-size: 1.3rem;
}

.friction-title span {
    font-weight: 500;
    color: var(--text-secondary);
}

/* Intro */
.friction-intro {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 16px;

      margin-top: 1.6rem;
  margin-bottom: 1.1rem;
  font-size: 1rem;
  line-height: 1.6;
}

/* Creencias */
.friction-beliefs {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.friction-beliefs li {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.list-x {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-x li {
  position: relative;
  padding-left: 1.7rem;
  margin-bottom: 0.7rem;
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
}

/* X como viñeta */
.list-x li::before {
  content: "×";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-48%);
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(248, 113, 113, 0.85);
}


/* Separador */
.friction-divider {
    width: 55px;
    height: 3px;
    background: var(--accent-green);
    margin: 28px 0;
}

/* Consecuencias */
.friction-consequences {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.friction-consequences li {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.friction-consequences li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: 700;
}

/* Cierre */
.friction-close {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-primary);
}

.friction-close span {
    font-weight: 800;
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 768px) {
    .friction-card {
        padding: 36px 26px;
    }

    .friction-title {
        font-size: 1.6rem;
        margin-left: -7px;
         gap: 1.1rem; /* antes 0.75rem */
    }

    .friction-close {
        font-size: 1.05rem;
    }
}



/* ================================
   FRICTION CLOSE BOX (HIGHLIGHT)
================================ */

.friction-close-box {
    margin-top: 32px;
    padding: 26px 30px;
    border-radius: 14px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.08),
        rgba(255, 255, 255, 0.02)
    );
    border: 1px solid rgba(255, 255, 255, 0.14);
    position: relative;
    overflow: hidden;
}

/* Línea sutil izquierda (dirección) */
.friction-close-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(
        180deg,
        var(--accent-green),
        transparent
    );
}

/* Texto */
.friction-close {
    margin: 0;
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-primary);
}

.friction-close span {
    font-weight: 800;
}

/* Mobile */
@media (max-width: 768px) {
    .friction-close-box {
        padding: 22px 22px;
    }

    .friction-close {
        font-size: 1.05rem;
    }
}





/* ================================
   INSIGHT — VISUAL DEPTH
================================ */

.insight-section {
    padding: 90px 0;
    position: relative;
}

/* Halo de fondo */
.insight-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at center,
        rgba(46, 204, 113, 0.08),
        transparent 70%
    );
    pointer-events: none;
}

.insight-card {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 22px;
    background: linear-gradient(
        160deg,
        rgba(14, 40, 53, 0.14),
        rgba(255, 255, 255, 0.03)
    );
        /* background: linear-gradient(
        160deg,
        rgba(255, 255, 255, 0.14),
        rgba(255, 255, 255, 0.03)
    ); */
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(18px);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Línea de tensión */
.insight-line {
    position: absolute;
    left: 0;
    top: 22px;
    bottom: 22px;
    width: 4px;
    border-radius: 4px;
    background: linear-gradient(
        to bottom,
        transparent,
        /* var(--accent-green), */
        transparent
    );
}

/* Contenido */
.insight-content {
    padding: 48px 56px;
}

.insight-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent-green);
    margin-bottom: 14px;
}

/* Título */
.insight-title {
    font-size: 2.3rem;
    line-height: 1.25;
    margin-bottom: 22px;
}

.insight-title {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 700;
    line-height: 1.3;
    background: linear-gradient(90deg, #d9e9eb, #ecdfe7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.insight-title span {
    background: linear-gradient(45deg, #00e5ff, #ceaabe, #ffd500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.insight-title span {
    opacity: 0.9;
}

/* Texto */
.insight-text {
    font-size: 1.1rem;
    max-width: 620px;
    margin-bottom: 20px;
}

/* Puntos */
.insight-points {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
}

.insight-points li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.insight-points li::before {
    content: "›";
    position: absolute;
    left: 0;
    font-size: 1.4rem;
    color: var(--accent-green);
}

/* Cierre */
.insight-close {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 14px;
}

/* Quote */
.insight-quote {
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    font-style: italic;
    font-size: 0.95rem;
    opacity: 0.85;
}

/* Mobile */
@media (max-width: 768px) {
    .insight-section {
        padding: 60px 0;
    }

    .insight-card {
        border-radius: 18px;
    }

    .insight-content {
        padding: 32px 28px;
    }

    .insight-title {
        font-size: 1.8rem;
    }
}



/* ======================================
   AUDIENCE SECTION — ASPIRATIONAL (FINAL)
====================================== */

.audience-section {
    padding: 60px 0 55px;
}

/* Contenedor principal */
.audience-block {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding-left: 26px;
}

/* Línea vertical de decisión */
.audience-line {
    position: absolute;
    left: 0;
    top: 12px;
    bottom: 12px;
    width: 3px;
    border-radius: 3px;
    background: linear-gradient(
        to bottom,
        transparent,
        var(--accent-green),
        transparent
    );
}

/* ======================
   TITLE (CONTROLLED WIDTH)
====================== */

.audience-title {
    margin-top: 0;
    margin-bottom: 14px;
    max-width: 720px; /* CLAVE: evita título demasiado largo */
    font-size: 2.15rem;
    line-height: 1.18;
    font-weight: 800;

    background: linear-gradient(
        120deg,
        #f5f7fa 0%,
        #d7e2eb 35%,
        var(--accent-green) 70%,
        #7ef2c2 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.audience-title span {
    display: inline-block;
    /* margin-top: -65px; */
    font-weight: 700;
    /* opacity: 0.9; */
       background: linear-gradient(
        120deg,
        #f5f7fa 0%,
        #aed391 35%,
        var(--accent-green) 70%,
        #7ef2c2 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ======================
   INTRO
====================== */

.audience-intro {
    font-size: 1.05rem;
    margin-bottom: 14px;
    color: var(--text-secondary);
}

/* ======================
   LIST
====================== */

.audience-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}

.audience-list li {
    position: relative;
    font-size: 1.02rem;
    margin-bottom: 10px;
    padding-left: 20px;
}

.audience-list li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--accent-green);
}

/* ======================
   CLOSE
====================== */

.audience-close {
    font-size: 1.05rem;
    font-weight: 600;
}

.audience-close span {
    font-weight: 800;
}


/* ======================
   FINAL ASPIRATIONAL LINE
====================== */

.audience-final {
    margin-top: 20px;
    max-width: 720px;
    font-size: 1.05rem;
    line-height: 1.6;
    font-weight: 500;
    color: var(--text-secondary);
}

.audience-marker {
    display: inline-block;
    margin-right: 6px;
    color: var(--accent-green);
    font-weight: 700;
}

/* Mobile */
@media (max-width: 768px) {
    .audience-final {
        font-size: 1rem;
        line-height: 1.55;
    }
}




/* ======================================
   LEVEL UP BUSINESS — INTRO SECTION
====================================== */

.lub-intro-section {
    padding: 90px 0 80px;
    position: relative;
}

/* Fondo sutil para cambio de etapa */
.lub-intro-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at center,
        rgba(46, 204, 113, 0.08),
        transparent 70%
    );
    pointer-events: none;
}


/* Línea de tensión */
.insight-line-2 {
    position: absolute;
    left: 0;
    top: 22px;
    bottom: 22px;
    width: 4px;
    border-radius: 4px;
    background: linear-gradient(
        to bottom,
        transparent,
        var(--accent-green-2),
        transparent
    );
}


.insight-line-3 {
    position: absolute;
    left: 0;
    top: 22px;
    bottom: 22px;
    width: 2.3px;
    border-radius: 4px;
    background: linear-gradient(
        to bottom,
        transparent,
        var(--accent-green-2),
        transparent
    );
}

/* Bloque principal */
.lub-intro-block {
    max-width: 880px;
    margin: 0 auto;
    padding: 48px 56px;
    border-radius: 22px;
    background: linear-gradient(
        160deg,
        rgba(255, 255, 255, 0.14),
        rgba(255, 255, 255, 0.03)
    );
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(18px);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Eyebrow */
.lub-intro-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-green);
    margin-bottom: 14px;
}

/* Título */
/* .lub-intro-title {
    margin: 0 0 12px;
    font-size: 2.6rem;
    line-height: 1.1;
    font-weight: 900;

    background: linear-gradient(
        120deg,
        #fae6e6 0%,
        #daece3 40%,
        var(--accent-green) 85%,
        #4effb5 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
} */


/* TITULAR PRINCIPAL H2 */
.lub-intro-title {
    /* font-size: clamp(1.8rem, 5vw, 1.8rem); */
    font-weight: 800;
    text-transform: uppercase;
    background: linear-gradient(270deg, #00e5ff, #ff3cac, #ffd500);
    background-size: 600% 600%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientMove 8s ease infinite;
}

/* SUBTÍTULO / INSIGHT H3 */
.insight-title {
    /* font-size: clamp(1.8rem, 4vw, 2.4rem); */
    font-weight: 700;
    line-height: 1.3;
    color: #111; /* color base primera línea */
}

/* .insight-title span {
    background: linear-gradient(270deg, #00e5ffc9, #ff3caacb, #ffd500d2);
    background-size: 600% 600%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    animation: gradientMove 18s ease infinite;
} */

.lub-intro-title {
    font-size: clamp(2.7rem, 5vw, 2.7rem);
    font-weight: 800;
    text-transform: uppercase;
    background: linear-gradient(270deg, #00e5ff, #ff89ca, #f3e7aae1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
     display: inline-block;
     animation: gradientMove 18s ease infinite;
}


/* ANIMACIÓN DEGRADADO */
@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 80% 50%; }
    100% { background-position: 0% 50%; }
}







/* Subtítulo */
.lub-intro-subtitle {
    max-width: 620px;
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 28px;
    color: var(--text-secondary);
}

.lub-intro-subtitle span {
    font-weight: 700;
    color: var(--text-primary);
}

/* Separador */
.lub-intro-separator {
    width: 56px;
    height: 3px;
    border-radius: 3px;
    background: var(--accent-green);
    margin: 0 0 26px;
}

/* Claims */
.lub-intro-claims p {
    margin: 0 0 8px;
    font-size: 1.05rem;
    font-weight: 600;
}

.lub-intro-claims ul {
    list-style: none; /* eliminamos viñeta por defecto */
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem; /* separación entre ítems */
}

.lub-intro-claims li {
    position: relative;
    padding-left: 1.8rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: #f1eded;
}

/* Viñeta personalizada: X */
.lub-intro-claims li::before {
    content: "×"; /* símbolo de multiplicación como viñeta */
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.4rem;
    font-weight: 700;
    color: #70776f; /* color destacado */
    line-height: 1;
}


/* Definición */
.lub-intro-definition {
    margin-top: 22px;
    max-width: 680px;
    font-size: 1.1rem;
    line-height: 1.65;
    color: var(--text-secondary);
}

.lub-intro-definition strong {
    color: var(--text-primary);
    font-weight: 800;
}






/* =====================================
   LEVEL UP – UNIFIED ECOSYSTEM
===================================== */

.levelup-unified-section {
    width: 100%;
    padding: 96px 24px;
    display: flex;
    justify-content: center;

    /* background: radial-gradient(
        circle at top,
        rgba(120, 140, 255, 0.15),
        rgba(8, 10, 18, 0.96) 70%
    ); */
}

/* CARD CONTENIDA */

.levelup-unified-card {
    max-width: 880px;
    margin: 0 auto;
    padding: 48px 56px;
    border-radius: 22px;
    background: linear-gradient(
        160deg,
         rgba(255, 255, 255, 0.14),
        rgba(255, 255, 255, 0.03)
    );
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(18px);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);

    text-align: center;
}

/* HEADER */

.levelup-unified-badge {
    display: inline-block;
    margin-bottom: 18px;
    padding: 6px 14px;

    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    color: #e3e7ff;
    background: rgba(140, 155, 255, 0.18);
    border-radius: 999px;
}

.levelup-unified-title {
    font-size: clamp(2rem, 3.6vw, 2.5rem);
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 22px;

    background: linear-gradient(
        135deg,
        #ffffffe0 0%,
        #7aebc0 45%,
        #5eebc7ee 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.levelup-unified-title span {
    display: block;
    margin-top: 6px;
}

.levelup-unified-intro {
    max-width: 620px;
    margin: 0 auto 44px;

    font-size: 1.05rem;
    line-height: 1.65;
    /* color: rgba(230, 235, 255, 0.92); */
}

/* FEATURES LIST */

.levelup-unified-features {
    display: grid;
    gap: 22px;
    text-align: left;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;

    padding: 18px 20px;
    border-radius: 18px;

    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.feature i {
    font-size: 1.1rem;
    color: #9aa6ff;
    margin-top: 2px;
}

.feature p {
    font-size: 0.95rem;
    line-height: 1.55;
    color: rgba(220, 225, 255, 0.88);
}

.feature strong {
    color: #ffffff;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
    .levelup-unified-section {
        padding: 80px 20px;
    }

    .levelup-unified-card {
        padding: 48px 32px 52px;
        border-radius: 24px;
    }

    .levelup-unified-intro {
        margin-bottom: 36px;
        font-size: 0.98rem;
    }
}

@media (max-width: 480px) {
    .levelup-unified-section {
        padding: 68px 16px;
    }

    .levelup-unified-card {
        padding: 40px 22px 44px;
    }

    .levelup-unified-title {
        font-size: 1.75rem;
    }
}




.levelup-unified-title {
    max-width: 720px;
    margin: 0 auto 18px;
    text-align: center;
    line-height: 1.15;
    font-weight: 600;

    color: rgba(230, 235, 255, 0.9);
}

/* FRASE PRINCIPAL (más impacto) */
.levelup-unified-title .title-lead {
    display: block;
    font-size: clamp(2rem, 3.2vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 6px;

    background: linear-gradient(
        135deg,
        #ffffffe0 0%,
        #d6dcff 45%,
        #c1d5d6ee 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}






/* =====================================
   PROGRAM INCLUDES – LEVEL UP (FINAL)
===================================== */

.program-includes {
    width: 100%;
    padding: 96px 24px;
    display: flex;
    justify-content: center;

    background: radial-gradient(
        circle at top,
        rgba(11, 13, 24, 0.089),
        rgba(8, 10, 18, 0.96) 70%
    );
}

/* CONTENEDOR REAL (EVITA FULL WIDTH) */

.program-container {
    width: 100%;
    max-width: 1040px;
    margin: 0 auto;
}

/* =====================================
   HEADER
===================================== */

.program-header {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

/* BADGE */

.program-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 6px 14px;
    margin-bottom: 18px;

    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    color: #e3e7ff;
    background: rgba(140, 155, 255, 0.18);
    border-radius: 999px;
}

/* TITLE */

.program-title {
    max-width: 640px;
    margin: 0 auto 22px;

    font-size: clamp(1.9rem, 3.2vw, 2.4rem);
    line-height: 1.15;
    font-weight: 700;

    background: linear-gradient(
        135deg,
        #d2f4ff 0%,
        #b7dabc 45%,
        #34f0f7 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.program-title span {
    display: block;
    margin-top: 6px;
}

/* INTRO */

.program-intro {
    max-width: 600px;
    margin: 0 auto;

    font-size: 1.02rem;
    line-height: 1.65;
    color: rgba(230, 235, 255, 0.92);
}

/* SEPARADOR VISUAL */

.program-header::after {
    content: "";
    display: block;
    width: 122px;
    height: 3px;
    margin: 42px auto 0;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(154, 166, 255, 0.9),
        transparent
    );
    border-radius: 999px;
}

/* =====================================
   GRID (SEPARACIÓN REAL)
===================================== */

.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 26px;

    max-width: 960px;
    margin: 0 auto;

    padding-top: 72px; /* 🔑 SOLUCIÓN DEFINITIVA */
}

/* =====================================
   CARDS
===================================== */

.program-card {
    padding: 26px 24px 28px;
    border-radius: 22px;

    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.06),
        rgba(255, 255, 255, 0.02)
    );

    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);

    transition: transform 0.35s ease, box-shadow 0.35s ease;


        padding: 26px 24px 28px;
    border-radius: 22px;

    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.06),
        rgba(255, 255, 255, 0.02)
    );

    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);

    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.program-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.45);
}

/* ICON */

.program-card i {
    display: inline-block;
    margin-bottom: 14px;

    font-size: 1.25rem;
    color: rgba(184, 235, 248, 0.863);

    display: block;
    text-align: center;
    margin-bottom: 12px;
}

/* TITLE */

.program-card h3 {
    margin-bottom: 8px;

    font-size: 1.05rem;
    font-weight: 600;
    color: rgba(184, 248, 234, 0.856);
    
    text-align: center;
}

/* TEXT */

.program-card p {
    margin-bottom: 14px;

    font-size: 0.95rem;
    line-height: 1.55;
    color: rgba(220, 225, 255, 0.85);
}

/* LIST */

.program-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 14px;
}

.program-card ul li {
    position: relative;
    padding-left: 14px;

    font-size: 0.9rem;
    line-height: 1.45;
    color: rgba(220, 225, 255, 0.9);
}

.program-card ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #9aa6ff;
}

/* NOTE */

.program-note {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #b8c0ffb7;
}

/* =====================================
   CTA
===================================== */

.program-cta {
    margin-top: 72px;
    text-align: center;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 14px 28px;

    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;

    background: linear-gradient(135deg, #7f8cff, #5a67ff);
    border-radius: 999px;

    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(90, 103, 255, 0.45);
}

/* =====================================
   RESPONSIVE
===================================== */

@media (max-width: 768px) {
    .program-includes {
        padding: 82px 20px;
    }

    .program-title {
        font-size: 1.85rem;
    }

    .program-intro {
        font-size: 0.97rem;
    }

    .program-grid {
        padding-top: 56px;
    }
}

@media (max-width: 480px) {
    .program-includes {
        padding: 68px 16px;
    }

    .program-grid {
        padding-top: 48px;
    }

    .program-card {
        padding: 22px 20px 24px;
    }
}



















/* =================================================
   BLOQUE ENFOQUE — REFINADO
================================================= */

.enfoque {
  padding: 4.5rem 1.5rem;
  background-color: #0f1115;
  color: #e5e7eb;
}

.enfoque__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.2rem;
}

/* HEADER */
.enfoque__header {
  max-width: 520px;
  margin-bottom: 3.5rem;
}

.enfoque__header h2 {
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.enfoque__header p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
}

/* GRADIENT TEXT */
.text-gradient {
  background: linear-gradient(120deg, #7dd3fc, #a78bfa, #34d399);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* CONTENIDO */
.enfoque__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

/* DIVISOR CENTRAL */
.enfoque__divider {
  display: none;
}

/* GRUPOS */
.enfoque__group h3 {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.4rem;
  color: #00e5ff;

}

/* ICONOS */
.icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
}

.enfoque__group--yes .icon {
  color: #4ade80;
}

.enfoque__group--no .icon {
  color: #f87171;
}

/* LISTAS */
.enfoque__group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.enfoque__group li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.95rem;
  line-height: 1.55;
}

.enfoque__group--no li {
  color: rgba(255, 255, 255, 0.45);
}

.enfoque__group li:last-child {
  border-bottom: none;
}

/* CLAIM */
/* .enfoque__claim {
  margin-top: 4.5rem;
} */


.list-editorial {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-editorial li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.85rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.644);
}

.list-editorial li::before {
  content: "–";
  position: absolute;
  left: 0;
  top: 0.15em; /* AJUSTE CLAVE */
  color: rgba(255, 255, 255, 0.35);
  font-weight: 500;
  top: 50%;
transform: translateY(-48%);


}



.list-editorial--yes li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.85rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.75);
}

.list-editorial--yes li::before {
  content: "–";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-48%);
  color: #4ade80; /* verde criterio */
  font-weight: 500;
}




.enfoque__claim {
  margin-top: 2.5rem; /* antes 4.5rem */
}


.claim-box {
  display: flex;
  gap: 1rem;
  padding: 1.8rem 2.2rem;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.16),
    rgba(76, 29, 149, 0.14)
  );
  border: 1px solid rgba(139, 92, 246, 0.28);
  backdrop-filter: blur(8px);
}

.claim-box p{
    font-size: 1.2rem;

}


@media (min-width: 1024px) { /* aplica solo en pantallas grandes */
  .claim-box {
    transform: translateY(-125px); /* sube 30px solo en web */
  }
}




.claim-icon {
  width: 22px;
  height: 22px;
  margin-top: 0.3rem;
  color: rgba(255, 255, 255, 0.8);
}

.enfoque__claim p {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.45;
}

.enfoque__claim strong {
  display: block;
  font-weight: 600;
}

/* =========================
   DESKTOP (CLAVE)
========================= */

@media (min-width: 1024px) {
  .enfoque {
    padding: 6rem 1.5rem;
  }

  .enfoque__container {
    display: grid;
    grid-template-columns: 420px 1fr;
    column-gap: 4rem;
  }

  .enfoque__header {
    margin-bottom: 0;
  }

  .enfoque__content {
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: start;
  }

  .enfoque__divider {
    display: block;
    width: 1px;
    background: linear-gradient(
      180deg,
      rgba(255,255,255,0),
      rgba(255,255,255,0.25),
      rgba(255,255,255,0)
    );
  }

  .enfoque__claim {
    grid-column: 1 / -1;
    max-width: 720px;
    margin-top: 5rem;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 480px) {
  .enfoque {
    padding: 1rem 1.85rem;
  }

  .enfoque__header h2 {
    font-size: 1.8rem;
    font-weight: 750;
  }

  .enfoque__group li {
    font-size: 0.92rem;
  }

  .claim-box {
    padding: 1.4rem;
    border-radius: 14px;
  }

  .enfoque__claim p {
    font-size: 1.15rem;
  }
}



/* =================================================
   BLOQUE PERFIL
================================================= */

.perfil {
  padding: 5rem 1.5rem;
  background-color: #0f1115;
  color: #e5e7eb;
}

.perfil__container {
  max-width: 1100px;
  margin: 0 auto;
}

/* =================================================
   HEADER
================================================= */

.perfil__header {
  max-width: 640px;
  margin-bottom: 4rem;
}

.perfil__header h2 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 600;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 1rem;
}

.perfil__header p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
}

/* Texto degradado reutilizado */
.text-gradient {
  background: linear-gradient(120deg, #7dd3fc, #a78bfa, #34d399);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* =================================================
   GRID
================================================= */

.perfil__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.75rem;
}

/* =================================================
   LISTAS
================================================= */

.perfil__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.perfil__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.95rem;
  line-height: 1.55;
  color: #d1d5db;
}

.perfil__list li:last-child {
  border-bottom: none;
}

/* Iconos */
.perfil__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: #4ade80;
  margin-top: 0.15rem;
}


/* =================================================
   DECISION BLOCK – SECCIÓN AUTÓNOMA
================================================= */

.decision-block {
  padding: 7rem 1.5rem;
  background-color: #0b0d11;
}

/* Marco visual separado */
.decision-frame {
  max-width: 1150px;
  margin: 0 auto;
  padding: 4.5rem 4rem;
  border-radius: 28px;
  background:
    radial-gradient(
      120% 120% at 10% 0%,
      rgba(124, 58, 237, 0.08),
      transparent 60%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.03),
      rgba(255, 255, 255, 0.01)
    );
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* =================================================
   HEADER
================================================= */

.decision-header {
  max-width: 720px;
  margin-bottom: 4.5rem;
}

.decision-header {
  max-width: 720px;
  /* margin-bottom: 4.5rem; */
  display: flex;
  flex-direction: column;   /* Alinea los elementos en columna */
  align-items: center;      /* Centra todo horizontalmente */

}

.decision-badge {
  display: inline-flex;             /* Cambiado de inline-block */
  align-items: center;              /* Centra verticalmente icono + texto */
  justify-content: center;          /* Centra horizontalmente */
  gap: 0.5rem;                      /* Espacio entre icono y texto */
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.2rem;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.7);
}


.decision-header h2 {
  font-size: clamp(2.2rem, 3vw, 2.7rem);
  font-weight: 600;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 1rem;
}

.decision-header p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
}

/* Texto degradado */
.text-gradient {
  background: linear-gradient(120deg, #7dd3fc, #a78bfa, #34d399);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* =================================================
   GRID
================================================= */

.decision-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.75rem;
}

/* =================================================
   ITEM
================================================= */

.decision-item {
  position: relative;
  padding-left: 2.7rem;
}

.decision-icon {
  position: absolute;
  left: 0;
  top: 0.1rem;
  font-size: 1.35rem;
  color: #a78bfa;
  opacity: 0.9;
}

.decision-item h3 {
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 0.6rem;
  color: #ffffff;
}

.decision-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #d1d5db;
}

/* =================================================
   FOOTER
================================================= */

.decision-footer {
  margin-top: 5.5rem;
  max-width: 680px;
}

.decision-footer p {
  font-size: 1.35rem;
  line-height: 1.45;
  color: #ffffff;
}

.decision-footer strong {
  display: block;
  font-weight: 600;
  margin-bottom: 0.25rem;
}





/* =================================================
   DECISION FOOTER – RECTÁNGULO DE IMPACTO
================================================= */

.decision-footer {
  margin-top: 6rem;
  display: flex;
  justify-content: flex-start;
}

/* Caja degradada */
.decision-footer-box {
  max-width: 640px;
  padding: 2.4rem 2.6rem;
  border-radius: 20px;

  background:
    linear-gradient(
      135deg,
      rgba(124, 58, 237, 0.14),
      rgba(52, 211, 153, 0.08)
    );

  border: 1px solid rgba(255, 255, 255, 0.18);

  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Texto */
.decision-footer-box p {
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.35;
  color: #ffffff;
}

.decision-footer-box strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: 0.4rem;
  opacity: 0.95;
}

/* =================================================
   RESPONSIVE
================================================= */

@media (min-width: 1024px) {
  .decision-footer-box {
    padding: 2.6rem 3rem;
  }
}

@media (max-width: 480px) {
  .decision-footer {
    margin-top: 4.5rem;
  }

  .decision-footer-box {
    padding: 2rem 2rem;
    border-radius: 18px;
  }

  .decision-footer-box p {
    font-size: 1.15rem;
  }

  .decision-footer-box strong {
    font-size: 1rem;
  }
}




/* =================================================
   FRAMEWORK – BLOQUE ESTRATÉGICO PREMIUM (AJUSTADO)
================================================= */

.framework {
  padding: 6.5rem 1.5rem;
  background-color: #0c0f14;
  color: #e5e7eb;
}

.framework__wrap {
  max-width: 1180px;
  margin: 0 auto;
}

/* HEADER */
.framework__header {
  max-width: 620px;
  margin-bottom: 4.2rem;
  padding: 1.5rem;
}

.framework__header h2 {
  font-size: clamp(2.2rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: #ebfff4c7;
  margin-bottom: 1rem;
}

.framework__header p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
}

/* TEXTO DEGRADADO */
.text-gradient {
  background: linear-gradient(120deg, #60a5fa, #a78bfa, #34d399);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* GRID */
.framework__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.6rem; /* 🔥 REDUCIDO */
  padding-left: 1.6rem;
  border-left: 1px solid rgba(255,255,255,0.12);
}

/* ITEM */
.framework__item {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1.4rem;
  padding-top: 1.1rem; /* 🔥 REDUCIDO */
}

/* DIVISOR */
.framework__divider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(124, 58, 237, 0),
    rgba(124, 58, 237, 0.4),
    rgba(52, 211, 153, 0.35),
    rgba(124, 58, 237, 0)
  );
}

.framework__item:first-child .framework__divider {
  display: none;
}

/* ICONO */
.framework__icon {
  color: #8b5cf6;
}

.framework__icon svg {
  width: 30px;
  height: 30px;
}

/* TEXTO */
.framework__text h3 {
  font-size: 1.12rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
  color: #ffffff;
}

.framework__text p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: #d1d5db;
  max-width: 500px;
}

/* CIERRE */
.framework__closing {
  margin-top: 4.8rem;
  max-width: 720px;
}

.framework__closing p {
  font-size: 1.35rem;
  line-height: 1.4;
  color: #ffffff;
}

/* ==========================
   DESKTOP
========================== */
@media (min-width: 1024px) {
  .framework__grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 4.5rem; /* 🔥 MENOS AIRE */
    row-gap: 2.8rem;
  }
}

/* ==========================
   MOBILE
========================== */
@media (max-width: 480px) {
  .framework {
    padding: 4.8rem 1.25rem;
  }

  .framework__header {
    margin-bottom: 3.4rem;
  }

  .framework__grid {
    padding-left: 1.2rem;
    gap: 2.2rem;
  }

  .framework__item {
    padding-top: 0.9rem;
    gap: 1.2rem;
  }

  .framework__closing {
    margin-top: 3.8rem;
  }

  .framework__closing p {
    font-size: 1.15rem;
  }
}


/* ==========================
   CIERRE ESTRATÉGICO
========================== */

.framework__closing {
  margin-top: 5rem;
  max-width: 760px;
}

/* CONTENEDOR */
.closing__card {
  position: relative;
  padding: 2.6rem 2.8rem;
  border-radius: 16px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.015)
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* LINEA SUPERIOR */
.closing__line {
  position: absolute;
  top: 0;
  left: 2.5rem;
  right: 2.5rem;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(124, 58, 237, 0),
    rgba(124, 58, 237, 0.6),
    rgba(52, 211, 153, 0.45),
    rgba(124, 58, 237, 0)
  );
}

/* TEXTO */
.closing__text {
  font-size: 1.45rem;
  line-height: 1.4;
  font-weight: 500;
  color: #ffffff;
  max-width: 620px;
}


/* ======================================
   BLOQUE OUTCOMES — MANIFIESTO
====================================== */

.outcomes {
  padding: 7.5rem 1.5rem;
  background: #0a0d12;
  color: #e5e7eb;
}

.outcomes__wrap {
  max-width: 1200px;
  margin: 0 auto;
}

/* HEADER */
.outcomes__header {
  max-width: 680px;
  margin-bottom: 5rem;
}

.outcomes__header h2 {
  font-size: clamp(2.4rem, 3vw, 2.9rem);
  font-weight: 600;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 1.2rem;
}

.outcomes__header p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
}

/* TEXTO DEGRADADO */
.text-gradient {
  background: linear-gradient(120deg, #60a5fa, #a78bfa, #34d399);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* CONTENIDO */
.outcomes__content {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: start;
  column-gap: 2.5rem;
}

/* COLUMNA */
.outcomes__column {
  max-width: 160px;
}

.outcomes__icon {
  display: inline-block;
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
  color: #8b5cf6;
}

.outcomes__column h3 {
  font-size: 1rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 0.4rem;
}

.outcomes__column p {
  font-size: 0.9rem;
  line-height: 1.55;
  color: #d1d5db;
}

/* LINEA */
.outcomes__line {
  width: 1px;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(124,58,237,0),
    rgba(124,58,237,0.45),
    rgba(52,211,153,0.35),
    rgba(124,58,237,0)
  );
}

/* CIERRE */
.outcomes__closing {
  margin-top: 6rem;
  max-width: 720px;
}

.outcomes__closing p {
  font-size: 1.4rem;
  line-height: 1.4;
  color: #ffffff;
}

/* ==========================
   DESKTOP MEDIO
========================== */
@media (max-width: 1200px) {
  .outcomes__content {
    grid-template-columns: repeat(4, 1fr);
    row-gap: 3rem;
  }

  .outcomes__line {
    display: none;
  }
}

/* ==========================
   MOBILE
========================== */
@media (max-width: 480px) {
  .outcomes {
    padding: 5.2rem 1.25rem;
  }

  .outcomes__header {
    margin-bottom: 3.5rem;
  }

  .outcomes__content {
    grid-template-columns: 1fr;
    row-gap: 2.2rem;
  }

  .outcomes__column {
    max-width: none;
  }

  .outcomes__closing {
    margin-top: 4rem;
  }

  .outcomes__closing p {
    font-size: 1.15rem;
  }
}


       /* BUILDS SECTION - ¿Qué construyes? */
        .builds-section {
            background-color: var(--primary-dark);
            border-top: 1px solid var(--glass-border);
            border-bottom: 1px solid var(--glass-border);
        }

        .builds-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .builds-list {
            display: grid;
            gap: 20px;
        }

        .build-item {
            background: var(--glass-light);
            border: 1px solid var(--glass-border);
            border-radius: var(--border-radius);
            padding: 25px;
            transition: all var(--transition-fast);
            display: flex;
            align-items: flex-start;
            gap: 20px;
        }

        .build-item:hover {
            transform: translateY(-5px);
            border-color: var(--accent-blue);
        }

        .build-icon {
            width: 50px;
            height: 50px;
            background: var(--accent-gradient);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: var(--primary-dark);
            flex-shrink: 0;
        }

        .build-content h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: var(--text-primary);
        }

        .build-content p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.5;
        }

        /* QUOTE BLOCK */
        .quote-block {
            max-width: 800px;
            margin: 40px auto;
            padding: 30px;
            background: var(--glass-light);
            border: 1px solid var(--glass-border);
            border-radius: var(--border-radius);
            border-left: 4px solid var(--accent-blue-2);
            text-align: center;
        }

        .quote-text {
            font-size: 1rem;
            font-weight: 500;
            color: var(--text-primary);
            margin-bottom: 15px;
            line-height: 1.4;
            text-align: left;
        }

          .quote-text strong{

            color: #4fe0a9;
            font-size: 1.1rem;
            font-weight: 500;

          }



        .quote-subtext {
            color: var(--accent-blue);
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .quote-text p {
    font-family: 'Inter', sans-serif; /* fuente base para párrafos normales */
    font-size: clamp(1.4rem, 3vw, 1.6rem);
    line-height: 1.5;
    color: #faf2f2;
    margin-bottom: 0.8rem;
}

/* Estilo especial para la cita destacada */
.quote-text .highlight {
    font-family: 'Playfair Display', serif; /* fuente elegante y diferente */
    font-weight: 700;
    font-style: italic;
    font-size: clamp(1.2rem, 3.5vw, 1.2rem);
    color: #9ec9abea; /* color destacado */
    line-height: 1.4;
    /* margin-left: -2rem; */
}
.section-tag {
  display: inline-flex;          
  align-items: center;           
  justify-content: center;       
  gap: 0.6rem;                   /* Espacio ligeramente mayor */
  padding: 0.55rem 1.2rem;      
  font-size: 0.85rem;            
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: 999px;           /* Píldora */
  background: linear-gradient(135deg, rgba(198, 223, 186, 0.116), rgba(0,200,255,0.15));
  color: #ffffff;                 
  margin-bottom: 2rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);  /* Sutil profundidad */
  transition: all 0.3s ease;     /* Para hover */
}

/* Hover opcional para más dinamismo */
.section-tag:hover {
  background: linear-gradient(135deg, rgba(143,252,93,0.35), rgba(0,200,255,0.25));
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}




       /* HOW IT WORKS SECTION */
        .how-works-section {
            position: relative;
        }

        .process-timeline {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
        }

        .process-timeline::before {
            content: '';
            position: absolute;
            left: 30px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: var(--accent-gradient);
            opacity: 0.3;
        }

        .process-step {
            display: flex;
            gap: 30px;
            margin-bottom: 50px;
            position: relative;
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: var(--accent-gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--primary-dark);
            flex-shrink: 0;
            position: relative;
            z-index: 2;
        }

        .step-content {
            flex: 1;
            padding-top: 10px;
        }

        .step-content h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--text-primary);
        }

        .step-content p {
            color: var(--text-secondary);
            font-size: 1rem;
            line-height: 1.6;
        }

        /* TOOLS SECTION */
        .tools-section {
            background-color: var(--primary-dark);
            border-top: 1px solid var(--glass-border);
            border-bottom: 1px solid var(--glass-border);
        }

        .tools-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .tool-card {
            background: var(--glass-light);
            border: 1px solid var(--glass-border);
            border-radius: var(--border-radius);
            padding: 30px;
            transition: all var(--transition-fast);
            height: 100%;
        }

        .tool-card:hover {
            transform: translateY(-8px);
            border-color: var(--accent-blue);
            box-shadow: var(--shadow-soft);
        }

        .tool-icon {
            font-size: 2rem;
            margin-bottom: 20px;
            background: var(--accent-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .tool-card h3 {
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: var(--text-primary);
        }

        .tool-card p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.5;
        }

 

       /* Header Section */
        .program-header {
            text-align: center;
            margin-bottom: 60px;
            padding: 40px 20px;
            background: var(--glass-light);
            border-radius: var(--border-radius);
            border: 1px solid var(--glass-border);
            position: relative;
            overflow: hidden;
        }

        .program-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--accent-gradient-2);
        }

        .header-tag {
            display: inline-block;
            background: var(--accent-gradient);
            color: var(--primary-dark);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .program-title {
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(2.2rem, 4vw, 3.2rem);
            font-weight: 800;
            margin-bottom: 15px;
            /* background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-blue) 100%); */
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.1;
        }

        .program-subtitle {
            font-size: 1.2rem;
            color: var(--text-secondary);
            max-width: 700px;
            margin: 0 auto;
        }

        /* Ecosystem Section */
        .ecosystem-section {
            text-align: center;
            margin-bottom: 60px;
        }

        .ecosystem-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
        }

        .ecosystem-title i {
            color: var(--accent-green);
            font-size: 2rem;
        }

        .ecosystem-description {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--accent-blue);
            margin-bottom: 40px;
        }

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-bottom: 60px;
        }

        .service-card {
            background: var(--glass-light);
            border: 1px solid var(--glass-border);
            border-radius: var(--border-radius);
            padding: 30px;
            transition: all var(--transition);
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(74, 223, 255, 0.1), transparent);
            transition: left 0.7s ease;
        }

        .service-card:hover::before {
            left: 100%;
        }

        .service-card:hover {
            transform: translateY(-5px);
            border-color: var(--accent-blue);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .service-icon {
            width: 60px;
            height: 60px;
            background: var(--accent-gradient);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 1.5rem;
            color: var(--primary-dark);
        }

        .service-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--text-primary);
        }

        .service-description {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.5;
        }

        /* Value Proposition */
        .value-section {
            background: var(--glass-light);
            border: 1px solid var(--glass-border);
            border-radius: var(--border-radius);
            padding: 40px;
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            overflow: hidden;
        }

        .value-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--accent-gradient);
        }

        .value-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--accent-blue);
        }

        .value-text {
            font-size: 1.1rem;
            color: var(--text-secondary);
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* CTA Section */
        .cta-section {
            text-align: center;
            padding: 40px;
            background: var(--glass-light);
            border-radius: var(--border-radius);
            border: 1px solid var(--glass-border);
        }

        .cta-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--text-primary);
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: var(--accent-gradient);
            color: var(--primary-dark);
            padding: 16px 40px;
            border-radius: var(--border-radius);
            font-weight: 700;
            font-size: 1.1rem;
            text-decoration: none;
            transition: all var(--transition);
            border: none;
            cursor: pointer;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(74, 223, 255, 0.3);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .services-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .service-card {
                padding: 25px;
            }
            
            .program-title {
                font-size: 2rem;
            }
            
            .ecosystem-description {
                font-size: 1.1rem;
            }
            
            .value-section {
                padding: 30px 20px;
            }
            
            .cta-section {
                padding: 30px 20px;
            }
        }

        @media (max-width: 480px) {
            .program-title {
                font-size: 1.8rem;
            }
            
            .ecosystem-title {
                font-size: 1.5rem;
            }
            
            .service-title {
                font-size: 1.2rem;
            }
            
            .cta-button {
                width: 85%;
                justify-content: center;
                padding: 20px 10px;
            }
        }
        



/* =====================================
   PROGRAM HEADER SECTION
   ===================================== */

.program-header-section {
    position: relative;
    width: 100%;
    padding: 90px 24px 80px;
    background: radial-gradient(
        circle at top,
        #242e776b,
        rgba(10, 12, 18, 0.151) 15%
    );
    overflow: hidden;
    z-index: -22;
}



/* CONTENEDOR PRINCIPAL */
.program-header {
    max-width: 980px;
    margin: 0 auto;
    padding: 28px 16px;
    text-align: center;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.04),
        rgba(255, 255, 255, 0.01)
    );
    border-radius: 22px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

/* TAG SUPERIOR */
.header-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    margin-bottom: 22px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #e4e7ff;
    background: rgba(120, 130, 255, 0.18);
    border-radius: 999px;
}

/* ICONO TAG */
.header-tag i {
    font-size: 0.7rem;
    opacity: 0.85;
}

/* TÍTULO PRINCIPAL */
.program-title {
    font-size: clamp(1.9rem, 4vw, 2.6rem);
    font-weight: 700;
    line-height: 1.15;
    /* color: #ffffff; */
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}

/* SUBTÍTULO */
.program-subtitle {
    max-width: 720px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(220, 225, 255, 0.82);
    font-weight: 400;
}

/* =====================================
   RESPONSIVE
   ===================================== */

@media (max-width: 1024px) {
    .program-header-section {
        padding: 80px 22px 70px;
    }
}

@media (max-width: 768px) {
    .program-header-section {
        padding: 70px 20px 65px;
    }

    .program-header {
        padding: 22px 14px;
        border-radius: 18px;
    }

    .program-title {
        font-size: 2.1rem;
    }

    .program-subtitle {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .program-header-section {
        padding: 60px 16px 55px;
    }

    .program-header {
        padding: 18px 12px;
        border-radius: 16px;
    }

    .header-tag {
        font-size: 0.7rem;
        padding: 5px 12px;
    }

    .program-title {
        font-size: 1.8rem;
    }

    .program-subtitle {
        font-size: 0.92rem;
    }
}













/* ===============================
   ECOSYSTEM HEADER
   =============================== */

.ecosystem-section {
    padding: 90px 24px 60px;
    background: radial-gradient(
        circle at top,
        rgba(100, 120, 255, 0.12),
        rgba(10, 12, 18, 0.95) 60%
    );
}

.ecosystem-header {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.ecosystem-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    margin-bottom: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #dfe4ff;
    background: rgba(120, 140, 255, 0.18);
    border-radius: 999px;
}

.ecosystem-title {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    line-height: 1.15;
    color: #fff;
    margin-bottom: 14px;
}

.ecosystem-description {
    font-size: 1rem;
    color: rgba(220, 225, 255, 0.8);
}


/* =====================================
   NOT FOR EVERYONE – SIN CONTAINER
   ===================================== */

.not-for-everyone-section {
    width: 100%;
    padding: 90px 24px;
    background: linear-gradient(
        180deg,
        rgba(8, 10, 16, 0.96),
        rgba(12, 14, 22, 1)
    );
    display: flex;
    justify-content: center;
}

.not-for-everyone-card {
    width: 100%;
    max-width: 920px;
    padding: 35px 27px;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.04),
        rgba(255, 255, 255, 0.01)
    );
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
}

/* TITLE */
.not-for-everyone-title {
    font-size: clamp(1.9rem, 4vw, 2.4rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}

/* INTRO */
.not-for-everyone-intro {
    max-width: 780px;
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(230, 235, 255, 0.9);
    margin-bottom: 16px;
}

/* SUBTEXT */
.not-for-everyone-sub {
    font-size: 1.2rem;
    font-weight: 700;
    color: rgba(183, 202, 164, 0.979);
    margin-bottom: 22px;
}

/* LIST */
.not-for-everyone-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 14px;
}

.not-for-everyone-list li {
    position: relative;
    padding-left: 28px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(220, 225, 255, 0.82);
}

.not-for-everyone-list li::before {
    content: "x";
    position: absolute;
    left: 0;
    top: 0;
    color: #8f9bff;
    font-weight: 700;
}

.not-for-everyone-title {
    font-size: clamp(1.9rem, 4vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 18px;

    background: linear-gradient(
        135deg,
        #ffabab 0%,
        #cff8f3 45%,
        #8bb2b4 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}




/* =====================================
   WORK WITH YOU – PREMIUM ECOSYSTEM
===================================== */

.work-with-you-section {
    width: 100%;
    padding: 100px 24px;
    background: radial-gradient(
        circle at top,
        rgba(120, 140, 255, 0.18),
        rgba(8, 10, 18, 0.96) 60%
    );
    display: flex;
    justify-content: center;
}

.work-with-you-inner {
    width: 100%;
    max-width: 1100px;
    text-align: center;
}

/* ================= HEADER ================= */

.work-header {
    max-width: 780px;
    margin: 0 auto 56px;
}

.work-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 6px 16px;
    margin-bottom: 20px;

    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;

    color: #e3e7ff;
    background: rgba(140, 155, 255, 0.18);
    border-radius: 999px;
}

.work-badge i {
    font-size: 0.85rem;
    opacity: 0.9;
}

.work-title {
    font-size: clamp(2.1rem, 4.1vw, 2.85rem);
    line-height: 1.14;
    font-weight: 650;
    margin-bottom: 16px;

    background: linear-gradient(
        135deg,
        #78ffd2 0%,
        #d6dcff 45%,
        #dfe1f0 100%
    );

        /* background: linear-gradient(
        135deg,
        #ffffff 0%,
        #d6dcff 45%,
        #9aa6ff 100%
    ); */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.work-title {
    max-width: 820px;
    margin: 0 auto 16px;

    padding: 0 12px;   /* controla ancho en móvil */

    text-align: center;
}


.work-intro {
    font-size: 1.02rem;
    line-height: 1.65;
    color: rgba(225, 230, 255, 0.88);
}

.work-intro {
    margin-bottom: 42px;   /* separación visual con el grid */
}


/* ================= GRID ================= */

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 26px;
    margin-top: 12px;
}

/* ================= ITEMS ================= */

.work-item {
    position: relative;
    padding: 26px 24px 30px;
    border-radius: 20px;

    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.06),
        rgba(255, 255, 255, 0.02)
    );

    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    text-align: center;

    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.work-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.45);
}

/* ICON */

.work-item i {
    font-size: 1.35rem;
    color: #9aa6ff;
    margin-bottom: 14px;
    display: block;
}

/* TITLE */

.work-item h3 {
    font-size: 1.03rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

/* TEXT */

.work-item p {
    font-size: 0.94rem;
    line-height: 1.55;
    color: rgba(220, 225, 255, 0.82);
}

/* ================= FOOTER ================= */

.work-footer {
    margin-top: 56px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.work-footer p {
    font-size: 0.98rem;
    color: rgba(235, 238, 255, 0.92);
}



/* =====================================
   ECOSYSTEM CTA – PREMIUM CONTAINED
===================================== */

.ecosystem-cta-section {
    width: 100%;
    padding: 96px 24px;
    display: flex;
    justify-content: center;

    background: radial-gradient(
        circle at top,
        rgba(120, 140, 255, 0.14),
        rgba(8, 10, 18, 0.96) 70%
    );
}

/* CONTENCIÓN REAL */

.ecosystem-cta-wrapper {
    width: 100%;
    max-width: 1100px;
}

/* CARD */

.ecosystem-cta-card {
    max-width: 652px;
    margin: 0 auto;

    padding: 48px 52px 52px;
    border-radius: 24px;

    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.07),
        rgba(255, 255, 255, 0.02)
    );

    border: 1px solid rgba(255, 255, 255, 0.1);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    text-align: center;
}

/* TITLE */

.ecosystem-cta-title {
    max-width: 640px;
    margin: 0 auto 22px;

    font-size: 2rem;
    line-height: 1.15;
    font-weight: 600;

    background: linear-gradient(
        135deg,
        #ffffff 0%,
        #d8ddff 45%,
        #9aa6ff 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* INTRO */

.ecosystem-cta-intro {
    max-width: 600px;
    margin: 0 auto 22px;

    font-size: 1rem;
    line-height: 1.65;
    color: rgba(230, 235, 255, 0.92);
}

/* AUDIENCE – RECTÁNGULO ELEGANTE */

.ecosystem-cta-audience {
    max-width: 560px;
    margin: 0 auto 34px;
    padding: 14px 18px;

    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(235, 238, 255, 0.92);

    background: linear-gradient(
        135deg,
        rgba(154, 166, 255, 0.18),
        rgba(255, 255, 255, 0.04)
    );

    border: 1px solid rgba(154, 166, 255, 0.25);
    border-radius: 14px;
}

/* CTA */

.ecosystem-cta-action {
    display: flex;
    justify-content: center;
}

.ecosystem-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 12px 30px;
    border-radius: 999px;

    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-decoration: none;

    color: #0b1020;
    background: linear-gradient(
        135deg,
        #9aa6ff,
        #c8d0ff
    );

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ecosystem-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(154, 166, 255, 0.35);
}



/* =====================================
   BENEFITS – LEVEL UP
===================================== */

.benefits-section {
    width: 100%;
    padding: 96px 24px;
    display: flex;
    justify-content: center;
     margin-top: -5rem;
}

.benefits-inner {
    max-width: 980px;
    width: 100%;
   
}

/* HEADER */

.benefits-header {
    text-align: center;
    margin-bottom: 72px;
}

.benefits-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    margin-bottom: 18px;

    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    color: #e3e7ff;
    background: rgba(120, 135, 255, 0.18);
    border-radius: 999px;
}

.benefits-title {
    font-size: clamp(2rem, 3.4vw, 2.6rem);
    line-height: 0.9;
    font-weight: 800;
    margin-bottom: 22px;

    background: linear-gradient(135deg, #aceeaad8, #cfd6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.benefits-title span {
    display: block;
    margin-top: 6px;
}

.benefits-intro {
    max-width: 620px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(230, 235, 255, 0.9);
}

/* GRID */

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
    margin-bottom: 64px;
}

/* ITEM */

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;

    padding: 18px 20px;
    border-radius: 18px;

    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.benefit-item i {
    font-size: 1.1rem;
    color: #9aa6ff;
    margin-top: 2px;
}

.benefit-item p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(220, 225, 255, 0.88);
}

.benefit-item strong {
    color: #ffffff;
}

/* CTA */

.benefits-cta {
    max-width: 640px;
    margin: 0 auto;
    padding: 22px 26px;
    text-align: center;

    font-size: 1rem;
    line-height: 1.6;
    font-weight: 600;

    color: #ffffff;
    background: linear-gradient(
        135deg,
        rgba(120, 135, 255, 0.25),
        rgba(90, 103, 255, 0.18)
    );
    border-radius: 20px;
}




/* =====================================
   DIFFERENCE – HIGH IMPACT
===================================== */

.difference-section {
    width: 100%;
    padding: 110px 24px;
    display: flex;
    justify-content: center;

    background: radial-gradient(
        circle at top,
        rgba(120, 140, 255, 0.12),
        rgba(8, 10, 18, 0.96) 70%
    );
}

.difference-inner {
    max-width: 980px;
    width: 100%;
}

/* HEADER */

.difference-header {
    text-align: center;
    margin-bottom: 80px;
}

.difference-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 6px 14px;
    margin-bottom: 20px;

    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    color: #e4e7ff;
    background: rgba(140, 155, 255, 0.2);
    border-radius: 999px;
}

.difference-title {
    font-size: clamp(2.1rem, 3.8vw, 2.8rem);
    line-height: 1.12;
    font-weight: 700;
    margin-bottom: 24px;

    background: linear-gradient(
        135deg,
        #ffffff,
        #d6dcff,
        #9aa6ff
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.difference-title span {
    display: block;
    margin-top: 6px;
}

.difference-intro {
    max-width: 640px;
    margin: 0 auto;

    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(230, 235, 255, 0.9);
}

/* COMPARE */

.difference-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 72px;
}

/* CARDS */

.difference-card {
    padding: 36px 34px;
    border-radius: 26px;

    backdrop-filter: blur(16px);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.difference-no h3 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .4rem; /* separación entre icono y texto */
    text-align: center;
    width: 100%;
}

.difference-yes h3 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .4rem; /* separación entre icono y texto */
    text-align: center;
    width: 100%;
}

.footer-logo {
    width: 180px;      /* tamaño en pantallas grandes */
    height: auto;
}

/* Ajuste para tablets y móviles */
@media (max-width: 768px) {
    .footer-logo {
        width: 140px;
    }
}

@media (max-width: 480px) {
    .footer-logo {
        width: 210px;  /* tamaño más pequeño en móviles */
    }
}







.difference-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.45);
}

.difference-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 22px;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* NO SOMOS */

.difference-no {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.04),
        rgba(255, 255, 255, 0.015)
    );
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.difference-no h3 {
    color: rgba(255, 170, 170, 0.95);
}

.difference-no ul li {
    opacity: 0.75;
}

/* SI SOMOS */

.difference-yes {
    background: linear-gradient(
        160deg,
        rgba(120, 135, 255, 0.22),
        rgba(120, 135, 255, 0.08)
    );
    border: 1px solid rgba(120, 135, 255, 0.35);
}

.difference-yes h3 {
    color: #ffffff;
}

/* LIST */

.difference-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.difference-card ul li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 16px;

    font-size: 0.96rem;
    line-height: 1.55;
    color: rgba(230, 235, 255, 0.92);
}

.difference-card ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #9aa6ff;
    font-size: 1.1rem;
}

/* CLOSURE */

.difference-closure {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;

    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(235, 238, 255, 0.95);
}

/* RESPONSIVE */

@media (max-width: 768px) {
    .difference-section {
        padding: 88px 20px;
    }

    .difference-compare {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .difference-section {
        padding: 72px 16px;
    }

    .difference-title {
        font-size: 1.8rem;
    }

    .difference-card {
        padding: 30px 24px;
    }
}



/* =====================================
   DIFFERENCE CLOSURE – PREMIUM INFO
===================================== */

.difference-closure {
    max-width: 620px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    gap: 14px;

    padding: 20px 26px;
    border-radius: 18px;

    background: linear-gradient(
        135deg,
        rgba(113, 117, 143, 0.22),
        rgba(120, 135, 255, 0.08)
    );

    border: 1px solid rgba(45, 46, 56, 0.356);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* ICON */

.difference-closure i {
    font-size: 1.2rem;
    color: #cfd6ff;
    flex-shrink: 0;
}

/* TEXT */

.difference-closure p {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.55;
    color: rgba(235, 238, 255, 0.95);
}

.difference-closure strong {
    color: #ffffff;
    font-weight: 600;
}


/* =====================================
   TRUST SECTION – LEVEL UP BUSINESS
===================================== */

.trust-section {
    width: 100%;
    padding: 96px 24px;
    display: flex;
    justify-content: center;

    background: radial-gradient(
        circle at top,
        rgba(120, 140, 255, 0.14),
        rgba(8, 10, 18, 0.96) 70%
    );
}

.trust-inner {
    width: 100%;
    max-width: 1080px;
}

/* HEADER */

.trust-header {
    max-width: 760px;
    margin: 0 auto 72px;
    text-align: center;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 6px 14px;
    margin-bottom: 18px;

    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    color: #e3e7ff;
    background: rgba(140, 155, 255, 0.2);
    border-radius: 999px;
}

.trust-title {
    font-size: clamp(2rem, 3.4vw, 2.6rem);
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 20px;

    background: linear-gradient(
        135deg,
        #ffffff 0%,
        #d6dcff 45%,
        #9aa6ff 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.trust-title span {
    display: block;
    margin-top: 6px;
}

.trust-intro {
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(230, 235, 255, 0.92);
}

/* GRID */

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    margin-bottom: 64px;
}

/* ITEM */

.trust-item {
    padding: 26px 24px 28px;
    border-radius: 22px;

    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.06),
        rgba(255, 255, 255, 0.02)
    );

    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.45);
}

.trust-item i {
    font-size: 1.3rem;
    color: #9aa6ff;
    margin-bottom: 14px;
}

.trust-item h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.trust-item p {
    font-size: 0.95rem;
    line-height: 1.55;
    color: rgba(220, 225, 255, 0.88);
}

/* CLOSURE */

.trust-closure {
    max-width: 680px;
    margin: 0 auto;
    padding: 22px 26px;

    display: flex;
    align-items: center;
    gap: 14px;

    border-radius: 18px;

    background: linear-gradient(
        135deg,
        rgba(120, 135, 255, 0.22),
        rgba(120, 135, 255, 0.08)
    );

    border: 1px solid rgba(120, 135, 255, 0.35);
    backdrop-filter: blur(14px);
}

.trust-closure i {
    font-size: 1.2rem;
    color: #cfd6ff;
}

.trust-closure p {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.55;
    color: rgba(235, 238, 255, 0.95);
}

.trust-closure strong {
    color: #ffffff;
    font-weight: 600;
}

/* RESPONSIVE */

@media (max-width: 768px) {
    .trust-section {
        padding: 80px 20px;
    }

    .trust-header {
        margin-bottom: 56px;
    }
}

@media (max-width: 480px) {
    .trust-section {
        padding: 68px 16px;
    }

    .trust-title {
        font-size: 1.8rem;
    }

    .trust-closure {
        padding: 20px;
    }
}


/* RESPONSIVE */

@media (max-width: 480px) {
    .difference-closure {
        padding: 18px 20px;
        gap: 12px;
    }

    .difference-closure p {
        font-size: 0.94rem;
    }
}

/* RESPONSIVE */

@media (max-width: 768px) {
    .benefits-section {
        padding: 80px 20px;
    }

    .benefits-header {
        margin-bottom: 56px;
    }

    .benefits-cta {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .benefits-section {
        padding: 64px 16px;
    }

    .benefits-title {
        font-size: 1.75rem;
        font-weight: 800;
    }
}


/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
    .ecosystem-cta-section {
        padding: 80px 20px;
    }

    .ecosystem-cta-card {
        padding: 40px 30px 44px;
        border-radius: 22px;
    }

    .ecosystem-cta-title {
        font-size: 1.8rem;
        font-weight: 550;
    }

    .ecosystem-cta-intro {
        font-size: 0.98rem;
    }

    .ecosystem-cta-audience {
        font-size: 0.94rem;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .ecosystem-cta-section {
        padding: 68px 16px;
    }

    .ecosystem-cta-card {
        padding: 34px 22px 38px;
        border-radius: 20px;
    }

    .ecosystem-cta-title {
        font-size: 1.7rem;
    }
}





        
/* ==========================
   DESKTOP
========================== */
@media (min-width: 1024px) {
  .framework__closing {
    margin-top: 5.5rem;
  }

  .closing__text {
    font-size: 1.55rem;
  }
}

/* ==========================
   MOBILE
========================== */
@media (max-width: 480px) {
  .framework__closing {
    margin-top: 3.8rem;
  }

  .closing__card {
    padding: 2rem 1.8rem;
  }

  .closing__line {
    left: 1.6rem;
    right: 1.6rem;
  }

  .closing__text {
    font-size: 1.15rem;
    line-height: 1.45;
  }
}






/* =================================================
   RESPONSIVE
================================================= */

@media (min-width: 768px) {
  .decision-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3.5rem 4rem;
  }
}

@media (min-width: 1024px) {
  .decision-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .decision-frame {
    padding: 3rem 1.7rem;
  }

  .decision-header {
    margin-bottom: 3.5rem;
  }

  .decision-footer p {
    font-size: 1.15rem;
  }
}


/* =================================================
   DESKTOP
================================================= */

@media (min-width: 768px) {
  .perfil__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

@media (min-width: 1024px) {
  .perfil {
    padding: 6rem 1.5rem;
  }
}

/* =================================================
   MOBILE FINO
================================================= */

@media (max-width: 480px) {
  .perfil {
    padding: 3.75rem 1.25rem;
  }

  .perfil__header {
    margin-bottom: 3rem;
  }

  .perfil__header h2 {
    font-size: 1.85rem;
  }

  .perfil__list li {
    font-size: 0.92rem;
  }
}

/* ======================
   MOBILE
====================== */

@media (max-width: 768px) {
    .lub-intro-section {
        padding: 65px 0;
    }

    .lub-intro-block {
        padding: 34px 28px;
        border-radius: 18px;
    }

    .lub-intro-title {
        font-size: 2rem;
    }

    .lub-intro-subtitle,
    .lub-intro-definition {
        font-size: 1rem;
    }
}


/* ======================
   MOBILE
====================== */

@media (max-width: 768px) {
    .audience-section {
        padding: 50px 0;
    }

    .audience-block {
        padding-left: 22px;
    }

    .audience-title {
        max-width: 100%;
        font-size: 1.7rem;
        line-height: 1.2;
        margin-bottom: 12px;
    }

    .audience-intro,
    .audience-close {
        font-size: 1rem;
    }

    .audience-list li {
        font-size: 0.98rem;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .stuck-wrapper {
        padding: 38px 28px;
    }

    .stuck-header h3 {
        font-size: 1.7rem;
        font-weight: 850;
    }

    .stuck-conclusion {
        flex-direction: row;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .truth-wrapper {
        padding: 36px 28px;
    }

    .truth-header h3 {
        font-size: 1.5rem;
        font-weight: 900;
    }

    .truth-main {
        font-size: 1.1rem;
    }
}


/* Responsive */
@media (max-width: 768px) {
    .silent-error-card {
        padding: 40px 28px;
    }

    .silent-error-header h3 {
        font-size: 1.6rem;
    }

    .silent-error-highlight {
        font-size: 1.15rem;
    }
}


/* Mobile */
@media (max-width: 768px) {
    .glass-claim {
        padding: 20px 22px;
        margin-bottom: 48px;
    }

    .glass-claim p {
        font-size: 1.1rem;
    }
}



/* Mobile */
@media (max-width: 768px) {
    .real-problems {
        padding: 70px 16px 40px;
    }

    .problems-icon {
        width: 75px;
        height: 75px;
        margin-bottom: 18px;
    }

    .problems-icon i {
        font-size: 2rem;
    }

    .problems-header h2 {
        font-size: 1.8rem;
    }

    .problems-header p {
        font-size: 1rem;
    }
}

      /* CTA Section */
        .cta-section {
            text-align: center;
            background: var(--primary-light);
            border-radius: var(--border-radius);
            padding: 80px 40px;
            margin: 80px auto;
            max-width: 900px;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(74, 223, 255, 0.05) 0%, transparent 70%);
            z-index: 0;
        }

        .cta-content {
            position: relative;
            z-index: 1;
        }

        .cta-title {
            font-size: 2.8rem;
            margin-bottom: 20px;
        }

        .cta-text {
            font-size: 1.2rem;
            color: var(--text-secondary);
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Footer */
        .footer {
            background: var(--primary-light);
            padding: 80px 0 30px;
            border-top: 1px solid var(--glass-border);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-logo {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 2rem;
            background: var(--accent-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 20px;
            display: inline-block;
        }

        .footer-about p {
            color: var(--text-secondary);
            margin-bottom: 20px;
        }

        .footer-links h4, .footer-contact h4 {
            font-size: 1.2rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-links h4::after, .footer-contact h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--accent-gradient);
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: color var(--transition-fast);
        }

        .footer-links a:hover {
            color: var(--accent-blue);
        }

        .footer-contact p {
            color: var(--text-secondary);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }

        .footer-contact i {
            margin-right: 10px;
            color: var(--accent-blue);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: var(--glass-light);
            border-radius: 50%;
            color: var(--text-primary);
            text-decoration: none;
            transition: all var(--transition-fast);
        }

        .social-links a:hover {
            background: var(--accent-blue);
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid var(--glass-border);
            color: var(--text-secondary);
            font-size: 0.9rem;
        }
  /* Animations */
        /* .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        } */


/* Ajustes móviles */
@media (max-width: 768px) {
    .testimonial {
        padding: 36px 24px;
        margin: 60px 16px;
    }

    .testimonial::before {
        font-size: 4rem;
        top: -22px;
    }

    .testimonial p {
        font-size: 1.05rem;
    }
}


               /* Responsive */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .cta-title {
                font-size: 2.2rem;
            }
        }


        /* RESPONSIVE MOBILE PREMIUM */
        @media (max-width: 768px) {
            
            .stats {
                flex-direction: column;
            }
            .navbar {
                height: 70px;
                padding: 0 20px;
            }
            
            .navbar-container {
                padding: 0 20px;
            }
            
            .hamburger {
                display: flex;
            }
            
            .nav-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background-color: var(--glass-dark);
                backdrop-filter: blur(30px) saturate(180%);
                -webkit-backdrop-filter: blur(30px) saturate(180%);
                flex-direction: column;
                align-items: flex-start;
                justify-content: flex-start;
                padding: 60px 40px;
                transition: left var(--transition-slow);
                z-index: 999;
                overflow-y: auto;
                -webkit-overflow-scrolling: touch;
                overscroll-behavior: contain;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-menu li {
                margin-bottom: 30px;
                width: 100%;
            }
            
            .nav-link {
                font-size: 1.3rem;
                padding: 15px 0;
                width: 100%;
            }
            
            .nav-cta {
                display: none;
            }
            
            /* Hero Mobile */
            .hero-section {
                min-height: 100vh;
                padding: 0 20px;
            }
            
            .hero-container {
                padding: 0 20px;
            }
            
            .hero-content {
                padding: 60px 0 100px;
            }

            .hero-content-2 {
                /* padding: 60px 0 5px; */
                 margin-bottom: 30px;
            }
            
            .hero-badge {
                font-size: 0.8rem;
                padding: 8px 20px;
                margin-bottom: 30px;
            }

             .hero-badge-2 {
                font-size: 0.8rem;
                padding: 8px 20px;
                margin-bottom: 30px;
            }
            
            .hero-title {
                font-size: 2rem;
                line-height: 1.1;
                margin-bottom: 25px;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
                margin-bottom: 40px;
                line-height: 1.5;
            }
            
            .hero-cta {
                flex-direction: column;
                gap: 15px;
                align-items: center;
            }
            
            .cta-primary, .cta-secondary {
                width: 100%;
                max-width: 300px;
                padding: 18px 30px;
            }
            
            .floating-element {
                width: 200px;
                height: 200px;
            }
            
            .floating-element:nth-child(1) {
                width: 250px;
                height: 250px;
                top: 10%;
                left: 5%;
            }
            
            .floating-element:nth-child(2) {
                width: 200px;
                height: 200px;
                top: 70%;
                right: 5%;
            }
            
            /* Métricas Mobile */
            .metrics-section {
                padding: 80px 0;
            }
            
            .metrics-grid {
                grid-template-columns: 1fr;
                gap: 20px;
                max-width: 400px;
                margin: 0 auto;
            }
            
            .metric-card {
                padding: 35px 25px;
            }
            
            .metric-value {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .metrics-title {
                font-size: 1.6rem;
            }
            
            .metric-value {
                font-size: 2.2rem;
            }
        }


        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .section {
                padding: 70px 0;
            }
            
            .feature-card, .problem-item, .testimonial {
                padding: 25px 20px;
            }
        }
        /* Scrollbar personalizada */
        ::-webkit-scrollbar {
            width: 10px;
        }
        
        ::-webkit-scrollbar-track {
            background: var(--primary-dark);
        }
        
        ::-webkit-scrollbar-thumb {
            background: var(--accent-gradient);
            border-radius: 5px;
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: var(--accent-gradient-hover);
        }