@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wdth,wght@0,75..100,300..800;1,75..100,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    background: #000;
}

html {
    font-size: 62.5%;
}

@media screen and (min-width: 320px) {
    /*==========Header==========*/
 header {
    width: 100%;
    height: 19vh;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    z-index: 999;
    position: fixed;
    padding: 0px 15px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
 }

 .home {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0px 15px;
  }
 
  .home video {
     z-index: 000;
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100vh;
     object-fit: cover;
  }
 
  .home:before {
    z-index: 9;
    content: '';
    position: absolute;
    background: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(255, 255, 255, 0) 100%);
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
}

/*==============Secciones==============*/

    .seccion {
        width: 100%;
        height: 100vh;
        background-color: #000;
        padding: 15px 15px ;
    }

    .slider {
      position: relative;
      overflow: hidden;
      width: 100%;
      height: 100vh;
    }

    .seccion-stats {
      width: 100%;
      height: 100vh;
      display: flex;
      flex-direction: column;
    }

    .seccion-nosotros {
      width: 100%;
      height: 140vh;
      display: flex;
      flex-direction: column-reverse;
      justify-content: center;
      padding: 0px 15px;
    }

    #counter-section {
      height: 80vh;
      display: flex;
      justify-content: space-around;
      align-items: center;
      font-family: Arial, sans-serif;
      text-align: center;
    }

    .seccion-contacto {
      width: 100%;
      height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

/*==============Articulos==============*/


.slide {
  height: 90vh;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(10, 1fr);
  position: absolute; /* Necesario para superposición */
  opacity: 1; /* Mostrar diapositiva activa */
  z-index: 1; /* Colocar al frente */
}

.slide .contenido-slide {
  grid-column: 1/9;
  grid-row: 1/3;
}

.btn-wsp {
  background: url(https://res.cloudinary.com/dst8jzvpc/image/upload/v1738281080/wsp-btn_sqtpzq.webp) no-repeat;
  background-position: center;
  background-size: cover;
  position: fixed;
  cursor: pointer;
  width: 6.5rem;
  height: 6.5rem;
  z-index: 10;
  border-radius: 50%;
  bottom: 15px;
  right: 15px;
}

.contactar-container {
  grid-row: 9/11;
  grid-column: 1/7;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.contactar-container .boton {
  margin-top: 1.6rem;
}

.articulo-stats {
  width: 100%;
  height: 65vh;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}

.articulo-textos {
  width: 100%;
  height: 75vh;
}

.articulo-imagenes {
  width: 100%;
  height: 50vh;
  position: relative;
}

/*==========Formulario==========*/

.formulario {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
  font-family: "gesta", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.formulario label {
  font-size: 14px;
  color: white;
  margin-bottom: 5px;
}

.formulario input,
.formulario textarea {
  background: none;
  border: none;
  border-bottom: 2px solid white;
  padding: 8px 0;
  color: white;
  font-size: 16px;
  margin-bottom: 20px;
  outline: none;
  font-family: "gesta", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.formulario input::placeholder,
.formulario textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.formulario input:focus,
.formulario textarea:focus {
  border-bottom-color: #ccc;
}

button[type="submit"] {
  display: flex;
  padding: 10px 15px;
  font-family: "Open Sans", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  color: #ffffff;
  background-color: #1434c4;
  border: none;
  border-radius: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 12rem;
  align-self: center;
  justify-content: center;
}

/* Sección de confirmación */
.confirmacion {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #334189;
  color: white;
  height: 100vh;
  font-family: "gesta", sans-serif;
}

.confirmacion h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.confirmacion p {
  font-size: 16px;
  margin-bottom: 10px;
  color: white;
}

.confirmacion button {
  color: #fff; /* Color del texto */
  background: none; /* Sin fondo */
  border: 2px solid #fff; /* Bordes blancos */
  padding: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease; /* Suaviza el cambio del hover */
  font-family: "gesta", sans-serif;
}

.confirmacion button:hover {
  background-color: #fff;
  color: #334189;
}

.confirmacion .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
/*==============img==============*/

.img-nosotros {
  width: 70%;
  border-radius: 24px;
}

.img1 {
  position: absolute;
  top: 5%;
}

.img2 {
  position: absolute;
  top: 12rem;
  left: 11rem;
}

/*==============Videos==============*/

.video-comercio {
  width: 100%;
  border-radius: 24px;
}

.video1 {
  width: 95%;
  position: relative;
  margin-top: 1.6rem;
  left: 15px;
  grid-column: 1/7;
  grid-row: 3/6;
  align-self: center;
}

.video2 {
  width: 95%;
  position: relative;
  margin-top: 1.6rem;
  grid-column: 1/7;
  grid-row: 6/9;
}

/*==============Div's==============*/

.slider-container {
  position: relative;
}


.contenido {
    width: 100%;
    height: 35vh;
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.container-texto {
  width: 100%;
  height: 25vh;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}

.container-multimedia {
  width: 100%;
  height: 55vh;
  display: flex;
  flex-direction: column;
}

.stat-container {
  width: 90%;
}

/*==============Titulos==============*/

.titulo {
    font-family: "Open Sans", sans-serif;
    font-size: 3.6rem;
    font-weight: 700;
    line-height: 0.9;
    color: #fff;
    width: 100%;
    text-align: left;
}

.titulo-main {
  margin-bottom: 1.6rem;
}

.subtitulo {
  font-family: "Open Sans", sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 0.9;
  color: #fff;
  width: 100%;
  text-align: left;
}

.seccion-contacto .subtitulo {
  text-align: center;
}

.titulo-nosotros {
  font-size: 2.4rem;
} 

.titulo-slide {
  text-align: start;
  margin-bottom: 1.6rem;
}




/*==============Textos==============*/

.texto {
    font-family: "Open Sans", sans-serif;
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 1.2;
    color: #fff;
    width: 100%;
    text-align: left;
}

.texto-main {
  margin-bottom: 1.6rem;
}

.salto1 {
  display: none;
}

.texto-presentacion {
  font-size: 1.8rem;
  text-align: center;
}

.boton {
    display: inline-block;
    padding: 8px 20px;
    font-family: "Open Sans", sans-serif;
    font-size: 1.4rem; /* Tamaño del texto */
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    color: #ffffff; /* Texto blanco */
    background-color: #1434c4; /* Azul formal */
    border: none; /* Sin bordes */
    border-radius: 25px; /* Bordes redondeados */
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Sombra sutil */
  }
  
  .boton:hover {
    background-color: #357ABD; /* Azul más oscuro en hover */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15); /* Sombra más pronunciada */
    transform: translateY(-2px); /* Efecto sutil de elevación */
  }
  
  .boton:active {
    background-color: #4A90E2; /* Mismo color original */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Menor sombra */
    transform: translateY(0); /* Restaura la posición */
  }

  .boton-cotactar {
    margin-top: 1.6rem;
  }

  .prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(20, 52, 196, 0.2);
    color: white;
    border: none;
    padding: 8px 24px;
    cursor: pointer;
    z-index: 10;
    border-radius: 24px;
  }

  button.prev {
    top: 84%;
    left: 10px;
    font-size: 2.8rem;
  }
  
  button.next {
    top: 84%;
    right: 10px;
    font-size: 2.8rem;
  }
  
  .plus-sign {
    font-family: "Open Sans", sans-serif;
    font-size: 4.6rem;
    color: #1434c4;
    font-weight: 900;
  }

  .stat-number {
    font-family: "Open Sans", sans-serif;
    font-size: 4.6rem;
    font-weight: 700;
    line-height: 0.9;
    color: #fff;
  }

  .stat-text {
    font-family: "Open Sans", sans-serif;
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 1;
    color: #fff;
  }

  .texto-nosotros {
    width: 95%;
    padding-top: 1.2rem;
  }

  .contactar-container .texto {
    text-align: center;
  }

  /*===========Footer==========*/

 .footer {
    width: 100%;  
    height: 80vh;
    position: relative;
    background: #000;  
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
 
  .footer1 {
   width: 90%;
   height: 30vh;
   display: flex;
   flex-direction: column;
   justify-content: space-around;
  }
 
  .footer2 {
   width: 90%;
   height: 30vh;
   position: relative;
   display: flex;
   flex-direction: column;
   justify-content: space-around;
   align-items: flex-start;
  }
 
  .container-info {
   width: 100%;
   height: 12vh;
   display: flex;
   flex-direction: column;
   justify-content: space-evenly;
   align-items: flex-start;
  }
 
  .logo-footer {
   width: 7rem;
  }
 
  .text-info {
   font-family: "gesta", sans-serif;
   font-weight: 400;
   font-style: normal;
   font-size: 1.6rem;
   color: #fff;
  }  

}

@media screen and (min-width: 1080px) {

    .home {
        padding: 0px 100px;
    }

  /*==============Secciones==============*/

    .seccion {
      padding: 50px 50px;
    }

    .seccion-stats {  
      height: 65vh;
    }

    .seccion-nosotros {
      height: 100vh;
      flex-direction: row;
      justify-content: space-evenly;
      align-items: center;
    }


  /*==============Articulos==============*/

  .slide {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(10, 1fr);
    position: absolute; /* Necesario para superposición */
    opacity: 1; /* Mostrar diapositiva activa */
    z-index: 1; /* Colocar al frente */
  }

  .articulo-stats {
    height: 35vh;
    flex-direction: row;
    align-items: center;
  }

  .articulo-textos {
   width: 45%;
   height: 100vh;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: flex-start;
  }

  .articulo-imagenes {
    width: 40%;
    height: 100vh;
    position: relative;

  }

  /*==============Div`s==============*/

  .contenido {
   width: 55%;
   height: 35vh;
   display: flex;
   flex-direction: column;
   justify-content: center;
  }

  .stat-container {
    width: 32%;
  }

  #counter-section {
    height: 50vh;
  }

  .slide .contenido-slide {
    grid-column: 1/5;
    grid-row: 1/3;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: flex-start;
  }

  .contactar-container {
    grid-column: 5/10;
    grid-row: 7/8;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    padding: 0% 9%;
  }

  .contactar-container .texto {
    text-align: left;
  }


  .img-nosotros {
    width: 42rem;
  }

  .img1, .img2 {
    position: absolute;
  }

  .img1 {
    top: 12rem;
  }

  .img2 {
    top: 27rem;
    left: 22rem;
  }

  /*==============videos==============*/

  .video-comercio {
    width: 100%;
    align-self: center;
    justify-self: center;
  }

  .video1 {
    grid-column: 5/10;
    grid-row: 1/6;
    width: 85%;
  }

  .video2 {
    grid-column: 1/5;
    grid-row: 4/9;
    width: 85%;
  }

  .salto {
    display: none;
  }

  button.prev {
    top: 50%;
    padding: 1.2rem 2rem 1.8rem 2rem;
  }
  
  button.next {
    top: 50%;
    padding: 1.2rem 2rem 1.8rem 2rem;
  }

  /*==============Titulos==============*/

  .titulo-nosotros {
    width: 100%;
    text-align: left;
    font-size: 3.2rem;
    line-height: 1.2;
  }

  /*==============Textos==============*/

  .texto {
      font-size: 1.6rem;
      line-height: 1.2;
  }

  .contactar-container .boton {
    margin-top: 1.8rem;
  }

  /*==============Footer==============*/

  .footer {
      flex-direction: row;
      height: 45vh;
      align-items: center;
      justify-content: space-evenly;
    }
  
    .footer1, .footer2 {
      flex-direction: row;
      align-items: center;
      height: 24vh;
      width: 45%;
    }
  
    .container-info {
      width: 70%;
    }

}








