 
 
         :root {
            --primary-color: #0C0C14;
            --secondary-color: #161622;
            --accent-color: #D4AF37;
            --accent-light: #E8D5A1;
            --gold-gradient: linear-gradient(135deg, #D4AF37, #FFD700, #F5E6B3, #FFD700, #D4AF37);
            --light-color: #F5F5F7;
            --gray-color: #8A8A9E;
            --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            --shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
            --card-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
            --section-padding: 120px 20px;
            --border-radius: 20px;
            --sparkle-gradient: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);




        

              --accent: #a2ff5e; /* verde neón mejorado */
  --accent2: #4acfff; /* azul eléctrico mejorado */
  --accent3: #c396ff; /* violeta mejorado */

    --grad-card: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.09),
    rgba(255, 255, 255, 0.04)
  );
    --rad-lg: 24px;
            --accent-gradient: linear-gradient(135deg, #D4AF37 0%, #B8860B 25%, #FFD700 50%, #B8860B 75%, #D4AF37 100%);
            /* --gold-gradient: linear-gradient(135deg, #D4AF37, #FFD700, #F5E6B3, #FFD700, #D4AF37); */
            --gold-gradient: linear-gradient(
  135deg,
  #BFA44A,
  #E6C97A,
  #FFF2C1,
  #E6C97A,
  #BFA44A
);

            --light-color: #F5F5F7;
            --gray-color: #8A8A9E;
            --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            --shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            --card-shadow: 0 10px 40px rgba(212, 175, 55, 0.15);
            --section-padding: 120px 20px;
            --border-radius: 16px;


              --accent: #a2ff5e;
  --gradient: linear-gradient(
    180deg,
    rgba(162, 255, 94, 1) 0%,
    rgba(74, 207, 255, 1) 100%
  );
  --shadow-l: 0 8px 20px rgba(0, 0, 0, 0.25);

  /* Ajustes finos */
  --timeline-left: 22px; /* posición de la línea vertical */
  --icon-lg: 46px; /* tamaño de los íconos */
  --icon-offset: 14px; /* centra ícono sobre la barra */
  --icon-bg: #0f172a; /* base sólida bajo el ícono */
  --card-bg: rgba(255, 255, 255, 0.06);
   --gap: 28px;


        }
 
 

        /* Hero Section */
        .beneficios-hero {
            min-height: 70vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, 
                rgba(12, 12, 20, 0.98) 0%, 
                rgba(22, 22, 34, 0.95) 100%);
            position: relative;
            overflow: hidden;
        }

        .beneficios-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
            z-index: 0;
        }

        .beneficios-hero-content {
            position: relative;
            z-index: 1;
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
        }

        .beneficios-hero h1 {
            font-size: 3.5rem;
            margin-bottom: 24px;
            line-height: 1.1;
        }

        .beneficios-hero-subtitle {
            font-size: 1.6rem;
            color: var(--accent-light);
            font-family: 'Cormorant Garamond', serif;
            font-style: italic;
            margin-bottom: 50px;
            font-weight: 500;
            opacity: 0.9;
        }

        /* Beneficios Grid - ICONOS CORREGIDOS */
        .beneficios-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin: 80px 0;
        }

        .beneficio-category {
            background: linear-gradient(145deg, 
                rgba(22, 22, 34, 0.9) 0%, 
                rgba(28, 28, 40, 0.7) 100%);
            backdrop-filter: blur(15px);
            border-radius: var(--border-radius);
            padding: 50px 40px;
            border: 1px solid rgba(212, 175, 55, 0.2);
            transition: var(--transition);
            box-shadow: var(--card-shadow);
            position: relative;
            overflow: hidden;
        }

        .beneficio-category::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gold-gradient);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .beneficio-category:hover::before {
            transform: scaleX(1);
        }

        .beneficio-category:hover {
            transform: translateY(-12px);
            border-color: rgba(212, 175, 55, 0.4);
            box-shadow: 0 30px 60px rgba(212, 175, 55, 0.25);
        }

        .category-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 30px;
        }

        .category-icon {
            width: 50px;
            height: 50px;
            min-width: 50px;
            min-height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, 
                rgba(212, 175, 55, 0.15) 0%, 
                rgba(212, 175, 55, 0.08) 100%);
            border-radius: 50%;
            border: 2px solid rgba(212, 175, 55, 0.3);
            color: var(--accent-color);
            transition: var(--transition);
            position: relative;
            overflow: visible;
        }

        .category-icon i {
            font-size: 27px;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 2;
        }

        .beneficio-category:hover .category-icon {
            background: linear-gradient(135deg, 
                rgba(212, 175, 55, 0.25) 0%, 
                rgba(212, 175, 55, 0.15) 100%);
            transform: scale(1.15) rotate(5deg);
            border-color: rgba(212, 175, 55, 0.5);
            color: #FFD700;
        }

        .beneficio-category:hover .category-icon i {
            /* transform: scale(1.1); */
        }

        .category-title {
            font-size: 1.5rem;
            color: var(--accent-light);
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            flex: 1;
            min-width: 0;
        }

        .beneficio-list {
            list-style: none;
        }

        .beneficio-item {
            padding: 22px 0;
            border-bottom: 1px solid rgba(212, 175, 55, 0.15);
            position: relative;
            padding-left: 40px;
            transition: var(--transition);
        }

        .beneficio-item:hover {
            background: rgba(212, 175, 55, 0.03);
            border-radius: 8px;
            padding-left: 45px;
        }

        .beneficio-item:last-child {
            border-bottom: none;
        }

        .beneficio-item::before {
            content: '✓';
            position: absolute;
            left: 0;
            top: 22px;
            color: var(--accent-color);
            font-weight: bold;
            font-size: 1.4rem;
            background: rgba(212, 175, 55, 0.1);
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .beneficio-item:hover::before {
            background: rgba(212, 175, 55, 0.2);
            transform: scale(1.1);
        }

        .beneficio-item strong {
            color: var(--light-color);
            font-weight: 700;
            display: block;
            margin-bottom: 10px;
            font-size: 1.15rem;
            letter-spacing: 0.3px;
        }

        .beneficio-item p {
            color: rgba(245, 245, 247, 0.85);
            font-size: 1rem;
            line-height: 1.7;
            opacity: 0.9;
        }

        /* Nivel Black High - CON ICONO PROFESIONAL (Opción 1: Diamante Premium) */
        .black-high-section {
            background: linear-gradient(135deg, 
                rgba(0, 0, 0, 0.623) 0%, 
                rgba(20, 20, 30, 0.98) 100%);
            border: 2px solid rgba(212, 175, 55, 0.4);
            border-radius: var(--border-radius);
            padding: 70px;
            margin: 100px 0;
            position: relative;
            overflow: hidden;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
        }

        .black-high-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1518709268805-4e9042af2176?ixlib=rb-4.0.3&auto=format&fit=crop&w=1470&q=80') center/cover no-repeat;
            opacity: 0.08;
            z-index: 0;
        }

        .black-high-section::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, 
                rgba(212, 175, 55, 0.05) 0%, 
                transparent 50%,
                rgba(0, 0, 0, 0.644) 100%);
            z-index: 0;
        }

        .black-high-content {
            position: relative;
            z-index: 1;
        }

        .black-high-header {
            text-align: center;
            margin-bottom: 60px;
        }

        /* ICONO DIAMANTE PREMIUM */
        .elite-badge {
            width: 120px;
            height: 120px;
            margin: 0 auto 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, 
                rgba(212, 175, 55, 0.2) 0%, 
                rgba(212, 175, 55, 0.1) 100%);
            border-radius: 50%;
            border: 3px solid rgba(212, 175, 55, 0.3);
            position: relative;
            /* animation: rotate-gem 8s linear infinite; */
        }

        .elite-badge::before {
            content: '';
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            border-radius: 50%;
            background: linear-gradient(45deg, 
                transparent 30%, 
                rgba(212, 175, 55, 0.1) 50%, 
                transparent 70%);
            z-index: -1;
            animation: pulse 3s ease-in-out infinite;
        }

        .elite-badge i {
            font-size: 48px;
            color: var(--accent-color);
            background: linear-gradient(135deg, #D4AF37, #FFD700, #F5E6B3);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
        }

        @keyframes rotate-gem {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.5; transform: scale(1); }
            50% { opacity: 0.8; transform: scale(1.05); }
        }

        .black-high-title {
            font-size: 3.2rem;
            color: var(--accent-light);
            margin-bottom: 25px;
            font-family: 'Playfair Display', serif;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        }

        .black-high-subtitle {
            font-size: 1.4rem;
            color: rgba(245, 245, 247, 0.95);
            max-width: 700px;
            margin: 0 auto;
            font-weight: 300;
            letter-spacing: 0.5px;
        }

        .black-high-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 35px;
            margin-bottom: 50px;
        }

        .black-high-feature {
            padding: 35px;
            background: rgba(0, 0, 0, 0.5);
            border-radius: var(--border-radius);
            border: 1px solid rgba(212, 175, 55, 0.25);
            transition: var(--transition);
            backdrop-filter: blur(10px);
        }

        .black-high-feature:hover {
            border-color: rgba(212, 175, 55, 0.5);
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
            background: rgba(0, 0, 0, 0.6);
        }

        .black-high-feature i {
            font-size: 2.2rem;
            color: var(--accent-color);
            margin-bottom: 20px;
            display: block;
            transition: var(--transition);
            width: 2.2rem;
            height: 2.2rem;
            text-align: center;
            line-height: 2.2rem;
        }

        .black-high-feature:hover i {
            transform: scale(1.2);
            color: #FFD700;
        }

        .black-high-feature h4 {
            color: var(--accent-light);
            font-size: 1.5rem;
            margin-bottom: 15px;
            font-family: 'Playfair Display', serif;
            font-weight: 600;
        }

        .black-high-feature p {
            color: rgba(245, 245, 247, 0.9);
            line-height: 1.7;
            font-size: 1.05rem;
        }

        /* Comparativa Niveles */
        .niveles-comparacion {
            margin: 100px 0;
        }

        .section-title {
            text-align: center;
            font-size: 3rem;
            margin-bottom: 60px;
            color: var(--accent-light);
            font-family: 'Playfair Display', serif;
        }

        .comparacion-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 35px;
        }

        .nivel-card {
            padding: 45px 35px;
            border-radius: var(--border-radius);
            position: relative;
            overflow: hidden;
            transition: var(--transition);
            backdrop-filter: blur(10px);
        }

        .nivel-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.1;
            z-index: 0;
        }

        .nivel-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
        }

        .nivel-card.basico {
            background: linear-gradient(135deg, 
                rgba(76, 175, 80, 0.15) 0%, 
                rgba(76, 175, 80, 0.08) 100%);
            border: 1px solid rgba(76, 175, 80, 0.4);
        }

        .nivel-card.estandar {
            background: linear-gradient(135deg, 
                rgba(33, 150, 243, 0.15) 0%, 
                rgba(33, 150, 243, 0.08) 100%);
            border: 1px solid rgba(33, 150, 243, 0.4);
        }

        .nivel-card.avanzado {
            background: linear-gradient(135deg, 
                rgba(156, 39, 176, 0.15) 0%, 
                rgba(156, 39, 176, 0.08) 100%);
            border: 1px solid rgba(156, 39, 176, 0.4);
        }

        .nivel-card.black-high {
            background: linear-gradient(135deg, 
                rgba(0, 0, 0, 0.9) 0%, 
                rgba(20, 20, 30, 0.95) 100%);
            border: 2px solid var(--accent-color);
        }

        .nivel-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            padding: 10px 25px;
            border-radius: 50px;
            font-size: 0.95rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .nivel-badge.basico {
            background: rgba(76, 175, 80, 0.25);
            color: #4CAF50;
            border: 1px solid #4CAF50;
        }

        .nivel-badge.estandar {
            background: rgba(33, 150, 243, 0.25);
            color: #2196F3;
            border: 1px solid #2196F3;
        }

        .nivel-badge.avanzado {
            background: rgba(156, 39, 176, 0.25);
            color: #9C27B0;
            border: 1px solid #9C27B0;
        }

        .nivel-badge.black-high {
            background: var(--gold-gradient);
            color: var(--primary-color);
            font-weight: 800;
            box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
        }

        .nivel-card h3 {
            font-size: 2rem;
            margin-bottom: 25px;
            color: var(--light-color);
            font-family: 'Playfair Display', serif;
            position: relative;
            z-index: 1;
        }

        .nivel-card ul {
            list-style: none;
            margin-bottom: 40px;
            position: relative;
            z-index: 1;
        }

        .nivel-card li {
            padding: 12px 0;
            color: rgba(245, 245, 247, 0.9);
            position: relative;
            padding-left: 30px;
            font-size: 1.05rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .nivel-card li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--accent-color);
            font-weight: bold;
            font-size: 1.2rem;
        }

        /* CTA Section */
        .beneficios-cta {
            text-align: center;
            padding: 90px 20px;
            background: linear-gradient(135deg, 
                rgba(212, 175, 55, 0.15) 0%, 
                rgba(12, 12, 20, 1) 100%);
            border-radius: var(--border-radius);
            margin: 100px 0;
            border: 1px solid rgba(212, 175, 55, 0.2);
            position: relative;
            overflow: hidden;
        }

        .beneficios-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?ixlib=rb-4.0.3&auto=format&fit=crop&w=1470&q=80') center/cover no-repeat;
            opacity: 0.05;
            z-index: 0;
        }

        .beneficios-cta-content {
            position: relative;
            z-index: 1;
        }

        .beneficios-cta h2 {
            font-size: 3.2rem;
            margin-bottom: 30px;
            color: var(--accent-light);
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        }

        .beneficios-cta p {
            font-size: 1.3rem;
            color: rgba(245, 245, 247, 0.95);
            max-width: 700px;
            margin: 0 auto 50px;
            line-height: 1.7;
            font-weight: 300;
        }

        .cta-buttons {
            display: flex;
            gap: 25px;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 50px;
        }

        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                        transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Floating animation for icons - CORREGIDO */
        @keyframes float {
            0%, 100% { 
                transform: translateY(0) rotate(0deg); 
            }
            50% { 
                transform: translateY(-10px) rotate(5deg); 
            }
        }

        .floating-icon {
            animation: float 4s ease-in-out infinite;
        }

        /* Estilos específicos para iconos de botones */
        .btn i {
            font-size: 1.2rem;
            width: 1.2rem;
            height: 1.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Responsive - CORRECCIONES PARA ICONOS */
        @media (max-width: 1200px) {
            .beneficios-hero h1 {
                font-size: 4rem;
            }
            
            .black-high-title {
                font-size: 2.8rem;
            }
            
            .category-icon {
                width: 45px;
                height: 45px;
                min-width: 75px;
                min-height: 75px;
            }
            
            .category-icon i {
                font-size: 28px;
                width: 28px;
                height: 30px;
            }
            
            .elite-badge {
                width: 110px;
                height: 110px;
            }
            
            .elite-badge i {
                font-size: 44px;
            }
        }

        @media (max-width: 992px) {
            .beneficios-hero h1 {
                font-size: 3.5rem;
            }
            
            .beneficios-grid {
                grid-template-columns: 1fr;
            }
            
            .black-high-section {
                padding: 50px;
            }
            
            .black-high-title {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2.6rem;
            }
            
            .category-icon {
                width: 70px;
                height: 70px;
                min-width: 70px;
                min-height: 70px;
            }
            
            .category-icon i {
                font-size: 28px;
                width: 28px;
                height: 28px;
            }
            
            .elite-badge {
                width: 100px;
                height: 100px;
            }
            
            .elite-badge i {
                font-size: 40px;
            }
        }

        @media (max-width: 768px) {
            .beneficios-hero h1 {
                font-size: 2.8rem;
            }
            
            .beneficios-hero-subtitle {
                font-size: 1.4rem;
            }
            
            .beneficio-category {
                padding: 40px 15px;
            }
            
            .category-header {
                flex-direction: column;
                text-align: center;
                gap: 20px;
            }
            
            .category-icon {
                width: 80px;
                height: 80px;
                min-width: 80px;
                min-height: 80px;
                margin: 0 auto;
            }
            
            .category-icon i {
                font-size: 32px;
                width: 32px;
                height: 32px;
            }
            
            .category-title {
                width: 100%;
                text-align: center;
            }
            
            .black-high-section {
                padding: 40px 25px;
            }
            
            .black-high-title {
                font-size: 2.2rem;
            }
            
            .black-high-features {
                grid-template-columns: 1fr;
            }
            
            .comparacion-grid {
                grid-template-columns: 1fr;
            }
            
            .beneficios-cta h2 {
                font-size: 2.5rem;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .btn {
                width: 100%;
                max-width: 300px;
            }
            
            .elite-badge {
                width: 90px;
                height: 90px;
            }
            
            .elite-badge i {
                font-size: 36px;
            }
        }

        @media (max-width: 576px) {
            .beneficios-hero h1 {
                font-size: 2.4rem;
            }
            
            .category-title {
                font-size: 1.7rem;
            }
            
            .category-icon {
                width: 70px;
                height: 70px;
                min-width: 70px;
                min-height: 70px;
            }
            
            .category-icon i {
                font-size: 28px;
                width: 28px;
                height: 28px;
            }
            
            .black-high-title {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .beneficios-cta h2 {
                font-size: 2.2rem;
            }
            
            .beneficios-cta p {
                font-size: 1.1rem;
            }
            
            .black-high-feature i {
                font-size: 2rem;
                width: 2rem;
                height: 2rem;
                line-height: 2rem;
            }
            
            .elite-badge {
                width: 80px;
                height: 80px;
            }
            
            .elite-badge i {
                font-size: 32px;
            }
        }

        @media (max-width: 400px) {
            .category-icon {
                width: 65px;
                height: 65px;
                min-width: 65px;
                min-height: 65px;
            }
            
            .category-icon i {
                font-size: 26px;
                width: 26px;
                height: 26px;
            }
            
            .beneficio-item {
                padding-left: 35px;
            }
            
            .elite-badge {
                width: 70px;
                height: 70px;
            }
            
            .elite-badge i {
                font-size: 28px;
            }
        }


        .destacado {
            /* background: linear-gradient(135deg, 
                rgba(212, 175, 55, 0.1) 0%, 
                rgba(212, 175, 55, 0.05) 100%); */
            border-radius: var(--border-radius);
            padding: 40px;
            text-align: center;
            border: 1px solid rgba(212, 175, 55, 0.2);
            position: relative;
            overflow: hidden;
        }

 /* Sección Áreas de Desafío Mejorada */
        .areas-desafio {
            background: linear-gradient(135deg, 
                var(--primary-color) 0%, 
                var(--secondary-color) 100%);
            position: relative;
            overflow: hidden;
        }
/* 
        .areas-desafio::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
            z-index: 0;
        } */

        .section-title-2 {
            text-align: center;
            margin-bottom: 40px;
            position: relative;
            z-index: 1;
        }

        .section-title-2 h2 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: var(--accent-light);
        }

        .section-title-2 p {
            font-size: 1.3rem;
            color: rgba(245, 245, 247, 0.9);
            max-width: 600px;
            margin: 0 auto;
            font-family: 'Cormorant Garamond', serif;
            font-style: italic;
        }

        .title-decoration {
            width: 100px;
            height: 3px;
            background: var(--gold-gradient);
            margin: 30px auto;
            border-radius: 3px;
            animation: gradient-shift 4s ease infinite;
        }

        

/* === Contenedor principal === */
.timeline {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  padding-left: 10px;
  z-index: 0;
}

/* Línea base (siempre debajo) */
.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: var(--timeline-left);
  width: 3px;
  height: 100%;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  z-index: 0;
}

/* Barra de progreso (debajo) */
.timeline-progress {
  position: absolute;
  top: 0;
  left: var(--timeline-left);
  width: 3px;
  height: 0;
  background: var(--gradient);
  border-radius: 4px;
  transition: height 0.65s cubic-bezier(0.25, 0.9, 0.3, 1);
  z-index: 0;
}

/* === Ítems === */
.timeline-item {
  position: relative;
  padding: 30px 0; /* Espacio vertical igual arriba y abajo */
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(28px) scale(0.98);
  transition: all 0.65s cubic-bezier(0.25, 0.9, 0.3, 1);
  z-index: 1;
  display: flex;
  align-items: center; /* Centra verticalmente el contenido */
  min-height: 100px; /* Altura mínima consistente */
}

.timeline-item.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* === Íconos (centrados verticalmente con el contenido) === */
.timeline-icon {
  font-size: 1.2rem;
  width: var(--icon-lg);
  height: var(--icon-lg);
  display: grid;
  place-items: center;
  color: var(--accent);
  border-radius: 50%;
  background: radial-gradient(
      120% 120% at 30% 20%,
      rgba(162, 255, 94, 0.24),
      rgba(74, 207, 255, 0.16)
    ),
    var(--icon-bg);
  border: 1px solid rgba(162, 255, 94, 0.35);
  box-shadow: inset 0 0 14px rgba(162, 255, 94, 0.18),
    0 6px 16px rgba(0, 0, 0, 0.28);
  transition: transform 0.55s cubic-bezier(0.25, 0.9, 0.3, 1), filter 0.55s ease,
    color 0.55s ease, box-shadow 0.55s ease;
  position: absolute;
  left: calc(var(--timeline-left) - var(--icon-offset));
  top: 50%; /* Centrado vertical perfecto */
  transform: translateY(-50%);
  z-index: 3;
  /* Animación de flotación suave */
  animation: floatIcon 12s ease-in-out infinite;
  margin-top: 25px;
  margin-left: -12px;
}

/* Animación de flotación para los iconos */
@keyframes floatIcon {
  0%,
  100% {
    transform: translateY(-50%) translateY(0);
  }
  50% {
    transform: translateY(-50%) translateY(-5px);
  }
}

/* Hover manual o automático - mantiene los estilos originales pero con animación mejorada */
.timeline-icon.hovered,
.timeline-icon:hover {
  animation: hoverFloat 1.2s ease-in-out infinite;
  color: #fff;
  filter: drop-shadow(0 0 18px rgba(161, 255, 94, 0.301));
  box-shadow: 0 0 26px rgba(161, 255, 94, 0.178),
    inset 0 0 20px rgba(161, 255, 94, 0.171);
}

@keyframes hoverFloat {
  0%,
  100% {
    transform: translateY(-50%) translateY(-3px) scale(1.1);
  }
  50% {
    transform: translateY(-50%) translateY(2px) scale(1.05);
  }
}

/* Estado completado opcional con animación */
.timeline-item.completed .timeline-icon {
  background: linear-gradient(
    135deg,
    rgba(162, 255, 94, 1),
    rgba(74, 207, 255, 1)
  );
  color: #06121a;
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 20px rgba(74, 207, 255, 0.25),
    inset 0 0 14px rgba(0, 0, 0, 0.12);
  animation: completedPulse 12s ease-in-out infinite;
}

@keyframes completedPulse {
  0%,
  100% {
    transform: translateY(-50%) scale(1);
    box-shadow: 0 8px 20px rgba(74, 207, 255, 0.25),
      inset 0 0 14px rgba(0, 0, 0, 0.12);
  }
  50% {
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 12px 28px rgba(74, 207, 255, 0.4),
      inset 0 0 18px rgba(0, 0, 0, 0.18);
  }
}

/* Diferentes delays para crear efecto de onda */
.timeline-item:nth-child(1) .timeline-icon {
  animation-delay: 0s;
}

.timeline-item:nth-child(2) .timeline-icon {
  animation-delay: 0.3s;
}

.timeline-item:nth-child(3) .timeline-icon {
  animation-delay: 0.6s;
}

.timeline-item:nth-child(4) .timeline-icon {
  animation-delay: 0.9s;
}

.timeline-item:nth-child(5) .timeline-icon {
  animation-delay: 1.2s;
}

/* === Tarjetas (contenido) === */
.timeline-content {
  margin-left: calc(var(--timeline-left) + var(--icon-lg) + 20px);
  padding: 20px 24px;
  border-radius: 12px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.089),
    rgba(255, 255, 255, 0.055)
  );
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 8px 20px rgba(2, 6, 23, 0.55);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  min-height: 100px; /* Altura mínima consistente */
  display: flex;
  flex-direction: column;

  justify-content: center; /* Centra el contenido verticalmente */
}

.timeline-content:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(2, 6, 23, 0.65);
}

.timeline-content h3 {
  margin: 0 0 10px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;

  background: linear-gradient(
    135deg,
    #f5e6b8 0%,
    #d4af37 35%,
    #b8962e 65%,
    #f1e2a0 100%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


.timeline-content p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.5;
  color: #cbd5e1;
}
/* === Responsive === */
@media (max-width: 640px) {
  :root {
    --timeline-left: 16px;
    --icon-lg: 38px;
    --icon-offset: 11px;
  }

  .timeline-item {
    margin-bottom: 26px;
    padding-top: 22px;
  }
  .timeline-icon {
    top: -12px;
  }
  .timeline-content {
    margin-left: 60px;
    padding: 14px 16px;
  }
}


 @media (max-width: 992px) {
            .section-title-2 h2 {
                font-size: 3rem;
            }
            
            :root {
                --icon-lg: 42px;
                --gap: 24px;
            }
            
            .timeline-content {
                margin-left: calc(var(--timeline-left) + var(--icon-lg) + 15px);
                padding: 25px;
            }
        }

        @media (max-width: 768px) {
            .section-title-2 h2 {
                font-size: 2.5rem;
            }
            
            .section-title-2 p {
                font-size: 1.1rem;
            }
         
        }

        @media (max-width: 576px) {
            .section-title-2 h2 {
                font-size: 2.2rem;
            }
    
        }



     .payment-container {
            max-width: 1000px;
            width: 100%;
            margin: 0 auto;
        }

        .payment-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }

        .payment-header h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: var(--accent-light);
        }

        .payment-header p {
            font-size: 1.3rem;
            color: rgba(245, 245, 247, 0.9);
            max-width: 600px;
            margin: 0 auto;
            font-family: 'Cormorant Garamond', serif;
            font-style: italic;
        }

        .gradient-text {
            background: var(--gold-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            background-size: 200% 200%;
            animation: gradient-shift 3s ease infinite;
        }

        @keyframes gradient-shift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .title-decoration {
            width: 100px;
            height: 3px;
            background: var(--gold-gradient);
            margin: 30px auto;
            border-radius: 3px;
            animation: gradient-shift 4s ease infinite;
        }

        /* Tarjetas de Pago */
        .payment-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .payment-card {
            background: linear-gradient(145deg, 
                rgba(22, 22, 34, 0.9) 0%, 
                rgba(28, 28, 40, 0.7) 100%);
            backdrop-filter: blur(15px);
            border-radius: var(--rad-lg);
            padding: 40px;
            border: 1px solid rgba(212, 175, 55, 0.2);
            transition: var(--transition);
            box-shadow: var(--card-shadow);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .payment-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gold-gradient);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .payment-card:hover::before {
            transform: scaleX(1);
        }

        .payment-card:hover {
            transform: translateY(-10px);
            border-color: rgba(212, 175, 55, 0.4);
            box-shadow: 0 30px 60px rgba(212, 175, 55, 0.25);
        }

        .payment-icon {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, 
                rgba(212, 175, 55, 0.15) 0%, 
                rgba(212, 175, 55, 0.08) 100%);
            border-radius: 50%;
            border: 2px solid rgba(212, 175, 55, 0.3);
            color: var(--accent-color);
            font-size: 25px;
            margin-bottom: 30px;
            transition: var(--transition);
        }

        .payment-card:hover .payment-icon {
            background: linear-gradient(135deg, 
                rgba(212, 175, 55, 0.25) 0%, 
                rgba(212, 175, 55, 0.15) 100%);
            /* transform: scale(1.15) rotate(5deg); */
            border-color: rgba(212, 175, 55, 0.5);
            color: #FFD700;
        }

        .payment-card h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--accent-light);
            font-family: 'Playfair Display', serif;
        }

        .payment-details {
            margin: 20px 0;
        }

        .payment-detail {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        .payment-detail i {
            color: var(--accent-color);
            font-size: 1.2rem;
            margin-top: 2px;
            min-width: 20px;
        }

        .payment-detail strong {
            color: var(--light-color);
            font-weight: 600;
            display: block;
            margin-bottom: 5px;
            font-size: 1.1rem;
        }

        .payment-detail p {
            color: rgba(245, 245, 247, 0.85);
            font-size: 1.05rem;
            line-height: 1.6;
            word-break: break-all;
        }

        /* Códigos de cuenta */
        .account-code {
            background: rgba(0, 0, 0, 0.3);
            padding: 15px;
            border-radius: 12px;
            border: 1px solid rgba(212, 175, 55, 0.2);
            margin-top: 10px;
            position: relative;
            overflow: hidden;
        }

        .account-code:hover {
            background: rgba(0, 0, 0, 0.4);
            border-color: rgba(212, 175, 55, 0.4);
        }

        .copy-btn {
            position: absolute;
            top: 10px;
            right: 10px;
            background: rgba(212, 175, 55, 0.2);
            border: 1px solid rgba(212, 175, 55, 0.3);
            color: var(--accent-color);
            padding: 6px 12px;
            border-radius: 6px;
            cursor: pointer;
            font-size: 0.9rem;
            transition: var(--transition);
        }

        .copy-btn:hover {
            background: rgba(212, 175, 55, 0.3);
            border-color: rgba(212, 175, 55, 0.5);
        }

        /* Sección de Confirmación */
        .confirmation-section {
            background: linear-gradient(135deg, 
                rgba(212, 175, 55, 0.1) 0%, 
                rgba(12, 12, 20, 1) 100%);
            border-radius: var(--rad-lg);
            padding: 50px;
            border: 1px solid rgba(212, 175, 55, 0.2);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .confirmation-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1554224155-6726b3ff858f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1470&q=80') center/cover no-repeat;
            opacity: 0.05;
            z-index: 0;
        }

        .confirmation-content {
            position: relative;
            z-index: 1;
        }

        .confirmation-content h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--accent-light);
        }

        .confirmation-content p {
            font-size: 1.2rem;
            color: rgba(245, 245, 247, 0.9);
            max-width: 600px;
            margin: 0 auto 30px;
            line-height: 1.7;
        }

        .highlight-text-1 {
            background: var(--gold-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-weight: 700;
            font-size: 1.3rem;
            display: inline-block;
            margin: 0 5px;
        }

        /* Botones de Acción */
        .action-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 40px;
        }



        /* Notificación de copiado */
        .copy-notification {
            position: fixed;
            top: 20px;
            right: 20px;
            background: linear-gradient(135deg, #BFA44A, #E6C97A);
            color: var(--primary-color);
            padding: 15px 25px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            z-index: 1000;
            transform: translateX(120%);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
        }

        .copy-notification.show {
            transform: translateX(0);
        }

        /* Responsive */
        @media (max-width: 992px) {
            .payment-header h1 {
                font-size: 3rem;
            }
            
            .payment-cards {
                grid-template-columns: 1fr;
            }
            
            .confirmation-section {
                padding: 40px 30px;
            }
        }

        @media (max-width: 768px) {
            .payment-header h1 {
                font-size: 2.5rem;
            }
            
            .payment-header p {
                font-size: 1.1rem;
            }
            
            .payment-card {
                padding: 30px;
            }
            
            .confirmation-content h2 {
                font-size: 2rem;
            }
            
            .confirmation-content p {
                font-size: 1.1rem;
            }
            
   
       
        }

        @media (max-width: 576px) {
            .payment-header h1 {
                font-size: 2.2rem;
            }
            
            .payment-card h3 {
                font-size: 1.6rem;
            }
            
            .confirmation-content h2 {
                font-size: 1.8rem;
            }
     
        }

        /* FAQ Section */
        .faq {
            background: linear-gradient(135deg, 
                rgba(12, 12, 20, 0.98) 0%, 
                rgba(22, 22, 34, 0.95) 100%);
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 16px;
            border-radius: var(--border-radius);
            overflow: hidden;
            border: 1px solid rgba(212, 175, 55, 0.1);
            transition: var(--transition);
        }

        .faq-item:hover {
            border-color: rgba(212, 175, 55, 0.3);
        }

        .faq-question {
            padding: 28px 32px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 1.15rem;
            transition: var(--transition);
            background: linear-gradient(145deg, 
                rgba(22, 22, 34, 0.8) 0%, 
                rgba(28, 28, 40, 0.6) 100%);
        }

        .faq-question:hover {
            background: linear-gradient(145deg, 
                rgba(212, 175, 55, 0.1) 0%, 
                rgba(212, 175, 55, 0.05) 100%);
        }

        .faq-question i {
            color: var(--accent-color);
            transition: var(--transition);
        }

        .faq-answer {
            padding: 0 32px;
            max-height: 0;
            overflow: hidden;
            transition: var(--transition);
            color: rgba(245, 245, 247, 0.9);
            background: linear-gradient(145deg, 
                rgba(22, 22, 34, 0.6) 0%, 
                rgba(28, 28, 40, 0.4) 100%);
        }

        .faq-answer p {
            padding-bottom: 32px;
            line-height: 1.7;
            font-weight: 300;
        }

        .faq-item.active .faq-question {
            background: linear-gradient(145deg, 
                rgba(212, 175, 55, 0.15) 0%, 
                rgba(212, 175, 55, 0.08) 100%);
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
        }

        .faq-highlight {
  margin: 24px 0;
  font-size: 1.05rem;
  font-weight: 500;
}

.gold-text {
  background: linear-gradient(135deg, #f3f0e6, #b9a24a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq-block {
  margin-bottom: 20px;
}

.faq-block h4 {
  margin-bottom: 8px;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--accent-color);
}

.faq-note {
  margin: 20px 0;
  padding-left: 16px;
  border-left: 2px solid rgba(212, 175, 55, 0.4);
  font-size: 0.95rem;
  opacity: 0.9;
}

.faq-list {
  margin: 16px 0 24px;
  padding-left: 20px;
}

.faq-list li {
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.faq-cta {

  font-weight: 600;
  color: var(--accent-color);
}

.faq-cta {
  margin-top: 32px;
  margin-bottom: 32px;

  font-weight: 600;
  color: var(--accent-color);

  border-top: 1px solid rgba(212, 175, 55, 0.25);
}



.faq-cta-text {
  margin-bottom: 40px; /* 🔑 separación visible */
}


.btn-action {
  display: inline-block;
  text-decoration: none;
}




.btn-action {
align-self: center;   /* 🔑 centro real */


  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;

  color: #1a1a1a;
  background: linear-gradient(
    135deg,
    #f3f0e6 0%,
    #d6c58b 30%,
    #b9a24a 55%,
    #eee6c8 100%
  );

  border: none;
  border-radius: 999px;
  cursor: pointer;

  box-shadow:
    0 6px 18px rgba(212, 175, 55, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);

  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;

   display: block;
  margin: 0 auto;

  
}





.btn-action::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );
  transform: translateX(-120%);
  transition: transform 0.6s ease;
}

.btn-action:hover::before {
  transform: translateX(120%);
}

.btn-action:hover {
  transform: translateY(-2px);
  box-shadow:
    0 10px 26px rgba(212, 175, 55, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.btn-action:active {
  transform: translateY(0);
  box-shadow:
    0 4px 12px rgba(212, 175, 55, 0.35);
}

  .section-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            z-index: 1;
        }

        .section-header h2 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: var(--accent-light);
        }

        .section-header p {
            font-size: 1.3rem;
            color: rgba(245, 245, 247, 0.9);
            max-width: 600px;
            margin: 0 auto;
            font-family: 'Cormorant Garamond', serif;
            font-style: italic;
        }

        .title-decoration {
            width: 100px;
            height: 3px;
            background: var(--gold-gradient);
            margin: 30px auto;
            border-radius: 3px;
            animation: gradient-shift 4s ease infinite;
        }

           .gradient-text {
            background: var(--gold-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            background-size: 200% 200%;
            animation: gradient-shift 3s ease infinite;
        }

        @keyframes gradient-shift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }



@media (max-width: 768px) {
       
            .puntos-grid, .pilares-grid, .logros-grid, .testimonials-grid, .diferente-list {
                grid-template-columns: 1fr;
            }

            .idea-content, .diferente-content {
                padding: 40px 24px;
            }

            .faq-question {
                padding: 24px;
                font-size: 1.1rem;
            }

            .faq-answer {
                padding: 0 24px;
            }
            
            .section-padding {
                padding: 80px 20px;
            }
        }


         /* Responsive */
        @media (max-width: 992px) {
            .section-header h2 {
                font-size: 3rem;
            }
            
            .faq-question {
                padding: 25px;
                font-size: 1.2rem;
            }
            
            .faq-answer-content {
                padding: 0 25px 25px;
            }
        }

        @media (max-width: 768px) {
            .section-header h2 {
                font-size: 2.5rem;
            }
            
            .section-header p {
                font-size: 1.1rem;
            }
            
            .faq-question {
                padding: 20px;
                font-size: 1.1rem;
            }
            
            .faq-answer-content {
                padding: 0 20px 20px;
            }
            
            .faq-highlight {
                padding: 20px;
            }
     
        }

        @media (max-width: 576px) {
            .section-header h2 {
                font-size: 2.2rem;
            }
            
            .faq-question {
                padding: 18px;
                font-size: 1rem;
            }
            
            .faq-answer p {
                font-size: 1rem;
            }
            
 
        }