/* SECCIÓN */
.brands {
  padding: 90px 20px;
  text-align: center;
  background: #ffffff;
}

/* TITULO */
.section-title {
  font-size: 2.4rem;
  color: #0a2540;
  margin-bottom: 10px;
}

.section-subtitle {
  color: #6b7c93;
  margin-bottom: 50px;
}

/* LOGOS */
.brands-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.brands-logos img {
  height: 50px;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: all 0.4s ease;
}

/* HOVER PRO */
.brands-logos img:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.1);
}

/* PAGOS */
.payments p {
  font-weight: 600;
  color: #0a2540;
  margin-bottom: 20px;
}

/* TARJETAS */
.cards {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.cards img {
  height: 35px;
  opacity: 0.7;
  transition: 0.3s;
}

.cards img:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* ANIMACIÓN SUAVE AL ENTRAR */
.brands-logos img,
.cards img {
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 0.7;
    transform: translateY(0);
  }
}