/* ============================= */
/*         GLOBAL STYLES         */
/* ============================= */
* {
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    font-family: 'Darket Grotesque Light', sans-serif;
    line-height: 1.6;
    background: #FFFFFF;
  }
  
  /* ============================= */
  /*         HEADER (NAV)          */
  /* ============================= */
  .navbar {
    background: #004aad; /* Azul oscuro */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
  }
  
  .navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
  }
  
  .logo a {
    font-size: 28px;
    font-family: 'Darker Grotesque Bold', sans-serif;
    text-decoration: none;
    color: #FFFFFF;
    transition: color 0.3s;
  }
  
  .logo a:hover {
    color: #ffbb02;
  }
  
  .nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
  }
  
  .nav-link {
    text-decoration: none;
    font-size: 16px;
    font-family: 'Darket Grotesque Light', sans-serif;
    color: #FFFFFF;
    transition: color 0.3s, transform 0.3s;
  }
  
  .nav-link:hover {
    color: #ffbb02;
    transform: scale(1.05);
  }
  
  .nav-actions .btn-register {
    background-color: #007BB2; /* Azul (uso esporádico) */
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    font-family: 'Darker Grotesque Bold', sans-serif;
    border-radius: 25px;
    color: #FFFFFF;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
  }
  
  .nav-actions .btn-register:hover {
    background-color: #004aad;
    transform: scale(1.05);
  }
  
  .btn-register-link {
    text-decoration: none;
  }
  
  .menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
  }
  
  .menu-toggle span {
    height: 3px;
    width: 25px;
    background-color: #FFFFFF;
    border-radius: 2px;
    transition: all 0.3s ease;
  }
  
  /* Responsive para el header */
  @media (max-width: 768px) {
    .menu-toggle {
      display: flex;
    }
    .nav-links {
      display: none;
    }
    .navbar-container.active .nav-links {
      display: flex;
      flex-direction: column;
      align-items: center;
      position: absolute;
      top: 60px;
      left: 0;
      right: 0;
      background: #004aad;
      padding: 15px 0;
      gap: 15px;
    }
    .nav-actions {
      display: none;
    }
    .navbar-container.active .nav-actions {
      display: block;
      margin-top: 10px;
    }
  }
  
  /* ============================= */
  /*       ACERCA DE (ABOUT)       */
  /* ============================= */
  .about-section {
    padding: 40px 20px;
    background: #FFFFFF; /* Fondo blanco para frescura y formalidad */
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
  }
  
  .about-text {
    flex: 1;
    text-align: left;
    color: #000000;
    font-family: 'Darket Grotesque Light', sans-serif;
  }
  
  .about-text h2 {
    font-size: 40px;
    color: #004aad; /* Azul oscuro para encabezados */
    margin-bottom: 16px;
    font-family: 'Darker Grotesque Bold', sans-serif;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  }
  
  .about-text .highlight {
    color: #007b2; /* Azul claro para acentos */
  }
  
  .about-text p {
    font-size: 18px;
    color: #000000;
    line-height: 1.8;
    margin-bottom: 24px;
  }
  
  .benefits-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
  }
  
  .benefits-list li {
    font-size: 16px;
    color: #000000;
    margin-bottom: 10px;
    line-height: 1.5;
    font-family: 'Darket Grotesque Light', sans-serif;
  }
  
  .about-image {
    flex: 1;
    text-align: center;
  }
  
  .about-image video {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  }
  
  /* Responsive para Acerca de */
  @media (max-width: 768px) {
    .about-container {
      flex-direction: column;
    }
    .about-text {
      text-align: center;
    }
    .about-text p,
    .benefits-list li {
      text-align: center;
    }
    .about-image video {
      max-width: 300px;
    }
  }
  
  /* ============================= */
  /*      SOLUCIONES INTEGRALES    */
  /* ============================= */
  
  .solutions-section {
    padding: 40px 20px;
    background: #FFFFFF;  /* Fondo blanco para frescura y formalidad */
    text-align: center;
    color: #000000;
  }
  
  .solutions-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .solutions-section .section-title {
    font-size: 36px;
    color: #004aad; /* Azul oscuro para el título */
    margin-bottom: 16px;
    font-family: 'Darker Grotesque Bold', sans-serif;
  }
  
  .solutions-section .section-description {
    font-size: 18px;
    color: #000000;
    margin-bottom: 40px;
    font-family: 'Darket Grotesque Light', sans-serif;
  }
  
  .solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
  }
  
  .solution-card {
    background: #FFFFFF;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  }
  
  .solution-card h3 {
    font-size: 20px;
    color: #004aad;
    margin-bottom: 10px;
    font-family: 'Darker Grotesque Bold', sans-serif;
  }
  
  .solution-card p {
    font-size: 16px;
    color: #000000;
    margin-bottom: 16px;
    font-family: 'Darket Grotesque Light', sans-serif;
  }
  
  .solution-img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 12px;
  }
  
  .btn-enroll {
    display: inline-block;
    margin-top: 10px; /* Espacio superior para separar el botón del contenido */
    padding: 12px 20px;
    background-color: #007BB2; /* Azul claro válido: reemplaza #007b2 por un código de 6 dígitos */
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Darker Grotesque Bold', sans-serif;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Sombra sutil para resaltar */
  }
  
  .btn-enroll:hover {
    background-color: #004aad; /* Azul oscuro al hover */
    transform: scale(1.05);
  }
  
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .solutions-section .section-title {
      font-size: 28px;
    }
    .solutions-section .section-description {
      font-size: 16px;
    }
  }
  
  /* ============================= */
/*        DE QUIÉN APRENDES      */
/* ============================= */
.mentor-section {
    padding: 40px 20px;
    background: #FFFFFF; /* Fondo blanco para mantener formalidad y frescura */
    text-align: center;
  }
  
  .mentor-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  
  .mentor-section .section-title {
    font-size: 36px;
    color: #004aad; /* Azul oscuro */
    margin-bottom: 16px;
    font-family: 'Darker Grotesque Bold', sans-serif;
  }
  
  .mentor-section .section-description {
    font-size: 18px;
    color: #000000;
    margin-bottom: 40px;
    font-family: 'Darket Grotesque Light', sans-serif;
  }
  
  .mentor-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    justify-content: center;
    text-align: left;
  }
  
  .mentor-image {
    flex: 1;
    max-width: 300px;
    text-align: center;
  }
  
  .mentor-image img {
    width: 100%;
    border-radius: 50%;
    border: 4px solid #004aad;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  .mentor-text {
    flex: 2;
    font-family: 'Darket Grotesque Light', sans-serif;
    color: #000000;
    text-align: left;
  }
  
  .mentor-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 16px;
  }
  
  /* Responsive para la sección Mentor */
  @media (max-width: 768px) {
    .mentor-content {
      flex-direction: column;
      text-align: center;
    }
    .mentor-text {
      text-align: center;
    }
  }
  


  /* ============================= */
  /*         TESTIMONIOS           */
  /* ============================= */
  
  .testimonials-section {
    padding: 40px 20px;
    background: #ffffff; /* Fondo blanco para claridad */
    text-align: center;
  }
  
  .testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .testimonials-section .section-title {
    font-size: 36px;
    margin-bottom: 16px;
    font-family: 'Darker Grotesque Bold', sans-serif;
    color: #004aad;  /* Azul oscuro */
  }
  
  .testimonials-section .section-description {
    font-size: 18px;
    margin-bottom: 40px;
    font-family: 'Darket Grotesque Light', sans-serif;
    color: #000000;
  }
  
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
  }
  
  /* Estilo para cada tarjeta de testimonio */
  .testimonial-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 24px;
    text-align: left;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  }
  
  /* Estilo para la foto */
  .testimonial-photo {
    margin-bottom: 12px;
    text-align: center;
  }
  
  .testimonial-photo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #004aad;
    margin-bottom: 8px;
  }
  
  /* Estilos para el texto del testimonio */
  .testimonial-card p {
    font-size: 16px;
    margin-bottom: 12px;
    font-family: 'Darket Grotesque Light', sans-serif;
    color: #000000;
  }
  
  /* Estilo para el nombre */
  .testimonial-card span {
    display: block;
    font-size: 14px;
    font-family: 'Darket Grotesque Light', sans-serif;
    color: #4a5568;
    font-style: italic;
    text-align: right;
    margin-top: 8px;
  }
  
  /* ============================= */
  /*        CONTACTO / REDES       */
  /* ============================= */
  
  .contact-section {
    padding: 40px 20px;
    background: #FFFFFF; /* Fondo blanco para frescura y claridad */
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
  }
  
  /* Columna de texto y redes */
  .contact-text {
    flex: 1;
    text-align: center;
    color: #000000;
    font-family: 'Darket Grotesque Light', sans-serif;
  }
  
  .contact-text .section-title {
    font-size: 36px;
    font-family: 'Darker Grotesque Bold', sans-serif;
    color: #004aad; /* Azul oscuro */
    margin-bottom: 16px;
  }
  
  .contact-text .section-description {
    font-size: 18px;
    font-family: 'Darket Grotesque Light', sans-serif;
    color: #000000;
    margin-bottom: 20px;
  }
  
  /* Redes Sociales */
  .social-links-horizontal {
    display: flex;
    justify-content: center;  /* Agregado para centrar los elementos */
    gap: 20px;
    margin-bottom: 20px;
  }
  
  .social-link {
    width: 70px;
    height: 70px;
    background-color: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, background-color 0.3s;
  }
  
  .social-link img {
    width: 35px;
    height: 35px;
  }
  
  .social-link:hover {
    transform: scale(1.1);
    background-color: #e0e7ff;
  }
  
  /* Botón de Contacto */
  .contact-buttons {
    margin-bottom: 20px;
  }
  
  .btn-info {
    padding: 10px 16px;
    font-size: 14px;
    background-color: #007BB2; /* Azul oscuro */
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Darker Grotesque Bold', sans-serif;
    transition: background-color 0.3s, transform 0.2s;
  }
  
  .btn-info:hover {
    background-color: #004aad; /* Azul claro */
    transform: scale(1.05);
  }
  
  /* Columna de imagen */
  .contact-image {
    flex: 1;
    text-align: center;
  }
  
  .contact-image img {
    width: 100%;
    max-width: 300px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  }
  
  /* Responsive para Contacto */
  @media (max-width: 768px) {
    .contact-container {
      flex-direction: column;
    }
    .contact-text {
      text-align: center;
    }
    .contact-text .section-title {
      font-size: 28px;
    }
    .contact-text .section-description {
      font-size: 16px;
    }
  }
  
  /* ============================= */
  /*            FOOTER             */
  /* ============================= */
  .footer-section {
    background-color: #004aad; /* Azul oscuro */
    color: #fff;
    padding: 40px 20px;
    text-align: center;
  }
  
  .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .footer-section p {
    font-size: 14px;
    font-family: 'Darket Grotesque Light', sans-serif;
  }
  
  .footer-links {
    list-style: none;
    padding: 0;
    margin: 16px 0;
    display: flex;
    gap: 16px;
  }
  
  .footer-links a {
    color: #fff;
    text-decoration: none;
    font-family: 'Darket Grotesque Light', sans-serif;
    transition: color 0.3s;
  }
  
  .footer-links a:hover {
    color: #ffbb02; /* Acento en amarillo */
  }
  
  .footer-socials {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 16px;
  }
  
  .footer-socials a {
    color: #fff;
    font-size: 24px;
    transition: transform 0.3s, color 0.3s;
  }
  
  .footer-socials a:hover {
    transform: scale(1.2);
    color: #ffbb02;
  }
  
