/* Estilos generales */
@font-face{
font-family: "Montserrat-Medium";
src: url('Fonts/Montserrat-Medium.woff2') format('woff2');
font-weight: normal; /* o 400 */
font-style: normal;
}

@font-face{
font-family: "Montserrat-ExtraBold";
src: url('Fonts/Montserrat-ExtraBold.woff2') format('woff2');
font-weight: normal; /* o 400 */
 font-style: normal;
}

body {
 /* font-family: "Montserrat-ExtraBold" ;*/
  margin: 0;
  line-height: 1.6;
}


.video-banner {
  position: relative;
  width: 100%;
  height: 700px; /* Ajusta la altura según tus necesidades */
  overflow: hidden; /* Oculta el contenido que se desborda del contenedor */
 }

 .video-banner video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ajusta el video al tamaño del contenedor */
 }

 .banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fbfbfb;
  text-align: center;

 }

 .banner-content h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-family: "Montserrat-ExtraBold" ;
 }

 .banner-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  font-family: "Montserrat-Medium";
 }

 .cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #BF9673;
  color: #E6F4F9;
  text-decoration: none;
  border-radius: 5px;
  font-family: "Montserrat-ExtraBold";
 }

/* Sección de Características */
/* Estilos generales para la sección de características */
.features {
  padding: 3rem 0;
  text-align: center;
  color: #333;
  font-family: "Montserrat-Medium";
}

/* Estilos para cada característica individual */
.feature {
  display: inline-block; /* Por defecto, se muestran en línea (para pantallas grandes) */
  width: 45%; /* Ajustado para 2 bloques */
  margin: 1rem; /* Margen alrededor de cada característica */
  vertical-align: top; /* Alinea la parte superior de las características */
  box-sizing: border-box; /* Asegura que el padding se incluya en el ancho total */
  padding: 0 1rem; /* Añade un poco de padding horizontal */
}

.feature h2 {
  margin-bottom: 1rem; /* Margen debajo del título */
  font-family: "Montserrat-ExtraBold" ;
}

/* Media query para pantallas más pequeñas (ej. celulares y tablets pequeñas) */
/* Cuando el ancho máximo de la pantalla sea 768px o menos */
@media (max-width: 768px) {
  .feature {
    display: block; /* Cambia a block para que se apilen verticalmente */
    width: 90%; /* Ocupa casi todo el ancho disponible */
    margin: 1rem auto; /* Centra la característica y añade margen vertical */
    padding: 0; /* Elimina el padding horizontal si ya no es necesario */
    /* vertical-align no es necesario cuando display es block */
  }

  /* Opcional: Ajusta el padding de la sección general en móvil */
  .features {
    padding: 2rem 0; /* Reduce un poco el padding superior/inferior */
  }
}

/* Sección de los 4 bloques de valor */
.value-blocks-section {
    display: flex;
    flex-wrap: wrap; /* Allows blocks to wrap to the next line */
    justify-content: center; /* Centers the blocks horizontally */
    gap: 20px; /* Space between blocks */
    padding: 40px 20px;
    background-color: #f0f0f0; /* A subtle background for the section */
}
.value-blocks-section .section-title {
    font-family: "Montserrat-ExtraBold";
    font-size: 2.5rem; /* Adjust size as needed */
    color: #333; /* Dark color for contrast */
    margin-bottom: 40px; /* Space below the title */
    text-align: center;
    width: 100%; /* Ensure it takes full width to center */
}
.value-block {
    flex: 1; /* Allow blocks to grow and shrink */
    min-width: 200px; /* Minimum width before wrapping */
    max-width: 280px; /* Maximum width for larger screens */
    height: 250px; /* Fixed height for rectangular shape */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Distributes content vertically */
    align-items: center; /* Centers content horizontally */
    padding: 20px;
    color: white; /* White text for dark blocks */
    text-align: center;
    border-radius: 8px; /* Slightly rounded corners */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Soft shadow */
    font-family: "Montserrat-Medium";
    transition: transform 0.3s ease; /* Smooth transition for hover effect */
}

.value-block:hover {
    transform: translateY(-5px); /* Subtle lift effect on hover */
}

.icon-container {
    /* Container for the icon to maintain its space */
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px; /* Space between icon and text */
    flex-shrink: 0; /* Prevent the container from shrinking */
     /* Semi-transparent background */
     /* Make the container round */
}

.value-icon {
    /* Styles for the actual PNG image */
    max-width: 80%; /* Ensure image fits within its container */
    max-height: 80%; /* Ensure image fits within its container */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Remove extra space below image */
}


.value-text {
    margin-top: auto; /* Pushes the text to the bottom of the block */
    font-size: 1.2rem;
    font-family: "Montserrat-ExtraBold";
    padding-bottom: 10px; /* Space from the bottom of the block */
}

/* Media Queries for the new section */
@media (max-width: 1200px) {
    .value-block {
        max-width: 250px; /* Adjust max-width slightly for slightly smaller screens */
    }
}

@media (max-width: 992px) {
    .value-block {
        flex: 1 1 45%; /* On tablets, 2 blocks per row */
        max-width: 350px; /* Adjust max-width for 2-column layout */
    }
}

@media (max-width: 576px) {
    .value-block {
        flex: 1 1 90%; /* On mobile, 1 block per row */
        max-width: none; /* Remove max-width on mobile to allow it to fill width */
        height: 220px; /* Slightly reduce height for smaller screens */
    }
    .icon-container {
        width: 120px;
        height: 120px;
        margin-bottom: 20px;
    }
}


.whatsapp-float {
  position: fixed; /* Mantiene el botón fijo en la pantalla */
  bottom: 20px;  /* 20px desde la parte inferior */
  left: 20px;   /* 20px desde el lado izquierdo */
  background-color: #25D366; /* Color verde de WhatsApp */
  color: white;
  border-radius: 50%; /* Hace que el botón sea redondo */
  width: 60px;   /* Ancho del botón */
  height: 60px;  /* Alto del botón */
  display: flex;  /* Usa flexbox para centrar el ícono */
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); /* Sombra para dar profundidad */
  z-index: 1000;  /* Asegura que esté por encima de otros elementos */
  transition: transform 0.3s ease-in-out; /* Animación suave al pasar el mouse */
}

.whatsapp-float:hover {
  transform: scale(1.1); /* Hace que el botón se agrande ligeramente al pasar el mouse */
}

.whatsapp-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none; /* Quita el subrayado del enlace */
  color: white;
}

.whatsapp-float .whatsapp-icon {
  width: 35px; /* Tamaño del ícono dentro del botón */
  height: 35px;
}

/* Media query para pantallas más pequeñas (opcional: ajusta el tamaño en móviles) */
@media (max-width: 600px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 15px;
    left: 15px;
  }
  .whatsapp-float .whatsapp-icon {
    width: 30px;
    height: 30px;
  }
}

/* Sección de Experiencia con (Logos) */
.experience-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #f9f9f9;
}

.experience-section .section-title {
    font-family: "Montserrat-ExtraBold";
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 40px;
}

.carousel-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.carousel-wrapper {
    display: flex;
    align-items: center;
    position: relative;
}

.carousel {
    display: flex;
    overflow-x: hidden; /* Oculta el scrollbar */
    scroll-behavior: smooth; /* Desplazamiento suave */
    -webkit-overflow-scrolling: touch; /* Para un desplazamiento suave en iOS */
    white-space: nowrap; /* Evita que los logos salten a una nueva línea */
}

.carousel-item {
    flex: 0 0 auto;
    width: 25%; /* Muestra 4 logos a la vez en pantallas grandes */
    padding: 20px;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    transition: transform 0.4s ease-in-out;
}

.carousel-item img {
    max-width: 100%;
    height: auto;
    max-height: 80px;
    transition: filter 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.carousel-item:hover img {
    transform: scale(1.1);
}

.prev-button,
.next-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    cursor: pointer;
    padding: 15px 20px;
    font-size: 2rem;
    line-height: 1;
    border-radius: 10%;
    z-index: 10;
    transition: background-color 0.3s;
}

.prev-button:hover,
.next-button:hover {
    background: rgba(0, 0, 0, 0.8);
}

.prev-button {
    left: 10px;
}

.next-button {
    right: 10px;
}

/* Media Queries para responsividad */
@media (max-width: 1200px) {
    .carousel-item {
        width: 33.33%; /* Muestra 3 logos en pantallas medianas */
    }
}

@media (max-width: 768px) {
    .carousel-item {
        width: 50%; /* Muestra 2 logos en tablets */
    }
}

@media (max-width: 576px) {
    .carousel-item {
        width: 100%; /* Muestra 1 logo en móviles */
    }
}

/* Sección de Alianzas Estratégicas */
.partnerships-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #ffffff; /* Fondo blanco */
}

.partnerships-section .section-title {
    font-family: "Montserrat-ExtraBold";
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 40px;
}

.partnerships-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px; /* Espacio entre los logos */
    max-width: 1200px;
    margin: 0 auto;
}

.partnership-logo {
    display: block;
    max-width: 250px;
    width: 100%; /* Asegura que el logo ocupe el espacio completo */
    transition: transform 0.3s ease-in-out;
}

.partnership-logo:hover {
    transform: scale(1.05);
}

.partnership-logo img {
    width: 100%;
    height: auto;
    transition: filter 0.3s ease-in-out;
}



/* Media Query para móviles */
@media (max-width: 768px) {
    .partnerships-logos {
        flex-direction: column; /* Apila los logos verticalmente */
    }

    .partnership-logo {
        max-width: 180px; /* Ancho más pequeño en móviles */
    }
}