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

/* ANIMACION DEL CTA */
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.animate-gradient {
  animation: gradient 8s ease infinite;
}

/* WHATSAPP */
.whatsapp-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
  z-index: 9999;

  /* 🔑 CLAVE ABSOLUTA */
  transform: none !important;
  will-change: auto;
}

.whatsapp-float img {
  width: 32px;
  height: 32px;
}

/* Tooltip solo desktop */
.whatsapp-float .tooltip {
  position: absolute;
  right: 100%;
  margin-right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: #4D9134;
  color: white;
  padding: 6px 10px;
  font-size: 14px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}

@media (hover: hover) and (min-width: 768px) {
  .whatsapp-float:hover .tooltip {
    opacity: 1;
  }
}

@media (max-width: 767px) {
  .whatsapp-float .tooltip {
    display: none;
  }
}



/* CARRUSEL DE LOGOS */
.companys {
  width: 100%;
  height: 6rem;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}

/* Pista */
.companys-track {
  display: flex;
  align-items: center;
  gap: 3rem; /* separación uniforme */
  width: max-content;
  animation: scroll 40s linear infinite;
}

/* Logos */
.companys-img,
.companys-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Logos grandes */
.companys-img {
  height: 80px;
  width: 120px;
}

.companys-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;

  /* Efecto transparencia elegante */
  opacity: 0.6;
  filter: grayscale(100%);
  transition: opacity 0.4s ease, filter 0.4s ease;
}

/* Icono pequeño */
.companys-icon img {
  width: 30px;
  height: 30px;
  opacity: 0.4;
}

/* Hover: resalta sin romper el diseño */
.companys-img img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* Animación */
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}


/* Animación */
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ------------------------------------------------------------------ */