        :root {
            --primary-color: #0C0C14;
            --secondary-color: #161622;
            --accent-color: #D4AF37;
            --accent-light: #E8D5A1;
             --gold: #d4af37;

              --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;



        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 80px;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--light-color);
            background-color: var(--primary-color);
            line-height: 1.7;
            overflow-x: hidden;
            font-weight: 400;
        }

        h1, h2, h3, h4, h5 {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 600;
            line-height: 1.2;
            letter-spacing: -0.02em;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            /* padding: 0 20px; */
        }

        section {
            padding: var(--section-padding);
            position: relative;
        }

        /* === LOGO NAVBAR === */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

/* Imagen del logo */
.logo-img {
  height: 42px;          /* desktop */
  width: auto;
  display: block;
  transition: transform 0.3s ease;
}

/* Hover sutil */
.logo:hover .logo-img {
  transform: scale(1.03);
}

/* Tablet */
@media (max-width: 768px) {
  .logo-img {
    height: 45px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .logo-img {
    height: 45px;
  }
}

        
        

        

        .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%; }
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 18px 42px;
            background: var(--gold-gradient);
            background-size: 200% 200%;
            color: var(--primary-color);
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.05rem;
            text-decoration: none;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
            letter-spacing: 0.5px;
            gap: 12px;
            animation: gradient-shift 4s ease infinite;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: 0.8s;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 25px 50px rgba(212, 175, 55, 0.25);
        }

        .btn-outline {
            background: transparent;
            border: 1.8px solid var(--accent-color);
            color: var(--accent-light);
            position: relative;
            overflow: hidden;
        }

        .btn-outline::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--accent-gradient);
            transition: 0.6s;
            z-index: -1;
        }

        .btn-outline:hover::before {
            left: 0;
        }

        .btn-outline:hover {
            color: var(--primary-color);
            border-color: transparent;
        }

        .btn-move {
    animation: floatPulse 2.8s ease-in-out infinite;
}

@keyframes floatPulse {
    0% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-6px) scale(1.03);
    }
    100% {
        transform: translateY(0) scale(1);
    }
}


.btn-wave-outer {
    animation: microVibe 3s ease-in-out infinite;
}

@keyframes microVibe {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}





/* ===============================
   BOTÓN BASE (NO SE TOCA)
================================ */
/* .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 42px;
    background: var(--gold-gradient);
    background-size: 200% 200%;
    color: var(--primary-color);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    gap: 12px;
    animation: gradient-shift 4s ease infinite;
} */

/* ===============================
   MOVIMIENTO + GRADIENTE
   (CLAVE: animaciones combinadas)
================================ */
.btn-move {
    animation:
        gradient-shift 4s ease infinite,
        floatPulse 3.2s ease-in-out infinite;
}

/* Movimiento suave */
@keyframes floatPulse {
    0% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-6px) scale(1.03);
    }
    100% {
        transform: translateY(0) scale(1);
    }
}

/* ===============================
   WRAPPER PARA ONDAS EXTERNAS
================================ */
.btn-wave-wrapper {
    position: relative;
    display: inline-block;
 
}




/* Asegura que el botón esté arriba */
.btn-wave-wrapper .btn {
    position: relative;
    z-index: 2;
}

/* Ondas externas */
.btn-wave-wrapper::before,
.btn-wave-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 999px;
    border: 2.5px solid rgba(248, 202, 50, 0.877);
    opacity: 0;
    pointer-events: none;
    z-index: 0;
    animation: outerWaveSoft 6.5s ease-in-out infinite;
}

/* Segunda onda */
.btn-wave-wrapper::after {
    animation-delay: 3.25s;
    border-color: rgba(212, 175, 55, 0.733);
}

/* Animación de ondas suaves */
@keyframes outerWaveSoft {
    0% {
        opacity: 0.35;
    }
    70% {
        opacity: 0.15;
    }
    100% {
        transform: scale(1.35);
        opacity: 0;
    }
}



        /* Navbar Premium */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 22px 0;
            background-color: rgba(12, 12, 20, 0.95);
            backdrop-filter: blur(20px);
            z-index: 1000;
            transition: var(--transition);
            border-bottom: 1px solid rgba(212, 175, 55, 0.1);
        }

        .navbar.scrolled {
            padding: 16px 0;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.4);
        }

        .navbar-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--light-color);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 12px;
            letter-spacing: 1px;
        }

        .logo span {
            background: var(--gold-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .logo-icon {
            color: var(--accent-color);
            font-size: 1.8rem;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 40px;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            color: var(--light-color);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            position: relative;
            font-size: 0.95rem;
            letter-spacing: 0.5px;
            padding: 8px 0;
        }

        .nav-link::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--gold-gradient);
            transition: var(--transition);
        }

        .nav-link:hover {
            color: var(--accent-light);
        }

        .nav-link:hover::before {
            width: 100%;
        }

        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 1.5rem;
            color: var(--light-color);
            transition: var(--transition);
        }

        .hamburger:hover {
            color: var(--accent-color);
        }

     .hero {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  color: white;

  background:
    radial-gradient(
      ellipse at center,
      rgba(26, 26, 26, 0.75) 0%,
      rgba(10, 10, 10, 0.95) 70%
    ),
    linear-gradient(
      rgba(4, 6, 7, 0.6),
      rgba(17, 18, 19, 0.6)
    ),
    url("/Img/img.png") center center / cover no-repeat;
}




        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.1;
            z-index: 0;
        }

        .hero-bg::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
        }

        .hero-content {
            max-width: 800px;
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 4rem;
            margin-bottom: 24px;
            line-height: 1.1;
            font-weight: 700;
        }

        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 32px;
            color: var(--accent-light);
            font-weight: 400;
            font-family: 'Cormorant Garamond', serif;
            font-style: italic;
            letter-spacing: 0.5px;
             line-height: 1.2;
        }

        .hero p {
            font-size: 1.15rem;
            margin-bottom: 32px;
            color: rgba(245, 245, 247, 0.9);
            font-weight: 300;
            line-height: 1.6;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            margin-top: 40px;
        }

        /* Floating Elements Premium */
        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 0;
        }

        .floating-element {
            position: absolute;
            opacity: 0.1;
            animation: float 20s infinite linear;
        }

        .floating-element i {
            font-size: 24px;
            color: var(--accent-color);
        }

        .floating-element:nth-child(1) {
            top: 20%;
            left: 10%;
            animation-delay: 0s;
            animation-duration: 25s;
        }

        .floating-element:nth-child(2) {
            top: 60%;
            left: 85%;
            animation-delay: 5s;
            animation-duration: 30s;
            opacity: 0.08;
        }

        .floating-element:nth-child(3) {
            top: 80%;
            left: 15%;
            animation-delay: 10s;
            animation-duration: 35s;
            opacity: 0.06;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            33% {
                transform: translateY(-30px) rotate(120deg);
            }
            66% {
                transform: translateY(15px) rotate(240deg);
            }
        }

        /* Section Styling Premium */
        .section-title {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
        }

        .section-title h2 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            display: inline-block;
        }

        .section-title p {
            max-width: 700px;
            margin: 0 auto;
            /* color: var(--gray-color); */
            color: rgba(245, 245, 247, 0.747);
            font-size: 1.15rem;
            font-weight: 300;
            line-height: 1.6;
        }

        .title-decoration {
            width: 80px;
            height: 3px;
            background: var(--gold-gradient);
            margin: 24px auto;
            border-radius: 2px;
        }

        /* Cards Premium */
        .card {
            background: linear-gradient(145deg, 
                rgba(22, 22, 34, 0.8) 0%, 
                rgba(28, 28, 40, 0.6) 100%);
            backdrop-filter: blur(10px);
            border-radius: var(--border-radius);
            padding: 48px 40px;
            border: 1px solid rgba(212, 175, 55, 0.15);
            transition: var(--transition);
            box-shadow: var(--card-shadow);
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .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);
        }

        .card:hover::before {
            transform: scaleX(1);
        }

        .card:hover {
            transform: translateY(-10px);
            border-color: rgba(212, 175, 55, 0.3);
            box-shadow: 0 25px 50px rgba(212, 175, 55, 0.2);
        }

        /* Iconos Premium */
        .icon-wrapper {
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, 
                rgba(212, 175, 55, 0.1) 0%, 
                rgba(212, 175, 55, 0.05) 100%);
            border-radius: 50%;
            margin-bottom: 32px;
            border: 1px solid rgba(212, 175, 55, 0.2);
            transition: var(--transition);
             margin-left: auto;
  margin-right: auto;
        }

        

        

        .card:hover .icon-wrapper {
            background: linear-gradient(135deg, 
                rgba(212, 175, 55, 0.2) 0%, 
                rgba(212, 175, 55, 0.1) 100%);
            transform: scale(1.1);
            border-color: rgba(212, 175, 55, 0.4);
        }

        .icon-wrapper i {
            font-size: 32px;
            color: var(--accent-color);
            transition: var(--transition);
        }

        .card:hover .icon-wrapper i {
            transform: scale(1.1);
        }

        /* Es para ti Section */
        .es-para-ti {
            background: linear-gradient(135deg, 
                rgba(12, 12, 20, 0.98) 0%, 
                rgba(22, 22, 34, 0.95) 100%);
            position: relative;
            overflow: hidden;
        }

        .es-para-ti::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.02) 0%, transparent 50%);
            z-index: 0;
        }

        .es-para-ti .container {
            position: relative;
            z-index: 1;
        }

        .puntos-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 32px;
            margin-bottom: 60px;
        }

        .punto-card h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--accent-light);
            font-family: 'Cormorant Garamond', serif;
            font-weight: 600;
        }

        .punto-card p {
            color: rgba(245, 245, 247, 0.85);
            font-size: 1.05rem;
            line-height: 1.7;
            font-weight: 300;
        }

        .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;
        }
/* 
        .destacado::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
       
            background: #669184d5;
            opacity: 0.1;
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        } */

.destacado::before {
  content: '';
  position: absolute;
  inset: -50%;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(102, 145, 132, 0.15),
    transparent 70%
  );
  animation: softShift 14s ease-in-out infinite;
}

@keyframes softShift {
  0%   { transform: translateX(-5%) translateY(-5%); }
  50%  { transform: translateX(5%) translateY(5%); }
  100% { transform: translateX(-5%) translateY(-5%); }
}



        .destacado p {
            font-size: 1.5rem;
            color: var(--light-color);
            font-weight: 500;
            position: relative;
            z-index: 1;
            font-family: 'Cormorant Garamond', serif;
            font-style: italic;
        }


/* 
        .destacado {
  padding: 48px;
} */

.destacado p {
  font-size: 1.35rem;
  line-height: 1.6;
  letter-spacing: 0.2px;
  text-align: left;
}

.destacado strong {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
  font-size: 1.35rem;
  
}


        /* Idea Clave Section */
        .idea-clave {
            background: linear-gradient(135deg, 
                rgba(22, 22, 34, 0.95) 0%, 
                rgba(12, 12, 20, 0.98) 100%);
            position: relative;
            overflow: hidden;
        }

        .idea-content {
            max-width: 900px;
            margin: 0 auto;
            padding: 60px;
            position: relative;
            z-index: 1;
        }

        .idea-icon {
            font-size: 4rem;
            margin-bottom: 32px;
            text-align: center;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        .idea-content h3 {
            font-size: 2.5rem;
            margin-bottom: 32px;
            text-align: center;
            color: var(--accent-light);
            line-height: 1.3;
        }

        .idea-content p {
            font-size: 1.15rem;
            line-height: 1.8;
            margin-bottom: 24px;
            color: rgba(245, 245, 247, 0.9);
            font-weight: 300;
        }

        /* Pilares Section */
        .pilares {
            background: linear-gradient(135deg, 
                rgba(12, 12, 20, 0.98) 0%, 
                rgba(22, 22, 34, 0.95) 100%);
            position: relative;
        }

        .pilares-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
        }

        .pilar-card {
            text-align: center;
        }

        .pilar-card h3 {
            font-size: 1.6rem;
            margin-bottom: 20px;
            color: var(--light-color);
            font-family: 'Cormorant Garamond', serif;
            font-weight: 600;
        }

        .pilar-card p {
            color: rgba(245, 245, 247, 0.8);
            font-size: 1.05rem;
            line-height: 1.7;
            font-weight: 300;
        }

        /* === PILARES · TÍTULOS H3 CON DEGRADADO DORADO === */
.pilares .pilar-card h3 {
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.35;

  background: linear-gradient(
    135deg,
    #f5e6b8 0%,
    #d4af37 35%,
    #b8962e 65%,
    #fff2c1 100%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}


        /* Logros Section */
        .logros {
            background: linear-gradient(135deg, 
                rgba(22, 22, 34, 0.95) 0%, 
                rgba(12, 12, 20, 0.98) 100%);
            position: relative;
        }

        .logros-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 32px;
        }

        .logro-item {
            display: flex;
            align-items: flex-start;
            gap: 24px;
            padding: 32px;
            background: linear-gradient(145deg, 
                rgba(22, 22, 34, 0.8) 0%, 
                rgba(28, 28, 40, 0.6) 100%);
            border-radius: var(--border-radius);
            border: 1px solid rgba(212, 175, 55, 0.1);
            transition: var(--transition);
        }

        .logro-item:hover {
            transform: translateX(10px);
            border-color: rgba(212, 175, 55, 0.3);
        }

        .logro-icon {
            font-size: 1.8rem;
            color: var(--accent-color);
            min-width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(212, 175, 55, 0.1);
            border-radius: 50%;
            border: 1px solid rgba(212, 175, 55, 0.2);
            transition: var(--transition);
        }

        .logro-item:hover .logro-icon {
            background: rgba(212, 175, 55, 0.2);
            transform: rotateY(180deg);
        }

        .logro-content h3 {
            font-size: 1.3rem;
            margin-bottom: 12px;
            color: var(--light-color);
        }

        .logro-content p {
            color: rgba(245, 245, 247, 0.7);
            font-size: 1rem;
            line-height: 1.6;
        }



        /* Diferente Section */
        .diferente {
            background: linear-gradient(135deg, 
                rgba(12, 12, 20, 0.98) 0%, 
                rgba(22, 22, 34, 0.95) 100%);
        }

        .diferente-content {
            max-width: 900px;
            margin: 0 auto;
            padding: 60px;
        }

        .diferente-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 32px;
            margin-top: 48px;
        }

        .diferente-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            padding: 24px;
            background: linear-gradient(145deg, 
                rgba(22, 22, 34, 0.8) 0%, 
                rgba(28, 28, 40, 0.6) 100%);
            border-radius: var(--border-radius);
            border: 1px solid rgba(212, 175, 55, 0.1);
            transition: var(--transition);
        }

        .diferente-item:hover {
            transform: translateY(-5px);
            border-color: rgba(212, 175, 55, 0.3);
        }

        .diferente-icon {
            color: var(--accent-color);
            font-size: 1.5rem;
            margin-top: 4px;
        }

        .diferente-item h4 {
  margin: 0 0 8px;
  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;
}

/* === LOGROS · TÍTULOS H3 CON DEGRADADO DORADO === */
.logros .logro-content h3 {
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.35;

  background: linear-gradient(
    135deg,
    #f5e6b8 0%,
    #d4af37 35%,
    #b8962e 65%,
    #fff2c1 100%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}



        /* Testimonials */
        .testimonials {
            background: linear-gradient(135deg, 
                rgba(22, 22, 34, 0.95) 0%, 
                rgba(12, 12, 20, 0.98) 100%);
            position: relative;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 32px;
        }

        .testimonial-card {
            position: relative;
            overflow: hidden;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 24px;
            position: relative;
            color: rgba(245, 245, 247, 0.95);
            font-size: 1.1rem;
            line-height: 1.7;
            font-weight: 300;

             position: relative;
    padding-left: 2.6rem; /* espacio real para la comilla */
        }

        .testimonial-text::before {
            content: "“";
    position: absolute;
    left: 0;
    top: -0.4rem;
    font-size: 4.5rem;
    line-height: 1;
    color: var(--accent-color);
    opacity: 0.25;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
        }

        .testimonial-author {
            font-weight: 600;
            color: var(--accent-light);
            text-align: right;
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.2rem;
        }
.testimonial-icon {
    width: 14px;
    height: 14px;
    margin-bottom: 10px;
    opacity: 0.6;
    display: block;
}













/* HISTORIAS DE ÉXITO */

/* HISTORIAS DE ÉXITO */

.section__head {
  text-align: center;
  margin-bottom: 48px;
}
.section__kicker {
  color: #c5f4a3;
  font: 600 0.95rem var(--ff-h);
  letter-spacing: 0.4px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 16px;
}
.section__desc {
  color: var(--muted);
  max-width: 860px;
  margin-inline: auto;
  font-size: var(--fs-lg);
}

.stories {
  display: grid;
  gap: var(--gap);
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.story {
  background: var(--grad-card);
  border-radius: var(--rad-lg);
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all var(--t);
  position: relative;
  overflow: hidden;
}

.story:hover {
  /* transform: translateY(-5px); */
  box-shadow: var(--shadow-l);
  border-color: rgba(162, 255, 94, 0.4);
}

.story-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.story-avatar {
  width: 64px;
  height: 64px;
  padding: 3px; /* crea el borde */
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: #0a1508; /* fallback */
}

.story-content {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.story-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* color: var(--muted); */
  color: #5eead5b6;
  font-size: 0.8rem;
}

/* .story-rating {
  color: #ffd700;
} */

.story-rating i {
  color: #5eead4;
  background: linear-gradient(
    135deg,
    #fff3b0,
    #ffd700,
    #ffb703,
    #ffd700
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1rem;
  text-shadow: 0 0 6px rgba(255, 215, 0, 0.4);
}

.story:hover .story-rating i {
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

.story h3 {
  font-size: 1.6rem;
  font-weight: 700;
  background: linear-gradient(135deg, #a2ff5e, #5eead4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.story-header p {
  font-size: 0.7rem;
  font-weight: 400;
  color: rgba(226, 202, 202, 0.822);
  /* background: linear-gradient(135deg, #5eead4, #a2ff5e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; */

  background-clip: text;
}



/* 📱 Ajustes SOLO para móviles */
@media (max-width: 768px) {
  .stories {
    grid-template-columns: 1fr; /* solo una por fila */
    gap: 16px;
  }

  .story {
    padding: 25px;
    max-width: 100%;
    margin: 0 auto;
  }

  .story-header {
    gap: 10px;
    margin-bottom: 12px;
  }

  .story-avatar {
    width: 55px;
    height: 56px;
    font-size: 18px;
  }

  .story-avatar img {
    width: 52px;
    height: 52px;
  }

  .story-content {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 12px;
  }

  .story-meta {
    font-size: 0.7rem;
  }
}





                /* Nueva Sección: Dirección del Programa */
        .direccion-programa {
            background: linear-gradient(135deg, 
                rgba(22, 22, 34, 0.95) 0%, 
                rgba(12, 12, 20, 0.98) 100%);
            position: relative;
            overflow: hidden;
        }

        .direccion-programa::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 80% 30%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 20% 70%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
            z-index: 0;
        }

        .direccion-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .direccion-header {
            margin-bottom: 60px;
        }

        .direccion-header h3 {
            font-size: 2.8rem;
            margin-bottom: 24px;
            color: var(--accent-light);
        }

        .direccion-header p {
            font-size: 1.3rem;
            color: rgba(245, 245, 247, 0.9);
            line-height: 1.7;
            margin-bottom: 32px;
        }

        .no-es-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 24px;
            margin: 40px 0 60px;
        }

        .no-es-item {
            padding: 24px;
            background: linear-gradient(135deg, 
                rgba(212, 175, 55, 0.05) 0%, 
                rgba(212, 175, 55, 0.02) 100%);
            border-radius: var(--border-radius);
            border: 1px solid rgba(212, 175, 55, 0.1);
            transition: var(--transition);
        }

        .no-es-item:hover {
            transform: translateY(-5px);
            border-color: rgba(212, 175, 55, 0.3);
        }

        .no-es-item h4 {
            color: var(--accent-color);
            font-size: 1.7rem;
            margin-bottom: 12px;
            font-family: 'Cormorant Garamond', serif;
        }

        .no-es-item h4 {
  display: inline-flex;        /* 🔑 NO flex */
  align-items: center;
  gap: 10px;

  max-width: 100%;
  min-width: 0;               /* 🔑 evita expansión */
  overflow: hidden;           /* 🔑 corta exceso */

  word-break: break-word;
}

.no-es-item h4::before {
  content: "\f00d";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;

  flex-shrink: 0;
  line-height: 1;
}

/* =========================
   PROPUESTA DE VALOR – CARDS SUAVES
   ========================= */

.propuesta-valor {
  background: linear-gradient(
    180deg,
    rgba(12, 12, 20, 0.92) 0%,
    rgba(18, 18, 30, 0.95) 100%
  );
  position: relative;
}



.propuesta-destacada {
  display: flex;
  flex-direction: column;
  gap: 14px;

  padding: 32px 28px;
  border-radius: 16px;

  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.01)
  );

  border: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
}

.linea-x {
  display: flex;
  align-items: flex-start;
  gap: 12px;

  font-size: clamp(1.05rem, 2.4vw, 1.3rem);
  line-height: 1.6;
  color: rgba(230, 241, 255, 0.9);
}

.linea-x i {
  margin-top: 4px; /* alinea visualmente la X con el texto */
  font-size: 0.85rem;
  color: rgba(212, 175, 55, 0.7);
  flex-shrink: 0;
}


/* GRID */
.propuesta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
  margin-bottom: 80px;
}

/* CARD */
.propuesta-item {
  text-align: center;
  padding: 40px 30px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(212, 175, 55, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* HOVER SUAVE */
.propuesta-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 55px rgba(0, 0, 0, 0.35);
}

/* ICONO */
.propuesta-icon-lg {
  font-size: 3rem;
  color: rgba(212, 175, 55, 0.65);
  margin-bottom: 26px;
  display: inline-block;
}

/* TITULO */
.propuesta-item h4 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: rgba(245, 245, 247, 0.92);
  font-family: 'Cormorant Garamond', serif;
}

/* TEXTO */
.propuesta-item p {
  color: rgba(245, 245, 247, 0.72);
  font-size: 1.05rem;
  line-height: 1.75;
}

/* BLOQUE INNOVACIÓN */
.innovacion-clave {
  background: rgba(212, 175, 55, 0.06);
  border-radius: 18px;
  padding: 45px;
  margin: 70px auto;
  max-width: 820px;
  border-left: 3px solid rgba(212, 175, 55, 0.6);
}

/* TITULO INNOVACIÓN */
.innovacion-clave h4 {
  font-size: 1.7rem;
  margin-bottom: 18px;
  color: rgba(212, 175, 55, 0.85);
  font-family: 'Cormorant Garamond', serif;
}

/* Mejora puntual frase clave */
.innovacion-clave .destacado p {
  font-size: 1.15rem;               /* un poco más sobria */
  line-height: 1.6;
  color: rgba(245, 245, 247, 0.88); /* blanco suave */
  font-weight: 500;
  text-align: center;
  position: relative;
  padding: 18px 22px;
}

/* Ícono más integrado, menos invasivo */
.innovacion-clave .destacado p i {
  color: rgba(212, 175, 55, 0.65);
  margin-right: 8px;
}

/* Línea sutil de énfasis */
.innovacion-clave .destacado p::before {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: rgba(212, 175, 55, 0.45);
  margin: 0 auto 14px;
  border-radius: 2px;
}


/* TEXTO INNOVACIÓN */
.innovacion-clave p {
  font-size: 1.1rem;
  color: rgba(245, 245, 247, 0.78);
  line-height: 1.75;
}

/* DESTACADO */
.destacado p {
  font-size: 1.25rem;
  color: rgba(245, 245, 247, 0.85);
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 768px) {

  .propuesta-grid {
    gap: 40px;
  }

  .propuesta-item {
    padding: 32px 24px;
    border-radius: 18px;
  }

  .propuesta-icon-lg {
    font-size: 2.6rem;
  }

  .propuesta-item h4 {
    font-size: 1.35rem;
  }

  .innovacion-clave {
    padding: 30px 24px;
    margin: 50px auto;
  }
}


   /* Nueva Sección: Modelo Innovador */
        .modelo-innovador {
            background: linear-gradient(135deg, 
                rgba(22, 22, 34, 0.95) 0%, 
                rgba(12, 12, 20, 0.98) 100%);
            position: relative;
        }

        .modelo-comparacion {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin: 60px 0;
        }

        @media (max-width: 768px) {
            .modelo-comparacion {
                grid-template-columns: 1fr;
            }
        }

        .modelo-col {
            padding: 40px;
            background: linear-gradient(145deg, 
                rgba(22, 22, 34, 0.8) 0%, 
                rgba(28, 28, 40, 0.6) 100%);
            border-radius: var(--border-radius);
            border: 1px solid rgba(212, 175, 55, 0.1);
        }

        .modelo-col h4 {
            font-size: 1.7rem;
            margin-bottom: 24px;
            color: var(--accent-color);
            text-align: center;
            font-family: 'Cormorant Garamond', serif;
        }

        .desafio-caracteristicas {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 24px;
            margin-top: 40px;
        }

        /* === DESAFÍO · TÍTULO H4 CON DEGRADADO DORADO === */
.desafio-caracteristicas .caracteristica-item h4 {

   margin-bottom: 8px;
  font-size: 1.5rem;
  font-weight: 600;
 background: linear-gradient(
  135deg,
  #f5f6f3,
  #d1d3c8,
  #aeb08a,
  #f0f1ea
);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* === FIX ÍCONO DEGRADADO · EVITA RECORTE === */
.caracteristica-item .caracteristica-icon i {
  display: inline-block;     /* 🔑 clave */
  line-height: 1;            /* 🔑 clave */
  vertical-align: middle;

  background: linear-gradient(
    135deg,
    #f3f0e6 0%,
    #d6c58b 30%,
    #b9a24a 55%,
    #eee6c8 100%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.caracteristica-item .caracteristica-icon i {
  padding: 0.09em 0;
}

.icono-dorado {
  display: inline-block;   /* 🔑 evita recorte */
  line-height: 1;          /* 🔑 evita corte vertical */
  vertical-align: middle;

  font-size: 48px;         /* ajusta a gusto */

  background: linear-gradient(
    135deg,
    #f3f0e6 0%,
    #d6c58b 30%,
    #b9a24a 55%,
    #eee6c8 100%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}



        .caracteristica-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            padding: 20px;
            background: rgba(212, 175, 55, 0.05);
            border-radius: var(--border-radius);
            border: 1px solid rgba(212, 175, 55, 0.1);
        }

        .caracteristica-icon {
            color: var(--accent-color);
            font-size: 1.3rem;
            margin-top: 4px;
        }

        /* Nueva Sección: Método DCE */
        .metodo-dce {
            background: linear-gradient(135deg, 
                rgba(12, 12, 20, 0.98) 0%, 
                rgba(22, 22, 34, 0.95) 100%);
            position: relative;
        }

        .metodo-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin: 60px 0;
        }

        .metodo-step {
            text-align: center;
            padding: 40px 32px;
            background: linear-gradient(145deg, 
                rgba(22, 22, 34, 0.8) 0%, 
                rgba(28, 28, 40, 0.6) 100%);
            border-radius: var(--border-radius);
            border: 1px solid rgba(212, 175, 55, 0.1);
            position: relative;
            overflow: hidden;
        }

        .metodo-step::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gold-gradient);
        }

        .step-number {
            font-size: 4rem;
            font-weight: 700;
            color: var(--accent-color);
          
            margin-bottom: 20px;
            font-family: 'Cormorant Garamond', serif;
            opacity: 0.6;
        }

        .metodo-step h4 {
            font-size: 1.8rem;
            margin-bottom: 24px;
            color: var(--light-color);
            font-family: 'Cormorant Garamond', serif;
        }

        .metodo-step p {
            color: rgba(245, 245, 247, 0.8);
            font-size: 1.05rem;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        /* Nueva Sección: Áreas de Desafío */
        .areas-desafio {
            background: linear-gradient(135deg, 
                rgba(22, 22, 34, 0.95) 0%, 
                rgba(12, 12, 20, 0.98) 100%);
            position: relative;
        }

        .areas-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 60px 0;
        }

        .area-item {
            padding: 32px;
            background: linear-gradient(135deg, 
                rgba(212, 175, 55, 0.05) 0%, 
                rgba(212, 175, 55, 0.02) 100%);
            border-radius: var(--border-radius);
            border: 1px solid rgba(212, 175, 55, 0.1);
            transition: var(--transition);
            text-align: center;
        }

        .area-item:hover {
            transform: translateY(-5px);
            border-color: rgba(212, 175, 55, 0.3);
            background: linear-gradient(135deg, 
                rgba(212, 175, 55, 0.08) 0%, 
                rgba(212, 175, 55, 0.04) 100%);
        }

        .area-item h4 {
            font-size: 1.3rem;
            color: var(--accent-light);
            margin-bottom: 12px;
            font-family: 'Cormorant Garamond', serif;
        }


        /* 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);
}







        /* CTA Section */
        .cta {
            text-align: center;
            background: linear-gradient(135deg, 
                rgba(212, 175, 55, 0.1) 0%, 
                rgba(12, 12, 20, 1) 100%);
            position: relative;
            overflow: hidden;
        }

        .cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?ixlib=rb-4.0.3&auto=format&fit=crop&w=1470&q=80') center/cover no-repeat;
            opacity: 0.05;
            z-index: 0;
        }

        .cta .container {
            position: relative;
            z-index: 1;
        }

        .cta h2 {
            font-size: 3.2rem;
            margin-bottom: 24px;
        }

        .cta p {
            max-width: 700px;
            margin: 0 auto 48px;
            font-size: 1.2rem;
            color: rgba(245, 245, 247, 0.9);
            font-weight: 300;
            line-height: 1.7;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
            margin-bottom: 60px;
        }

        /* Footer */
        .footer {
            background-color: var(--secondary-color);
            padding: 50px 20px 40px;
            border-top: 1px solid rgba(212, 175, 55, 0.1);
            position: relative;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: var(--gold-gradient);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 60px;
            margin-bottom: 60px;
        }

        

        .footer-column h3 {
            font-size: 1.5rem;
            margin-bottom: 32px;
            color: var(--accent-light);
            font-family: 'Cormorant Garamond', serif;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column li {
            margin-bottom: 16px;
        }

        /* === FOOTER LOGO (IMG) === */
.footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 32px; /* igual que h3 */
  text-decoration: none;
}

.footer-logo-img {
  height: 48px;              /* desktop */
  width: auto;
  display: block;

  opacity: 0.95;

  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}



/* Badge NUEVO */
.badge-new {
  background: linear-gradient(135deg, #f1e0a6, #d4af37);
  color: #000;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 10px;
  margin-left: 6px;
  vertical-align: middle;
  line-height: 1;
  white-space: nowrap;
}

/* Ajustes mobile */
@media (max-width: 768px) {
  .badge-new {
    font-size: 0.6rem;
    padding: 2px 5px;
  }
}


/* Hover sutil (coherente con tu UI) */
.footer-logo:hover .footer-logo-img {
  opacity: 1;
  transform: translateY(-2px);
}


@media (max-width: 768px) {
  .footer-logo-img {
    height: 42px;
  }
}

@media (max-width: 480px) {
  .footer-logo {
    justify-content: center;
  }

  .footer-logo-img {
    height: 38px;
  }
}





        .footer-column a {
            color: var(--gray-color);
            text-decoration: none;
            transition: var(--transition);
            font-weight: 300;
            display: inline-block;
        }

        .footer-column a:hover {
            color: var(--accent-light);
            transform: translateX(5px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            color: var(--gray-color);
            font-size: 0.9rem;
            font-weight: 300;
        }

        .social-icons {
            display: flex;
            gap: 20px;
            margin-top: 24px;
        }

        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            background: linear-gradient(145deg, 
                rgba(6, 73, 32, 0.404) 0%, 
                rgba(28, 28, 40, 0.6) 100%);
            border-radius: 50%;
            color: var(--light-color);
            transition: var(--transition);
            border: 1px solid rgba(212, 175, 55, 0.1);
        }

        .social-icons a:hover {
            background: var(--gold-gradient);
            color: var(--primary-color);
            transform: translateY(-3px);
            border-color: transparent;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .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);
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .hero h1 {
                font-size: 3.5rem;
            }
            
            .section-title h2 {
                font-size: 2.8rem;
            }
        }

        @media (max-width: 992px) {
            .nav-menu {
                gap: 30px;
            }
            
            .hero h1 {
                font-size: 3rem;
            }
            
            .section-title h2 {
                font-size: 2.5rem;
            }
            
            .idea-content h3 {
                font-size: 2.2rem;
            }
        }


        


        /* ===== FIX NAVBAR MOBILE ===== */
@media (max-width: 768px) {

  .navbar-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .logo {
    font-size: 1.4rem;
    line-height: 1;
  }

  .hamburger {
    font-size: 1.6rem;
  }
}




        @media (max-width: 768px) {
            .navbar {
                padding: 18px 0;
            }

            .nav-menu {
                position: fixed;
                top: 80px;
                left: -100%;
                flex-direction: column;
                background-color: rgba(12, 12, 20, 0.98);
                width: 100%;
                text-align: center;
                transition: var(--transition);
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
                padding: 40px 0;
                gap: 30px;
                backdrop-filter: blur(20px);
                border: 1px solid rgba(212, 175, 55, 0.1);
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-item {
                margin: 0;
            }

            .hamburger {
                display: block;
            }

            .hero h1 {
                font-size: 2.5rem;
                  text-align: center;
            }
            
            .hero-subtitle {
                font-size: 1.3rem;
                  text-align: center;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: stretch;
            }

            .btn {
                width: 100%;
                justify-content: center;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: stretch;
                gap: 20px;
            }

            .section-title h2 {
                font-size: 2.2rem;
            }

            .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;
            }
        }


        @media (max-width: 576px) {

  .hero-content {
    padding-top: 20px;
  }

  .hero h1 {
    /* margin-bottom: 5px; */
    font-size: 2.7rem;
  }

  .hero p {
    margin-bottom: 32px;
  }
}




        @media (max-width: 576px) {
            /* .hero h1 {
                font-size: 2.7rem;
                margin-bottom: -12px;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
                margin-bottom: -12px;
            }
           */
           
          

            .section-title h2 {
                font-size: 2.8rem;
                font-weight: 900;
            }
              .section-title h3 {
                font-size: 2.4rem;
                font-weight: 900;
            }

            .punto-card, .pilar-card, .testimonial-card {
                padding: 32px 24px;
            }

            .faq-question {
                padding: 20px;
                font-size: 1rem;
            }
            
            .idea-content h3 {
                font-size: 1.8rem;
            }
            
            .cta h2 {
                font-size: 2.5rem;
            }
            
            .logo {
                font-size: 1.6rem;
            }
        }






/* Slider Section */
.slider-section {
  padding: 100px 0;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
}

.section-title:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.swiper {
  width: 100%;
  aspect-ratio: 16/5;      /* Mantiene la proporción */
  max-height: 400px;       /* Altura máxima en escritorio */
  border-radius: 20px;     /* Bordes redondeados */
  overflow: hidden;        /* Para que la imagen respete el borde */
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);

  

}

.swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 20px; /* asegura bordes redondeados en cada slide */
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;   /* muestra toda la imagen sin recortar */
  border-radius: 20px;   /* borde aplicado también a la imagen */
  background: #00000048;      /* fondo negro si sobran espacios */
  transition: transform 0.5s ease;
}

.swiper-slide:hover img {
  transform: scale(1.05);
}

.image-container-wrapper img {
  margin-left: -2px;
  max-width: 100%;
  margin-bottom: 20px;
  border-radius: 20px;
}

.slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(transparent, rgba(5, 5, 16, 0.363));
  color: var(--light);
  z-index: 2;
  border-radius: 0 0 20px 20px; /* redondeo en parte inferior */
}

.slide-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--primary);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary);
  background: var(--glass);
  backdrop-filter: blur(10px);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: var(--transition);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 20px;
  font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(46, 223, 75, 0.2);
  transform: scale(1.1);
}

.swiper-pagination-bullet {
  background: var(--gray);
  opacity: 0.5;
  width: 12px;
  height: 12px;
  transition: var(--transition);
}

.swiper-pagination-bullet-active {
  background: var(--primary);
  opacity: 1;
  transform: scale(1.2);
}








@media (max-width: 768px) {
  .swiper {
    aspect-ratio: 16/9;
    max-height: 300px; /* más pequeño en móviles */
    border-radius: 15px;
    padding: 12px;
  }

  .btn-wave-wrapper {
    margin-bottom: 10px; /* ajusta a tu gusto */
}

  .swiper-slide {
    border-radius: 15px;
  }

  
  .swiper-slide img {
    height: 100%;
    width: 100%;
    object-fit: cover;       /* llena el slider correctamente */
    border-radius: 15px;
    background: none;
  }
  
  .section-title {
  font-size: 1.8rem


          }
  .swiper-slide,
  .swiper-slide img {
    border-radius: 15px;
  }

  .slide-title {
    font-size: 1.2rem;
  }

  .swiper-pagination-bullet {
  background: var(--gray);
  opacity: 0.5;
  width: 6px;
  height: 6px;
  transition: var(--transition);
}

.swiper-pagination-bullet-active {
  background: var(--primary);
  opacity: 1;
  transform: scale(1.2);
}

}







/* === 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: 900px) {
  .differential {
    grid-template-columns: 1fr;
  }
}

.differential-content {
  padding-right: 20px;
}

.differential-image {
  position: relative;
  border-radius: var(--rad-lg);
  overflow: hidden;
  box-shadow: var(--shadow-l);
}

.differential-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    45deg,
    rgba(162, 255, 94, 0.1),
    rgba(74, 207, 255, 0.1)
  );
  z-index: 1;
}

.differential-feature {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.differential-feature i {
  color: var(--accent);
  font-size: 24px;
  margin-top: 5px;
}

@media (max-width: 480px) {

    /* .destacado p {
        font-size: 0.95rem;
        line-height: 1.5;
    } */

    .btn {
        width: 100%;
        padding: 16px 20px;
        font-size: 0.95rem;
        gap: 8px;
    }

    .btn i {
        font-size: 1rem;
    }
}


    /* ===== Sección Instructor ===== */
    .instructor-section {
      padding: 5rem 2rem 3rem;
      background: linear-gradient(135deg, #0a0a0a, #181818);
    }

    .instructor-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: center;
      /* gap: 3rem; */
      flex-wrap: wrap;
    }

    .instructor-image {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      min-width: 280px;
    }

    .instructor-name {
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  margin-bottom: 0.3rem;

  background: linear-gradient(135deg, 
    var(--accent-light), 
    var(--accent-color)
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}


    /* === Imagen circular del instructor === */
    .instructor-img {
      width: 90px;
      height: 90px;
      border-radius: 50%;
      overflow: hidden;
      border: 1.8px solid var(--gold);
      box-shadow: var(--shadow);
      transition: transform 0.5s ease, box-shadow 0.5s ease;
    }

 /* === Imagen circular del instructor (reducida) === */
    /* ===== Sección Instructor ===== */
    .instructor-section {
      padding: 5rem 2rem 3rem;
      background: linear-gradient(135deg, #0a0a0a, #181818);
      position: relative;
      overflow: hidden;
    }

    .instructor-container {
      max-width: 800px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      /* gap: 3rem; */
    }

    .instructor-image {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1.5rem;
    }

    .instructor-img {
      width: 150px;
      height: 150px;
      border-radius: 50%;
      background: var(--gold-gradient);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
      transition: transform 0.5s ease;
      border: 2.5px solid rgba(212, 175, 55, 0.3);
    }

    .instructor-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 50%;
    }

    .instructor-img:hover {
      transform: scale(1.05);
      border-color: var(--gold);
    }

    .instructor-info {
      width: 100%;
      text-align: center;
    }

    .section-header {
      margin-bottom: 2rem;
    }

      .section-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      background: rgba(212, 175, 55, 0.1);
      border: 1px solid rgba(212, 175, 55, 0.3);
      color: var(--gold);
      padding: 0.4rem 1rem;
      border-radius: 30px;
      font-weight: 500;
      font-size: 0.95rem;
    }

    .section-title {
      font-family: "Playfair Display", serif;
      font-size: 2.2rem;
      color: var(--gold-soft);
      margin-top: 1.5rem;
      line-height: 1.3;
    }

    .instructor-name {
      font-family: "Playfair Display", serif;
      font-size: 1.7rem;
      color: var(--gold);
      margin: 1.5rem 0 0.5rem;
    }

    .instructor-title {
      font-size: 1.2rem;
      /* color: var(--gold-soft); */
      color: #5eead5c5;
    font-style: normal;
      margin-bottom: 1.5rem;
      font-weight: 500;
    }

    /* === Categorías === */
    .instructor-categories {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 0.8rem;
      margin-bottom: 2rem;
    }

    .category-tag {
      background: rgba(212, 175, 55, 0.15);
      color: var(--gold-soft);
      border: 1px solid rgba(212, 175, 55, 0.3);
      padding: 0.3rem 0.85rem;
      border-radius: 25px;
      font-size: 0.75rem;
      font-weight: 500;
      transition: var(--transition);
    }

    .category-tag:hover {
      background: var(--gold-gradient);
      color: #000;
    }

    /* === Descripción === */
    .instructor-bio {
      color: var(--muted);
      line-height: 1.7;
      margin-bottom: 1.5rem;
      font-size: 1.05rem;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }
  /* === Estadísticas === */
    .instructor-stats {
      display: flex;
      justify-content: center;
      gap: 3rem;
      margin: 2.5rem 0;
      flex-wrap: wrap;
    }

    .instructor-stat {
      text-align: center;
      min-width: 120px;
    }

    .instructor-stat-number {
      font-family: "Playfair Display", serif;
      font-size: 2rem;
      color: var(--gold);
      font-weight: 700;
    }

    .instructor-stat-label {
      font-size: 0.95rem;
      color: var(--muted);
      margin-top: 0.5rem;
    }

    /* === Botón Ver más === */
    .instructor-link {
      display: inline-block;
      padding: 0.9rem 2.2rem;
      border-radius: 50px;
      background: var(--gold-gradient);
      color: #000;
      text-decoration: none;
      font-weight: 600;
      font-size: 1.1rem;
      transition: var(--transition);
      box-shadow: var(--shadow);
      margin-top: 1rem;
    }

    .instructor-link:hover {
      transform: translateY(-3px);
      background: linear-gradient(135deg, #f1e0a6, #d4af37);
    }

/* === TÍTULO SLIDER · NUESTRO PROGRAMA === */
.section-title-slider {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4.5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 56px;
  line-height: 1.15;

  background: linear-gradient(
    135deg,
    #f5e6b8 0%,
    #d4af37 30%,
    #b8962e 60%,
    #fff2c1 100%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;

  position: relative;
}

.section-title-slider::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  margin: 20px auto 0;
  border-radius: 2px;

  background: linear-gradient(
    90deg,
    transparent,
    #d4af37,
    transparent
  );

  opacity: 0.85;
}



      /* Responsivo */
    @media (max-width: 768px) {
      /* .instructor-container { gap: 2rem; } */
      .instructor-img { width: 180px; height: 180px; }
      .section-title { font-size: 1.8rem; }
      .instructor-name { font-size: 1.7rem; }
      .instructor-title { font-size: 1.1rem; }
      .instructor-stats { gap: 2rem; }
      .details-section { padding: 2rem 1.5rem; }
      .details-card { padding: 2rem; }
      .card-header { flex-direction: column; gap: 1rem; }
      .card-title { text-align: center; }
      .clients-grid { grid-template-columns: repeat(2, 1fr); }
      /* .logo-track { gap: 2rem; animation-duration: 20s; } */
      /* .logo-carousel::before, .logo-carousel::after { width: 60px; } */
    }

    @media (max-width: 768px) {
  section {
    padding: 55px 20px;
  }
}


    @media (max-width: 480px) {
      .instructor-section { padding: 3rem 1.5rem 2rem; }
      .instructor-img { width: 120px; height: 120px; }
      .section-title { font-size: 1.6rem; }
      .instructor-name { font-size: 1.7rem; }
      .instructor-bio { font-size: 0.95rem; }
      .instructor-stats { gap: 1.5rem; }
      .instructor-stat-number { font-size: 1.7rem; }
      .details-section { padding: 1.5rem 1rem; }
      .details-card { padding: 1.5rem; }
      .card-icon { width: 50px; height: 50px; font-size: 1.3rem; }
      .card-title { font-size: 1.4rem; }
      .clients-grid { grid-template-columns: 1fr; }
      /* .logo-track img { height: 30px; } */
      /* .logo-carousel::before, .logo-carousel::after { width: 40px; } */
    }


 /* ==== RESPONSIVE STYLES ==== */
        @media (max-width: 992px) {
            .hero-title {
                font-size: 3rem;
            }
            
            .section-title {
                font-size: 2.4rem;
            }
            
            .instructor-container {
                flex-direction: column;
                text-align: center;
            }
            
            .instructor-stats {
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            

            .hero-description {
                font-size: 1.1rem;
            }

            .hero-stats {
                gap: 1.5rem;
            }

            .stat-number {
                font-size: 2.2rem;
            }


     
            .card-header {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .card-footer {
                flex-direction: column;
                align-items: flex-start;
            }

            .program-info-section {
                padding: 2rem 2rem;
            }

        }

        @media (max-width: 480px) {
            
            .hero-description {
                font-size: 1rem;
            }

            .hero-stats {
                flex-direction: column;
                gap: 1rem;
            }

    
            
            
            .section-title {
                font-size: 2rem;
            }

        }


        
            /* === Contenedor principal del carrusel === */
        .logo-carousel {
            position: relative;
            overflow: hidden;
            width: 100%;
            margin: 4rem auto;
            padding: 1.5rem 0;
            /* border-top: 1px solid var(--gold-light);
            border-bottom: 1px solid var(--gold-light); */
            max-width: 1400px;
        }

        /* === Pista de logos con animación más lenta === */
        .logo-track {
            display: flex;
            gap: 4rem;
            animation: scroll 60s linear infinite; /* Reducida velocidad de 40s a 60s */
            width: max-content;
            align-items: center;
            will-change: transform;
        }

        /* Pausa la animación al hacer hover */
        .logo-carousel:hover .logo-track {
            animation-play-state: paused;
        }

        .logo-item {
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 140px;
            height: 70px;
            padding: 0.5rem;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
        }

        .logo-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, var(--gold-light), transparent);
            border-radius: 8px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .logo-item:hover::before {
            opacity: 1;
        }

        .logo-track img {
            height: 60px;
            width: auto;
            filter: grayscale(100%) brightness(0.8);
            opacity: 0.7;
            transition: all 0.4s ease;
            object-fit: contain;
        }

        .logo-item:hover img {
            filter: grayscale(0%) brightness(1.1);
            opacity: 1;
            transform: scale(1.08);
        }

        /* Animación de desplazamiento más lenta */
        @keyframes scroll {
            0%   { transform: translateX(0); }
            100% { transform: translateX(calc(-140px * 12 - 4rem * 11)); }
        }

        /* === Efectos de desvanecimiento lateral mejorados === */
        .logo-carousel::before,
        .logo-carousel::after {
            content: "";
            position: absolute;
            top: 0;
            width: 150px;
            height: 100%;
            z-index: 3;
            pointer-events: none;
        }

        .logo-carousel::before {
            left: 0;
            /* background: linear-gradient(to right, var(--bg-dark) 0%, rgba(10, 10, 10, 0) 100%); */
        }

        .logo-carousel::after {
            right: 0;
            /* background: linear-gradient(to left, var(--bg-dark) 0%, rgba(10, 10, 10, 0) 100%); */
        }

        /* === Efectos de partículas mejorados === */
   

        @media (max-width: 768px) {
  .logo-carousel {
    margin-top: 80px !important;
  }
}



        @keyframes float {
            0% {
                transform: translateY(0) translateX(0) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 0.5;
            }
            90% {
                opacity: 0.3;
            }
            100% {
                transform: translateY(-100px) translateX(100px) rotate(360deg);
                opacity: 0;
            }
        }

        /* === Ajustes para tablets === */
        @media (max-width: 1024px) {
            .logo-track {
                gap: 3rem;
                animation-duration: 80s; /* Velocidad reducida también en tablets */
            }
            
            .logo-item {
                min-width: 120px;
                height: 60px;
            }
            
            .logo-track img {
                height: 45px;
            }
        }

        /* === Ajustes para móviles === */
        @media (max-width: 768px) {
            .section-title {
                font-size: 1.5rem;
            }
            
            .logo-carousel {
                margin: 1rem auto;
                padding: 2rem 0;
                
            }

            .logo-track {
                gap: 2rem;
                animation-duration: 80s; /* Velocidad reducida también en móviles */
            }

            .logo-item {
                min-width: 90px;
                height: 60px;
            }

            .logo-track img {
                height: 55px;
            }

            .logo-carousel::before,
            .logo-carousel::after {
                width: 60px;
            }

            @keyframes scroll {
                0%   { transform: translateX(0); }
                100% { transform: translateX(calc(-90px * 12 - 2rem * 11)); }
            }
        }

        @media (max-width: 480px) {
            .logo-track {
                gap: 1.5rem;
                animation-duration: 80s; /* Velocidad reducida también en móviles pequeños */
            }

            .logo-item {
                min-width: 80px;
                height: 45px;
            }

            .logo-track img {
                height: 40px;
            }
            
            .logo-carousel::before,
            .logo-carousel::after {
                width: 40px;
            }
            
            @keyframes scroll {
                0%   { transform: translateX(0); }
                100% { transform: translateX(calc(-80px * 12 - 1.5rem * 11)); }
            }
        }






/* =====================================================
   WHATSAPP FLOAT · ESTILO + ANIMACIONES PROFESIONALES
   ===================================================== */

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;

  width: 60px;
  height: 60px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(145deg, #2be36a, #1fbf57);
  color: #ffffff;

  border-radius: 50%;
  text-decoration: none;

  box-shadow:
    0 8px 24px rgba(37, 211, 102, 0.35),
    inset 0 1px 1px rgba(255, 255, 255, 0.25);

  z-index: 10000;

  /* Visibilidad controlada por JS */
  opacity: 0;
  visibility: hidden;

  /* 🔑 Claves anti-línea blanca */
  outline: none;
  border: none;
  -webkit-tap-highlight-color: transparent;
  user-select: none;

  /* Animaciones */
  transition:
    opacity 0.4s ease,
    transform 0.4s cubic-bezier(.22, 1, .36, 1),
    box-shadow 0.4s ease,
    background 0.4s ease;

  /* Necesario para ondas */
  overflow: visible;
}

/* Estado visible */
.whatsapp-float.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  animation: whatsappShake 0.4s ease-in-out 2.5s infinite;
}

/* Estado oculto (entrada elegante) */
.whatsapp-float:not(.visible) {
  transform: translateY(20px) scale(0.9);
}

/* Ícono */
.whatsapp-float i {
  font-size: 1.9rem;
  line-height: 1;
  pointer-events: none;
}

/* Hover (desktop) */
.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.08);
  background: linear-gradient(145deg, #25d366, #128c7e);
  box-shadow:
    0 14px 32px rgba(18, 140, 126, 0.45),
    inset 0 1px 1px rgba(255, 255, 255, 0.3);
  animation: none;
}

/* Active (tap) */
.whatsapp-float:active {
  transform: translateY(-2px) scale(1.03);
}

/* =====================================================
   ONDAS (HALO)
   ===================================================== */

.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;

  background: rgba(37, 211, 102, 0.45);

  z-index: -1;

  animation: whatsappPulse 3.5s ease-out infinite;
}

/* =====================================================
   KEYFRAMES
   ===================================================== */

@keyframes whatsappPulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  70% {
    transform: scale(2);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* @keyframes whatsappShake {
  0%   { transform: translateX(0); }
  20%  { transform: translateX(-1px); }
  40%  { transform: translateX(1px); }
  60%  { transform: translateX(-1px); }
  50%  { transform: translateX(1px); }
  100% { transform: translateX(0); }
} */


@keyframes whatsappShake {
  0%   { transform: translateX(0); }
  25%  { transform: translateX(-0.6px); }
  50%  { transform: translateX(0.6px); }
  75%  { transform: translateX(-0.4px); }
  100% { transform: translateX(0); }
}

/* =====================================================
   PAUSAR ANIMACIONES AL INTERACTUAR
   ===================================================== */

.whatsapp-float:hover::before,
.whatsapp-float:active::before {
  animation: none;
}
