 html, body {
  overflow-x: hidden;
  width: 100%;
}
 body {
  font-family: 'Montserrat', sans-serif;
     padding-top: 100px;
}
  :root {
      --color-main: #07394C;
      --color-accent: #FF6C00;
      --color-sec: #19A7AE;
        --color-celeste: #04a2df;
  --color-morado: #743b8c;
  --color-verde: #62b334;
  --color-amarillo: #ffd60a;
  --color-naranja: #ea5f0c;
  --color-negro: #000;
  --color-blanco: #fff;
  --color-gray: #7D8597;
      --topbar-padding: 32px;
    }
   .iconos-redes {
    display: none; /* Ocultos por defecto */
  }
      p{
        text-align: justify !important;
    }

    /* Aquí TODO tu CSS, igual que el que pegaste originalmente */
       .topbar {
      background: linear-gradient(90deg, var(--color-main), #0e4d66);
      color: white;
      font-size: 0.88rem;
      transition: top 0.4s ease-in-out;
      padding: 0.4rem 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
      z-index: 1030;
      position: fixed;
      top: 0;
      width: 100%;
      opacity: 0;
      animation: fadeInTop 1s ease forwards;
    }

    .topbar a {
      color: white;
      margin-left: 0.5rem;
      transition: color 0.3s;
    }

    .topbar a:hover {
      color: var(--color-accent);
    }
    .precio{
      
      font-weight: 700;
      font-size: 2em;  
    }

    .navbar-custom {
      background-color: #fff;
      transition: top 0.4s ease-in-out, box-shadow 0.3s;
      z-index: 1029;
      position: fixed;
      top: 40px;
      width: 100%;
      opacity: 0;
      animation: fadeInTop 1s ease 0.2s forwards;
    }

    .navbar-nav .nav-link {
      color: var(--color-main);
      font-weight: 500;
      margin-right: 0.7rem;
      transition: all 0.3s ease;
      position: relative;
      padding: 0.6rem 0.8rem;
      opacity: 0;
      transform: translateY(-10px);
      animation: fadeInLinks 0.6s forwards;
    }

    .navbar-nav .nav-link:nth-child(1) { animation-delay: 0.3s; }
    .navbar-nav .nav-link:nth-child(2) { animation-delay: 0.4s; }
    .navbar-nav .nav-link:nth-child(3) { animation-delay: 0.5s; }
    .navbar-nav .nav-link:nth-child(4) { animation-delay: 0.6s; }

    @keyframes fadeInTop {
      from { opacity: 0; transform: translateY(-20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeInLinks {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .navbar-nav .nav-link:hover {
      color: var(--color-accent);
    }

    .navbar-nav .nav-link.active {
      color: var(--color-accent);
      font-weight: 600;
    }

    .navbar-nav .nav-link::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      background-color: var(--color-accent);
      left: 0;
      bottom: 0;
      transition: width 0.3s;
    }

    .navbar-nav .nav-link:hover::after,
    .navbar-nav .nav-link.active::after {
      width: 100%;
    }

    .btn-aula {
      background-color: var(--color-accent);
      color: white;
      font-weight: 600;
      padding: 0.4em 1em;
      border-radius: 6px;
      transition: background 0.3s;
      animation: fadeInLinks 0.6s 0.7s forwards;
      opacity: 0;
      transform: translateY(-10px);
    }

    .btn-aula:hover {
      background-color: #e65c00;
    }

    .navbar {
      padding-top: 0.4rem;
      padding-bottom: 0.4rem;
    }

    .topbar .social-icons {
      display: flex;
      opacity: 0;
      animation: fadeInTop 1s ease 0.3s forwards;
    }

    .navbar .social-icons-fixed {
      display: none;
      gap: 0.5rem;
      margin-left: 1.5rem;
      animation: fadeIn 0.5s ease forwards;
      border-left: 1px solid #ddd;
      padding-left: 1rem;
    }

    .navbar.scrolled .social-icons-fixed {
      display: flex;
    }

    .navbar.scrolled .social-icons-fixed a {
      color: var(--color-celeste);
      font-size: 1.2rem;
      transition: color 0.3s;
    }

    .navbar.scrolled .social-icons-fixed a:hover {
      color: var(--color-accent);
    }
    .logo-img {
  height: 80px; /* tamaño general */
  transition: all 0.3s ease;
}
    /*fotter*/


.btn-accent:hover {
  background-color: #e65c00;
}
.fw-bold {
  color:  var(--color-main) !important;
  
}
 .hero-nosotros{
     background: url('../img/nosotros.png') no-repeat center center; 
    }
  .hero-contactos{
     background: url('../img/contactos.png') no-repeat center center; 
    }
  .hero-noticias{
     background: url('../img/noticias.png') no-repeat center center; 
    }
    .hero-cursos{
     background: url('../img/formaciones.png') no-repeat center center; 
    }
 
.hero-interno {
      
      background-size: cover;
      min-height: 450px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }
   
    .hero-interno::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(7, 57, 76, 0.6); /* overlay */
      z-index: 1;
    }

    .hero-interno .content {
      z-index: 2;
      text-align: center;
      color: rgb(250, 250, 250);
      max-width: 720px;
      padding: 2rem;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: 16px;
      backdrop-filter: blur(10px);
      animation: fadeInUp 1.1s ease forwards;
    }

    .hero-interno h1 {
      font-size: 2.8rem;
      font-weight: 700;
      margin-bottom: 0.8rem;
    }

    .hero-interno p {
      font-size: 1.1rem;
      color: #e0e0e0;
    }
    .blanco-titulo{
 color: #0B1E26 !important; 
}
.fundadora{ 
  color: #fff !important;
}
.texto_por{
  color: #000 !important;
  font-size: 1em;
}

 
.text-accent { color: var(--color-accent); }
    

    

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(-10px); }
      to { opacity: 1; transform: translateY(0); }
    }
    

    
    :root {
      --color-main: #07394C;
      --color-accent: #FF6C00;
      --color-morado: #743b8c;
      --color-naranja: #ea5f0c;
      --color-footer-bg: #11344b;
      --color-footer-text: #b5bec9;
    }

    body {
      font-family: 'Segoe UI', sans-serif;
      background-color: #f5f7fa;
    }

  .newsletter-wrapper {
  background-image: url('../img/noticia-bg.png');
background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Opcional: efecto parallax */
  position: relative;
  z-index: 1;
  padding: 100px 0;
  overflow: hidden;
}

    .newsletter-box {
      background-color: white;
      border-radius: 16px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
      padding: 40px;
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
    }

    .newsletter-box h2 {
      color: var(--color-main);
      font-weight: 700;
      margin-bottom: 12px;
    }

    .newsletter-box p {
      color: #555;
      margin-bottom: 30px;
    }

    .newsletter-form input[type="email"] {
      border-radius: 50px;
      padding: 14px 20px;
      border: 1px solid #ccc;
      width: 100%;
      max-width: 400px;
      margin-bottom: 15px;
    }

    .newsletter-form button {
      background-color: var(--color-accent);
      color: white;
      border: none;
      border-radius: 50px;
      padding: 14px 32px;
      font-weight: 600;
      transition: background 0.3s ease;
    }

    .newsletter-form button:hover {
      background-color: var(--color-naranja);
    }

    .bg-verde{background:  var(--color-verde) !important; }
   .bg-amarillo{
    background:  var(--color-amarillo) !important;
    color: var(--color-main) !important;
  }
    .bg-celeste{background:  var(--color-celeste) !important;}
    .bg-morado{background:  var(--color-morado) !important;}
    .bg-naranja{background:  var(--color-naranja) !important;}
    .bg-main{background:  var(--color-main) !important;}
    .bg-sec{background:  var(--color-sec) !important;}
.mb-1{
  color: #fff !important;
}
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 25px;
  right: 25px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 32px;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #1ebea5;
}
/*ESTILOS NOSOTROS*/
    .section-ux {
      background-color: #ffffff;
    }
    .section-ux h2 {
      position: relative;
      display: inline-block;
      padding-bottom: 0.5rem;
    }
    .section-ux h2::after {
      content: '';
      position: absolute;
      width: 50%;
      height: 4px;
      background-color: var(--accent);
      bottom: 0;
      left: 0;
      border-radius: 2px;
    }

    .benefit-card {

  color: #fff;               /* texto en blanco */
  border: 1px solid #E66000; /* opcional: borde tonificado */
}
    .benefit-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 24px rgba(0,0,0,0.1);
      
    }
    .benefit-icon {
      font-size: 2rem;
      color: var(--accent);
    }
    .card-title {
      font-size: 1.1rem;
      font-weight: 600;
    }
    .card-text {
      font-size: 0.9rem;
      color: #555555;
    }
    /* Estilos base del popover */
.popover-custom {
  /* Cambia el fondo y borde */
  --bs-popover-bg: #FF7300 !important;            /* fondo naranja */
  --bs-popover-border-color: #E66000 !important;  /* borde un tono más oscuro */
  /* Opcional: ajusta la sombra */
  box-shadow: 0 0.5rem 1rem rgba(0,0,0,.15);
}

/* Texto del título (si lo usas) */
.popover-custom .popover-header {
  background-color: #E66000;
  color: #fff;
  font-weight: 600;
}

/* Texto del cuerpo */
.popover-custom .popover-body {
  color: #fff;
  font-size: .9rem;
  line-height: 1.4;
}

/* Flecha del popover */
.popover-custom .popover-arrow::before {
  border-top-color: #FF7300;   /* si placement=top */
  /* para otros placements usa border-* según corresponda */
}
H5{
  color: var(--color-main) !important;
}
.empresa-icono{
  color: var(--color-verde) !important;
}

    .img-stack img {
      border-radius: 1rem;
      box-shadow: 0 4px 12px rgba(0,0,0,0.05);
      transition: transform 0.3s;
    }
    .img-stack img:hover {
      transform: scale(1.02);
    }
    .fs-2{
      color: var(--color-morado) !important;
    }
    .pasar{
      color: red !important;
    }

    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(40px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .section-main {
      padding: 60px 0;
    }

    .section-main h2 {
      color: var(--color-main);
      font-weight: 700;
      margin-bottom: 1rem;
    }

    .section-main p {
      color: #555;
      font-size: 1.1rem;
    }
    .founder-card {
  height: 100%;
  transition: transform 0.3s ease;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.founder-card:hover {
  transform: scale(1.03);
}

.founder-img {
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  transition: opacity 0.3s;
}

.founder-card:hover .founder-img {
  opacity: 0.3;
}

.founder-overlay {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: rgba(7, 57, 76, 0.8);
  transition: opacity 0.3s;
}

.founder-card:hover .founder-overlay {
  opacity: 1;
}

.founder-overlay a {
  font-size: 1.2rem;
  transition: color 0.2s;
}

.founder-overlay a:hover {
  color: #ff6c00;
}
 .testimonial-img-wrap {
    transform: rotate(-1.5deg);
    display: inline-block;
    position: relative;
  }

  .testimonial-img-wrap img {
    border: 5px solid #ffa500;
    border-radius: 15px;
    max-width: 270px;
  }

  .corner-tag {
    width: 30px;
    height: 30px;
    position: absolute;
    bottom: -10px;
    right: -10px;
    clip-path: polygon(0 0, 100% 0, 0 100%);
  }
  .steam-icon img {
  width: 3rem;
  height: 3rem;
  display: inline-block;
}

/*ESTILOS INDEX/*/

/* ==== nosotro ==== */

    .about-steam-section {
      padding: 60px 0 70px;
    }

    .about-title {
      font-size: 2.8rem;
      font-weight: 900;
      color: var(--color-main);
      margin-bottom: 18px;
      line-height: 1.1;
    }

    .about-title .highlight {
      color: var(--color-accent);
    }

    .about-desc {
      font-size: 1.18rem;
      color: var(--color-gray);
      margin-bottom: 32px;
      font-weight: 500;
      max-width: 100%;
    }

  
    .about-feature-item {
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 4px 32px 0 rgba(7,57,76,0.06);
      display: flex;
      align-items: center;
      padding: 20px;
      gap: 15px;
      transition: transform 0.22s, box-shadow 0.22s;
    }

    .about-feature-item:hover {
      transform: scale(1.035) translateY(-3px);
      box-shadow: 0 8px 40px 0 rgba(25,167,174,0.13);
    }

    .about-feature-icon {
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--color-sec);
      color: #fff;
      border-radius: 12px;
      font-size: 2rem;
      flex-shrink: 0;
    }

    .about-feature-item:hover .about-feature-icon {
      background: var(--color-accent);
    }

    .about-feature-label {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--color-main);
    }

    .about-hero-img {
      width: 100%;
      max-width: 420px;
      border-radius: 20px;
      box-shadow: 0 6px 48px 0 rgba(7,57,76,0.13);
    }

    .about-button {
      background: var(--color-accent);
      color: #fff;
      font-weight: 700;
      border-radius: 9px;
      font-size: 1.17rem;
      box-shadow: 0 2px 12px 0 rgba(255,108,0,0.09);
    }
/* ==== cursos ==== */
 /*CARROUSEL*/
    .carousel-wrapper {
      position: relative;
    }

    .carousel-track {
      display: flex;
      overflow-x: auto;
      scroll-behavior: smooth;
      scroll-snap-type: x mandatory;
      gap: 1rem;
      padding-bottom: 8px;
    }

    .carousel-track::-webkit-scrollbar {
      display: none;
    }

    .carousel-card {
      flex: 0 0 auto;
      scroll-snap-align: start;
      border-radius: 12px;
      overflow: hidden;
      background: #fff;
      box-shadow: 0 4px 16px rgba(0,0,0,0.06);
      transition: transform 0.3s ease;
    }

    .carousel-card:hover {
      transform: none !important;
    }

    .carousel-nav-top {
      display: flex;
      gap: 12px;
    }
  .badge-top-left {
      position: absolute;
      top: 8px;
      left: 8px;
      z-index: 2;
      padding: 6px 12px;
      font-size: 0.8rem;
      border-radius: 8px;
    }
.btn-category {
  border-color:  var(--color-morado) !important;
  color: var(--color-morado) !important;
}
.btn-category:hover {
  background-color: var(--color-morado) !important; /* Color verde personalizado */
  border-color: var(--color-morado) !important;
  color: #fff !important;
}
.btn-category.active {
    background-color: #62b334 !important; /* Color verde personalizado */
  border-color: #62b334 !important;
  color: #fff !important;
}
    .card-img-container {
      position: relative;
    }

    .badge-robotica { background-color: var(--color-celeste); }
    .badge-arte     { background-color: var(--color-morado); }
    .badge-ciencia  { background-color: var(--color-verde); }
    .badge-programa { background-color: var(--color-amarillo); }
.titulo_curso{
  color: var(--color-morado); 
}

.mb-2{
  color: var(--color-celeste); 
}
.btn-info-custom{
  background-color: var(--color-naranja) !important;
  color: #fff !important;
}
.btn-enroll{
  background-color: var(--color-verde) !important;
  color: #fff !important;
}
.mas{
  background-color:  var(--color-main) !important;
   color: #fff !important; 
   font-weight: 600; 
   border-radius: 12px; 
   font-size: 1.25rem; 
   box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}


.icon{
  color:  var(--color-sec) !important;
}

    .card-img-top {
      height: 160px;
      object-fit: cover;
    }

    .badge-icon {
      font-size: 0.85rem;
      margin-right: 4px;
    }

    .card-footer {
      background: #f8f9fa;
    }

    /* Botones personalizados */
    .btn-info-custom {
      border: 1px solid var(--color-main);
      color: var(--color-main);
      background-color: transparent;
      transition: all 0.3s ease;
      font-weight: 500;
    }

    .btn-info-custom i {
      margin-right: 4px;
    }

    .btn-info-custom:hover {
      background-color: var(--color-main);
      color: var(--color-blanco);
    }

    .btn-enroll {
      background-color: var(--color-accent);
      color: var(--color-blanco);
      font-weight: 600;
      transition: all 0.3s ease;
      box-shadow: 0 2px 8px rgba(0,0,0,0.15);
      border: none;
    }

    .btn-enroll i {
      margin-right: 5px;
    }

    .btn-enroll:hover {
      background-color: #e65a00;
      transform: translateY(-2px);
    }
.no-horizontal-scroll {
  overflow-x: hidden !important;
}



/*QUE ES POR QUE Y TESTIMONIOS*/
  
    .bg-main2 { 
       background-image: url('../img/porque.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Opcional: efecto parallax */
  position: relative;
  z-index: 1;
  padding: 100px 0;
  overflow: hidden;
     }
    
    .btn-primary-custom {
      background-color: var(--color-accent);
      border-color: var(--color-accent);
      color: var(--color-blanco);
    }
    .btn-outline-primary-custom {
      border-color: var(--color-main);
      color: var(--color-main);
    }

    .steam-card, .section-steam h2, .section-steam p, .animate-on-scroll {
      visibility: hidden;
    }
    .animated { visibility: visible !important; }
    .steam-card {
      background: #f8f9fa;
      border: none;
      border-radius: 12px;
      padding: 20px;
      transition: all 0.3s ease;
    }
    .steam-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    }

    .img-rounded-shadow {
      border-radius: 20px;
      border: 4px solid #fff;
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }
  .btn-cursos{
    background-color: var(--color-morado) !important;
    color: #fff !important;
  }
  .btn-cursos:hover{
    background-color: var(--color-verde) !important;
    color: #fff !important;
  }
    
     .news-card {
    border-radius: 12px;
    background-color: transparent;
    transition: all 0.3s ease;
    padding-bottom: 30px;
  }

  .news-img-wrapper {
    border-radius: 12px;
    overflow: hidden;
    height: 220px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  }

  .news-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease;
  }

  .date-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 50px;
    height: 50px;
    border-radius: 6px;
    line-height: 1.2;
    padding: 5px;
    font-size: 14px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  }

  .news-content {
    background: #fff;
    max-width: 85%;
    margin-top: -40px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: background-color 0.3s ease, color 0.3s ease;
    position: relative;
    z-index: 2;
  }

  .news-card:hover .news-img {
    opacity: 0.3;
  }

  .news-card:hover .news-content {
    background-color: var(--color-verde);
    color: var(--color-blanco);
  }

  .news-card:hover .news-content p {
    color: var(--color-blanco);
  }
    /* ==== Responsive ==== */
.dato{
 background-color: var(--color-morado) !important;
}
 .info-badge {
      display: inline-flex;
      align-items: center;
      padding: 0.4rem 0.8rem;
      border-radius: 20px;
      font-weight: 500;
      font-size: 0.85rem;
      background-color: var(--color-gray);
      color: white;
      margin-right: 0.5rem;
      margin-bottom: 0.5rem;
    }

    .info-badge i {
      margin-right: 0.4rem;
    }

    .btn-accent {
      background-color: var(--color-accent);
      color: var(--color-blanco);
      border-radius: 6px;
      padding: 0.5rem 1.5rem;
      border: none;
      transition: all 0.3s ease;
    }

    .btn-accent:hover {
      background-color: var(--color-naranja);
      color: white;
    }

    .img-rounded {
      border-radius: 1rem;
      box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1);
    }

    .form-section {
      background: #f9f9f9;
      padding: 3rem 0;
    }

    .form-control:focus {
      border-color: var(--color-accent);
      box-shadow: 0 0 0 0.2rem rgba(255, 108, 0, 0.25);
    }
        .btn-accent {
      background-color: var(--color-naranja) !important;
      color: white !important;
    }
    .btn-accent:hover {
      color: #000 !important;
    }
    
    .video-section {
      padding: 80px 0;
      color: var(--color-white);
    }

    .video-section h2 {
      text-align: center;
      font-size: 2.5rem;
      font-weight: bold;
      margin-bottom: 50px;
      color: var(--color-white);
    }

    .video-grid {
      display: grid;
      grid-template-columns: 2fr 1fr;
      grid-gap: 30px;
    }

    .video-1 {
      grid-row: span 2;
      position: relative;
      padding-bottom: 56.25%;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
    }

    .video-2,
    .video-3 {
      position: relative;
      padding-bottom: 48%;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

    .video-1 iframe,
    .video-2 iframe,
    .video-3 iframe {
      position: absolute;
      width: 100%;
      height: 100%;
      border: 0;
      top: 0;
      left: 0;
    }
    .calendario{
      color: var(--color-celeste) !important;
    }
    .text-info1{
      color: var(--color-naranja) !important;
    }
    .incluye-icon{
      color: var(--color-amarillo) !important;
    }
    .certicficado-icon{
      color: var(--color-morado) !important;
    }
    .plataforma-icon{
      color: var(--color-naranja) !important;
    }

/* ==== Noticias ==== */
.news-card {
    background: #fff;
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-img-wrapper {
    position: relative;
    overflow: hidden;
}

.news-img {
    height: 200px;
    object-fit: cover;
}

.date-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--color-accent);
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 0.9rem;
}

.date-badge small {
    font-size: 0.7rem;
    text-transform: uppercase;
}

.news-content {
    background: #fff;
}

.news-content h5 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.news-content p {
    font-size: 0.9rem;
    line-height: 1.5;
}
  
  .hero-section {
  background-image: url('../img/fondo-1.png'); /* Cambia por tu ruta */
  background-size: cover;        /* Hace que la imagen cubra toda la sección */
  background-position: center;   /* Centra la imagen */
  background-repeat: no-repeat;  /* Evita que la imagen se repita */
  min-height: 70vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 80px 0;
}
    .hero-text h1 {
      font-size: 3rem;
      font-weight: 800;
      color: var(--color-blanco);
    }

    .hero-text span {
      color: var(--color-accent);
    }

    .hero-text p {
      font-size: 1.25rem;
      color: var(--color-gray);
      margin-top: 20px;
    }

    .hero-text .btn {
      margin-top: 30px;
      padding: 14px 32px;
      font-size: 1.1rem;
      background: var(--color-naranja);
      color: white;
      border: none;
      border-radius: 50px;
      transition: 0.3s ease;
    }

    .hero-text .btn:hover {
     color: #000;
    }

    .hero-img {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .circle-img {
      border-radius: 50%;
      border: 6px solid white;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
      object-fit: cover;
    }

    .main-circle {
      width: 400px;
      height: 400px;
      z-index: 2;
      position: relative;
      animation: floatMain 6s ease-in-out infinite;
    }

    .bubble {
      position: absolute;
      width: 180px;
      height: 180px;
      border-radius: 50%;
      z-index: 1;
    }

    .bubble-1 {
      top: -30px;
      left: -30px;
      background-color: var(--color-amarillo);
      animation: float1 5s ease-in-out infinite;
    }

    .bubble-2 {
      bottom: -30px;
      right: -30px;
      background-color: var(--color-celeste);
      animation: float2 7s ease-in-out infinite;
    }

    @keyframes floatMain {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-12px); }
    }

    @keyframes float1 {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-8px); }
    }

    @keyframes float2 {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-16px); }
    }

    .swiper-slide {
      opacity: 0 !important;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 0.6s ease;
      position: absolute;
      width: 100%;
      top: 0;
      left: 0;
    }

    .swiper-slide-active {
      opacity: 1 !important;
      visibility: visible;
      pointer-events: auto;
      position: relative;
      z-index: 2;
    }

    .swiper-button-prev,
    .swiper-button-next {
      color: var(--color-accent);
    }

    /* Animación sincronizada */
    .slide-content {
      opacity: 0;
      transform: translateY(20px);
      transition: all 0.8s ease;
    }

    .slide-content.active {
      opacity: 1;
      transform: translateY(0);
    }
.logo-colaborador {
  width: auto;
  max-height: 10em;
  max-width: 100%;
  object-fit: contain;
}
 .text_justificado {
    text-align: justify !important;
 }

    


   
    
   


 

    .animate__animated {
      --animate-duration: 1.15s;
       .courses-section  { padding: 19px 0; }
      .courses-title    { font-size: 1.09rem; }
      .course-header    { padding: 7px 7px 4px 10px; }
      .course-actions   { padding: 8px 7px 8px 7px; }
      .meta-chip        { font-size: 0.87rem; }
      .course-title     { font-size: 0.93rem; }
      .swiper-nav-wrap  { top: -18px; }
      .course-img-top   { height: 150px; }
}
 
    /* Responsive */
 
   
   
    

  
    

/*ESTILOS CONTACTOS*/

    .icon-circle {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .rounded-4 {
      border-radius: 1rem !important;
    }

    .text-accent {
      color: #f39c12;
    }

    .form-control:focus {
      box-shadow: none;
      border-color: #0d6efd;
    }
    .direccion{
        background-color:var(--color-verde);
    }
    .contactos{
        background-color:var(--color-celeste);
    }
    .horarios{
        background-color:var(--color-morado);
    }

    .map-container {
      border-radius: 1rem;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      min-height: 300px;
    }

    .map-container iframe {
      width: 100%;
      height: 100%;
      border: 0;
      min-height: 300px;
    }

    /* Animación más rápida pero fluida */
    .animate__animated {
      animation-duration: 0.9s !important;
    }
  
    

    
.nombre_estudiante{
    color: var(--color-main) !important;
}
    footer.footer-main {
      background: var(--color-footer-bg);
      color: var(--color-footer-text);
      padding: 60px 0 20px;
    }

    .footer-main h5 {
      color: white;
      font-size: 1.2rem;
      font-weight: 700;
      text-transform: uppercase;
      margin-bottom: 1rem;
    }

    .footer-section {
      margin-bottom: 2rem;
    }

    .footer-link-list a {
      color: var(--color-footer-text);
      display: block;
      margin-bottom: 0.5rem;
      text-decoration: none;
      transition: 0.3s;
    }

    .footer-link-list a:hover {
      color: var(--color-accent);
      transform: translateX(4px);
    }

    .footer-social-link {
      font-size: 1.5rem;
      margin-left: 15px;
      color: var(--color-footer-text);
      transition: 0.3s;
    }

    .footer-social-link:hover {
      color: var(--color-accent);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 15px;
      font-size: 0.9rem;
      text-align: center;
    }
  

/* === Responsive (max-width, DESC) === */
@media (max-width: 1200px) {



    .about-title { font-size: 2.1rem;}
      .about-desc { font-size: 1.05rem;}
      .about-hero-img { max-width: 340px;}
}@media (max-width: 1150px) {
      .courses-container { max-width: 99vw; padding: 0 1vw; }
    }@media (max-width: 991.98px) {
      :root { --topbar-padding: 12px; }
      .top-bar-inner { min-height: 36px; }
      .navbar-brand .logo-center { max-height: 45px; }
      .navbar-nav .nav-link { margin-right: 0.5rem; font-size: 1.01rem; }
      .navbar-nav .nav-link.inicio { font-size: 1.11rem !important; }
      .bar-color { height: 5px; }
      .virtual-btn { font-size: 0.98em; padding: 0.27em 0.6em;}
      .top-contact { gap: 0.9rem; }
      .virtual-btn { margin-left: 1rem;}
        .navbar-nav .nav-link:after,
  .navbar-nav .nav-link:hover:after,
  .navbar-nav .nav-link.active:after {
    display: none !important;
  }
  @media (max-width: 991.98px) {
  .navbar-custom {
    top: 55px; /* o ajusta a lo que veas justo */
  }
}

  .navbar-collapse {
    margin-top: 40px; /* Aumenta según la altura del topbar */
    background-color: #fff;
    position: relative;
    z-index: 1030;
  }
   .iconos-redes {
      display: flex;
      flex-direction: row;
      gap: 15px;               /* Espacio entre íconos */
      justify-content: center; /* Centrado horizontal (opcional) */
         margin-top: 20px;
        
    }

    .iconos-redes i {
      font-size: 1.8rem;       /* Aumenta el tamaño del ícono */
       color:  #04a2df; 
    }
    .footer-main h5 { font-size: 1.08rem;}
  .footer-top-btn { width: 48px; height: 48px;}
  .footer-arrow-icon { font-size: 1.4rem;}
  .footer-section {padding: 1em 0.7em;}
    .topbar .social-icons {
        display: none;
      }

      .navbar-nav .nav-social {
        display: flex;
        gap: 0.5rem;
        margin-top: 0.5rem;
      }

      .navbar .social-icons-fixed {
        display: none !important;
      }
    }@media (max-width: 991.98px) {
      .courses-title    { font-size: 1.38rem; }
      .course-card      { min-height: 170px; }
      .course-header    { padding: 12px 10px 7px 13px; }
      .course-actions   { padding: 11px 12px 11px 12px; }
      .course-title     { font-size: 0.99rem; }
      .swiper-nav-wrap  { top: 1px; }
      .swiper-button-next, .swiper-button-prev { width: 33px; height: 33px; }
      .course-img-top   { height: 90px; }
      .video-grid {
        display: flex;
        flex-direction: column;
      }

      .video-1, .video-2, .video-3 {
        padding-bottom: 56.25%;
      }
    }@media (max-width: 768px) {
      .hero-section {
        text-align: center;
        padding: 60px 0;
      }

      .hero-img {
        margin-top: 40px;
      }

      .bubble {
        display: none;
      }

      .main-circle {
        width: 280px;
        height: 280px;
      }
      .swiper-button-prev, .swiper-button-next{
        display: none !important;
      }
        .logo-colaborador {
    max-height: 130px;
    max-width: 90%;
  }

  .row-cols-md-3 > .col {
    padding: 8px 8px 12px;
  }
  .btn-sm {
      margin-left: 0rem !important; 
          width: 100% !important;
          background-color: red;
  }
  .btn-lg{
       margin-bottom: 30px;
  }
    }@media (max-width: 767.98px) {
  p{
    text-align: justify;
  }
 

      .medida{
    
      padding-left: 3vw !important;
    padding-right: 3vw !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }

  .footer-main { font-size: 0.98rem;}
  .footer-top-btn { width: 38px; height: 38px;}
  .footer-arrow-icon { font-size: 1.1rem;}
  .footer-social-link { font-size: 1.25rem;}
  .footer-section { margin-bottom: 1.1em;}
   .logo-img {
    height: 50px;
    margin-top: 12px; /* ajusta según necesidad */
  }
  .img-car{
    
   width: 30%;
   height: auto ;
  }
}@media (max-width: 767.98px) {
      .carousel-card {
        width: 100%;
      }
    }@media (max-width: 700px) {
  

   .about-steam-section { padding-bottom: 26px;}
      .about-title { font-size: 1.28rem;}
      .about-desc { font-size: 0.93rem;}
      .about-feature-label { font-size: 0.98rem;}
      .about-feature-icon { font-size: 1.35rem; width: 38px; height: 38px;}
      .about-hero-img { max-width: 90vw; margin-bottom: 24px;}
    }@media (max-width: 575.98px) {
      .top-bar-inner { padding: 0 3px; }
      .top-bar { font-size: 0.93rem; }
      .navbar-nav .nav-link { font-size: 0.94rem;}
      .navbar-nav .nav-link.inicio { font-size: 1.02rem !important;}
      .bar-color { height: 4px;}
      .top-contact { gap: 0.3rem; }
      .virtual-btn { margin-left: 0.3rem;}
    }@media (max-width: 575.98px) {
      .newsletter-form {
        flex-direction: column;
      }
    }

/* === Other media queries (original order) === */
@media (min-width: 992px) {
      .navbar-nav .nav-social {
        display: none !important;
      }
    }@media (min-width: 576px) {
      .newsletter-form {
        display: flex;
        justify-content: center;
        gap: 10px;
      }

      .newsletter-form input[type="email"] {
        margin-bottom: 0;
      }
    }
    /* Estilo del botón */
.news-card .btn-leer{
  /* Si quieres que SIEMPRE sea más ancho, deja display:block y un max-width por defecto */
  /* display: block; max-width: 240px;  optional */
  white-space: nowrap;           /* evita cortes raros de palabra */
}

/* Tablet: 768px–991.98px (Bootstrap md) */
@media (min-width: 768px) and (max-width: 991.98px){
  .news-card .btn-leer{
    display: block;
    width: 100%;                 /* ocupa todo el ancho disponible del contenido */
    max-width: 280px;            /* o 300px si lo quieres más ancho */
  }
}

    /* Asegura que los popovers no queden recortados */
    .section-ux {
      overflow: visible;
    }
    /* Base */
.founder-overlay h5 {
  font-size: 1.1rem;
}

.founder-overlay p {
  font-size: 0.9rem;
  line-height: 1.4;
  text-align: justify;
}

/* Ajustes solo para tablet */
@media (min-width: 768px) and (max-width: 1199.98px) {
  .personas-destacadas .founder-card {
    max-width: 70%;
    margin: 0 auto;
    min-height: 400px;
  }
  .personas-destacadas .founder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .personas-destacadas .founder-overlay h5 {
    font-size: 1.25rem; /* más grande */
  }
  .personas-destacadas .founder-overlay p {
    font-size: 1rem;     /* más grande */
    line-height: 1.6;
  }
}

        @media (max-width: 768px) {

.founder-card {
    height: 400px;
  }
  }
