* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Geist', sans-serif;
    color: #333;
  }
  
  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1d1d1d;
    padding: 20px;
  }

  #confirmationMessage {
    margin-top: 20px;
    padding: 10px;
    background-color: #d4edda; /* Verde claro */
    color: #155724; /* Verde oscuro */
    border: 1px solid #c3e6cb; /* Borde verde */
    border-radius: 5px;
    text-align: center;
    font-size: 16px;
    display: none; /* Oculto inicialmente */
  }
  

  .whatsapp-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    padding: 15px;
    border-radius: 50%;
    font-size: 24px;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
  }
  
  .whatsapp-icon:hover {
    transform: scale(1.1); /* Efecto de zoom ligero */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* Sombra más intensa */
  }
  
  .whatsapp-icon i {
    font-size: 24px;
  }
  
  .logo {
    width: auto;
  }
  
  nav a {
    margin-left: 20px;
    color: #8B0000;
    font-weight: bold;
    text-decoration: none;
  }
  
  section {
    padding: 40px 20px; 
  }

/* General Section Styles */
.section-services {
  padding: 60px 20px;
  text-align: center;
  background-color: #f9f9f9;
}

.section-services h2 {
  font-size: 28px;
  margin-bottom: 40px;
  color: #8B0000;
  font-weight: bold;
}

/* Container Width */
.section-services .container {
  max-width: 900px; /* Fija el ancho máximo */
  margin: 0 auto;
}

/* Services Grid */
.services-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

/* Service Box and Card */
.service-box {
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-card {
  background-color: #fff; 
  border-radius: 15px;
  padding: 30px;
  max-width: 350px;
  width: 100%;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); 
}

.service-card img {
  width: 100px;
  height: auto;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
  mix-blend-mode: multiply;
}

.service-card:hover img {
  transform: scale(1.3);
}



  h4{
    padding: 20px;
    color: #555;
    font-weight: 100;
  }

  .services-title h2{
    text-align: center;
    color: #991010;
  }
  
  .logo-container {
    display: inline-block;
  }
  
  .logo {
    height: 100px;
    object-fit: cover; 
  }
  
  
  .contact, footer {
    position: relative;
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat; 
    width: 100%;
  }



  
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); 
    z-index: 1;
  }
  
  .hero-content, .contact-form, .footer-content {
    position: relative;
    z-index: 2;
    padding: 40px;
    text-align: center;
  }

  .contact-info {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 15px;
  }

  .contact-button {
    padding: 10px 15px;
    font-size: 14px;
    background-color: #991010;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Hero Section */
.hero-content h1 {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  color: #fff;
  margin: 0 auto;
  max-width: 80%;
}

.hero {
  min-height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(/assets/image1.jpg);
  background-position: left;
  background-repeat:repeat-x;
  background-size: contain;
  width:100%;
  position: relative;
}

.services-title {
  background-color: #8B0000;
  color: #fff;
  text-align: center;
  padding: 40px 20px;
}

.services-title h2 {
  font-size: 32px;
  color: #fff;
}
  
  h1 {
    color: #fff;
    font-weight: 300;
  }

  h2 {
    color: #8B0000;
    font-weight: 300;
  }

  /* General Section Styles */
.distributors {
  padding: 60px 20px;
  text-align: center;
  background-color: #f9f9f9;
}

.distributors h2 {
  font-size: 28px;
  margin-bottom: 40px;
  color: #8B0000;
  font-weight: bold;
}

/* Container Width */
.distributors .container {
  max-width: 900px; /* Fija el ancho máximo */
  margin: 0 auto;
}

/* Distributors Grid */
.distributors-grid {
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); 
  justify-items: center;
  gap:20px;
}

/* Distributor Box and Card */
.distributor-box {
  display: flex;
  justify-content: center;
  align-items: center;
}

.distributor-card {
  background-color: #f4f4f4; /* Fondo gris claro */
  border-radius: 10px;
  padding: 20px;
  max-width: 250px;
  width: 100%;
  height: auto;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  
}

.distributor-card:hover {
  transform: scale(1.05); /* Aumenta ligeramente el tamaño */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Más profundidad */
}

.distributor-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
  mix-blend-mode: multiply;
}

.distributor-card:hover img {
  transform: scale(1.1); /* Aumenta ligeramente el tamaño del logo */
}

  
  .modal {
    display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 1000;
  }
  
  .modal-content {
    background: #fff;
    color: #333;
    width: 90%;
    max-width: 600px;
    height: 80%;
    padding: 20px;
    border-radius: 10px;
    overflow-y: auto;
    position: relative;
  }
  
  .modal h2 {
    font-weight: bold;
    color: #8B0000;
    margin-bottom: 20px;
  }
  
  .modal p, .modal ul {
    font-size: 20px;
    color: #333;
    line-height: 1.6;
  }
  
  .close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #8B0000;
  }

    .contact-form {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100%;
      background-image: url(./assets/forte-lift1.jpg);
      background-size: cover;
      background-repeat: no-repeat;
  } 
  
    .whatsapp-contact {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50vh;
    background-image: url(./assets/forte-lift2.jpg);
    background-size: cover;
    background-position: center;
  }
  
  .form-container, .whatsapp-content {
    position: relative;
    z-index: 2;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
  }
  
  form {
    display: flex;
    flex-direction: column;
  }
  
  form input, form textarea {
    margin: 10px 0;
    padding: 10px;
    font-size: 16px;
  }
  
  form button,
  button,
  .whatsapp-contact button {
    padding: 10px;
    font-size: 16px;
    background-color: #991010;
    color: #fff;
    border: none;
    cursor: pointer;
  }
  
form button:hover {
    background-color: #555;
  }
  
  .services {
    display: flex;
    justify-content: space-between;
    padding: 40px 20px;
    text-align: center;
    background-color: #fff;
  }
  
  .services h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #8B0000; /* Color rojo oscuro para el título */
  }
  
  .service-container {
    display: flex;
    justify-content: space-around; 
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap; 
    }
  
  .service-box {
    max-width: 200px; 
    text-align: center;
  }
  
  .service-box img {
    width: 60px; 
    height: auto; 
    margin-bottom: 10px;
  }
  
  .service-box h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 10px;
  }
  
  .service-box p {
    font-size: 18px;
    color: #555;
  }

  footer {
    display: flex;
    flex-wrap: wrap; 
    justify-content: space-between;
    padding: 20px;
    background-color: #333;
    color: #fff;

  }
  
  .footer-left,
.footer-right {
  flex: 1 1 100%; /* Ocupan todo el ancho en pantallas pequeñas */
  text-align: center;
}

.footer-right a {
  color: white;
  text-decoration: none;
  font-size: 14px;
}

  .distributors {
    padding: 40px 20px;
    background-color: #fff;
    text-align: center;
  }
  
  .distributors h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #8B0000; }

  .brand-container {
    display: flex;
    justify-content: space-around; 
    align-items: center;
    flex-wrap: wrap; 
    gap: 20px; 
    }
  
  
  .brand-container img {
    max-width: 150px; 
    width: 100%; 
    height: auto;
    object-fit: contain; 
    }

    footer {
      display: flex;
      justify-content: space-between;
      padding: 20px 40px;
      background-color: #333;
      color: #fff;
    }
    
    .footer-left,
    .footer-right {
      display: flex;
      align-items: center;
      gap: 20px;
    }
    
    .footer-right p {
      font-size: 16px;
      margin: 0;
    }

    .footer-content {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 20px;
      color: #fff;
    }
    
    .social-links {
      display: flex;
      gap: 20px;
    }
    
    .social-links a {
      color: #fff; 
      font-size: 24px; 
      text-decoration: none;
      transition: color 0.3s;
    }
    
    .social-links a:hover {
      color: #8B0000; }

      /* Carrusel */
.carousel {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  height: 500px;
  background-color: #f9f9f9; /* Fondo para evitar saltos al cargar imágenes */
  display: flex;
  align-items: center;
}

.carousel-container {
  display: flex;
  /*transition: transform 0.5s ease-in-out;*/
  animation:scroll 12s linear infinite;
  will-change: transform;
  gap: 20px;
  padding-bottom: 50px;
}

/*@keyframes scroll{
  0%{
    transform: translateX(0);
  }
  100% {
    transform: translateX(-300%);
  }

}*/

/* Tarjetas */
.carousel-item {
  background-color: #fff;
  border-radius: 10px; /* Bordes redondeados */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sombra suave */
  overflow: hidden; /* Recorta los bordes de la imagen */
  height: 400px;
  flex: 0 0 300px; /* Cada tarjeta tiene un ancho fijo */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel-item:hover {
  transform: scale(1.05); /* Zoom ligero al pasar el mouse */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Imágenes dentro de las tarjetas */
.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Recorta la imagen para que se ajuste a la tarjeta */
}

/* Flechas de navegación */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.2); /* Fondo translúcido */
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10;
  transition: background-color 0.3s ease;
}

.carousel-nav i {
  font-size: 20px;
}

.carousel-nav:hover {
  background-color: rgba(0, 0, 0, 0.5);
}

.carousel-nav.left {
  left: 10px;
}

.carousel-nav.right {
  right: 10px;
}

/* Responsividad */
@media (max-width: 768px) {
  .carousel {
    height: 300px; /* Ajusta la altura para móviles */
  }

  .carousel-item {
    flex: 0 0 250px; /* Reduce el tamaño de las tarjetas en móviles */
    height: 300px;
  }

  .carousel-nav {
    display: none; /* Oculta flechas en dispositivos pequeños */
  }

  .logo {
    height: 80px;
    object-fit: cover; 
  }
  
  .service-box,
  .distributor-box {
    max-width: fit-content;
  }

  .services-grid,
  .distributors-grid{
   justify-content: center;
   flex-wrap: wrap;
  }
}

/*Estilos para seccion de mision, vision y valores*/
#about-us {
  padding: 50px 20px;
  background-color: #2c2c2c;
  color: #fff;
}

/* Layout de Misión y Visión */
.mission-vision {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.mission,
.vision {
  flex: 1;
  min-width: 300px;
  background: #3a3a3a;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission:hover,
.vision:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.mission h2,
.vision h2 {
  font-size: 24px;
  color: #f44336;
  margin-bottom: 15px;
}

.mission p,
.vision p {
  font-size: 16px;
  color: #e0e0e0;
  line-height: 1.6;
}

/* Lista de Valores */

/* Sección de Valores */
#values {
  padding: 60px 20px;
  background-color: #f9f9f9; /* Igual al fondo de la sección de servicios */
  text-align: center;
}

#values h2 {
  font-size: 28px;
  margin-bottom: 40px;
  color: #8B0000; /* Rojo oscuro */
  font-weight: bold;
}

/* Contenedor de tarjetas */
.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

/* Tarjetas de valores */
.value-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
  max-width: 300px;
  width: 100%;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Icono dentro de las tarjetas */
.value-card i {
  font-size: 40px;
  color: #8B0000;
  margin-bottom: 15px;
}

/* Título del valor */
.value-card h3 {
  font-size: 18px;
  color: #333;
  margin-bottom: 10px;
}

/* Descripción del valor */
.value-card p {
  font-size: 16px;
  color: #555;
  line-height: 1.5;
}

/* Responsividad */
@media (max-width: 768px) {
  .mission-vision {
    flex-direction: column;
  }

  .values-grid {
    flex-direction: column;
    align-items: center;
  }

  .value-card {
    max-width: 90%;
  }


}



  