/*=Fuente=*/
@font-face {
  font-family: 'Mulish'; 
  src: url('../fonts/Mulish-Regular.ttf')  ; 
}
@font-face {
  font-family: 'MulishBold'; 
  src: url('../fonts/Mulish-Bold.ttf')  ; 
}
@font-face {
  font-family: 'MulishExtraBold'; 
  src: url('../fonts/Mulish-ExtraBold.ttf')  ; 
}
@font-face {
  font-family: 'MulishMedium'; 
  src: url('../fonts/Mulish-Medium.ttf')  ; 
}
@font-face {
  font-family: 'MulishLight'; 
  src: url('../fonts/Mulish-Light.ttf')  ; 
}

@font-face {
  font-family: 'MulishBlack'; 
  src: url('../fonts/Mulish-Black.ttf')  ; 
}

/* General */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


/* Para que el contenido debajo no se esconda detrás del navbar */
body {
  padding-top: 70px; /* Ajusta según la altura de tu navbar */
}


/*#== NAVBAR ==#*/
.navbar {
  position: fixed;        /* <-- Esto lo hace fijo */
  top: 0;
  left: 0;
  width: 100%;            /* <-- Para que ocupe todo el ancho */
  z-index: 999;
  background: #ffffff;
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
}

.navbar .container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
    margin: 0;
}

.navbar a {
  font-family: 'Mulish', sans-serif;
  text-decoration: none;
  color: #002b64;
  font-size: 20px;
}

.imgWhats {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.imgWhats img{
  height:20px;
}

.btn_acceso_img{
    height:35px;
}


/* Estilos del botón hamburguesa */
.hamburger {
  display: inline-block;
  cursor: pointer;
  width: 30px;
  height: 25px;
  position: relative;
  z-index: 999;
  border: none;
  background: transparent;
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: #002E6D;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: black;
  margin: 5px 0;
  transition: 0.4s;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

button:focus {
    outline: none !important;
    }

/*== Hover Linea Amarilla ==*/
#nav-menu > ul > li > a {
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
  color: #002a5c;
  text-decoration: none;
}

#nav-menu > ul > li > a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #F2C943;
  transition: width 0.3s ease;
}

#nav-menu > ul > li > a:hover::after,
#nav-menu > ul > li.open > a::after {
  width: 100%;
}

/**== SUBMENUs ==**/
#nav-menu > ul > li.has-submenu {
  position: relative;
  display: inline-block;
}

.has-submenu {
  position: relative;
}

.has-submenu .submenu {
  display: none;
  position: absolute;
  background: #e6f0ff; /* azul claro */
  padding: 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-top: 18px;
  z-index: 999;
  width: 200px; /* ANCHO EXACTO como en el diseño */
  border-radius: 0px;
  overflow: hidden;
  left: 0; /* Alineado al borde izquierdo del li */
}

.has-submenu.open .submenu {
  display: block;
}

.submenu li a {
  display: block;
  padding: 12px 16px;
  color: #002a5c;
  background-color: #E7F0FD; /* azul claro */
  transition: background 0.3s ease;
  text-decoration: none;
  font-weight: 500;
}

.submenu li a:hover,
.submenu li a:focus {
  background-color: #AACBFA; /* azul más fuerte */
  color: #002a5c;
}

.linetop{
  border-top: 1px solid #002E6D;
}


/* Mostrar submenús al hacer hover solo en pantallas grandes */
@media (min-width: 500px) {
 .submenu {
    display: none;
    position: absolute;
    background-color: white;
    padding: 10px;
    top: 100%; /* Debajo del menú padre */
    left: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }

  .has-submenu {
    position: relative;
  }

  /* Muestra el submenu si tiene la clase 'open' */
  .has-submenu.open .submenu {
    display: block;
  }
}


/*** Responsive ***/
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .navbar nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: white;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }

  .navbar nav.active {
    display: flex;
  }

  .navbar ul {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
  .btn_acceso_img{
    height:30px;
  }
  
  .has-submenu .submenu {
  margin-top: 0;
  top: 0;
    left: 32%;
}

/** Nuevooo **/
.navbar nav {
    display: none;
    flex-direction: column;
    width: 100%;
  }
  
  .navbar nav.active {
    display: flex;
  }

  .has-submenu .submenu {
    display: none;
  }

  .has-submenu.open .submenu {
    display: block;
  }

  
}

@media (max-width: 499px) {
  .btn_acceso_img{
    height:18px;
  }
    .has-submenu .submenu {
  margin-top: 0;
  top: 0;
    left: 38%;
}
  
}




/*#== FOOTER #==*/
.footer {
    font-family: 'MulishMedium', sans-serif;
    background-color: #002f6c;
    color: white;
    text-align: center;
    padding: 20px 0;
    position: relative;
}

.footer-content {
    position: relative;
    padding-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin: 0 5%;
}

.footer-top {
    display: flex;
    width: 100%;
	  justify-content: space-between;
}

.logo {
    width: 220px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons img {
    width: 40px;
}

.footer nav {
    width: 100%;
    margin-top: 10px;
    font-size: clamp(16px, 3vw, 22px);
}

.footer nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer nav ul li {
    display: inline;
}

.footer nav ul li a {
    color: white;
    text-decoration: none;
}

.footer-bottom {
    font-family: 'Mulish', sans-serif;
    font-size: clamp(14px, 3vw, 20px);
   display: flex;
    justify-content: space-between; /* Distribuye los elementos en los extremos */
    align-items: flex-start; /* Alinea verticalmente */
    width: 100%; /* Ocupar todo el ancho disponible */
    max-width: 1200px; /* Opcional: Limitar el ancho máximo */
    margin: 10px auto; /* Centrar el contenedor */
    
}

.site-above-footer-wrap[data-section="section-above-footer-builder"] {
    background-color: #ffffff;
}

.site-above-footer-wrap[data-section="section-above-footer-builder"] .ast-builder-grid-row {
    padding-left: 0;
    padding-right: 0;
}


/*#== CARRUSEL1 ==#*/
/* Estilos base del carrusel */
.fullwidth-carousel {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin: 0 auto;
}

.fullwidth-slide {
  display: none;
  width: 100%;
  transition: transform 0.5s ease;
}

.fullwidth-slide.active {
  display: block;
}

.slide-content {
  width: 100%;
}

.slide-content img {
  width: 100%;
  height: auto;
  min-height: 200px; /* Altura mínima para pantallas pequeñas */
  object-fit: cover;
  object-position: center;
}

/* Controles */
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 2;
    outline: unset !important;
}

.carousel-control img {
  width: 30px;
  height: 50px;
}

.prev-control {
  left: 15px;
}

.next-control {
  right: 15px;
}

/* Indicadores */
.carousel-indicators {
  position: absolute;
  bottom: 20px;
  display: flex;
  gap: 8px;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
}

.indicator.active {
  background: white;
}



/*#== CARRUSEL2 ==#*/
.text-carousel {
  position: relative;
  width: 100%;
  height: 80vh;
  background-image: url('https://academiamentat.com/resources/imagenes/landingpage/backCarrusel2.jpg');
  color: white;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  box-sizing: border-box;
}

.text-carousel-slide {
  display: none;
  width: 80%;
  max-width: 1200px;
  animation: fade 0.5s ease-in-out;
}

.text-carousel-slide.active {
  display: block;
}

.text-carousel-content {
  text-align: left;
}

.text-carousel-slide h2 {
  font-family: 'MulishExtraBold', sans-serif;
  font-size: 48px;
   font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 20px;
}

.text-carousel-slide p {
  font-family: 'Mulish', sans-serif;
  font-size: clamp(18px, 3vw, 24px);
  line-height: 1.6;
}

/* Botones con imágenes */
.text-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 2;
}

.text-carousel-btn:focus {
  outline: none;
}

.text-carousel-btn img {
  width: 30px;
  height: 50px;
}

.text-carousel-btn.prev {
  left: 20px;
}

.text-carousel-btn.next {
  right: 20px;
}

/* Dots */
.text-carousel-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}

.text-carousel-dots .dot {
  height: 12px;
  width: 12px;
  margin: 0 6px;
  background-color: #ddd;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.text-carousel-dots .dot.active {
  background-color: white;
}

/* Fade animation */
@keyframes fade {
  from { opacity: 0.3; }
  to { opacity: 1; }
}




/*#== CARRUSEL1 indicadores  ==#*/
.carousel-indicators li {
  width: 12px;
  height: 12px;
  background-color: #ccc;
  border-radius: 50%;
  margin: 0 6px;
  opacity: 1;
  transition: background-color 0.3s;
}

.carousel-indicators .active {
  background-color: #fff; /* o el color que prefieras */
}


/*== MEDIA QUERY CARRUSELES 1-2 ==*/
@media (max-width: 768px) {
  .slide-content img {
    min-height: 180px;
  }
  
  .carousel-control {
    width: 30px;
    height: 50px;
  }
  
  .carousel-control img {
    width: 20px;
    height: 40px;
  }
  
  .text-carousel-btn img {
     width: 20px;
    height: 40px;
  }
  
}

@media (max-width: 600px) {
.text-carousel {
  height: 70vh;
}
}

@media (max-width: 499px) {
.text-carousel {
  height: 65vh;
}

.text-carousel-dots .dot {
  width: 10px;
  height: 10px;
}

.indicator {
width: 10px;
  height: 10px;
}

.slide-content img {
    min-height: 150px;
  }
  
  .carousel-control img {
    width: 10px;
    height: 20px;
  }
  
  .text-carousel-btn img {
     width: 10px;
    height: 20px;
  }

}

@media (max-width: 500px) {
  .slide-content img {
    height: 450px; /* Más alto que el mínimo */
    object-fit: cover;
    transform: scale(1); /* Zoom para mejorar legibilidad */
    transition: transform 0.3s ease, object-position 0.3s ease;
  }

  /* Ajustes individuales por slide */
  .fullwidth-slide:nth-child(1) img {
    object-position: right center;
      height: 400px;
  }

  .fullwidth-slide:nth-child(2) img {
        object-position: right center;
        height: 330px;
  }

  .fullwidth-slide:nth-child(3) img {
      object-position: right center;
      height: 400px;
  }

  .fullwidth-slide:nth-child(4) img {
        object-position: left center;
        height: 330px;
  }
}


/*#-- BORDE Blanco --#*/
.bordeBlanco{
    height: 32px;
    position: relative;
    top: -28px;
    margin-bottom: -20px;
    background-image: url(https://academiamentat.com/resources/imagenes/landingpage/bordeBlanco.png);
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
}

@media (min-width: 1367px) { 
.bordeBlanco{
    height: 42px;
    position: relative;
    top: -38px;
    margin-bottom: -20px;
    background-image: url(https://academiamentat.com/resources/imagenes/landingpage/bordeBlanco.png);
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
}
}

/*#-- BORDE Blanco --#*/
.bordeAzul{
    height: 32px;
    position: relative;
    top: -18px;
    margin-bottom: -20px;
    background-image: url(https://academiamentat.com/resources/imagenes/landingpage/bordeAzul.png);
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
}

@media (min-width: 1367px) { 
.bordeAzul{
    height: 42px;
    position: relative;
    top: -38px;
    margin-bottom: -40px;
    background-image: url(https://academiamentat.com/resources/imagenes/landingpage/bordeAzul.png);
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
}
}
/*#== SECCION METODOLOGIA ==#*/
.metodo {
margin: 5% 10% 0 10%;
color: #002E6D;
}

.tituloCupre {
    display: flex;
    justify-content: center;
    padding: 20px 0; /* Espacio exterior */
}

.contenedor-fondo-amarillo {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 15px;
}

/* Fondo amarillo unificado (una sola imagen para ambos elementos) */
.contenedor-fondo-amarillo {
    background-image: url(https://academiamentat.com/resources/imagenes/landingpage/imgAdorno.png);
    background-size: 90%;
    background-repeat: no-repeat;
    background-position: top;
}

.highlight-title {
    font-family: 'MulishExtraBold', sans-serif;
    font-size: clamp(26px, 5vw, 42px);
    padding: 0 15px; /* Espacio interno */
    padding-top: 10px;
}

.main-title img {
    height: 100%;
    max-height: 80px;
    width: 100%;
    display: block;
}

    .section-text {
      font-family: 'Mulish', sans-serif;
      margin-top: 15px;
      font-size: clamp(18px, 3vw, 24px);
    }

/*=== ACORDEON ===*/
    .accordion {
      margin-top: 30px;
      color:#002E6D;
    }

/* Contenedor principal del acordeón (accordion-item) */
.accordion-item {
  background: #F5F7FA;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Header del acordeón (estructura de columnas) */
.accordion-header {
  font-family: 'Mulish', sans-serif;
  padding: 15px 20px;
  cursor: pointer;
  position: relative;
}

.header-grid {
  display: grid;
  grid-template-columns: auto 1fr; /* Columna imagen | Columna texto */
  gap: 15px;
  align-items: center;
}

/* Estilos para la columna izquierda (imagen) */
.step-main-icon {
  width: 125px; /* Ajusta según tu imagen */
  height: 90px;
}


/* Estilos para la columna derecha (texto) */
.step-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-right: 15px;
}

.step-number-line {
  display: flex;
  align-items: center;
  gap: 8px;
}

.step-text {
  font-family: 'MulishExtraBold', sans-serif;
  font-size: clamp(24px, 4vw, 30px);
}

.step-number {
  width: 40px;
  height: 40px;
}

.step-title {
  font-family: 'MulishMedium', sans-serif;
  font-size: clamp(22px, 4vw, 30px);
}

/* Contenido desplegable (accordion-content) */
.accordion-content {
  font-family: 'Mulish', sans-serif;
  font-size: clamp(18px, 3vw, 24px);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 20px;
  background: white;
}

.accordion-content p {
  line-height: 1.5;
      margin: 15px 20px;
      margin-left: 120px;
}

/* Estado activo del acordeón */
.accordion-item.active .accordion-content {
  max-height: 100%;
  padding: 0 20px 15px;
}

/* Flecha personalizada (usando background-image) */
.accordion-header::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 16px;
  background-image: url('https://academiamentat.com/resources/imagenes/landingpage/flechaAba.png');
  background-repeat: no-repeat;
  background-size: contain;
  transition: all 0.3s;
}

.accordion-item.open .accordion-header::after {
  background-image: url('https://academiamentat.com/resources/imagenes/landingpage/flechaArr.png');
}


@media (max-width: 499px) { 
.accordion-content p {
      margin-left: 20px;
}
.step-content {
  margin-right: 24px;
}

.highlight-title { 
    font-size: clamp(20px, 5vw, 42px);
}

.contenedor-fondo-amarillo {
    background-size: 100%;
}

.header-grid {
  align-items: start;
}
 
.step-main-icon {
    width: 100px;
    height: 70px;
}

}

.seccionAfterStep {
margin: 0 10% 0 2%;
color: #002E6D;
}

.afterPasos {
    display: flex;
    gap: 20px;
}

.imgGirl {
    position: relative;
    top: 80px;
    z-index: 2;
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
}

.imgGirl img {
    width: -webkit-fill-available;
    max-width: -webkit-fill-available;
    height: auto;
    max-height: 600px;
    object-fit: contain;
}

.textAfter {
    padding-bottom: 50px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
}



@media (max-width: 900px) { 
.imgGirl img {
    max-height: 400px;
}

.imgGirl {
    top: 30px;
}

}

@media (max-width: 700px) { 
.seccionAfterStep {
    margin: 0 10% 0 10%;
}
.afterPasos {
    display: flex;
    gap: 0;
    flex-direction: column-reverse;
}
.imgGirl {
        top: 20px;
}
.imgGirl img {
    max-height: 300px;
}
.imgGirl {
    top: 20px;
}
.textAfter {
    padding-bottom: 0;
}

}



/*== Estilos TUS PROFESORES ==*/
.banner {
  position: relative;
  width: 100%;
  height: 90vh;
  background: #EBEBEB;
    color: #002E6D;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 0 10% 4% 10%;
    box-sizing: border-box;
    background-image: url(https://academiamentat.com/resources/imagenes/landingpage/imgProfesores.jpg);
    background-size: cover;
    background-position: top 0 right 40%;
    background-repeat: no-repeat;
}

.banner-slide {
  animation: fade 0.5s ease-in-out;
}
 
.banner-content {
  text-align: left;
}

.banner-title{
  font-family: 'MulishExtraBold', sans-serif;
  font-size: clamp(34px, 5vw, 62px);
}

.banner-text{
  font-family: 'Mulish', sans-serif;
  font-size: clamp(18px, 3vw, 24px);
  width: 65%;
}

@media (max-width: 770px) {
.banner {
  height: 80vh;
  background-position: top 0 right 35%;
}

.banner-text{
  width: 65%;
}
}

/*== SELECTOR Acordeon ==*/

.profesores {
margin: 5% 10% 10% 10%;
color: #002E6D;
}

.tab-align {
  display:flex;
      justify-content: center;
}

.tab-selector {
    display: inline-flex;
    align-items: center;
    border: 2px solid #002F6C;
    border-radius: 10px;
    overflow: hidden;
    padding: 20px 25px;
    gap: 15px;
    font-family: 'MulishBold', sans-serif;
    user-select: none;
    justify-content: center;
  }

  .tab-option {
    cursor: pointer;
    transition: color 0.3s;
    color: #B4B4B4; /* Inactivo por defecto */
    font-size: clamp(18px, 4vw, 26px);
  }

  .tab-option.active {
    color: #002E6D;
  }

  .separator {
    width: 2px;
    height: 34px;
    background-color: #00AEEF;
  }

@media (max-width: 500px) {
.profesores {
margin: 5% 5% 10% 5%;
}

.tab-selector {
padding: 20px 20px;
}

}

/**== FOTO y TEXTOS ACORDEON ==**/

.header-grid {
  display: grid;
  grid-template-columns: auto 1fr; /* Columna imagen | Columna texto */
  gap: 15px;
  align-items: center;
}

/* Estilos para la columna izquierda (imagen) */
.teacher-main-icon {
  width: 125px;
  height: 125px; /* Igual que el width para que sea un círculo perfecto */
  object-fit: cover;
  border-radius: 50%; /* Esto la hace circular */
  border: 2px solid #002E6D; /* Borde azul */
}


/* Estilos para la columna derecha (texto) */
.teacher-content {
  display: flex;
  flex-direction: column;
  margin-right: 15px;
}

.teacher-number-line {
  display: flex;
  align-items: center;
  gap: 8px;
}

.teacher-grade {
  font-family: 'MulishBold', sans-serif;
  font-size: clamp(20px, 4vw, 26px);
}

.teacher-name {
  font-family: 'MulishBold', sans-serif;
  font-size: clamp(24px, 4vw, 30px);
}

.teacher-clase {
  font-family: 'MulishLight', sans-serif;
  font-size: clamp(18px, 4vw, 24px);
}


/*== Estilos CURSO CERTIFICADOS ==*/
.bannerCert {
position: relative;
  width: 100%;
  height: 90vh;
  background-color: #ebebeb;
  color: #ffffff;
  padding: 0 4% 4% 4%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  background-image: url(https://academiamentat.com/resources/imagenes/landingpage/cursoExcel.jpg);
    background-size: cover;
    background-position: top right;
    background-repeat: no-repeat;
}

.bannerCert2 {
position: relative;
  width: 100%;
  height: 55vh;
  background-color: #1B5F3A;
  color: #ffffff;
  padding: 0 4% 4% 4%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.bannerCert-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/*== Estilos CURSO CUPREBACH ==*/

.bannerCupre {
position: relative;
  width: 100%;
  height: 90vh;
  background-color: #ebebeb;
  color: #ffffff;
  padding: 0 4% 4% 4%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  background-image: url(https://academiamentat.com/resources/imagenes/landingpage/cursoCupre.jpg);
    background-size: cover;
    background-position: top right;
    background-repeat: no-repeat;
}

.bannerCupre2 {
position: relative;
  width: 100%;
  height: 55vh;
  background-color: #002E6D;
  color: #ffffff;
  padding: 0 4% 4% 4%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.bannerCupre-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Fila 1: título + botón */
.header-row {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 35px;
}

.header-row h1 {
  font-family: 'MulishExtraBold', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1;
  margin-bottom: 0;
}

.header-row h1 strong {
  font-size: clamp(54px, 6vw, 100px);
}

.btn-inscribete {
  font-family: 'MulishExtraBold', sans-serif;
  font-size: clamp(18px, 2vw, 22px);
  padding: 5px 18px;
  background-color:#ffffff;
  border: 2px solid #002E6D;
  color: #002E6D;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-inscribete:hover {
  background-color: #002e6d;
  color: white;
}

/* Fila 2: texto a la izquierda, tutor a la derecha */
.bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 50px;
}

.text-column {
  flex: 1;
  min-width: 300px;
}

.text-column h2 {
  font-family: 'MulishBold', sans-serif;
  font-size: clamp(20px, 3vw, 28px);
  margin-bottom: 20px;
}

.text-column p {
  font-family: 'Mulish', sans-serif;
  font-size: clamp(18px, 2vw, 24px);
}

/* Tarjeta del tutor */
.tutor-card {
  display: flex;
  align-items: center;
  gap: 15px;
}

.tutor-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
}

.tutor-info {
  display: flex;
  flex-direction: column;
}

.tutor-label {
  font-family: 'MulishBold', sans-serif;
  background-color: #ffffff;
  color: #1B5F3A;
  padding: 6px 10px;
  border-radius: 4px;
  margin-bottom: 4px;
  width: min-content;
}

.tutor-name{
  font-family: 'MulishBold', sans-serif;
  font-size: clamp(20px, 3vw, 28px);
  line-height: 1.2;
}

.tutor-grade{
  font-family: 'Mulish', sans-serif;
  font-size: clamp(16px, 3vw, 20px);
}


/** INFO CURSO **/
.curso-info {
margin: 5% 10% 0 10%;
    color: #002E6D;
}

.curso-container {
    font-family: 'Mulish', sans-serif;
    line-height: 1.2;
    color: #333;
}

.curso-title {
    font-family: 'MulishBold', sans-serif;
    font-size: clamp(22px, 2vw, 28px);
    color: #002E6D;
    margin-bottom: 20px;
}

.curso-subtitle {
    font-family: 'MulishBold', sans-serif;
    font-size: clamp(22px, 2vw, 28px);
    color: #002E6D;
    margin-bottom: 15px;
}

.curso-list {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.curso-item {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: clamp(18px, 2vw, 24px);
    color: #646464;
}

.curso-item:before {
    content: '';
  position: absolute;
  left: 0;
  top: 0.6em; /* Ajusta para alinear verticalmente con el texto */
  width: 8px;
  height: 8px;
  background-color: #646464; /* Mismo azul del texto o el color que prefieras */
  border-radius: 50%; /* Esto hace que sea una bolita */
}


.inscribete-bar {
    font-family: 'MulishBold', sans-serif;
    background-color: #36BAFF;
    color: #333;
    padding: 30px;
    padding-top: 10px;
    text-align: center;
    cursor: pointer;
    font-weight: bold;
    position: relative;
    bottom: -15px;
}

.inscribete-boton {
    cursor: pointer;
    display: block; /* Cambia a block para que ocupe todo el ancho */
    width: 100%; /* Abarca todo el ancho disponible */
    padding: 20px 0; /* Espaciado vertical para mejor clicabilidad */
    margin: 0;
    border: none;
    background-color: transparent;
    color: white;
    font-size: 40px;
    font-style: italic;
    text-align: center; /* Alinea el texto al centro */
    text-decoration: none;
}

@media (min-width: 500px) {
 .bannerCert2 {
    height: 65vh;
    }
 .bannerCupre2 {
    height: 65vh;
    }
}

@media (min-width: 300px) {
 .bannerCert2 {
    height: 62vh;
    }
 .bannerCupre2 {
    height: 62vh;
    }
}


/**== Info PAGOS ==**/
.bannerPagos {
    position: relative;
    width: 100%;
    height: 70vh;
    background-color: #ebebeb;
    color: #002e6d;
    padding: 0 4% 5% 4%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-image: url(https://academiamentat.com/resources/imagenes/landingpage/imgPagos.png);
    background-size: cover;
    background-position: top right;
    background-repeat: no-repeat;
    margin-bottom: -10px;
}

.bannerPagos-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.textpagos-column{
  width: 60%; /* Ocupa la mitad del contenedor */
}

.textpagos-column p {
    font-family: 'Mulish', sans-serif;
    font-size: clamp(18px, 2vw, 24px);
}

.infopago-title {
  font-family: 'MulishBlack', sans-serif;
  font-size: clamp(22px, 4vw, 32px);
  margin: 0 0 10px;
}

.infopago-text {
  font-family: 'Mulish', sans-serif;
  font-size: clamp(18px, 2.5vw, 24px);
  margin: 0;
}

.infopago-link {
  color: #36BAFF;
  text-decoration: none;
}

.infopago-link:hover {
  text-decoration: underline;
}

.infopago-text a{
  font-family: 'MulishBold', sans-serif;
  text-decoration: unset;
    color: #36BAFF;
}

.txtb-pago{
  font-family: 'MulishExtraBold', sans-serif;
}

.pagos-icons {
  display: flex;
    gap: 20px;
}

.oxxo-icons img {
    width: 100px;
    padding-right:20px;
}

.paypal-icons img {
    width: 140px;
}

@media (max-width: 770px) {
.bannerPagos {
    padding: 0 4% 10% 4%;
}
}

@media (min-width: 1367px) {
.bannerPagos {
    height: 80vh;
}
}

@media (max-width: 1224px) {
.bannerPagos {
  height: 450px;
  background-position: top 0 right 55%;
}
}