@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

.favicon-icon {
  border-radius: 3px; /* Ajusta este valor para recortar más o menos */
}


body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f5f5f5;
  margin-left: auto; /* Centra el body horizontalmente */
  margin-right: auto; /* Centra el body horizontalmente */
  box-sizing: border-box;
}
main {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    max-width: 70vw; /* Limita el ancho máximo del contenido */
    margin-left: auto; /* Centra el body horizontalmente */
    margin-right: auto; /* Centra el body horizontalmente */
    box-sizing: border-box;
}
/* Estilo para el header */
header {
  background-color: #f5f5f5;
  position: fixed;
  top: 0;
  /* width: 100%; */
  padding: 0vh 3vw;
  box-shadow: 0 0.2vh 0.4vh rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  left: 0;
  z-index: 1000000000;
}

header a {
  text-decoration: none;
  color: #e62b1a;
  font-weight: bold;
  font-size: 3vw;
  display: flex; /* Hace que los enlaces también sean flex containers */
  align-items: center; /* Alinea verticalmente cualquier contenido dentro del enlace */
}

#header-title {
  text-decoration: none;
  color: #e62b1a;
  font-weight: bold;
  font-size: 5vw;
}

#header-title img {
  max-width: 30%;
  height: auto;
  display: block;
  margin: 0 auto; /* Centra la imagen horizontalmente */
}


.btn-get-started {
  background-color: #e62b1a;
  color: white;
  padding: 1.5vh 2vw;
  border-radius: 0.5vh;
  text-decoration: none;
  font-weight: bold;
  font-size: 2vw;
  /* margin-right: 2vw; */
  white-space: nowrap; /* Impide que el texto se rompa en varias líneas */
}
.btn-get-started2 {
  background-color: #e62b1a;
  color: white;
  padding: 1vh 2vw;
  border-radius: 0.5vh;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.6vw;
}


/* Estilo para el contenido principal */
.text-video {
    margin-top: 15vw;
    text-align: center; 
    display: flex;
    flex-direction: row; /* Coloca el h1 y el video en fila */
    align-items: center; /* Alinea verticalmente al centro */
    justify-content: space-between; /* Espacio entre el h1 y el video */
}

.main-content h1 {
    font-size: 4.8vw;
    color: black;
    line-height: 1.2;
    max-width: 50%; /* Limita el ancho del h1 al 50% del contenedor */
}

.main-content h1 span {
    color: #e62b1a;
}

#video1 {
    max-width: 50%; /* Limita el ancho del video al 50% del contenedor */
    max-height: 50vh; /* Limita la altura del video para mantener la proporción */
    border-radius: 1vh; /* Opcional: redondea los bordes del video */
    margin-left: 2vw; /* Espacio entre el texto y el video */
}

/* Estilo para la línea horizontal */
hr {
    border: none;
    height: 2vw;
    background-color: #333;
    margin: 2vh auto; /* Centra el hr horizontalmente */
    width: 70vw;
    max-width: 100%;
    box-sizing: border-box;
    margin-bottom: 5vh;
}

#hr-fino {
  border: none;
  height: 0.5vw;
  background-color: #ccc;
  margin: 1vh auto; /* Centra el hr horizontalmente */
  width: 70vw;
  max-width: 100%;
  box-sizing: border-box;
  margin-bottom: 3vh;
}


/* Estilo para la sección de contenido */
.content-section {
    padding: 5vh 0;
    background-color: #f5f5f5;
    text-align: center;
    max-width: 100%;
}

.content-section h2 {
    font-size: 5vw;
    color: #e62b1a;
    margin: 0;
}

.content-section h3 {
    font-size: 4vw;
    color: #e62b1a;
    margin: 1vh 0 2vh 0;
}

.content-section p {
  font-size: 1.7vw;
  color: #333;
  line-height: 1.6;
  max-width: 50vw; /* Limita el ancho del texto */
  text-align: justify; /* Justifica el texto */
  margin: 0 auto; /* Centra el bloque de texto horizontalmente */
  font-weight: 700; /* Ajusta el grosor de la letra a un nivel intermedio */
  padding-top: 0.7vh;
}




.content-section ul {
    font-size: 1.5vw;
    color: #333;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 50vw; /* Limitar el ancho de la lista */
    text-align: justify; /* Justifica el texto de la lista */
}

.content-section li{
  margin-left: 2vw;
  font-weight: 700; /* Ajusta el grosor de la letra a un nivel intermedio */
}

.content-section a {
    text-decoration: none;
    color: #e62b1a;
    font-weight: bold;
}

#center h3{
  text-align: center;
  padding-right: 10px;

}

#center p{
  text-align: center;
}


/* Estilo para la sección de contenido */
.content-section2 {
  display: flex;
  flex-direction: column; /* Organiza los elementos en una columna */
  align-items: center; /* Centra los elementos horizontalmente */
    background-color: #f5f5f5;
  max-width: 100%;
  box-sizing: border-box; /* Asegura que el padding no sobresalga del ancho del contenedor */
}

.content-section2 > *:not(.solutions-video) {
  margin-bottom: 2vh; /* Añade espacio entre los elementos */
}

.content-section2 h2 {
  font-size: 4vw;
  color: #e62b1a;
  margin: 0;
}

.content-section2 h3 {
  font-size: 3vw;
  color: #e62b1a;
  margin: 1vh 0 2vh 0;
}


.content-section2 p {
  font-size: 1.7vw;
  color: #333;
  line-height: 1.6;
  max-width: 80%; /* Limita el ancho del texto */
  text-align: justify; /* Justifica el texto */
  margin: 0 auto; /* Centra el bloque de texto horizontalmente */
  font-weight: 500; /* Ajusta el grosor de la letra */
  padding-top: 0.7vh;
}

.content-section2 ol {
  font-size: 1.2vw;
  color: #333;
  line-height: 1.5;
  max-width: 45%; /* Limita el ancho del ol para dejar espacio al video */
  text-align: justify;
  margin: 0; /* Elimina márgenes para un mejor ajuste */
  padding-right: 2vw; /* Añade un poco de espacio entre la lista y el video */
  font-weight: 500;
  padding-left: 0;
  padding-top: 0.7vh;
}

.content-section2 li {
  margin-bottom: 1vh; /* Añade espacio entre los elementos de la lista */
}

.solutions-video {
  display: flex; /* Organiza el ol y el video en una fila */
  align-items: flex-start; /* Alinea el ol y el video en la parte superior */
  justify-content: space-between; /* Distribuye el espacio entre el ol y el video */
  max-width: 80%; /* Limita el ancho total del contenedor de video y lista */
  margin-top: 2vh; /* Añade espacio encima del contenedor */
}

#video-sol {
  max-width: 50%; /* Limita el ancho del video */
  max-height: 50vh; /* Limita la altura del video */
  border-radius: 1vh; /* Redondea los bordes del video */
}

.content-section2 a {
  text-decoration: none;
  color: #e62b1a;
  font-weight: bold;
  display: inline-block;
  margin-top: 2vh; /* Espacio encima del enlace */
}

.carousel-container {
  position: relative;
  width: 60vw; /* Ajusta el tamaño según sea necesario */
  max-width: 100%;
  margin: 0 auto; /* Centra el carrusel horizontalmente */
  overflow: hidden; /* Oculta el contenido que desborda el contenedor */
}

.carousel-wrapper {
  display: flex;
  overflow: hidden;
}

.carousel {
  display: flex;
  transition: transform 0.5s ease-in-out; /* Transición suave */
}

.carousel-item {
  min-width: 100%; /* Ajusta el tamaño de cada elemento */
  display: flex;
  justify-content: center; /* Centra las imágenes dentro del contenedor */
  align-items: center; /* Centra verticalmente */
}

.carousel-item img {
  width: 80%; /* Ajusta el tamaño de las imágenes */
  height: auto;
  display: block;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  background-color: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 24px;
  line-height: 40px;
  text-align: center;
  z-index: 1000;
}

.prev-arrow {
  left: 0vw;
  margin-right: 2vw;
}

.next-arrow {
  right: 0vw;
  margin-left: 2vw;
}



.carousel-container2 {
  position: relative;
  width: 60vw; /* Ajusta el tamaño según sea necesario */
  max-width: 100%;
  margin: 0 auto; /* Centra el carrusel horizontalmente */
  overflow: hidden; /* Oculta el contenido que desborda el contenedor */
}

.carousel-wrapper2 {
  display: flex;
  overflow: hidden;
}

.carousel2 {
  display: flex;
  transition: transform 0.5s ease-in-out; /* Transición suave */
}

.carousel-item2 {
  min-width: 100%; /* Ajusta el tamaño de cada elemento */
  display: flex;
  justify-content: center; /* Centra las imágenes dentro del contenedor */
  align-items: center; /* Centra verticalmente */
}

.carousel-item2 img {
  width: 80%; /* Ajusta el tamaño de las imágenes */
  height: auto;
  display: block;
}

.carousel-arrow2 {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  background-color: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 24px;
  line-height: 40px;
  text-align: center;
  z-index: 1000;
}

.prev-arrow2 {
  left: 0vw;
  margin-right: 2vw;
}

.next-arrow2 {
  right: 0vw;
  margin-left: 2vw;
}




/* Footer styles */


.footer {
  background-color: #f5f5f5;  
  border-top: 1px solid #ccc;
  color: #333;
  font-size: 1.7vw;
  width: 100%; /* Añadir esta línea */
  box-sizing: border-box; /* Asegura que el padding no haga que el footer se desborde */
}
.footer-top {
  text-align: center;
  margin: 0 auto; /* Centra horizontalmente */
  margin-bottom: 4vh;
  max-width: 70vw;
}


.footer-top .contact-us,
.footer-top .get-started {
  background-color: #e62b1a;
  color: white;
  border: none;
  padding: 1vh 3vw;
  border-radius: 0.5vh;
  cursor: pointer;
  margin: 1vh;
}




.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #333; /* Fondo oscuro para el footer-bottom */
  padding: 20px 0;
}

.footer-bottom img{
  width: 20%;
 
}

/* Estilos para los enlaces */
.footer-links {
  margin-bottom: 20px;
}

.footer-links ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Centra los elementos horizontalmente */
  padding-bottom: 2vw;
}

.footer-links ul li {
  margin: 0 15px; /* Espaciado horizontal entre los elementos */
  color: #fff;
}

.footer-links ul li a {
  color: #fff;
  text-decoration: none;
}

.footer-links ul li a:hover {
  text-decoration: underline;
}

/* Estilos para los enlaces de redes sociales */
.footer-social {
  margin-bottom: 10px;
}

.footer-social a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.footer-social a:hover {
  text-decoration: underline;
}

.terms-conditions a{
  font-size: 1vw;
}

.links a{
  font-size: 2vw;
  padding: 3px;
}





.quote-block {
  padding: 0vh 3vw; /* Espaciado alrededor del bloque */
  margin: 0; /* Sin márgenes adicionales */
  text-align: center; /* Centra el texto */
}

.spacer {
  height: 40px; /* Altura del espaciador */
}

.quote-block h2 {
  font-size: 3.5vw;
  color: #e62b1a;
  margin: 2vh 0;
}

.quote-block p { font-size: 2.5vw;
  color: #e62b1a;
  margin: 2vh 0;
}



.columns {
  display: flex;
  justify-content: space-between;
  padding: 2vw;
}

.column {
  flex: 1;
  text-align: center;
  border-right: 1px solid #ccc;
  padding: 5px;
}

.column:last-child {
  border-right: none; /* No bordear la última columna */
}



/****************************REFERENCES****************************/
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
  padding-top: 2vw;
  padding-bottom: 2vw;
}

.grid-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-end; /* Pushes the image to the bottom */
  text-align: center;
}

.grid-item img, .grid-item2 img{
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.grid-item2 {
  display: flex;
  flex-direction: column;
  justify-content: flex-end; /* Pushes the image to the bottom */
  text-align: center;
}


.grid-item video{
  width: 100%;
  height: auto;
  border-radius: 10px;
}







@media (max-width: 778px) {

.prev-arrow, .prev-arrow2{
  top: 6vh;
}

.next-arrow, .next-arrow2 {
  margin-left: 4vw;
  top: 6vh;
}

.carousel-wrapper, .carousel-wrapper2{

  max-width: 90vw; /* Limita el ancho máximo del contenido */

}


.carousel-arrow, .carousel-arrow2{
  position: absolute;
  top: 50%;
  width: 5vw;
  height: 5vw;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 3vw;
  line-height: 0;
  text-align: center;
  z-index: 1000;
}

}

@media (max-width: 556px) { 
  .columns{
    gap: 0vw;
   
  }
  .column{
    padding: 2vw;
    
  }

  .grid {
    grid-gap: 10px;
  }

  .grid-item img, .grid-item2 img{
    border-radius: 5px;
  }

  
.btn-get-started {
  background-color: #e62b1a;
  color: white;
  padding: 1vh 2vw;
  border-radius: 0.5vh;
  text-decoration: none;
  font-weight: bold;
  font-size: 2vw;
  /* margin-right: 2vw; */
  white-space: nowrap; /* Impide que el texto se rompa en varias líneas */
}



}


.h1-confirmation{
    margin-bottom: 50px;
    margin-top:20px;
    font-size: 4vw;
    text-align: center;

}

