html{
  scroll-behavior: smooth;
}


body{
  font-family: lexend;
  font-weight: 400;
}

/*video principal*/
.video-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
  width: 100vw;
  height: 100vh;
  max-width: 100%;
  overflow: hidden;
  margin: 0 auto;
}

.iframe-wrapper {
  position: relative;
  flex: 1 1 49%;
  padding-bottom: 56.25%; /* Proporción 16:9 */
  height: 0;
  min-width: 300px;
  max-width: 100%;
}

.iframe-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.overlay {
  position: absolute;
  top: 20%;
  left: 1%;
  z-index: 2;
  color: white;
  background: rgba(0, 0, 0, 0.6);
  padding: 30px;
  border-radius: 8px;
 
}



.azulito{
  color: #007bff;
  font-weight: bold;
}
.contenedor10{
  display: flex;
  width: 90%;
  margin: auto;
  margin-top: 100px;
  background-color: white;
  box-shadow: 0px 0px 1px black;
  border-radius: 10px;
  padding: 30px;
}


.cta-button{
    background-color: #17f817;
    padding: 20px;
    color: white;
    border-radius: 12px;

}

@media (max-width: 768px){
  .contenedor10{
   flex-direction: column;
   width: 100%;
  }
  

}
.contenedor10 h1{
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  color: #1e90ff;
  padding: 10px;
}


form {
    max-width: 400px;
    margin: auto;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  label {
    display: block;
    margin-top: 10px;
  }
  
  input, select{
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }

  .boton3{
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border-radius: 10px;
  }
  
  .boton3 {
    background-color: #007bff;
    color: white;
    font-weight: bold;
    cursor: pointer;
  }
  
  .boton3:hover {
    background-color: #0056b3;
  }


  /*NOTIFICACION DE MENSAJE ENVIADO*/

/* Contenedor de la notificación */
#notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: #4CAF50; /* Verde para "éxito" */
  color: white;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: none; /* Oculto por defecto */
  z-index: 1000; /* Para que esté por encima de otros elementos */
  animation: fade-in-out 4s ease-in-out;
}

/* Estilo del contenido interno */
.notification-content {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}

.check-icon {
  font-size: 20px;
}

/* Animación de entrada y salida */
@keyframes fade-in-out {
  0% { opacity: 0; transform: translateY(-20px); }
  10%, 90% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-20px); }
}

 

/*seccion de preguntas frecuentes*/
/*seccion de preguntas frecuentes*/

.faq-container{
  max-width: 70%;
  margin: auto;
  margin-top: 50px;
}

.faq-item{
  border: 1px solid #ccc;
  text-align: center;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 50px;
}
.question{
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-between;
}

.arrow{
  font-weight: bold;
  font-size: 18px;
  cursor: pointer;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background-color: #1e90ff;
  color: white;
  padding: 2px;
  }

.answer{
   margin-top: 10px;
   color: #333;
   display: none;
}

@media (max-width: 768px){
  .faq-container{
    max-width: 90%;
  }
}



/*seccion dividida*/


.contenedor3full{
  background-color:#E8F0FE ;
  padding: 50px;
}
.contenedor3{
  display: flex;
  color: #1e90ff;
  background-color: white;
  max-width: 1255px;
  height: 500px;
  margin: auto;
  margin-top: 50px;
  border-radius: 30px;
  box-shadow: 0px 0px 1px black;
  margin-bottom: 40px;

}

.texto3{
 padding: 20px;
 margin-top: 50px;
 font-size: 22px;
 flex: 1;
}

.image3{
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.image3 img{
  width: 100%;
  height: 100%;
  border-radius: 30px;
}

.boton4{
  background-color: #1e90ff;
  color: white;
  padding: 10px;
  width: 60%;
  margin: auto;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}
.boton4:hover{
  transform: scale(1.1);
}

@media (max-width: 768px){
  .contenedor3full{
    padding: 10px;
  }
  .contenedor3{
   max-width: 100%;
   flex-direction: column;
   height: 550px;
  }
  .texto3{
    margin-top: 10px;
  }

  .image3 img{
    display: none;
  }

 
}



/*audios con icono*/
.testimonial {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  border-bottom: 1px solid #ddd;
  background-color: #f9f9f9;
  max-width: 50%;
  margin: auto;
  border-radius: 50px;
  margin-top: 30px;

}

.testimonial i {
  font-size: 24px;
  color: #333;
  width: 30px;
  height: 30px;
  background-color: white;
  border-radius: 50%;
  padding: 10px;
  justify-content: center;
  align-items: center;
  display: flex;
  
}

.testimonial audio {
  margin-top: 5px;

}

@media (max-width: 768px){
  .testimonial{
    flex-direction: column;
    max-width: 90%;
  }
}



.contenedor5{
  position: relative;
  display: inline-block;
  
}
.texto5{
  position: absolute;
  top: 20%;
  left: 5%;
  color: white;
  font-size: 30px;
}



@media (max-width: 768px){
  .texto5{
    font-size: 12px;
  }
 

 
}
.video-responsive {
  position: relative;
  padding-bottom: 56.25%; /* Relación 16:9 */
  padding-top: 25px;
  height: 0;
  overflow: hidden;
}

.video-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


.hablemos1{
  width: 50%;
  margin-top: 30px;
  border-radius: 50px;
  padding: 20px;
  border: none;
  background-color: #1e90ff;
  color: white;
  cursor: pointer;
  position: absolute;
}

/*sistema de navegacion*/
.navbar{
    display: flex;
    justify-content: space-between;
    box-shadow: 0px 0px 10px #007bff;
    top: 0;
    padding: 10px;
    background-color: white;
    
  
}

.logo{
    font-weight: bold;
    font-size: 25px;
    cursor: pointer;
}

.nav-links{
    display: flex;
    gap: 30px;
   
}
 

.nav-links li{
    list-style: none;
   
}
.nav-links a{
    text-decoration: none;
    
    
}
.nav-links a:hover{
    border-bottom: 1px solid #28C254;
}
.verde{
   border: 1px solid #007bff;
   padding: 10px;
   background-color: #007bff;
   border-radius: 12px;
   color: white;
  
}


.contenedor20{
  display: flex;
  margin: auto;
 justify-content: center;
  background-color: #007bff;
  color: white; 
  gap: 10rem;
}

.uno{
  align-items: center;
  font-size: 100px;
  margin-top: 20px;
  margin-bottom: 20px;

}
.dos{
  align-items: center;
  font-size: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
  background-color: white;
  color: #007bff;
  padding: 10px;
  border-radius: 12px;
}



.publica{
  border: none;
  background-color: white;
  color: #007bff;
  border-radius: 12px;
  height: 50px;
  width: 200px; 
  cursor: pointer;
  margin-top: 40px;
  margin-bottom: 20px;
  animation: boton infinite 2s ease;
}
@keyframes boton{
  0% {
    transform: scale(1.1);
  }
  50%{
    transform: scale(1);
  }
  100%{
    transform: scale(1.1);
  }

}


.azul3{
  margin-top: 50px;
  background-color: #007bff;
  color: white;
  padding: 15px;
  border: none;
  cursor: pointer;
  border-radius: 12px;
  width: 250px;
  animation: pulse  1.5s ease infinite;
}

@keyframes pulse{
  0%{
    transform: scale(1);
  }
  50%{
    transform: scale(1.1);
  }
  100%{
    transform: scale(1);
  }
}

@media (max-width: 768px){
      .contenedor20{
        flex-direction: column;
        width: 90%;
        text-align: center;
        padding: 10px;
      }

      .uno{
        margin-top: 0;
        margin-bottom: 0;
      }
      .dos{
        margin-top: 0;
        margin-bottom: 0;
      }
      .publica{
        margin-top: -200px;
      }
}


.gris{
    color: #131D29;
}


.hamburger{
    display: none;
    background-color: #007bff;
    color: white;
    border: none;
   
}
.verde-texto{
  color: #007bff;
}


@media (max-width: 768px){
    .hamburger{
        display: block;
        height: 35px;
        margin-top: 2px;
        border-radius: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        
    }
    

    .nav-links{
        position: absolute;
        flex-direction: column;
        width: 100%;
        height: 200px;
        top: 49px;
        right: 0;
        background-color: #007bff;
        border-radius: 0px 0px 50px;
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.8s ease-out;
        z-index: 10001;
    }
    .nav-links a{
        color: white;
        padding: 10px;
       
    }
    .nav-links.show{
        display: flex;
         max-height: 300px;
         
    }
    .verde{
        border: 1px solid white;
    }
    .verde:hover{
        color: #28C254;
        background-color: white;
    }
    .logo{
        font-size: 15px;
        
    }
   

}


/*seccion dividida para web*/
.contenedor7{
  display: flex;
  width: 95%;
  margin: auto;
  margin-top: 90px;
  border-radius: 10px;
}

.texto7{
  flex: 1;
  margin: auto;
  text-align: center;
  
  
}
.texto7 h2{
color: #1e90ff;
}

.texto7 li{
  color: #333;
  list-style: none;
  font-size: 25px;


}

.primero{
  padding: 20px;
  margin-top: 10px;
  width: 300px;
  border-radius: 20px;
  border: none;
  background-color: #1e90ff;
  color: white;
  cursor: pointer;
}
.primero:hover{
  transform: scale(1.1);
}

.image7{
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
}

.image7 i{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 200px;
  font-size: 80px;
  color: white;
  background-color: #1e90ff;
  padding: 20px;
  border-radius: 50%;

}
.image7 img{
  width: 100%;
  border-radius: 8px;
}

@media (max-width: 768px){
  .contenedor7{
    flex-direction: column;
    margin-top: 20px;
  }
  .image7 i{
    width: 80px;
    height: 80px;
    font-size: 50px;
  }
}

.contenedor8{
  text-align: center;
  margin-top: 80px;
 
}
.contenedor8 h2{
 color: #1e90ff;
 font-size: 35px;
}
.contenedor8 li{
  color: #333;
}

.verde{
  margin-top: 50px;
  padding: 20px;
  border-radius: 20px;
  background-color: rgb(23, 248, 23);
  border: none;
  width: 300px;
  color: white;
  cursor: pointer;
}
.verde:hover{
  transform: scale(1.1);
}


.contenedor9{
  display: flex;
  gap: 1em;
  width: 90%;
  flex-direction: row;
  margin: auto;
}

.videoss video{
  border-radius: 30px;
   width: 600px;
   height: 600px;
}

@media (max-width: 768px){
  .contenedor9{
    flex-direction: column;
  }
  .videoss video{
    width: 100%;
  }
}


.texto11{
  display: flex;
  width: 90%;
  margin: auto;
  margin-top: 200px;
 

}
.contenedor11{
  padding: 20px;
  margin: 10px;
  box-shadow: 0px 0px 1px black;
  border-radius: 10px;
  width: 300px;
  height: 200px;
  margin: auto;
  
}
#uno{
 transform: translateY(40px);
}
#dos{
  transform: translateY(-20px);
}
#tres{
  transform: translateY(-80px);
}
.contenedor11 h2{
  color: #333;
  text-align: center;
}
@media (max-width: 768px){
  .texto11{
    flex-direction: column;
    width: 90%;
    margin-top: 10px;
  }
  .contenedor11{
   margin-top: 100px;
  }
}
.contenedor11 i{
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: auto;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  color: white;
  background-color: #1e90ff;
  box-shadow: 0px 0px 1px black;
  padding: 10px;
}


/*botones de servicios*/
.btn-container {
    margin-bottom: 20px;
    text-align: center;

}
.btn {
    background-color:#17f817 ;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    margin: 5px;
    border-radius: 5px;
}

.btn:hover {
    background-color: #0056b3;
}

.content {
    display: none;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

ul {
    list-style: none;
    padding: 0;

}

.content li {
    margin: 10px 0;
    display: flex;
    align-items: center;
    font-size: 25px;
    
}

.content i {
    margin-right: 10px;
    color: #17f817;
}


.contenedor12{
  text-align: center;
  box-shadow: 0px 0px 1px black;
  width: 50%;
  margin: auto;
  padding: 30px;
  margin-top: 120px;
  border-radius: 20px;
  color: #333;
  font-size: 20px;
}

.boton12{
  font-size: 20px;
  background-color: #1e90ff;
  color: white;
  padding: 12px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  box-shadow: 0px 0px 1px black;
}
.boton12:hover{
  transform: scale(1.1);
}

/*boton flotante formulario*/
.floating-btn{
  position: fixed;
  display: flex;
  right: 30px;
  bottom: 30px;
  background-color: #17f817;
  color: white;
  width: 200px;
  padding: 10px;
  border-radius: 20px;
  cursor: pointer;
}
@media (max-width: 768px){
    .floating-btn{
     left: 10px;
    }
}
.floating-btn:hover{
  transform: scale(1.1);
}

.social-icons{
  margin: auto;
  text-align: center;
  margin-top: 20px;
}
.social-icons i{
  margin: 20px;
  font-size: 20px;
  background-color: #1e90ff;
  color: white;
  padding: 10px;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
}
.social-icons p{
  color: #333;
}
.social-icons i:hover{
  opacity: 0.8;
}



/*carrusel de videos*/

.carousel {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 20px 0;
  background-color: #f9f9f9;
}

.carousel-container {
  display: flex;
  gap: 10px;
  padding: 0 20px;
}

.carousel-item {
  flex: 0 0 80%;
  scroll-snap-align: center;
  position: relative;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  min-width: 300px;
  max-width: 300px;
}

.carousel-item iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Escritorio: mostrar más de uno si hay espacio */
@media (min-width: 768px) {
  .carousel-item {
    flex: 0 0 45%;
  }
  .carousel-item iframe{
    min-height: 90%;
  }
}


/*portafolios de fundadores*/

.presentacion{
  display: flex;
  width: 100%;
  gap: 30px;
  text-align: center;
  margin: auto;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  
  
}

.portafolio img{
  width: 130px;
  height: 130px;
  border-radius: 50%;
}

.presentaciontexto{
  text-align: center;
  background-color: white;
  width: 50%;
  margin: auto;
  padding: 20px;
  border-radius: 30px;
  margin-top: 20px;
}

.presentaciontexto h1{
  color: #1e90ff;
}

.portafolio{
  background-color: white;
  color: #333;
  padding: 20px;
  border-radius: 30px;
  height: 300px;
  width: 300px;
}

footer{
  background-color: #E8F0FE;
  padding: 20px;
  margin-top: 30px;
}

@media (max-width: 768px){
  .presentacion{
    flex-direction: column;
  }

  .presentaciontexto{
    width: 70%;
    margin: auto;
  }
}


/*video de youtube primero*/

.testimonios-dos {

  max-width: 100%;
  padding: 40px 20px;
  background-color: white;
  color: white;
  text-align: center;
  border-radius: 18px;
}

.testimonios-dos h2 {
  font-size: 2em;
  margin-bottom: 30px;
  color: #007bff;
  margin-top:300px;
  
}

.videos-dos {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 5px;
  flex-wrap: wrap;
}

.video-box {
  flex: 1 1 48%;
  position: relative;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  min-width: 300px;
  max-width: 600px;
}

.video-box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* 📱 Móvil: apilados y centrados */
@media (max-width: 768px) {
  .videos-dos {
    flex-direction: column;
    align-items: center;
  }
}
  .video-box {
    flex: none;
    width: 100%;
    max-width: 500px;
    margin-bottom: 20px;
  }
  .testimonios-dos{
      top: 0;
      margin-top: -300px;
}

/*botones*/
.cta-button2{
    background-color: #17f817;
    color: white;
    padding: 20px;
    display: flex;
    text-align: center;
    width: 200px;
    margin: auto;
    margin-top: 30px;
    border-radius: 20px;
    animation: pulse infinite ease 2s;
}
@keyframes pulse {
  
  0%{
    transform: scale(1.1);
  }
  50%{
    transform: scale(1);
  }
  100%{
    transform: scale(1.1);
  }

}
.cta-button2 a{
    text-decoration: none;
}