:root {
  /* Colors: */
  --blanco: #FFFFFF;
  --gris: #949495;
  --verde: #5F9EA6;
  --azul-oscuro: #043144;
  /* Font/text values */
  --unnamed-font-family-lato: 'Lato', sans-serif;
  --unnamed-font-style-normal: 400;
  --unnamed-font-style-bold: 700;
  --unnamed-font-style-light: 300;
  --unnamed-font-size-14: 14px;
  --unnamed-font-size-15: 15px;
  --unnamed-font-size-16: 16px;
  --unnamed-font-size-20: 20px;
  --unnamed-font-size-25: 25px;
  --unnamed-font-size-35: 35px;
  --unnamed-font-size-39: 39px;
  --unnamed-font-size-42: 42px;
  --unnamed-font-size-46: 46px;
  --unnamed-font-size-50: 50px;
  --unnamed-font-size-70: 70px;
  --unnamed-line-spacing-17: 17px;
  --unnamed-line-spacing-24: 24px;
  --unnamed-line-spacing-25: 25px;
    --unnamed-line-spacing-32: 32px;
  --unnamed-line-spacing-35: 35px;
  --unnamed-line-spacing-46: 46px;
  --unnamed-line-spacing-50: 50px;
  --unnamed-line-spacing-84: 84px;
  --unnamed-text-transform-uppercase: uppercase;
}


.verde{
color: var(--verde);
}

body {
  font-family: var(--unnamed-font-family-lato);
  font-weight: var(--unnamed-font-style-normal);
  font-size: var(--unnamed-font-size-16);
  line-height: var(--unnamed-line-spacing-24);
  color: var(--azul-oscuro);
  justify-content: center;
  align-items: center;
}

.menu_link {
  font-weight: var(--unnamed-font-style-bold);
  font-size: var(--unnamed-font-size-14);
  line-height: var(--unnamed-line-spacing-17);
  color: var(--verde);
  text-transform: var(--unnamed-text-transform-uppercase);
}

h1 {
  font-weight: var(--unnamed-font-style-bold);
  font-size: var(--unnamed-font-size-46);
  line-height: var(--unnamed-line-spacing-50);
  color: var(--blanco);
}

.bajada_slider {
  font-weight: var(--unnamed-font-style-light);
  font-size: var(--unnamed-font-size-25);
  line-height: var(--unnamed-line-spacing-35);
  color: var(--blanco);
}


.bajada_slider2 {
  font-weight: var(--unnamed-font-style-light);
  font-size: var(--unnamed-font-size-20);
  line-height: var(--unnamed-line-spacing-32);
  color: var(--blanco);
}

#notification {
    height: auto;
    width: 35%;
    background-color: #5F9EA6;
    color: white;
    position: fixed;
    bottom: 0;
    margin-bottom: 10px;
    margin-left: 33%;
    border-radius: 15px;
    z-index: 9999;
    padding: 6px;
    padding-left: 20px;
}

.close-noti {
    width: 10%;
    float: right;
    margin-right: 10px;
    text-align: right;
    cursor: pointer;
}
    
.text-noti {
    width: 80%;
    float:left;
    text-align: left;
}

.show{
    display:block !important;
    transition: display 1s;
}

.args {
  display: none;
}

.args-show {
  display: block;
}

.usd {
  display: none;
}

.usd-show {
  display: block;
}

.contenedor {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px; /* Ajusta el ancho máximo según tus necesidades */
  height: 400px;
  margin: 0 auto;
  padding: 20px;
}

.contenedor2 {
  display: flex;
  align-items: center;
  justify-content: center;
} 

.contenedor3 {
  display: flex;
  text-align: center;
  justify-content: center;
} 

.caja {
  box-sizing: border-box;
  width: 50%; /* Ajusta el ancho según tus necesidades */
  margin-bottom: 20px;
  text-align: center;
  padding: 20px;
  align-items: center;
  border-radius: 8px;
}

.caja2 {
  box-sizing: border-box;
  width: 50%; /* Ajusta el ancho según tus necesidades */
  text-align: center;
  height: 400px;
}

.boton-desktop {
  display: none; /* Oculto por defecto en dispositivos móviles */
}

.botones-container {
  display: flex;
  flex-direction: column; /* Apilados uno encima del otro en versión móvil */
  align-items: center;
}

a.botonpopup {
  color: var(--verde);
  border-radius: 0.35rem;
  border: 1px solid #5F9EA6;
  display: inline-block;
  width: 70%;
  height: auto;
  padding: 15px;
  text-align: center;
  margin: 15px; /* Espaciado entre los botones en versión de escritorio */
  font-size: 1.35rem;
  text-decoration: none;
}

@media (min-width: 768px) {
  .botones-container {
      flex-direction: row; /* En línea en versión de escritorio */
  }
  h2 {
    font-size: 1.2rem;
  }

}

@media (min-width: 769px) {
  .boton-desktop {
      display: block; /* Mostrado en dispositivos de escritorio */
      margin-top: 20px; /* Espacio entre el botón y los otros elementos */
  }
}

@media (max-width: 500px) {

  .caption h1 {
    text-align: left;
    text-shadow: 2px 2px 5px black;
  }

  h2 {
      padding-left: 10px;
  }

  h3 {
      padding-left: 10px;
  }

  p {
      padding-left: 10px;
  }

  a{
      padding-left: 10px;
  }

  .contenedor {
      flex-direction: column;
      align-items: stretch;
      height: auto;
  }
  .contenedor2 {
    flex-direction: column;
    align-items: stretch;
    height: auto;
  }
  .contenedor3 {
    flex-direction: column;
    align-items: stretch;
    height: auto;
  }

  .caja {
      width: 100%; /* En dispositivos móviles, ocupa el 100% del ancho */
  }

  .caja:nth-child(1) {
    order: 2; /* Cambia el orden del primer div en dispositivos móviles */
  }

  .caja:nth-child(2) {
    order: 1; /* Cambia el orden del segundo div en dispositivos móviles */
  }

  .caja2 {
      width: 100%; /* En dispositivos móviles, ocupa el 100% del ancho */
      height: 150px;
  }

}

.section-below {
  width: 100%;
  text-align: center;
  margin-top: 20px;
}

.section-below h2 {
  font-size: 1.5em;
}

.popup-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.3s ease;
}

.popup {
  background-color: #fff;
  max-width: 80%;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  position: relative;
  transition: transform 0.3s ease;
}

.popup-container.active {
  visibility: visible;
  opacity: 1;
}

.popup.active {
  transform: scale(1);
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .popup {
      max-width: 90%;
  }
}


p {
  font-weight: var(--unnamed-font-style-normal);
  font-size: var(--unnamed-font-size-16);
  line-height: var(--unnamed-line-spacing-24);
  padding-top: 1rem;
  color: var(--azul-oscuro);
}

h2 {
  font-weight: var(--unnamed-font-style-bold);
  font-size: var(--unnamed-font-size-39);
  line-height: var(--unnamed-line-spacing-46);
  color: var(--azul-oscuro);
}



.whatsapp {
  position:fixed;
  width:60px;
  height:60px;
  bottom:40px;
  right:40px;
  background-color:#25d366;
  color:#FFF;
  border-radius:50px;
  text-align:center;
  font-size:32px;
  z-index:100;
}

.whatsapp-icon {
  margin-top:13px;
}


.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.main {
  margin-top: 95px;

}

/*++++++++++++++++++++ MENU ++++++++++++++++++++*/
.header a {
  color: var(--verde);
  text-decoration: none;
  font-size: 14px;

}

.header {
  background: #ffffff;
  border-bottom: 1px solid #cecece;
  color: var(--azul-oscuro);
  padding: 1rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2000;
}

.logo-nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

span.menu-icon {
  display: none;
  font-size: 1.5rem;
}

.navigation ul {
  margin: 0;
  padding: 0;
  list-style: none;

}

.navigation ul li {
  display: inline-block;

}

.navigation ul li a {
  display: block;
  padding: 0.5rem 1rem;
  border-radius: 5px;

}

.navigation ul li a:hover {
  text-decoration: underline;

}

.navigation ul li a.active {
  background: var(--verde);
  color: var(--blanco);
}

.navigation ul li a.active:hover {
  text-decoration: none;
  cursor: default;
}

/*++++++++++++++ CARROUSEL +++++++++++++++++++*/


      a.boton_slider {

        color: var(--blanco);
          border-radius: 0.35rem;
          background-color: var(--verde);
          display: inline-block;
          width: 50%;
          height: auto;
          padding: 15px;
          text-align: center;
          margin: 15px;
          margin-left: 0;
          font-size: 1.35rem;
         text-decoration: none;
      }


      a.boton_slider:link{

        text-decoration: none;
      }

      a.boton_slider:active{

        text-decoration: none;
      }

      a.boton_slider:focus{

        text-decoration: none;
      }

      a.boton_slider:hover{
      color: var(--blanco)!important;
        text-decoration: none;
      background-color: var(--verde);
      }

      a.boton_slider:visited{

        text-decoration: none;
      }





.slideshow ul, ol {
  list-style: none;
}

.slideshow {
  width: 100%;
  position: relative;
}

.slider li, ul {
  width: 100%;
}

.slider li {
  overflow: hidden;
}

.slider li img {
  width: 100%;
}

.slider .caption {
  position: absolute;
  width: 50%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 15px 0px;
  padding-left: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  text-align: center;
  color: #fff;
  z-index: 1;
}

.slider .caption .bajada_slider {
  margin-top: 10px;
}

.pagination {
  position: absolute;
  top: 102%;
  width: 100%;
  display: flex;
  justify-content: center;
}

.pagination li {
  font-size: 16px;
  margin: 2px 5px;
  color: #858585;
  cursor: pointer;
}

.left, .right {
  position: absolute;
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
  color: #ffffff;
  font-size: 35px;
  cursor: pointer;
  z-index: 2;
}

.left {
  left: 30px;
}

.right {
  right: 30px;
}

.slideshow .fa-chevron-left, .slideshow .fa-chevron-right, .pagination .fa-circle {
  font-size: 0.60em;
}

/*++++++++++++++++++BENEFICIOS++++++++++++++++++++++*/
.beneficios {
  margin-top: 8rem;
}

div.gallery {
  text-align: center;
}

.beneficios i {
  font-size: 5rem;
  color: var(--verde);
}

div.desc {
  padding: 15px;
  text-align: center;
  color: var(--verde);
  font-size: 1.25rem;
}

* {
  box-sizing: border-box;
}

.responsive {
  padding: 0 1rem;
  float: left;
  width: 33.33333%;
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

/*+++++++++++++++ UN POCO DE MI ++++++++++++++*/
.flex-container-texto {
  display: flex;
  justify-content: left;
  align-items: center;

}

.texto_parrafo {
  padding-right: 45%;

}

.overlay-image {
  height: 38rem;

margin-top: 3rem;
 background-position: 40%;
  background-size: cover;*/
  background-color: #777;
  background-image: url(../img/foto.jpg);


}


/*++++++++++++++++++PLANES++++++++++++++++++++++*/
.planes {
  margin-top: 5rem;
}

div.gallery2 .titulo {
  color: var(--blanco);
  border: 1px solid #5F9EA6;
  width: 100%;
  height: 5rem;
  text-align: center;
  border-radius: 0.65rem 0.65rem 0 0;
  border-bottom: 1px solid rgb(0 0 0 / 13%);
  background-color: var(--verde);
}

div.gallery2 h2 {
  margin: 0;
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-size: 1.87rem;
  font-weight: 400;

}

div.gallery2 .precio {
  font-size: 2rem;
 
  font-weight: 300;
  text-align: center;
    color: var(--verde);
}

div.gallery2 .precio2 {
  text-align: center;
    color: #FF0000;
}

div.gallery2 li {
  padding-top: 1rem;
}

div.gallery2 .detalle {
  padding: 1rem 1.25rem 1rem 3rem;
  text-align: left;
}

div.gallery2 {
  border: 1px solid rgb(0 0 0 / 13%);
  border-radius: 0.65rem;
 text-align: center;
margin-bottom: 3rem;

}

div.gallery2:hover {
  border: 1px solid #5F9EA6;
}

div.gallery2 .titulo.show h2{
    background-color: var(--verde);
    color: var(--blanco);
    border-radius: 0.50rem 0.50rem 0 0;
    border-bottom: 1px solid #5F9EA6;

}


div.desc2 {
  padding-top: 20px;
}

.responsive2 {
  padding: 0 1rem;
  float: left;
  width: 33%;
}

.responsive3 {
  padding: 0 1rem;
  float: center;
  width: 100%;
}


a.boton_planes {

  color: var(--blanco);
    border-radius: 0.35rem;
    border: 1px solid #5F9EA6;
    display: inline-block;
    width: 90%;
    height: auto;
    padding: 15px;
    text-align: center;
    margin: 15px;
    font-size: 1.35rem;
   text-decoration: none;
background-color: var(--verde);

}


a.boton_medios {

  color: var(--verde);
    border-radius: 0.35rem;
    border: 1px solid #5F9EA6;
    display: inline-block;
    width: 90%;
    height: auto;
    padding: 15px;
    text-align: center;
    margin: 15px;
    font-size: 1.35rem;
   text-decoration: none;
}


a.boton_planes:link{

  text-decoration: none;
}

a.boton_planes:active{

  text-decoration: none;
}

a.boton_planes:focus{

  text-decoration: none;
}

a.boton_planes:hover{
color: var(--blanco)!important;
  text-decoration: none;
background-color: var(--verde);
}

a.boton_planes:visited{

  text-decoration: none;
}

a.boton_medios:hover{
color: var(--verde)!important;
  text-decoration: none;
background-color: var(--blanco);
}


/*+++++++++++++++ EBOOKS ++++++++++++++*/

.responsive_book {
  padding: 0 1rem;
  float: left;
  width: 50%;
}

.foto_ebook img{
width: 80%;



}



.overlay-image2 {
  height: 750px;
  padding: 4rem 0;

  background-color: #f2f3f7;

}


.overlay-image2 ul{

  padding-left: 1rem;
}

.overlay-image2 ul li{

  padding-top: 0.65rem;
}


/*+++++++++++++++ EXPERIENCIA ++++++++++++++*/

.experiencia {
  margin-top: 5rem;
  margin-bottom: 15rem;
}


/*+++++++++++++++ TESTIMONIOS ++++++++++++++*/



.slideshow2 ul, ol {
  list-style: none;
}

.slideshow2 {
  width: 100%;
  position: relative;
}


.slideshow2{

background-position: center;
background-size: cover;
background-image:url(../img/fondo_testimonios.jpg);
height:500px;

}

.slider2 li, ul {
  width: 100%;
}

.slider2 li {
  overflow: hidden;
}

.slider2 li img {
  width: 100%;
}



.slider2 .caption2 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  padding: 15px 0px;



  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  z-index: 1;
}

.slider2 .caption2 .bajada_slider2 {
  margin-top: 10px;
  width: 400px;
}

.pagination2 {
  position: absolute;
  top: 102%;
  width: 100%;
  display: flex;
  justify-content: center;
}

.pagination2 li {
  font-size: 16px;
  margin: 2px 5px;
  color: #858585;
  cursor: pointer;
}

.left2, .right2 {
  position: absolute;
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
  color: #ffffff;
  font-size: 35px;
  cursor: pointer;
  z-index: 2;
}

.left2 {
  left: 150px;
}

.right2 {
  right: 150px;
}

.slideshow2 .fa-chevron-left, .slideshow2 .fa-chevron-right, .pagination2 .fa-circle {
  font-size: 0.60em;
}


/*+++++++++++++++ FOOTER ++++++++++++++*/

footer{

 background-color: var(--azul-oscuro);
color: #096d97;
padding: 35px 0px;
}

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

.redes i {

padding-left: 1rem;
}

/*+++++++++++++++ CONTACTO ++++++++++++++*/



input[type=submit] {
  background-color: var(--verde);
  color: white;
  padding: 12px 20px;
  border: none;
  width: 100%;
  border-radius: 0.35rem;
  cursor: pointer;
  float: right;
}

.texto_parrafo_contacto {

  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 30%;
  padding: 4rem 0;
}


.texto_parrafo_contacto h2{

  text-align: center;
}

form {

  padding-top: 3rem;

}

input[type=text], textarea {
  width: 100%;
  padding: 15px 20px;
  box-sizing: border-box;
  border: 1px solid #cecece;
  border-radius: 0.35rem;
  margin-bottom: 20px;
  margin-top: 5px;

}

.mensaje{
width: auto;
height: auto;
padding: 20px;
background-color: var(--verde);
color: var(--blanco);
text-align: center;
margin-top: 1rem;

}


.popupInicial {
  z-index: 9999;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  /* opacity: 0; */
  align-items: center;
  transition: visibility 0s, opacity 0.3s ease;
}

.popupinicial-content {
  background: #fff;
  padding: 20px;
  text-align: center;
}

button-popup {
  margin: 10px;
}

@media screen and (min--moz-device-pixel-ratio: 1.5),
       screen and (-o-min-device-pixel-ratio: 3/2),
       screen and (-webkit-min-device-pixel-ratio: 1.5),
       screen and (min-resolution: 1.5dppx) {
    div.gallery2 h2 {
      margin: 0;
      padding-top: 1rem;
      padding-bottom: 1rem;
      font-size: 1.2rem;
      font-weight: 400;
    
    }
}


/*+++++++++++++++ MEDIA QUERI++++++++++++++*/


@media only screen and (max-width: 2560px)
{
  .texto_parrafo {

    padding-right: 34% ;

  }



footer {

 height: 340px;
} 




}


@media  screen and (max-width: 1440px) {

  .texto_parrafo {

    padding-right: 45% ;

  }



    h1 {
    font-size: 36px;
    line-height: 42px;
    }

    .bajada_slider {
      font-size: 16px;
      line-height: 30px;

    }

footer {

 height: 370px;
} 


}


@media only screen and (max-width: 768px) {



footer {

 height: 600px;
} 


.bajada_slider {

font-size: 16px;
line-height: 25px;

}

h1 {

font-size: 42px;

}


  .texto_parrafo_contacto {


    max-width: 90%;

  }

  main {
    margin-top: 80px !important;
  }

  .header {
    padding-bottom: 0;
    padding-bottom: 1rem;
  }

  .navigation {
    width: 100%;
  }

  .navigation ul li a.active {
    background: none;
    color: var(--verde);
    text-decoration: underline;
  }

  .navigation ul li a.active:hover {
    text-decoration: underline;
    cursor: default;
  }

  span.menu-icon {
    display: block;
    cursor: pointer;
  }

  .navigation ul {
    display: none;
  }

  .navigation ul.show {
    display: block;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .navigation ul li {
    display: block;
  }

  .navigation ul li a {
    display: block;
    padding: 0.5rem 0;
  }

  .navigation ul li a:hover {
    background: none;
    color: var(--verde);
    text-decoration: underline;
  }

  .header div a img {
    width: 75%;
  }


  .responsive2{
      width: 100%;
      margin: 1rem 0;
    }



div.gallery2 h2 {

  font-size: 1.2rem;

}


div.gallery2 {

margin-bottom: 1rem;

}

.overlay-image2 {
  height: 800px;

}

  .overlay-image {
    height: auto;
    background-position: center;
  }

  .texto_parrafo {
    padding-top: 10%;
    padding-right: 45%;
    padding-bottom: 10%;
  }

  .slider .caption {
    width: 100%;
    padding: 15px 50px;
    align-items: center;
    text-align: center;
  }


  .flex-container-texto2 {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;

  }

  .foto_ebook img{

    padding-bottom: 1rem;
  }




  input[type=submit] {

    width: 100%;

  }

 .experiencia {
    margin-top: 3rem !important;
  }




}

@media only screen and (max-width: 600px) {
    
    #notification {
        width: 80%;
        margin-left: 10%;
    }

  .slider .caption p {
    display: none;
  }

  .slider .caption h1 {
    font-size: 16px;
    line-height: 24px;
  }

  .left, .right {
    font-size: 30px;
  }

  .slider li img {
    width: 600px;
  }

  .pagination {
    display: none;
  }

  .left {
    left: 30px;
  }

  .right {
    right: 30px;
  }


 footer {

 height: 650px;
} 

} 

@media only screen and (max-width: 440px) {
  .beneficios, .experiencia {
    margin-top: 0 !important;
  }



  .slider .caption h1 {
    font-size: 16px;
    line-height: 24px;
  }

  div.gallery {
    margin-top: 2rem;
  }

  main {
    margin-top: 80px;
  }

  .responsive, .responsive_book {
    width: 100%;
  }


  .overlay-image2 {
    height: 1450px;

  }

  footer {

 height: 780px;
} 





  .overlay-image {
    height: auto;
    background-position: top left;
  }

  .texto_parrafo {
    padding-top: 10%;
    padding-right: 5%;
    padding-bottom: 10%;
  }


  .left2 {
    left: 30px;
  }

  .right2 {
    right: 30px;
  }

  .bajada_slider2{
    font-size: 16px;
  }

  .slider2 .caption2 .bajada_slider2 {
    margin-top: 5px;
    width: 300px;
  }

  .slideshow2{

    height: 300px;
  }

  input[type=submit] {

    width: 100%;

  }



.planes a.boton_planes{

font-size: 16px;

}


  a.boton_slider {

      width: 90%;

    margin-right: 0;

}

.inside-div {
  padding: 30%;

}

.slideshow2{


height:500px;

}



}
