body {
  font-family: "Space Grotesk", sans-serif;
}

.hero-gradient {
  background: linear-gradient(90deg, rgba(26, 29, 31, 0.95) 0%, rgba(26, 29, 31, 0.7) 50%, rgba(26, 29, 31, 0.1) 100%);
}

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* Botón flotante de WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background: #128C7E;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

/* Carousel Marcas */
.carousel-container {
  width: 100%;
  max-width: 1200px;
  overflow: hidden;
  position: relative;
}

.carousel-container::before,
.carousel-container::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.carousel-container::before {
  left: 0;
  background: linear-gradient(to right, rgb(255, 255, 255), #00000000);
}

.carousel-container::after {
  right: 0;
  background: linear-gradient(to left, rgb(255, 255, 255), #00000000);
}

.carousel-track {
  display: flex;
  gap: 4rem;
  width: fit-content;
  animation: scroll 30s linear infinite;
}

.logo-item {
  flex-shrink: 0;
  width: 150px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.logo-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transition-property: filter;
  transition-duration: 1s;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    /* Mueve exactamente la mitad del ancho total */
    transform: translateX(calc(-150px * 9 - 4rem * 9));
  }
}