.main-footer {
  background-color: #111;
  color: #fff;
  font-family: "Arial", sans-serif;
}

/* CONTENEDOR */
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== FILA SUPERIOR ===== */
.footer-top {
  display: flex;
  gap: 20px;
  padding: 20px;
}

/* CTA */
.cta-whatsapp {
  background-color: #cc0000;
  padding: 25px;
  flex: 0 0 35%;
  border-radius: 10px;
  display: flex;
  align-items: center;
}

.whatsapp-content {
  display: flex;
  align-items: center;
  gap: 15px;
}

.ws-icon {
  width: 55px;
}

.cta-text h3 {
  font-size: 0.95rem;
  margin: 0;
}

.cta-text p {
  font-size: 0.75rem;
  margin: 5px 0 10px;
}

.btn-footer {
  display: inline-block;
  background: #fff;
  color: #cc0000;
  padding: 6px 12px;
  font-size: 0.75rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
}

/* BENEFICIOS */
.benefits-row {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.b-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #1a1a1a;
  padding: 15px 8px;
  border-radius: 8px;
  transition: 0.3s;
}

.b-item:hover {
  transform: translateY(-3px);
  background: #222;
}

.b-item img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 8px;
  filter: brightness(0) invert(1);
}

.b-item strong {
  font-size: 0.75rem;
}

.b-item span {
  font-size: 0.7rem;
  color: #aaa;
}

/* ===== FILA INFERIOR ===== */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 30px 20px;
  border-top: 1px solid #222;
  gap: 20px;
}

.f-logo {
  width: 160px;
  filter: brightness(0) invert(1);
}

.footer-col h4 {
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 6px;
}

.footer-col ul li a {
  color: #aaa;
  text-decoration: none;
  font-size: 0.75rem;
}

.footer-col ul li a:hover {
  color: #fff;
}

/* PAGOS */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(2, 80px);
  gap: 10px;
}

.payment-grid img {
  width: 80px;
  height: 40px;
  object-fit: contain;
  background: #fff;
  padding: 5px;
  border-radius: 5px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-top,
  .footer-bottom {
    flex-direction: column;
  }

  .benefits-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .payment-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
