* {
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
}

/* Fuentes */

@font-face {
    font-family: 'Roboto', sans-serif;
    src: url('https://fonts.googleapis.com/css2?family=Roboto:ital,wdth,wght@0,75..100,100..900;1,75..100,100..900&display=swap');
}
@font-face {
    font-family: 'Nunito', sans-serif;
    src: url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap");
}

body {
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 74px;
    background-color: #037EAA;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
    font-size: 24px;
    font-weight: bold;
    height: 50px; /* Ajusta el tamaño del logo */
}

/* Boton flotante de WhatsApp*/

.floating-button {
    position: fixed;
    bottom: 50px; /* Ajusta la posición vertical */
    right: 50px; /* Ajusta la posición horizontal */
    width: 60px; /* Tamaño del botón */
    height: 60px;
    background-color: #25D366; /* Color de WhatsApp */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
    z-index: 999
}

.floating-button img {
    width: 40px; /* Ajusta el tamaño del icono */
    height: 40px;
}

.floating-button:hover {
    transform: scale(1.1); /* Efecto al pasar el cursor */
}

/* Botón "Conocé los cursos" */
.btn-cursos {
    display: inline-block;
    width: 198px; /* Ancho exacto */
    padding: 8px 0; /* 60px de altura total (considerando line-height) */
    background-color: #037EAA;
    color: white;
    border: none;
    border-radius: 8px; /* Radius exacto */
    font-size: 14px; /* Tamaño más pequeño */
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 22px; /* Para lograr los 60px de altura total */
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: center;
    margin: 10px 0;
}

.btn-cursos:hover {
    background-color: #005672;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(3, 126, 170, 0.3);
}

.btn-cursos:active {
    transform: translateY(0);
}

nav {
    margin-left: 20px; /* Espaciado entre el logo y la navegación */
}

nav ul {
    list-style: none;
    display: flex;
    gap: 38px;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline-block;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-family: 'Roboto';
    font-weight: 400;
    font-size: 16px;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 90px 74px;
    background-color: #E3F2FD;
    font-size: 36px;
    gap: 150px;
}

.hero-text {
    max-width: 500px;
    color: #005672;
}

.hero-text h1 {
    max-width: 500px;
    font-family: 'Roboto', sans-serif;
    font-size: 32px;
    color: #005672;
    text-align: left;
}

.hero-text .highlight {
    color: #037EAA;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 42px;
}

.hero-text .normal {
    color: #037EAA;
    font-family: 'Nunito', sans-serif;
    font-weight: 500;
    font-size: 42px;
}

.hero-text p {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    padding-top: 30px;
}

.hero-text button {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    margin-top: 20px;
}

.hero-image img {
    max-width: 700px;
    border-radius: 10px;
}

.hero-image {
    margin-bottom: 20px;
}

/* SECCIÓN COMPROMISO */
.compromiso {
    padding: 90px 50px;
    text-align: center;
}

.compromiso .container {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 12px;
    padding: 80px 40px;
}

.compromiso h2 {
    font-family: 'Nunito', sans-serif;
    font-size: 44px;
    font-weight: 700;
    color: black;
    margin-bottom: 75px;
}

.compromiso h2 .highlight {
    font-weight: 900;
    color: #037EAA;
}

.grid-beneficios {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.beneficio {
    display: flex;
    flex-direction: column;
    text-align: left;
    border: solid 1px #005672;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    gap: 20px;
}

.beneficio h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #037EAA;
    margin-bottom: 15px;
}

.beneficio img {
    width: 62px;
}

.beneficio p {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #333;
    line-height: 1.6;
}

/* Sección Aprender sin limite */
.learning {
    text-align: center;
    padding: 50px;
    background-color: #f8f9fa;
    font-family: 'Nunito', sans-serif;
    background-image: url(./images/BG-Image-3.svg);
    background-size: 150%;
    background-position: center top;
}

.learning h2 {
    font-size: 32px;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
    padding-bottom: 20px;
}

.learning .highlight {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    color: #007bff;
}

.learning p {
    max-width: 600px;
    margin: 0 auto 30px;
    font-family: "Roboto", sans-serif;
}

.learning-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-content: center;
}

.learning-item {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.learning-item img {
    width: 100%;
    border-radius: 10px;
}

.stat {
    background-color: #007bff;
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
}

/* Seccion testimoniales */

.testimonials {
    padding-top: 26px;
    padding-bottom: 100px;
    overflow: hidden;
    position: relative;
    max-width: 100%;
}

h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 58px;
}

.testimonials-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    overflow: hidden;
    position: relative;
    width: 80%; 
    margin: 0 auto; 
}


.testimonial-slider {
    display: flex;
    justify-content: center; 
    transition: transform 0.5s ease-in-out;
    width: calc(300% + 40px); 
}


.testimonial-card {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    flex: 0 0 30%; 
    margin: 0 10px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


.testimonial-card.active {
    border: 2px solid #037EAA;
}

.quote {
    font-size: 36px;
    color: #037EAA;
}

.stars {
    font-size: 20px;
    color: #037EAA;
}

.user-info {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

.user-info img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.slider-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.slider-indicators span {
    width: 10px;
    height: 10px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
}

.slider-indicators .active {
    background-color: #037EAA;
    width: 20px;
    border-radius: 10px;
}

/* seccion experiencia */

.experience-section {
    background: #02678E;
    height: 400px;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    text-align: center;
    padding: 100px 0;
    background: url('./images/BG-Image-2.svg');
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
}

.experience-container .titulo {
    font-size: 44px;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    color: #ffffff;
}


.experience-container .normal-text {
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color: #a7effd;
    margin-bottom: 65px;
}



.cta-button {
    display: inline-block;
    background: #0084A5;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    position: relative;
    z-index: 2;
}

.cta-button:hover {
    background: #00B4D8;
}

/* Footer */

.footer {
    background-color: #0A3D5F;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 20px;
}

.copiright {
    padding-left: 0;
    color: white;
}

.footer-section {
    max-width: 200px;
}

.footer-section h4 {
    font-size: 20px;
    font-weight: 700px;
    margin-bottom: 10px;
    font-family: 'nunito', sans-serif;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.footer-section ul li a:hover {
    text-decoration: underline;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social img {
    width: 24px;
    height: 24px;
}

.footer-bottom {
    background-color: #0a3d5f;
    padding: 15px 0;
    font-size: 14px;
    display: flex;           
    justify-content: space-between; 
    align-items: center;     
    max-width: 1280px;        
    margin: 0 auto;  
    padding: 20px 80px;      
}

.footer-bottom p {
    margin: 0;            
}

.footer-logo {
    height: auto;           
    width: auto;      
}

.footer-container .community {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Roboto', sans-serif;
    font-weight: 200;
    font-size: 16px;
}

.community img {
    width: auto;
    height: auto;
}

.community p {
    font-family: 'Nunito', sans-serif;
    font-size: 20px;
    font-weight: 200;
}

.search-box {
    display: flex;
    background: white;
    padding: 5%;
    border-radius: 20px;
    align-items: center;
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
}

.search-box input {
    border: none;
    outline: none;
    padding: 5px;
    width: 150px;
}

.search-box button {
    background: transparent;
    border: none;
    cursor: pointer;
}

/* contacto */

.contact-section {
    background-color: #F6FCFA;
    padding: 100px 0px;
}

#contacto {
    width: 100%;
    background-color: #F6FCFA;
    padding: 0 90 0 90;
    text-align: auto;
    margin-left: 90;
}

.contact-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 50px;
}

.contact-form {
    background-color: #037eaa;
    padding: 40px 30px;
    border-radius: 10px;
    color: white;
    max-width: 400px;
    width: 100%;
    font-family: 'Roboto', sans-serif;
    z-index: 1;
}

.contact-image img {
    max-width: 400px;
    height: auto;
    transform: translateX(-155px) scale(2);
}

.contact-header {
    color: #037eaa;
    font-family: 'Nunito', sans-serif;
    font-size: 44px;
    font-weight: bold;
    margin-bottom: 10px;
    letter-spacing: 1px;
    font-family: 'nunito', sans-serif;
    margin-left: 0;
    padding: 44px 90px 20px 90px;
    text-align: left;
}

.contact-texto-1 {
    padding-left: 90px;
    text-align: left;
    font-size: 16px;
    color: #333;
    line-height: 1.1;
    margin-bottom: 10px;
    margin-left: 90px;
}

.contact-form {
    font-family: 'Roboto', sans-serif;
    background-color: #005672; /* Azul */
    padding: 40px;
    border-radius: 8px;
    max-width: 600px;
    margin: 50px auto;
    color: white;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3)
}

.contact-form h1 {
    margin-bottom: 20px;
    font-size: 24px;
    font-family: 'Nunito', sans-serif;
}

.contact-form label {
    display: block;
    margin: 10px 0 5px;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    padding-bottom: 20px;
    border: none;
    border-radius: 4px;
    margin-bottom: 15px;
}

.contact-form button {
    background-color: #81edf5; /* Azul más oscuro */
    color: rgb(8, 6, 114);
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    font-family: 'Nunito', sans-serif;
    font-size: 24px;
    font-weight: 600;
}

.contact-form button:hover {
    background-color: #004494; /* Azul más oscuro al pasar el ratón */
    color:#a3cbf8
}

.img-fluid{
    max-width: 100%;
    height: auto;
}

/* Nosotros */

.nuestra-historia-section {
    width: 100%;
    background-color: #f6fefd;
    padding: 0 90 0 90;
    text-align: auto;
    margin-left: 90;
  }
  
  .nosotros-titulo {
    color: #037eaa;
    font-size: 44px;
    font-weight: bold;
    margin-bottom: 10px;
    letter-spacing: 1px;
    font-family: 'nunito', sans-serif;
    margin-left: 0;
    padding: 44px 90px 20px 90px;
    text-align: left;
  }
  
  .nuestra-historia-img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    padding: 0px;
  }
  
  /* Nosotros Foto izq + texto y biseversa */

  .quienes-mision {
    width: 100%;
    padding: 90px 100px;
    background-color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    box-sizing: border-box;
  }

  .texto-quienes {
    max-width: 1000px;
    line-height: 1.6;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 90px;
    padding-right: 90px;
  }
  
  .bloque-quienes {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 100px;
    
    gap: 40px;
    flex-direction: row;
  }
  
  .bloque-mision {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    max-width: 100%;
    align-items: flex-start;
    padding-left: 90px;
    padding-right: 90px;
    gap: 40px;
  }

  .texto-mision {
    max-width: 1000px;
    line-height: 1.6;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 90px;
    padding-right: 90px;
  }
  
 
  .imagen-mision {
    flex: 1;
    max-width: 120%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .imagen-quienes{
    height: auto;
    width: 100%;
  }
  .imagen-mision {
    width: 100%;
    height: auto;
    display: block;
  }

  .bloque-mision h2 {
    margin-top: 100px;
  }

.objetivos {
  background-color: #f4fbfc; /* mismo fondo que imagen */
  padding: 60px 275px 60px 275px; /* según mediciones de la imagen */
  font-family: 'Nunito', sans-serif;
  box-sizing: border-box;
}

.objetivos h2 {
  color: #005672;
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
}

.lista-objetivos {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lista-objetivos li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 24px;
}

.icono {
  min-width: 32px;
  height: 32px;
  margin-right: 16px;
  background-image: url("ruta-a-tu-icono-de-tick.png"); /* reemplazar con tu imagen */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.lista-objetivos p {
  color: #719BAA;
  font-size: 18px;
  margin: 0;
  line-height: 1.6;
}

/* circulo con info adentro */

.integrantes-container {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    max-width: 100%;
    align-items: flex-start;
    padding-left: 90px;
    padding-right: 90px;
    padding-bottom: 400px;
    gap: 40px;
    
  }
  
.integrantes-container h1 {

    padding-left: 43%;
    text-align: center;
    align-items: center;
    font-size: 44px;
    margin-bottom: 40px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    color: #005672;
  }
  
  .miembros-grid {
    display: flex;
    max-width: 100%;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 40px;
    padding-left: 90px;
    padding-right: 90px;
  }
  
  .miembro-izquierda {
    background-color: white;
    border: 1px solid #0074b8;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    flex: 1 1 calc(50% - 20px);
    box-sizing: border-box;
    max-width: calc(50% - 20px);
  }

  .miembro-derecha {
    background-color: white;
    border: 1px solid #0074b8;
    border-radius: 10px;
    padding: 46px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    flex: 1 1 calc(50% - 20px);
    box-sizing: border-box;
    max-width: calc(50% - 20px);
  }
  
  .miembro h2 {
    font-size: 20px;
    color: #0074b8;
    margin-top: 10px;
  }
  
  .descripcion p {
    font-family: 'Nunito', sans-serif;
    margin-bottom: 10px;
    color: #333;
    font-size: 16px;
    line-height: 1.6;
  }
  
  .foto-perfil {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #0074b8;
    margin-bottom: 10px;
  }

  .texto-quienes {
    font-family: 'Nunito', sans-serif;
  }

  .texto-mision {
    font-family: 'Nunito', sans-serif;
  }

  .imagen-mision {
    width: 100%;
    padding-top: 5%;
    padding-left: 40px;
  }
  


/* SECCION TALLERES ARRIBA TITULO PARRAFO IMAGEN */

.seccion-talleres {
    font-family: 'Roboto', sans-serif;
    color: #719BAA;
    text-align: center;
    
    position: relative;
    background-color: #f9fbfb; /* O el color de fondo real */
  }

  .seccion-talleres h2 {
    color: rgb(27, 79, 158); /* Ajusta el color del texto según la imagen */
    font-size: 58px;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    padding: 90px 90px 10px 90px;
  }

  .seccion-talleres p {
    padding-top: 3%;
    padding-bottom: 15%;
  }
  
  .contenedor-texto-talleres {
    margin-bottom: 66px;
  }
  
  .titulo-talleres {
    font-size: 40px;
    color: #005672;
    margin-bottom: 40px;
  }
  
  .titulo-talleres span {
    font-weight: bold;
  }
  
  .parrafo-talleres {
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
  }
  
  .contenedor-imagen-fondo {
    display: flex;
    justify-content: center;
    padding: 0 90px 100px 90px;
    overflow: visible;
  }
  
  .imagen-fondo-talleres {
    width: 1100px;
    height: auto;
    display: block;
  }

  
  /* Lista de cursos */

  .bloque-formacion-1 {
    background-color: #f9f9f9;
    font-family: 'Roboto', sans-serif;
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .bloque-formacion-2 {
    background-color: #E5EFEA;
    padding-top: 38px;
    padding-bottom: 34px;
  }

  .bloque-formacion-3 {
    padding-bottom: 100%;
    background-color: #E5EFEA;
    padding-top: 38px;
    padding-bottom: 34px;
}
  
  .contenedor-formacion {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .etiqueta-seccion {
    color: #0074b8;
    font-size: 14px;
    margin-bottom: 0;
  }
  
  .titulo-seccion {
    font-size: 48px;
    font-weight: 400;
    margin-top: 14px;
    margin-bottom: 56px;
    color: #111;
    font-family: 'Nunito', sans-serif;
  }
  
  .card-formacion {
    display: flex;
    gap: 60px;
    align-items: flex-start;
  }
  
  .imagen-formacion {
    width: 400px; /* ajustalo según necesidad */
    border-radius: 20px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3)
  }
  
  .contenido-formacion {
    flex: 1;
  }
  
  .titulo-card-formacion {
    font-size: 20px;
    font-weight: bold;
    color: #0074b8;
    margin-bottom: 10px;
  }
  
  .texto-card-formacion {
    font-size: 16px;
    font-family: 'Nunito', sans-serif;
    line-height: 1.6;
    margin-bottom: 16px;
    color: #444;
  }
  
  .acciones-formacion {
    margin-top: 60px;
    display: flex;
    align-items: center;
    gap: 175px;
  }
  
  .boton-conocer-mas {
    background-color: #0074b8;
    color: #fff;
    padding: 18px 40px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
  }
  
  .link-diseno-curricular {
    color: #0074b8;
    text-decoration: underline;
    font-size: 14px;
  }

  .final-de-lista-cursos {
    padding-bottom: 400px;
    color: #fff;
  }
  