@font-face {
    font-family: 'SKFSans';
    src: url('https://www.skfcollege.com.mx/files/6947025/SKFSans-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}
@media screen and (min-width: 980px) {
  .bjqs-caption h2 {
    font-size: 50px !important;
  }
}

@media (max-width: 768px) {
    .seccionFlex {
        flex-direction: column;
        text-align: center;
    }

    .columnaImagen img {
        max-width: 100%;
    }
}

header {
  width: 100% !important;
  left: 0 !important;
}

#carouselWrap {
    position: relative;
    left: 50%;
    width: 100vw;
    margin-left: -50vw;
}

ul.bjqs li .caption-wrapper {
    max-width: 1700px;
}


.tituloSlider{
    font-family: "SKFSans", Sans-serif !important;
    font-weight: 500 !important;
    color: #000000 !important;
}

.textoSlider{
    font-family: "SKFSans", Sans-serif !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #000000 !important;
}


.tituloSeccion{
    font-family: "SKFSans", Sans-serif !important;
    font-size: 35px !important;
    font-weight: 600 !important;
    color: #000000 !important;
    line-height: 1 !important;
}

.textoSeccion{
    font-family: "SKFSans", Sans-serif !important;
    font-weight: 400 !important;
    color: #000000 !important;
    font-size: 1rem !important;
    line-height: 1.5 !important;
}

.seccionFlex {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 100px 0;
  justify-content: center;
  width: 80%;
  margin: 0 auto;
}

.columnaImagen img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.columnaTexto {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 30%;
}

.columnaImagen{
    max-width: 50%;
}

.seccion-beneficios {
    padding: 60px 20px;
    background: #f8fafc;
    font-family: "SKFSans", Sans-serif !important;
    position: relative;
    left: 50%;
    width: 100vw;
    margin-left: -50vw;
}

.container-principal {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.titulo-principal {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.descripcion-principal {
    max-width: 700px;
    margin: auto;
    font-size: 14px;
    color: #333;
    margin-bottom: 50px;
}

.tarjetas {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.tarjeta {
    width: 300px;
    text-align: left;
}

.img-tarjeta {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 4px;
}

.titulo-card {
  font-size: 20px !important;
  font-weight: 700;
  margin: 15px 0 10px 0;
  line-height: 1 !important;
  color: #000 !important;
}

.texto-card {
    font-size: 14px;
    color: #444;
    line-height: 1.5;
}

.subtitulo{
   text-align: center;
   font-size: 18px !important;
   font-weight: 600 !important;
   color: #000 !important;
}

.carrusel-css {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    margin: 50px 0px;
}

.carrusel-track {
    display: flex;
    gap: 25px;
    width: max-content;
    animation: moverCinta 25s linear infinite;
}

.slide {
    min-width: 250px;
    background: #ecf0f1;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    flex-shrink: 0;
    border: 1px solid #ddd;
}

.slide img {
    max-width: 140px;
    margin-bottom: 10px;
}

@keyframes moverCinta {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .slide {
        min-width: 80%;
    }
}

.textoBotonHome{
    color: #fff !important;
}

.btn-center {
    margin-top: 40px;
    text-align: center;
}

.btn-principal {
    display: inline-block;
    background: #0041ff;
    color: #fff;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    text-decoration: none;
}

.seccion-titulos{
  margin: 50px 0px;
}

/* Inicio grid cursos */

.btn-principal:hover {
    background: #002fcc;
}

.contenedorGris {
    background: #f5f7fa;
    padding: 40px 50px;
}

.gridCursos {
    display: grid;
    grid-template-columns: repeat(4, minmax(320px, 1fr));
    gap: 30px;
}

.cardCurso {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0px 4px 18px rgba(0,0,0,0.08);
    transition: transform .25s ease, box-shadow .25s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.cardCurso:hover {
    transform: translateY(-6px);
    box-shadow: 0px 10px 25px rgba(0,0,0,0.12);
}

.imgCardCurso {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.textoCurso {
    padding: 20px;
}

.tituloPequeñoCurso {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #0041ff;
    margin: 0;
    letter-spacing: 0.5px;
}

.tituloGrandeCurso {
    font-size: 25px !important;
    font-weight: 700;
    color: #222 !important;
    line-height: 1.2 !important;
    margin: 5px 0 12px;
    min-height: 52px;
}

.descripcionCurso {
    font-size: 18px;
    color: #555;
    line-height: 1.45;
    min-height: 65px;
}

.fechaCurso p {
    color: #000 !important;
    font-size: 14px !important;
    padding: 0px 20px;
    font-weight: 600 !important;
}

.precioCurso {
    font-size: 22px !important;
    font-weight: 600 !important;
    color: #1a1a1a;
    padding: 20px 0px;
    margin: 0;
}

.botonCardCurso {
    padding: 20px;
    margin-top: auto;
}

.btn-principal {
    display: inline-block;
    background: #0041ff;
    color: #fff;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    text-decoration: none !important;
    font-weight: 700;
    height: fit-content;
    width: fit-content;
}

.btn-principal:hover {
    background: #002fcc;
}

.textoBotonHome {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
}

.botonCardCurso{
  display: flex;
  justify-content: space-between;
  align-items: center;
}


@media(max-width: 768px) {
    .contenedorGris {
        padding: 20px;
    }
}

.contenedorContacto{
    text-align: center;
    margin: 50px 0px;
}

.contenedorWa{
    text-align: center;
}

.contenedorInformes{
    text-align: center;
}

.linkWA{
  display: inline-block;
  background: #23d366;
  color: #fff !important;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 14px;
  text-decoration: none;
  font-weight: 700;
  margin-left: 30px;
 text-decoration: none !important;
}


.tituloSeccionInformacion{
    font-size: 32px !important;
    font-weight: 700 !important;
    margin-bottom: 20px;
    text-align: center;
    color: #000 !important;
}

.textoDescripcion p{
    text-align: center; 
    font-size: 16px !important;
}

.textoWA{
    text-align: center;
    margin-top: 20px;
  }

.contenedorWA{
text-align: center;
padding: 20px;
margin: 25px 0px;
}

.imgWA{
margin: 20px 0px;
}

.tituloCurso{
    font-size: 1.5rem !important;
}


.datosCurso p{
font-size: 1rem !important;
}

.datosCurso p {
font-size: 1.1rem !important; 
font-weight: 500 !important;
margin: 20px 0px !important;
}

.boton{
display: inline-block;
background: #0041ff;
color: #fff;
padding: 12px 24px;
border-radius: 6px;
font-size: 14px;
text-decoration: none !important;
font-weight: 700;
height: fit-content;
width: fit-content;
}

.textoBoton{
color: #fff !important;
text-decoration: none !important;
}

a{
text-decoration: none !important;
}

.contenedorBotones {
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
  border-bottom: none; 
  padding: 5px;
  background: #f3f4f6;
  border-radius: 50px;
}

.btnSeccion {
  margin: 0;
}

.btnAccion {
  background: transparent;
  border: none;
  padding: 10px 22px;
  font-size: 0.95rem;
  cursor: pointer;
  color: #444;
  border-radius: 50px;
  transition: all 0.25s ease;
}

.btnAccion:hover {
  background: #e1e6ff;
  color: #0041ff;
}

.botonActivo {
  background: #0041ff;
  color: #ffffff !important;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* Contenedor principal */
.contenedorInformacionCurso {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    width: 100%;
}

/* Cada columna */
.columnaInformacion {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Icono */
.columnaInformacion .icono img {
    width: 70px;
    height: auto;
    display: block;
    margin: 0 auto 15px;
}

/* Título */
.tituloInformacion {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

/* Texto */
.textoInformacion {
    font-size: 16px;
    line-height: 1.5;
    width: 100%;
    text-align: left;
}

.textoInformacion ul {
    padding-left: 20px;
}

.textoInformacion p {
    margin: 0;
}

/* Ajuste en pantallas pequeñas */
@media (max-width: 500px) {
    .textoInformacion {
        text-align: center;
        padding: 0 10px;
    }
}

.textoInformacionLecciones {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 100%;
}

@media (min-width: 1200px) {
    .textoInformacionLecciones {
        grid-template-columns: repeat(4, 1fr);
    }
}

.leccion {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    color: #fff;
    margin-top: 20px;
}

.imgLeccion {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}

.tituloLeccion {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #fff;
}

.leccion p {
    margin: 0;
    line-height: 1.5;
}

  .tituloSeccionInformacionCurso{
    font-weight: 600 !important;
    color: #000000 !important;
    font-size: 1.5rem !important;
  }

  .botonCurso{
    display: inline-block;
    background: #0041ff;
    color: #fff !important;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    text-decoration: none !important;
    font-weight: 700;
    height: fit-content;
    width: fit-content;
    margin-top: 15px;
  }

  .botonSeccionFooter{
    display: inline-block;
    background: #0041ff;
    color: #fff !important;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    text-decoration: none !important;
    font-weight: 700;
    height: fit-content;
    width: fit-content;
  }

  .linkContacto{
     display: inline-block;
    background: #0041ff;
    color: #fff !important;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    text-decoration: none !important;
    font-weight: 700;
    height: fit-content;
    width: fit-content;
  }


.contenedorFooterContacto {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px; 
    padding: 40px 0;
    align-items: start;
}

.seccionInformes {
    display: flex;
    flex-direction: column;
    gap: 12px; 
    align-items: center;
}

.seccionInformes p{
    font-size: 16px !important;
}

.seccionInformes p,
.seccionInformes a {
    margin: 0;
}

.botonSeccionFooter {
    display: inline-block;
    margin: 15px 0;
}

@media (max-width: 800px) {
    .contenedorFooterContacto {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.textoContacto{
    text-align: center;
}

#contenedorMetodologia{
    display: none;
}

#contenedorContenido{
    display: none;
}

#contenedorLecciones{
    display: none;
}

.tituloPagina{
    color: #000000 !important;
    font-size: 1.5rem !important;
    font-weight: 600;
}

.textoGrisAcreditaciones{
    color: #000000 !important;
    font-size: 1.2rem !important;
    font-weight: 600;
}


.contenedorTablaAcreditaciones h2{
    font-size: 1.1rem !important;
}

.contenedorTablaAcreditaciones p{
    font-size: 1rem !important;
}