/* <uniquifier>: Use a unique and descriptive class name
// <weight>: Use a value from 200 to 1000 */

.nunito{
  font-family: "Nunito", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.oswald {
    font-family: "Oswald", serif;
    font-optical-sizing: auto;
    font-style: normal;
  }

html{
    overflow-x: hidden;
    font-family: "Nunito";
    scroll-behavior: smooth;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
:root{
  --orange-custom: #FF7814FF;
  --blue-custom: #3228A0FF;
  --strong-blue: #140A64FF;

}


body {
    margin: 0;
    font-family: "Nunito", sans-serif;
    color: #333;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: #fff;
    position: fixed; /* Fija el header */
    top: 0;          /* Lo coloca en la parte superior de la página */
    left: 0;         /* Alineado al borde izquierdo */
    width: 100%;     /* Asegura que el header ocupe todo el ancho de la página */
    z-index: 1000;   /* Lo coloca en la parte superior de otros elementos */
    background-color: white; /* Fija un color de fondo para que no se mezcle con el contenido */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Opcional: agrega una sombra para distinguirlo */
}

.nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav li {
    margin-right: 20px;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    text-transform: uppercase;
    position: relative; /* Necesario para colocar el pseudo-elemento */
    padding-bottom: 5px; /* Ajusta la distancia de la línea */
}

.nav a::after {
    content: ""; /* Crea una línea virtual */
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px; /* Grosor de la línea */
    background-color: var(--strong-blue); /* Color de la línea */
    transform: scaleX(0); /* Oculta inicialmente */
    transform-origin: left; /* La línea empieza desde la izquierda */
    transition: transform 0.3s ease-in-out; /* Transición suave */
}

.nav a:hover::after {
    transform: scaleX(1); /* La línea se muestra completamente */
}


.social-icons a img {
    width: 24px;
    margin-left: 10px;
}

.logo img{
    height: 60px;
    width: 100%;
}

/*HERO*/

.background-hero img {
    height: 100vh;
    object-fit: cover;
    position: absolute;
    z-index: -1;
}

.hero-content {
    background: rgba(0, 0, 0, 0.5);
    height: 80vh;
}
.recuadros-hero{
    background-color: #ffffff75;
    color: #fff;
    position: relative;
    height: 23rem;
    width: 40rem;
    top: 25%;
    left: 50%;
    border-radius: 20px;
    padding: 20px;
}

.recuadros-hero h1{
    font-family: "Oswald", sans-serif;
    text-align: left;
    width: 100%;
    text-transform: uppercase;
    color: #000;
    font-weight: bold;
    font-size: 45px;
    margin-left: 3rem;
    margin-bottom: 2rem;
}

.recuadros-hero p{
    text-align: left;
    margin-left: 3rem;
    width: 80%;
    font-size: 20px;
    margin-bottom: 3rem;
}

.button {
    display: flex;
    width: 25%;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: var(--orange-custom);
    color: #fff;    
    text-decoration: none;
    border-radius: 5px;
    justify-content: left;
    text-align: center;
    margin-left: 3rem;
    transition: .3s background-color ease-in-out;
}

.button:hover{
    background-color: var(--blue-custom);
}


/*SWIPPER*/

.swiper {
    width: 100%;
    height: 100%;
  }

  .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .swiper-slide img {
    display: block;
    width: 100%;
  }


  /*About us*/

  .about-us{
    margin: 0 3rem;
    display: flex;
  }

  .title-with-image{
    display: flex;
    align-items: center;
    margin-top: 2rem;
  }

  .title-with-image img{
    height: 80px;
    width: 30px;
  }

  .title-with-image p{
    font-family: "OSwald", sans-serif;
    font-size: 25px;
    font-weight: 600;
    color: var(--orange-custom);
    text-decoration: underline var(--blue-custom);
  }

.title-about-us h2{
    width: 80%;
    font-size: 35px;
    line-height: 3rem;
    font-weight: 400;
    color: var(--blue-custom);
    margin-top: 2rem;
}

.info-squares-container{
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.about-us-info, .about-us-images{
    margin: 0 auto;
    width: 50%;
}

.info-squares{
    display: flex;
    justify-content: space-evenly;
    border: 2px solid #0000001c;
    border-radius: 10px;
    width: 100%
}
.check-circle{
    margin-left: 5px;
    margin-right: 1rem;
}
.check-circle img{
    height: 30px;
    width: 30px;
    transition: .5s ease-in-out;
}

.info-squares:hover .check-circle img {
    filter: sepia(1) saturate(10) hue-rotate(-10deg) brightness(2.2);
    transition: 1s ease-in-out;
}

.squares-content, .check-circle{
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.squares-content h5, .squares-content p{
    margin-right: 15px;
    margin-bottom: 1rem;
}
.squares-content h5{
    font-size: 15px;
}

.about-us-images{
    display: flex;
    justify-content: end;
}

.images-about-1{ 
    width: 413px; 
    height: 404px; 
    border-radius: 202px; 
    box-shadow: 0px 17px 35px #171a1f3D, 0px 0px 2px #171a1f1F; /* shadow-xl */
}

.images-about-2{
    width: 280px; 
    height: 269px; 
    border-radius: 135px; 
    box-shadow: 0px 17px 35px #171a1f3D, 0px 0px 2px #171a1f1F; /* shadow-xl */
}

.images-about-3{
    width: 279px; 
    height: 809px; 
    border-radius: 0px;
}

.button-see-more{
    margin-top: 2rem;
}
.button-custom {
    display: flex;
    justify-content: left !important;
}

.button-custom a{
    background-color: var(--orange-custom) !important;
    padding: .8rem 3.5rem !important;
    transition: background-color.3s ease-out !important;
}

.button-custom a:hover{
    background-color: var(--blue-custom) !important;
}
/*new code sobre nosotros*/
.about-us {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 2rem;
}

.about-us-info {
    flex: 1;
    max-width: 50%;
}

.about-us-images {
    position: relative;
    flex: 1;
    max-width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-us-images img {
    position: absolute;
    transition: all 0.3s ease;
}

.images-about-1 {
     /* Ajusta la posición según tu diseño */
    right: -1%;
}

.images-about-2 {
    top: 15%;
    right: 25%;
}

.images-about-3 {
    right: -12%;
    z-index: -3;
}

/* Ajustes responsivos */



/*Section Numbers Changing*/

.numbers-changing{
    margin-top: 3rem;
}

.background-container{
    width: 100%;
}

.background-container img{
    width: 100%;
}

.numbers-container {
    position: relative;
    text-align: center;
}

.counter {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: space-around;
    width: 100%;
}

.counter-item {
    font-family: "Nunito", sans-serif;
    color: #fff;
}


.number {
    font-family: "Nunito", sans-serif;
    font-size: 2em;
    font-weight: bold;
}
.counter-item p{
    margin-top: 1rem;
    font-size: 24px;
}


/*CONTENT SECTION*/
.contenedor-cursos{
    margin: 0 3rem;
}

.contenido-pag {
    text-align: center;
    padding: 40px;
    background-color: #ffffff;
    position: relative;
}

.title-content h3 {
    font-family: "Oswald",sans-serif;
    font-weight: 400;
    color: #ff6600;
    font-size: 35px;
    margin-bottom: 4rem;
    text-decoration: underline var(--blue-custom);

}

.img-left {
    position: absolute;
    top: 0;
    left: -1%;

}

.img-left img {
    margin-top: 3rem;
    width: 160px;
    max-width: 160px;
    height: auto;
    transform: rotate(180deg);
}

.items-content-selector {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin: 20px 0;
    padding-left: 22%;
}

.item-content-info {
    display: flex;
    align-items: center;
    margin: 10px;
    margin-bottom: 6rem;
}

.item-content-info img {
    margin-right: 2rem;
    width: 30px;
    height: 30px;
    filter: sepia(1) saturate(10) hue-rotate(-10deg) brightness(2.2);
    
}

.item-content-info h3 {
    color: #1e1e6d;
    font-size: 30px;
    font-weight: 800;
}

.button-conocer-mas {
    margin-top: 20px;
}

.button-conocer-mas a {
    display: inline-block;
    background-color: #1e1e6d;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: .3s background-color ease-in-out;
}

.button-conocer-mas a:hover{
    background-color: var(--orange-custom);
}


/*SECCION REGISTROS Y CERTIFICACIONES*/

.registros_y_certificaciones{
    position: relative;
}


.blue-blur{
    height: 100%;
    width: 100%;
    background-color: #3228A0C7;
    position: absolute;

}

.img-back-registros img{
    max-height: 70vh;
    width: 100%;
    object-fit: cover;
    object-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
}

.title-info-registros{
    width: 100%;
    display: flex;
    margin-top: 4rem;
    margin-left: 3rem;
}
.title-info-registros h3{
    font-family: "Oswald",sans-serif;
    font-size: 25px;
    color: var(--orange-custom); 
    text-decoration: underline var(--orange-custom);
}

.contenedor-recuadros-registros {
    margin-top: 5rem;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
}
.recuadro-registros{
    background-color: var(--orange-custom);
    height: 14rem;
    max-width: 25%;
    padding: 1rem;
    color: #fff;
    border-radius: 20px;
}

.recuadro-registros li{
    width: 70%;
    margin-left: 2rem;
    font-size: 20px;
}

.recuadro-registros h4{
    font-family: "Oswald", sans-serif;
    margin-bottom: 2rem;
    margin-left: 2rem;
    font-size: 25px;
    font-weight: bold;
}

.contenedor-textos{
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
}

/*CURSOS*/

.contenedor-cuadros-cursos{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.cuadros-cursos{
    display: flex;
    justify-content: space-between;
    border: 2px solid #00000010;
    width: 600px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.205);
    border-radius: 20px;
    margin: 3rem;
}

.timer-cuadros img, .lecciones img, .alumnos img, .calificacion-curso img{
    height: 20px;
    width: 20px;
}

.timer-cuadros{
    display: flex;
    justify-content: space-evenly;
    background-color:#3CB4FFFF;
    height: 40px;
    width: 100px;
    align-items: center;
    margin-top: 1rem;
    border-radius: 10px;
    color: #fff;
    margin-bottom: 1rem;
}

.titulo-curso-cuadros{
    font-size: 20px;
    font-weight: bold;
    margin: 1rem 0;
}
.seccion-leccion-estudiantes{
    display: flex;
    justify-content: space-evenly;
    margin: 1rem 0;
}
.lecciones, .alumnos{
    display: flex;
}
.lecciones *, .alumnos *{
    margin-right: 1rem;
}

.calificacion-curso{
    margin: 1rem 0;
}
.img-cuadro{
    display: flex;
    align-items: center;
}

.img-cuadro img{
    height: 200px;
    width: 200px;
}

.precio-curso{
    display: flex;
    flex-direction: row-reverse;
    margin-right: 1rem;
    align-items: center;
}

.precio-curso p{
    background-size: 50px 150px;
    background-color: var(--orange-custom);
    padding: 1rem;
    width: 30%;
    text-align: center;
    height: 45px;
    border-radius: 20px 20px 0 0;
    color: #fff;
    font-weight: bold;
}

.button-all-courses{
    margin-top: 3rem;
    margin-bottom: 2rem;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.button-all-courses a{
    text-decoration: none;
    font-size: 15px;
    background-color:var(--strong-blue);
    border-radius: 10px;
    color: #fff;
    padding: 1rem;
    font-weight: bold;
    transition: .3s background-color ease-in-out;
}

.button-all-courses a:hover{
    background-color: var(--orange-custom);
}

/*TESTIMONOS*/

.contenedor-testimonios{
    height: 100vh;
    background-color: var(--blue-custom);
}

.titulo-testimonios{
    padding-top: 3rem;
    margin-left: 3rem;
}

.titulo-testimonios p{
    font-family: "Oswald", sans-serif;
    text-transform: uppercase;
    font-size: 25px;
    color: #fff;
    text-decoration: underline var(--orange-custom);
    margin-bottom: 3rem;
}
.titulo-testimonios h3{
    font-size: 35px;
    color: #fff;
    margin-bottom: 3rem;
    font-weight: 400;

}
.drops-container{
    width: 100%;
    display: flex;
    justify-content: space-evenly;
}

.drops{
    background-color: #fff;
    border-radius: 200px 0 200px 200px;
    width: 30%;
    height: 50vh;
    padding: 4rem;

}

.drops h4{
    font-size: 20px;
    font-weight: bold;
}

.cargo{
    width: 70%;
    font-size: 15px;
    margin: 2rem 0;
    font-weight: bold;
}

/*CARRUSELES*/


.logo-carousel {
    width: 100%;
    overflow: hidden; /* Oculta los logos fuera del contenedor */
    background-color: #f9f9f9; /* Fondo opcional */
    padding: 20px 0; /* Espaciado entre los carruseles */
}

.carousel-title{
    margin: 3rem auto 6rem auto;
    width: 100%;
    display: flex;
    justify-content: center;
}

.carousel-title h3{
    font-family: "Oswald", sans-serif;
    font-size: 35px;
    font-weight: 500;
    color: var(--orange-custom);
    text-decoration: underline var(--blue-custom);
}

.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
    margin-bottom: 20px; /* Espaciado entre carruseles */
}

.carousel-track {
    margin-bottom: 3rem;
    display: flex;
    animation: scroll 20s linear infinite;
}

.carousel-container.reverse .carousel-track {
    animation: scroll-reverse 20s linear infinite;
}

.carousel-track img {
    width: 150px; /* Ajusta el tamaño de los logos */
    margin: 0 15px; /* Espaciado entre logos */
    filter: grayscale(50%); /* Estilo opcional */
    opacity: 0.8; /* Estilo opcional */
}

/* Animación para el carrusel normal */
@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Animación para el carrusel inverso */
@keyframes scroll-reverse {
    from {
        transform: translateX(-50%);
    }
    to {
        transform: translateX(0);
    }
}


/*footer*/

.footer{
    margin: 0 3rem;
}

.contenedor-footer{
    display: flex;
    width: 100%;
    border-bottom: 2px solid var(--blue-custom);
    
    
}

.logo-footer{
    flex: 7;
    display: flex;
    width: 100%;
    justify-content: right;
    padding-bottom: 2rem;
    margin-right: 15%;
}

.logo-footer img{
    height: 190px;
    width: 290px;

}

.info-footer{
    flex: 3;
    display: flex;
    flex-direction: column;
    align-items:center;
    justify-content:end;
    width: 100%;
}


.telefono-footer, .redes-footer, .mail-footer{
    display: flex;
    width: 100%;
    justify-content: end;
    margin-bottom: 1rem;
}

.telefono-footer img, .mail-footer img{
    height: 20px;
    width: 20px;
    margin-right: 1rem;
}
.redes-footer img{
    height: 20px;
    width: 20px;
}

.second-mail{
    text-align: right;
}

.creditos-footer{
    margin-top: 2rem;
    width: 100%;
    text-align: center;
    margin-bottom: 2rem;
}

/*PAGINA NOSOTROS*/

.info-custom{
    width: 100%;
}

.hero-custom{
    position: relative;
}

.hero-title{
    position: absolute;
    z-index: 999;
    font-size: 100px;
    color: #fff;
    top: 40%;
    left: 7%;
    font-family: "Oswald", sans-serif;
}


.about-us-longtext{
    display: flex;
    width: 65%;
    justify-content: center;
    margin-left: 3rem;
}
.about-us-longtext p{
    font-size: 20px;
}

.about-3-custom{
    z-index: -3;
    height: 800px;
    width: auto;
}

.orange-strong{
    color: var(--orange-custom);
}

.blue-strong{
    color: var(--strong-blue);
}
.underline-strong{
    color: var(--strong-blue);
    text-decoration: underline var(--strong-blue);
}
.center-button{
    display: flex;
    justify-content: center !important;

}
.center-button a{
    padding: 1rem 4rem !important;  
}

/*VALORES DE LA EMPRESA */

.valores-empresa{
    margin: 3rem 1rem;
}

.contenedor-valores-empresa {
    margin: 0 5rem;
    display: grid;
    grid-template-columns: 1fr 1fr; /* Dos columnas de igual tamaño */
    grid-template-rows: auto auto; /* Dos filas automáticas */
    gap: 20px; /* Espaciado entre los elementos */
}

.mision-content {
    grid-column: 1; /* Ocupa la primera columna */
    grid-row: 1; /* Primera fila */
}

.vision-content {
    grid-column: 2; /* Ocupa la segunda columna */
    grid-row: 1; /* Primera fila */
}

.valores-content {
    grid-column: 1 / span 2; /* Ocupa ambas columnas */
    grid-row: 2; /* Segunda fila */
}

.contenedor-valores-empresa div h3{
    font-size: 35px;
    font-family: "Oswald", sans-serif;
    margin-bottom: 1rem;
}
.contenedor-valores-empresa div p{
    width: 80%;
    margin-bottom: 2rem;
    font-size: 19px;
}


.mision-content, .vision-content, .valores-content {
    padding: 80px;
    border-radius: 8px; /* Opcional, bordes redondeados */
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1); /* Sombra sutil */
    transition: box-shadow 0.3s ease; /* Transición para un efecto suave */
}

.mision-content:hover, .vision-content:hover, .valores-content:hover {
    box-shadow: 0 16px 24px rgba(0, 0, 0, 0.2); /* Más intensa al pasar el mouse */
}

.img-valores{
    width: 100%;
    display: flex;
    justify-content: right;
    margin-bottom: -5rem;
}

.valores-content ul li{
    font-size: 18px;
    margin-left: 2rem;
}





/*PAGINA SERVICIOS*/

.section-sevicios {
    padding: 40px 0;
    display: flex;
    justify-content: center;
}

.all-services-container {
    width: 80%;
    max-width: 1200px;
}

.recuadros-servicios-colores {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 4 columnas */
    grid-template-rows: auto auto; /* Dos filas */
    gap: 20px; /* Espaciado entre los recuadros */
}

/* Estilos generales de los recuadros */
.recuadro-cursos {
    position: relative;
    padding: 20px;
    border-radius: 16px;
    color: #333;
    font-family: Arial, sans-serif;
    font-weight: bold;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 180px;
    transition: transform 0.3s ease-in-out;
}

.recuadro-cursos:hover {
    transform: translateY(-5px);
}

/* Posicionamiento en la grid */
.recuadro-cursos:nth-child(1) { 
    background-color: rgba(255, 200, 100, 0.6); 
    grid-column: span 2;
}
.recuadro-cursos:nth-child(2) { 
    background-color: rgba(150, 100, 255, 0.6); 
    grid-column: span 3;
}
.recuadro-cursos:nth-child(3) { 
    background-color: rgba(255, 150, 100, 0.6); 
    grid-column: span 3;
}
.recuadro-cursos:nth-child(4) { 
    background-color: rgba(150, 100, 255, 0.3); 
    grid-column: span 2;
}

.recuadro-cursos h3{
    font-family: "Oswald", sans-serif;
    font-size: 35px;
    padding-top: 2rem;
}


.recuadro-cursos a {
    text-decoration: none;
    color: var(--strong-blue);
    font-weight: normal;
    padding-bottom: 3px;
    transition: color 0.3s ease-in-out;
}
.recuadro-cursos p{
    text-decoration: underline;
    margin-top: 2rem;
}

.recuadro-cursos a:hover {
    color: #000;
}

/* Iconos */
.ico-services {
    position: absolute;
    bottom: 10px;
    right: 10px;
    opacity: 0.6;
}

.ico-services img {
    width: 170px;
    height: auto;
    margin-bottom: -7%;

}
.aux-img img{
    width: 200px !important;
}

.all-services-container
/*CURSOS DESCRIPTION*/

.cursos-description{
    margin-top: 3rem;
}

.cursos-description h2{
    font-family: "Oswald", sans-serif;
    color: var(--orange-custom);
    text-decoration: underline var(--orange-custom);
    font-size: 30px;
    margin-bottom: 3rem;
}


.acordeon-1 {
    background-color: rgba(255, 200, 100, 0.6);
    padding: 15px 20px;
    border-radius: 16px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

.acordeon-1:hover {
    background-color: rgba(255, 200, 100, 0.8);
}

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

.title-acordeon h4 {
    margin: 0;
    font-size: 32px;
    color: #333;
    font-weight: 400;
}

.title-acordeon img {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease-in-out;
}

/* Ocultar el párrafo inicialmente */
.acordeon-1 p {
    display: none;
    margin-top: 10px;
    font-size: 20px;
    color: #555;
    padding: 0 2rem;
    width: 90%;
}

/* Estilos cuando se expande */
.acordeon-1.active p {
    display: block;
}

.acordeon-1.active .title-acordeon img {
    transform: rotate(180deg);
}

.center-title-ventajas h2{
    font-size: 3rem;
    margin-top: 3rem;
    width: 100%;
    display: flex !important;
    justify-content: center !important;
}

.center-title-ventajas p{
    margin:3rem ;
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
}

.list-order {
    padding: 0 3rem;
    margin: 2rem auto;
    font-size: 18px;
}
.list-order img{
    height: 40px;
    width: 40px;
}

.acordeon-color-gray{
    background-color: #DEE1E6FF;
}

.acordeon-color-gray:hover {
    background-color: rgb(177, 177, 177);
}

.acordeon-color-orange{
    background-color: #FFA967FF;
}

.acordeon-color-orange:hover{
    background-color: rgb(229, 144, 79);
}

.little-margin-top{
    margin-top: 3rem;
}

.black-bold{
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 3rem;
}

.acordeon-color-purple{
    background-color: #A59AF5FF;
}
.acordeon-color-purple:hover{
    background-color: rgb(150, 174, 255);
}


/*PAGINA CURSOS*/


.cursos-custom-hero{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.hero-total-cursos{
    background-color: #ffffffba;
    border-radius: 20px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    height: 110px;
    width: 250px;
    margin-top: 4%;
    margin-left: 50%;
}

.img-card-cursos{
    height: 60px;
    width: 60px;
}


/*INTERNA DE CURSOS*/

/* Estilos generales */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.contenedor {
    max-width: 900px;
    margin: auto;
    padding: 20px;
}

/* Estilos del menú de pestañas */
.tabs {
    display: flex;
    gap: 20px;
    list-style: none;
    padding: 0;
    border-bottom: 2px solid #ddd;
}

.tab {
    padding: 10px;
    cursor: pointer;
    font-weight: bold;
    transition: color 0.3s;
}

.tab.active {
    color: blue;
    border-bottom: 3px solid blue;
}

/* Estilos del contenido de pestañas */
.tab-content {
    display: none;
    padding: 20px 0;
}

.tab-content.active {
    display: block;
}

/* Beneficios en cuadrícula */
.grid-beneficios {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.grid-beneficios div {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Estilos del acordeón */
.accordion {
    border-top: 2px solid #ddd;
    margin-top: 20px;
}

.accordion-item {
    border-bottom: 2px solid #ddd;
}

.accordion-header {
    width: 100%;
    padding: 10px;
    background: #f4f4f4;
    text-align: left;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.accordion-content {
    display: none;
    padding: 10px;
    background: #fff;
}

/* Acordeón */
.accordion {
    width: 100%;
    border-top: 2px solid #ddd;
    margin-top: 20px;
}

.accordion-item {
    border-bottom: 2px solid #ddd;
}

.accordion-header {
    width: 100%;
    padding: 15px;
    background: #f8f8f8;
    text-align: left;
    border: none;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Oswald", sans-serif;
}
.tab-content{
    font-family: "Oswald", sans-serif;
}

.arrow {
    transition: transform 0.3s ease;
}

.accordion-header.active .arrow {
    transform: rotate(180deg);
}

/* Contenido del acordeón */
.accordion-content {
    display: none;
    padding: 15px;
    background: #fff;
}

/* Estilos de las lecciones */
.lesson {
    display: flex;
    align-items: center;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 10px;
    gap: 15px;
    background: #fafafa;
}

.drag-icon {
    font-size: 20px;
    cursor: grab;
    color: #888;
}

.lesson a {
    font-weight: bold;
    color: #5A4FCF;
    text-decoration: none;
}

.lesson-title {
    flex-grow: 1;
}

.lesson p {
    font-size: 14px;
    color: #666;
}


.maps {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  
  }
  
  .maps-container {
    margin-top: 3rem;
    width: 100%;
    height: 450px;
    overflow: hidden;
  }
  
  iframe {
    width: 100%;
    height: 100%;
    border: none;
  }

  .ubicacion-title{
    margin-left: 3rem;
  }



.burbujas-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    padding: 20px;
    font-family: "Oswald", sans-serif;

}

.contact-item {
    text-align: center;
    width: 200px;
    margin-left: 5rem;
}

.icon-circle {
    width: 60px;
    height: 60px;
    border: 2px solid var(--orange-custom);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}

.icon-circle img {
    width: 30px; /* Ajusta el tamaño de la imagen dentro del círculo */
    height: auto;
}

.contact-item h3 {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin: 10px 0 5px;
}

.contact-item p {
    font-size: 14px;
    color: #666;
}

.formulario-contacto {
    text-align: center;
    max-width: 900px; /* Aumentamos el ancho */
    margin: auto;
    padding: 40px;
}

.formulario-contacto h2 {
    text-decoration: underline var(--orange-custom);
    font-size: 32px; /* Título más grande */
    font-weight: bold;
    color: #232c5b;
    font-family: "Oswald", sans-serif;
    margin-bottom: 1rem;
}

.formulario-contacto p {
    color: #666;
    font-size: 18px;
    margin-bottom: 20px;
}

.input-group p {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    font-family: "Nunito", sans-serif;
}

.input-group input {
    width: 32%; /* Más anchos */
    padding: 15px; /* Inputs más altos */
    font-size: 18px;
    border: 1px solid #ddd;
    background: #f7f7f7;
    border-radius: 5px;
    outline: none;
}

textarea {
    width: 100%;
    height: 200px; /* Más alto */
    padding: 15px;
    font-size: 18px;
    border: 1px solid #ddd;
    background: #f7f7f7;
    border-radius: 5px;
    outline: none;
    resize: none;
    margin-top: 15px;
    font-family: "Nunito", sans-serif;
}

button {
    font-family: "Oswald", sans-serif;
    font-size: 20px;
    background: var(--strong-blue);
    color: white;
    border: none;
    padding: 20px;
    width: 100%;
    transition: .5s background ease-in-out;
}

button:hover{
    background: var(--orange-custom);
}

.flex-container-contacto{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

/*TODO EL RESPONSIVE*/

/*RESPONSIVE SERVICIOS*/


@media (max-width: 499px) {
    .swiper {
      height: auto; 
    }
  
    .swiper-slide {
      font-size: 16px;
      flex-direction: column; 
    }
  
    .swiper-slide img {
      width: 100%; 
    }

    .center-button a{
        padding: 1rem 3rem !important;
    }
  }
  

  @media (max-width: 499px) {
    .hero-title {
      font-size: 40px; 
      top: 50%; 
      left: -15%;
      transform: translateY(-50%); 
      text-align: center; 
      width: 90%; 
    }

    .ico-services img{
        height: 80px;
        width: 60px !important;
        margin-bottom: -19%;
    }
    .recuadro-cursos h3{
        font-size: 20px;
    }
  }

  /*RESPONSIVE DE FOOTER*/
  
  @media (max-width: 499px) {
    .footer {
      margin: 0 1rem; 
    }
  
    .contenedor-footer {
      flex-direction: column; 
      align-items: center; 
      text-align: center; 
      border-bottom: none; 
    }
  
    .logo-footer {
      justify-content: center;
      margin-right: 0; 
      padding-bottom: 1rem;
    }
  
    .logo-footer img {
      height: 120px; 
      width: auto; 
    }
  
    .info-footer {
      flex: none; 
      width: 100%;
      align-items: center; 
      justify-content: center;
    }
  
    .telefono-footer, .redes-footer, .mail-footer {
      justify-content: center; 
      margin-bottom: 0.8rem; 
    }
  
    .telefono-footer img, .mail-footer img, .redes-footer img {
      height: 18px; 
      width: 18px;
      margin-right: 0.5rem; 
    }
  
    .second-mail {
      text-align: center; 
    }
  
    .creditos-footer {
      margin-top: 1rem;
      margin-bottom: 1rem;
      font-size: 14px; 
    }
  }
  

  /*RESPONIVE NOSOTROS*/


  @media (max-width:499px) {
    .about-us-longtext{
        width: 100%;
        margin-left: 0;
    }

    .about-us-images {
        display: none;
    }
       
  }

  @media (max-width: 1024px) {
    .about-us {
        flex-direction: column;
    }

    .about-us-info, 
    .about-us-images {
        max-width: 100%;
    }

    .about-us-images img {
        position: static; /* Cambia la posición para móviles */
        margin: 1rem 0;
    }
}

@media (max-width: 499px) {
    .registros_y_certificaciones{
        height: 70vh;
    }
    .title-info-registros {
        margin-top: 2rem;
        margin-left: 1rem;
    }

    .title-info-registros h3 {
        margin-left: -1rem;
        width: 100%;
        text-align: center;
        font-size: 20px;
    }

    .contenedor-recuadros-registros {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: 2rem;
    }

    .recuadro-registros {
        max-width: 80%;
        height: auto;
        padding: 1rem;
        text-align: center;
    }

    .recuadro-registros li {
        width: 100%;
        margin-left: 0;
        font-size: 18px;
        list-style: none;
    }

    .recuadro-registros h4 {
        margin-left: 0;
        font-size: 22px;
    }

    .img-back-registros img {
        display: none;
    }
}

@media (max-width: 499px) {
    .valores-empresa {
        margin: 2rem 0.5rem;
    }

    .contenedor-valores-empresa {
        margin: 0 1rem;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .mision-content, 
    .vision-content, 
    .valores-content {
        padding: 40px;
        text-align: center;
    }

    .contenedor-valores-empresa div h3 {
        font-size: 28px;
    }

    .contenedor-valores-empresa div p {
        width: 100%;
        font-size: 16px;
    }

    .valores-content ul li {
        font-size: 16px;
        margin-left: 1rem;
    }

    .img-valores {
        justify-content: center;
        margin-bottom: -2rem;
        height: 100px;
        width: auto;
    }

    .carousel-title h3{
        text-align: center;
    }
}

/*RESPONSIVE PRINCIPAL*/
@media (max-width: 499px) {
    .background-hero img {
        height: 60vh;
    }

    .hero-content {
        height: 60vh;
    }

    .recuadros-hero {
        width: 90%;
        height: auto;
        top: 35%;
        left: 50%;
        transform: translateX(-50%);
        padding: 15px;
        text-align: center;
    }

    .recuadros-hero h1 {
        font-size: 30px;
        margin-left: 0;
        margin-bottom: 1rem;
        text-align: center;
    }

    .recuadros-hero p {
        font-size: 16px;
        margin-left: 0;
        width: 100%;
        text-align: center;
    }

    .button {
        width: 60%;
        margin: 0 auto;
        justify-content: center;
    }

    .swiper {
        height: auto;
    }

    .swiper-slide {
        font-size: 16px;
    }
}

@media (max-width: 499px) {
    .about-us {
        margin: 0 1rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .title-with-image {
        justify-content: center;
        align-items: center;
        text-align: center;
        margin-left:-2rem;
    }

    .title-with-image img {
        height: 60px;
        width: 20px;
        margin-bottom: 10px;
    }

    .title-with-image p {
        font-size: 20px;
    }

    .title-about-us h2 {
        width: 100%;
        font-size: 28px;
        line-height: 2.5rem;
    }

    .info-squares-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-us-info, 
    .about-us-images {
        width: 100%;
        text-align: center;
    }

    .info-squares {
        flex-direction: column;
        align-items: center;
        padding: 10px;
    }

    .squares-content h5 {
        font-size: 14px;
    }

    .squares-content p {
        font-size: 14px;
    }

    .about-us-images {
        justify-content: center;
        margin-top: 1rem;
    }

    .images-about-1,
    .images-about-2,
    .images-about-3 {
        width: 90%;
        height: auto;
        border-radius: 20px;
    }

    .button-see-more {
        margin-top: 1.5rem;
        text-align: center;
    }

    .button-custom {
        justify-content: center !important;
    }

    .button-custom a {
        padding: 0.6rem 2rem !important;
    }
}

@media (max-width: 499px) {
    .numbers-changing {
        height: 40vh;
        margin-top: 3rem;
        background-color: #3228A0C7;
    }
    .background-container img{
        display: none;
    }
    .counter{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        bottom: -1rem;
        top: 5rem !important;
    }
     
}

@media (max-width: 499px ) {
    .contenido-pag{
        background: url(http://localhost/hyl-consultoria/wp-content/uploads/2025/01/Image-25.jpg) no-repeat;
        background-position: right;
        background-size: 70%;
        background-position-x: 8rem;
    }
    .img-left{
        display: none;
    }
    .items-content-selector{
        grid-template-columns: repeat(1, 1fr);
        padding-left: 0;
        justify-content: center;

    }
    .item-content-info{
        flex-direction: column;
    }
    .item-content-info h3{
        font-size: 20px;
    }
    .item-content-info img{
        margin-right: 0;
        margin-bottom: 1rem;
    }
     
}

@media (max-width: 499px) {
    .contenedor-cuadros-cursos {
        grid-template-columns: 1fr; /* Se cambia a una sola columna */
        gap: 1rem;
        justify-items: center;
    }

    .cuadros-cursos {
        flex-direction: column;
        width: 90%;
        margin: 1.5rem 0;
        padding: 1rem;
        text-align: center;
    }

    .img-cuadro {
        justify-content: center;
    }

    .img-cuadro img {
        width: 150px;
        height: 150px;
    }

    .titulo-curso-cuadros {
        font-size: 18px;
        margin: 0.5rem 0;
    }

    .timer-cuadros {
        width: 100%;
        height: 35px;
        font-size: 14px;
        justify-content: center;
        gap: 1rem;
    }

    .seccion-leccion-estudiantes {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .lecciones, .alumnos {
        justify-content: center;
    }

    .lecciones *, .alumnos * {
        margin-right: 0.5rem;
    }

    .calificacion-curso {
        margin: 0.5rem 0;
    }

    .precio-curso {
        justify-content: center;
        margin-right: 0;
    }

    .precio-curso p {
        width: 50%;
        padding: 0.8rem;
        height: auto;
        font-size: 14px;
    }

    .button-all-courses {
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    .button-all-courses a {
        font-size: 14px;
        padding: 0.8rem;
    }
}

@media (max-width: 499px) {
    .contenedor-testimonios {
        height: auto; /* Se ajusta la altura según el contenido */
        padding: 2rem 1rem;
    }

    .titulo-testimonios {
        padding-top: 2rem;
        margin-left: 0;
        text-align: center;
    }

    .titulo-testimonios p {
        font-size: 20px;
        margin-bottom: 1.5rem;
    }

    .titulo-testimonios h3 {
        font-size: 28px;
        margin-bottom: 2rem;
        margin: 2rem;
    }

    .drops-container {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .drops {
        width: 90%;
        height: auto;
        padding: 2rem;
        border-radius: 20px;
        text-align: center;
    }

    .drops h4 {
        font-size: 18px;
    }

    .cargo {
        width: 100%;
        font-size: 14px;
        margin: 1.5rem 0;
    }
}


/*NAV RESPONSIVE*/


@media (max-width: 499px) {
    .header {
        padding: 15px 20px;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        display: none; /* Se oculta por defecto */
        flex-direction: column;
        align-items: center;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .nav ul {
        flex-direction: column;
        width: 100%;
        text-align: center;
    }

    .nav li {
        margin: 15px 0;
    }

    .nav a {
        font-size: 18px;
        padding: 10px 0;
        display: block;
        width: 100%;
    }

    /* Menú hamburguesa */
    .menu-toggle {
        display: block;
        cursor: pointer;
        width: 30px;
        height: 30px;
        position: relative;
    }

    .menu-toggle div {
        width: 100%;
        height: 4px;
        background-color: #333;
        margin: 6px 0;
        transition: all 0.3s ease-in-out;
    }

    /* Clases activas cuando se abre el menú */
    .nav.active {
        display: flex;
    }

    .menu-toggle.active div:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active div:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active div:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

@media (max-width: 499px) {
    .social-icons {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 20px;
    }

    .social-icons a img {
        width: 30px; /* Tamaño ajustado para móviles */
        height: 30px;
        transition: transform 0.3s ease;
    }

    .social-icons a img:hover {
        transform: scale(1.1); /* Efecto de agrandado al pasar el mouse */
    }
    .responsive-block{
        display: none;
    }

}
@media (min-width: 500px) {
     .max-block{
        display: none;
     }
}


@media (max-width: 499px) {
    .accordion-header {
        font-size: 16px;
        padding: 12px;
    }

    .lesson {
        flex-direction: column;
        align-items: flex-start;
        padding: 8px;
    }

    .drag-icon {
        font-size: 18px;
    }

    .lesson a {
        font-size: 14px;
    }

    .lesson-title {
        font-size: 14px;
    }

    .lesson p {
        font-size: 12px;
    }

    .title-acordeon h4{
        font-size: 18px;
    }
}


@media (max-width: 499px) {
    .maps-container {
        height: 300px; /* Reducimos la altura del mapa */
    }

    .ubicacion-title {
        margin-left: 1rem; /* Reducimos margen */
        text-align: center;
    }

    .burbujas-info {
        flex-direction: column;
        align-items: center;
        gap: 30px; /* Reducimos el espacio entre elementos */
        padding: 10px;
    }

    .contact-item {
        width: 100%; /* Ocupará todo el ancho disponible */
        margin-left: 0;
    }

    .icon-circle {
        width: 50px;
        height: 50px;
    }

    .icon-circle img {
        width: 25px; /* Ajustamos el tamaño del icono */
    }

    .contact-item h3 {
        font-size: 14px;
    }

    .contact-item p {
        font-size: 12px;
    }

    .formulario-contacto {
        max-width: 100%;
        padding: 20px;
    }

    .input-group {
        flex-direction: column;
        gap: 10px;
    }

    .input-group input {
        width: 100%;
        padding: 12px;
        font-size: 16px;
    }

    textarea {
        height: 150px;
        font-size: 16px;
    }

    button {
        padding: 15px;
        font-size: 18px;
    }

    .flex-container-contacto {
        flex-direction: column;
        align-items: center;
    }
}


