body {
  font-family: 'Roboto', sans-serif;
}

.bg-icon {
  background: #67D644;
  padding: 10px;
  border-radius: 50%;
  transition: background 0.3s ease;
  overflow: initial;
}

.bg-icon-active {
  padding: 10px;
  border-radius: 50%;
  background: #fff;
}

.carousel-container {
  width: 100%;
  max-width: 1200px;
  overflow: hidden;
  position: relative;
}

/* Gradientes opcionales en los bordes */
.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(219, 255, 209), #00000000);
}

.carousel-container::after {
  right: 0;
  background: linear-gradient(to left, rgb(219, 255, 209), #00000000);
}

.carousel-track {
  display: flex;
  gap: 4rem;
  width: fit-content;
  animation: scroll 30s linear infinite;
}

.logo-item {
  flex-shrink: 0;
  width: 250px;
  height: 190px;
  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;
  filter: grayscale(1);
}

.logo-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  filter: grayscale(0);
  transition-property: filter;
  transition-duration: 1s;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    /* Mueve exactamente la mitad del ancho total */
    transform: translateX(calc(-250px * 9 - 4rem * 9));
  }
}

/* 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;
}

.vertical-line-list {
  position: relative;
}

.vertical-line-list .tab:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 45px;
  top: 100%;
  width: 2px;
  height: 32px;
  background: #67D644;
  z-index: 0;
}

.vertical-line-list .tab {
  position: relative;
  z-index: 1;
}

.bg-square {
  position: absolute;
  top: 6%;
  right: 10%;
  object-fit: cover;
  z-index: -1;
}

.bg-square--solutions {
  top: 20%;
  right: 18%;
}

.bg-servicios-decor {
  background-image: url('../img/bg-servicios-decor.svg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.bg-clientes-decor {
  background-image: url('../img/bg-clientes-decor.svg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

@media (max-width: 1024px) {
  .bg-square {
    bottom: 6%;
    right: 0;
    top: inherit;
  }

  .bg-square--solutions {
    bottom: 2%;
    right: 0;
    top: inherit;
  }
}