/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 31 2025 | 15:24:08 */
/* 1. Ocultamos lo que se desborda */
.logos-marquee .brands-wrap {
  overflow: hidden;
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
}

/* 2. Lista de logos en fila horizontal */
.logos-marquee .brands-list {
  display: flex;
  flex-shrink: 0;
  gap: 60px;
  animation: scroll-logos 12s linear infinite;
  will-change: transform;
  flex-wrap: nowrap;
}

/* Duplicamos lista para loop infinito */
.logos-marquee .brands-list.clone {
  margin-left: 60px; /* 👈 se pone a la derecha, no abajo */
}

/* 3. Ítems */
.logos-marquee .brands-list__item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 4. Logos */
.logos-marquee .brands-list__item img {
  max-height: 70px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logos-marquee .brands-list__item img:hover {
  transform: scale(1.05);
}

.text-red {
	color: #E83A3D;
}

.relative {
	position: relative;
}
/* Contenedor general */
.form-grid {
  display: flex;
  flex-direction: column;
  gap: 20px; /* separación entre filas */
}

/* Cada fila */
.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* Columnas dentro de cada fila */
.form-col {
  flex: 0 0 48%;
  max-width: 48%;
}

.form-col.full {
  flex: 0 0 100%;
  max-width: 100%;
}

/* Inputs y selects a full width */
.form-grid select,
.form-grid textarea {
  width: 100%;
  box-sizing: border-box;
}

/* Responsive: en móviles, columnas al 100% */
@media (max-width: 768px) {
  .form-col {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* 5. Animación loop real */
@keyframes scroll-logos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* ====== RESPONSIVE ====== */
@media (max-width: 1024px) {
  .logos-marquee .brands-list {
    gap: 40px;
    animation-duration: 24s;
  }
  .logos-marquee .brands-list__item img {
    max-height: 80px; /* un poco más grande */
  }
}

@media (max-width: 768px) {
  .logos-marquee .brands-list {
    gap: 30px;
    animation-duration: 28s; /* más lento */
  }
  .logos-marquee .brands-list__item img {
    max-height: 90px; /* más grande en tablets/mobiles */
  }
}

@media (max-width: 480px) {
  .logos-marquee .brands-list {
    gap: 20px;
    animation-duration: 18s;
  }
  .logos-marquee .brands-list__item img {
    max-height: 100px; /* todavía más grande en móviles */
  }
}
