
@font-face {
	font-family: 'Mulish_Regular';
	src: url('https://academiamentat.com/assets/fonts/Mulish-Regular.ttf') format('truetype');
	/*src: url('./Fonts/Mulish-Regular.ttf') format('truetype');*/
}

@font-face {
	font-family: 'Mulish_Bold';
	src: url('https://academiamentat.com/assets/fonts/Mulish-Bold.ttf') format('truetype');
	/*src: url('./Fonts/Mulish-Bold.ttf') format('truetype');*/
}

@font-face {
	font-family: 'Mulish_ExtraBold';
	src: url('https://academiamentat.com/assets/fonts/Mulish-ExtraBold.ttf') format('truetype');
	/*src: url('./Fonts/Mulish-ExtraBold.ttf') format('truetype');*/
}

@font-face {
	font-family: 'BasicSans_Bold';
	src: url('https://academiamentat.com/assets/fonts/Basic_Sans_Bold.otf');
	/*src: url('./Fonts/Basic_Sans_Bold.otf') format('truetype');*/
}

@font-face {
	font-family: 'Mulish_ExtraLightItalic';
	src: url('https://academiamentat.com/assets/fonts/Mulish-ExtraLightItalic.ttf');
	/*src: url('./Fonts/Mulish-ExtraLightItalic.ttf') format('truetype');*/
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
	line-height: 1;
	font-family: "Mulish_Regular", sans-serif !important;
	font-size: clamp(22px, 2vw, 28px) !important;
}

/* Ajustes para las secciones */
section {
  padding-top: 60px; /* Debe ser igual a la altura del navbar */
}

/*** Menu navbar ***/
/* Estilos del navbar */
.navbar {
  position: fixed !important;
  font-size: clamp(16px, 2vw, 20px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  padding: 10px 70px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 60px; /* Ajusta este valor según la altura de tu navbar */
  z-index: 1000;
}

.logo a {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 16px;
  margin: 0;
  padding: 0;
}

.nav-item {
  text-decoration: none;
  color: #002e6d;
  font-weight: bold;
  padding: 5px 0;
  position: relative;
  transition: color 0.3s;
}

.nav-item:hover {
  color: #f0a500;
}

.nav-item::after {
  content: '';
  display: block;
  width: 0;
  height: 3px;
  background-color: #f0a500;
  transition: width 0.3s;
  position: absolute;
  bottom: -2px;
  left: 0;
}

.nav-item:hover::after,
.nav-item.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle .bar {
  width: 25px;
  height: 3px;
  background-color: #1a1a1a;
  margin: 3px 0;
}

/* Media query para pantallas móviles */
@media (max-width: 630px) {
  .navbar {
    padding: 10px 20px;
    height: 50px; /* Ajusta si la altura del navbar es diferente en móviles */
  }
  
  .nav-links {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #fff;
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    width: 100%;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }

  .nav-links.active {
    display: flex;
    padding: 20px 0;
  }

  .menu-toggle {
    display: flex;
  }

}

/****** Seccion 1 Hero*****/
/* Sección Hero mejorada */
.hero {
  margin-left: 50px;
  display: flex;
  align-items: center;
  background-color: #ffffff;
  position: relative;
  margin-bottom: 10%;
  scroll-behavior: smooth;
}

.hero .container {
  position: relative;
  width: 100%;
  z-index: 1;
}

.text-image {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding-top: 15vh;
}

.hero .persona-image {
  position: absolute;
  right: 0;
  width: auto;
  max-width: 500px;
  z-index: 2;
}

.descripcion {
  font-size: 28px;
  color: #002e6d;
  margin-right: 50%;
  position: relative;
  z-index: 3;
}

.boton-descargar {
  display: inline-block;
  margin-top: 10px;
  position: relative;
  z-index: 3;
}

.boton-descargar img {
  width: 400px;
  transition: transform 0.3s ease;
}

.boton-descargar img:hover {
  transform: scale(1.05);
}


/* Media query para pantallas pequeñas */
@media screen and (min-width: 1075px) and (max-width: 1199px)   {
.hero .persona-image {
  position: absolute;
  right: 0;
  width: auto;
  max-width: 400px;
  z-index: 2;
}
}

@media (max-width: 1074px) {
	.hero {
	  margin-left: 50px;
	  display: flex;
	  align-items: center;
	  background-color: #ffffff; /* Fondo blanco o puedes agregar un degradado */
	  position: relative;
	  padding-bottom: 10%;
	}

	.hero p {
	  margin-top: 0px;
	  color: #002e6d;
	}

	.txtExtraBold{
		font-family: "Mulish_ExtraBold", sans-serif !important;
	}

	.text-image {
		/*width: -webkit-fill-available;*/
		width: 50%;
	}

	.hero .persona-image {
	  position: absolute;
	  right: 0; /* Pega la imagen al margen derecho */
		width: 55%;
	}

	.descripcion {
	  font-size: clamp(22px, 2vw, 28px);
	  color: #002e6d;
	  margin-right: 60%;
	}

	.boton-descargar img {
	  width: 18rem;
	  transition: transform 0.3s ease;
	}
}



/* Estilos para móviles */
@media (max-width: 630px) {
  .hero {
    margin-left: 0;
    
    text-align: center;
    min-height: auto;
  }

  .text-image {
    width: 100%;
    max-width: 300px;
    padding-top: 20px;
    position: relative;
    z-index: 1;
  }

  .hero .persona-image {
    position: relative;
    width: 100%;
    max-width: 280px;
    margin: -45px auto 0;
    z-index: 2;
  }

  .descripcion {
    margin-right: 0;
    margin-top: 20px;
    font-size: clamp(18px, 2vw, 22px);
    padding: 0 15px;
  }

  .boton-descargar img {
    content: url('https://academiamentat.com/resources/imagenes/landing1/02_btn1DescargarMovil.png');
    width: 100%;
    max-width: 300px;
  }
}

/* Comportamiento de desplazamiento suave para toda la página */
html {
  scroll-behavior: smooth;
}

@media (max-width: 630px) {
  section {
    min-height: auto;
    /*padding: 30px 0;*/
  }
}



/****** Seccion 2 Question*****/
.descarga {
  background-image: url('https://academiamentat.com/resources/imagenes/landing1/01_Seccion2-80.jpg');
  background-size: cover;
  background-repeat: no-repeat;
}

.descarga .contenedor {
  width: 100%;
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  align-items: center;
}

.descarga p {
  margin-top: 0px;
  color: #ffffff;
}

.descarga .pregunta {
  font-family: "BasicSans_Bold", sans-serif !important;
    font-size: clamp(30px, 4vw, 38px);
  color: #ffffff;
}

.descarga .respuesta {
  color: #ffffff;
}

.descarga .amarillo {
  color: #f2c943;
}

.txtBold {
  font-family: "Mulish_Bold", sans-serif !important;
}

.marginRight {
    margin-right: 12%;
    margin-bottom: 80px;
}

.alignderecha {
  display: flex;
  justify-content: flex-end;
}

.laptop-image {
  margin-bottom: 0;
  padding-bottom: 0;
  width: 100%;
  max-width: 620px;
}

@media (max-width: 1044px) {
  .descarga {
    background-image: url('https://academiamentat.com/resources/imagenes/landing1/01_Seccion2-80.jpg');
  background-size: auto;
  background-repeat: no-repeat;
  }
  
  .descarga .contenedor {
  width: 100%;
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
      align-items: end;
}
.marginRight {
    padding-top: 10%;
}
  
}

/* Estilos para pantallas de 630px o menos */
@media (max-width: 630px) {
  .descarga {
    background-image: url('https://academiamentat.com/resources/imagenes/landing1/03_Seccion2Movil.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    /*padding: 15px 20px;*/
  }

  .descarga .contenedor {
    display: grid;
    grid-template-rows: auto 1fr auto;
    grid-template-columns: auto;
    justify-items: center;
    /*padding-top: 20%;*/
    height:100%;
  }

  .descarga .movil-amarillo {
  color: #f2c943;
  }

  .marginRight {
    margin-right: 0;
    text-align: center;
    padding: 0px 20px;
    margin-bottom: 20px;
  }

  .pregunta {
    font-size: 24px;
    text-align: center;
    margin-bottom: 10px;
  }

  .respuesta {
    font-size: 18px;
    line-height: 1.4;
    text-align: center;
    margin-bottom: 15px;
  }

  .alignderecha {
    justify-content: center;
  }

  .descarga .boton-descargar img {
    content: url('https://academiamentat.com/resources/imagenes/landing1/03_btn1DescargarMovil.png');
    width: 100%;
    max-width: 200px;
  }

  .laptop-image {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    padding: 0;
    align-self: end;
    justify-self: center;
    /*transform: translateY(18px);*/
    transform: translateY(0px);
  }

  .descarga .contenedor > div:first-child {
    grid-row: 3;
    align-self: end;
  }

  .descargaImg img {
    content: url('https://academiamentat.com/resources/imagenes/landing1/02_laptopMovil.png');
    width: 100%;
    max-width: 300px;
  }
}





/*** Seccion 3 Incluye ***/
/*** Seccion 3 Incluye ***/
.incluye {
  display: flex;
  margin: 0px 50px;
  padding-top: 100px;
  font-size: clamp(22px, 2vw, 26px);
  color: #002e6d;
  flex-wrap: nowrap;
  flex-direction: column;
  align-items: center;
}

.temas {
  display: flex;
  align-items: stretch;
  padding-top: 5%;
  padding-bottom: 5%;
}

.textocentrado {
  text-align: center;
  padding-left: 5px;
  padding-right: 5px;
}

.temas img {
  width: 195px;
  height: 150px;
  gap: 16px;
  padding-bottom: 20px;
  padding-top: 10px;
}

.incluyentes {
  font-family: "Mulish_ExtraBold", sans-serif !important;
  line-height: 1.5;
}

.incluye .boton-descargar {
  width: 400px;
  transition: transform 0.3s ease;
  text-align: center;
}

.incluyeImg img {
  width: 550px;
  height: auto;
}

@media (max-width: 630px) {
  .incluye {
    margin: 0px 20px;
    padding-top: 40px;
    font-size: 16px;
  }

  .incluyeImg img {
    content: url('https://academiamentat.com/resources/imagenes/landing1/02_texto2Movil.png');
    width: 250px;
    height: auto;
  }

  .temas {
    display: flex;
    flex-direction: column;
    padding-top: 20px;
    padding-bottom: 0;
    gap: 10px;
  }

  .incluye .textocentrado {
    text-align: center;
    padding: 0 15px 20px;
  }

  .temas img {
    width: 155px;
    height: auto;
    padding-bottom: 10px;
    padding-top: 5px;
  }

  .incluye .boton-descargar {
    width: auto;
    margin-top: 10px;
  }

  .incluye .boton-descargar img {
    content: url('https://academiamentat.com/resources/imagenes/landing1/03_btn1DescargarMovil.png');
    width: 100%;
    max-width: 200px;
  }

  .incluyentes {
    font-size: 18px;
    margin-bottom: 5px;
  }
  
  .temas p{
    line-height: 1;
  }
}



/** Seccion 4 Elegir**/
.elegir {
  background-color: #ffffff;
  position: relative;
  padding-top: 0px;
}

/* Container for desktop */
.elegir .container {
  width: 100%;
  display: grid;
  max-width: -webkit-fill-available;
}

/* Title styling */
.title-container {
  margin-left: 54%;
}

.elegir .pregunta {
  font-family: "BasicSans_Bold", sans-serif !important;
    font-size: clamp(28px, 3vw, 34px);
    color: #002e6d;
    margin: 0px;
    transform: translateY(500%);
}

.elegir .pregunta-imagen {
  display: none;
  width: 100%;
  max-width: 300px;
  height: auto;
}

.elegir .txtExtraBold {
  font-family: "Mulish_ExtraBold", sans-serif !important;
}



/* Content wrapper */
.content-wrapper {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 0px 50px;
}

/* Image container */
.elegirImg {
  position: relative;
}

.elegir .persona-image {
    width: auto;
    max-width: 500px;
    transform: translateY(150px);
}

/* List styling */
.razones {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.razones li {
  margin-bottom: 20px;
  position: relative;
  padding-left: 30px;
  font-size: clamp(22px, 2vw, 26px);
  color: #002e6d;
}

.icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url('https://academiamentat.com/resources/imagenes/landing1/01_paloma-80.jpg');
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* Button styling */
.elegir .boton-descargar {
  display: inline-block;
  margin-top: 70px;
}


/* Tablet breakpoint */
@media (max-width: 1074px) {
  .elegir .container {
    display: contents;
  }
  
  .elegir .persona-image {
    width: 360px;
    transform: translateY(85px);
  }
  .elegir .pregunta {
    transform: translateY(300%);
}
}

@media (max-width: 819px) {
.elegir .pregunta {
    transform: translateY(100%);
}
}

@media (max-width: 715px) {
.margenMovil{
  margin-right: 15%;
}
}

/* Mobile breakpoint */
@media (max-width: 630px) {


  .elegir {
    margin-left: 0;
    padding-top: 0px !important;
  }

  .elegir .container {
    display: flex;
    flex-direction: column;
    padding-right: 0;
  }

  /* Mobile title styling */
  .title-container {
    width: 100%;
    text-align: center;
    margin: 40px 0;
  }

  .elegir .pregunta {
    display: none;
  }

  .elegir .pregunta-imagen {
      display: block;
        width: auto;
        max-width: 220px;
        margin: 0 auto;
        margin-bottom: -500px;
        transform: translate3d(10px, 70px, 0px);
  }

  /* Mobile content layout */
  .content-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0px;
        justify-items: center;
        align-items: center;
  }

  .elegirImg {
    margin-bottom: 0;
  }
  
  .elegir .persona-image {
        width: 300px;
      transform: translateY(40px);
    }

  .elegirImg img {
    content: url('https://academiamentat.com/resources/imagenes/landing1/02_persona2Movil.png');
    height: auto;
  }

  /* Mobile list styling */
  .razones {
    padding: 0;
    margin: 0;
    padding-top: 60%;
  }
  
  .razones li {
  font-size: clamp(16px, 2vw, 22px);
  padding-left: 18px;
  margin-bottom: 8px;
  }

  /* Hide desktop button on mobile */
  .elegir .boton-descargar {
    display: none;
  }
  
.movil-txtBold {
    font-family: "Mulish_Bold", sans-serif !important;
}

.icon {
    display: inline-block;
    width: 14px;
    height: 14px;
    background-image: url(https://academiamentat.com/resources/imagenes/landing1/01_paloma-80.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 10%;
    transform: translateY(0%);
}
  
}


/* Mobile breakpoint */
@media (max-width: 430px) {
  .elegir .persona-image {
        width: 210px;
        transform: translateY(35px);
    }
}

/**** Seccion 5 Formulario ****/
.formulario {
    position: relative;
    z-index: 10;
    display: flex;
    background-image: url(https://academiamentat.com/resources/imagenes/landing1/02_formulario.png);
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 90vh;
    background-position: right top;
    justify-content: center;
    align-items: center;
}

.formulario .container {
  display: flex;
  margin: 0px 70px;
  padding-top: 15%;
  color: #ffffff;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
}

.containForm {
	margin: 0;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.custom-form {
  width: 100%;
  max-width: 70rem; /* Ajusta el máximo ancho del formulario */
  padding: 20px 0px;
}

.form-group {
  display: flex;
  gap: 10px; /* Espacio entre campos en la misma fila */
  margin-bottom: 15px;
}

.form-group input[type="text"],
.form-group input[type="email"] {
	font-family: "Mulish_ExtraLightItalic", sans-serif !important;
	font-size: clamp(22px, 2vw, 26px)!important;
  width: 50%; /* Cada campo en la fila ocupa el 50% */
  padding: 15px;
  border: 1px solid #71d4ff;
  background: transparent;
  color: #71d4ff;
  outline: none;
}

.single{
	padding-right: 10px;
}

.custom-form input::placeholder {
  color: #71d4ff;
  opacity: 0.8;
}

.custom-form input:focus {
  border-color: #00c0ff;
}

.form-terms {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0px;
  font-size: clamp(16px, 2vw, 20px)
}

.form-terms a {
  color: #ffffff;
  text-decoration: none;
}

.boton {
  display: flex;
  justify-content: flex-end;
}

.btn-submit {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.btn-submit img {
  width: 200px;
  transition: transform 0.3s ease;
}

.btn-submit:hover img {
  transform: scale(1.05);
}

.btn-submit .button-text {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.formulario a:hover {
  color: #ffffff;
}

/* Estilos para el estado de carga */
.btn-submit.loading img {
  opacity: 0.5;
}

.btn-submit.loading::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid #002e6d;
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Media query para pantallas pequeñas */
@media screen and (min-width: 851px) and (max-width: 1100px) {
.formulario {
  position: relative;
  z-index: 10;
    display: flex;
    background-image: url('https://academiamentat.com/resources/imagenes/landing1/02_formulario.png');
    background-size: cover;
    background-repeat: no-repeat;
	background-position: right top;
    min-height: 60vh;
    align-items: center;
}
.formulario .container {
  display: flex;
  margin: 0px 70px;
  padding-top: 15%;
  color: #ffffff;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
}
	
}

@media screen and (min-width: 631px) and (max-width: 850px) {
    .formulario {
        position: relative;
        z-index: 10;
        display: flex;
        background-size: contain;
        min-height: 60vh;
        align-items: center;
        background-image: linear-gradient(to top, #002e6d 70%, transparent 50%), url(https://academiamentat.com/resources/imagenes/landing1/02_formulario.png);
        background-repeat: no-repeat, no-repeat;
    }
    
    .formulario .container {
    padding-top: 20%;
    }

}


/* Ajustes para móvil (630px o menos) */
@media (max-width: 630px) {
  .formulario {
    background-image: linear-gradient(to top, #002e6d 80%, transparent 50%), url(https://academiamentat.com/resources/imagenes/landing1/02_formulario.png);
        background-repeat: no-repeat, no-repeat;
        background-size: contain;
    min-height: auto;
    padding: 20% 0 0 0;
  }

  .formulario .container {
    margin: 0 20px;
    padding-top: 0;
  }

  .formulario p {
    font-size: 18px;
    margin-bottom: 0px;
    padding-top: 0px;
  }

  .custom-form {
    padding: 20px 0;
  }

  .form-group {
    flex-direction: column;
    gap: 10px;
  }

  .form-group input[type="text"],
  .form-group input[type="email"] {
    width: 100%;
    font-size: 16px !important;
    padding: 12px;
  }

  .single {
    padding-right: 0;
  }

  .form-terms {
    font-size: 14px;
    margin: 15px 0;
  }

  .btn-submit img {
    width: 160px;
  }
}




/*** Footer ***/
.footer {
	font-family: "Mulish_Regular", sans-serif !important;
	font-size: clamp(16px, 2vw, 20px);
  background-color: #002e6d; /* Cambia según tu color */
  color: #ffffff;
  padding: 20px 0;
}

.footer a:hover {
    color: #ffffff;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-direction: row;
}

.footer-logo img {
  max-width: 250px; /* Ajusta según tu logo */
}

.footer-social a {
  margin: 0 10px;
}

.footer-social img {
  width: 40px; /* Tamaño de los íconos */
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
}

.footer-links span {
  color: #71d4ff;
}

.footer-bottom {
  font-size: 14px;
}

.footer-bottom a {
  color: #71d4ff;
  text-decoration: none;
}

/* Estilos para móvil (630px o menos) */
@media (max-width: 630px) {

.footer-top {
    display: flex
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0px;
    flex-direction: column;
    gap: 20px;
}

  .footer-social {
    margin-bottom: 30px;
  }

  .footer-social a {
    margin: 0 15px;
  }

  .footer-social img {
    width: 30px;
  }
  
}

