/* ============================================================ */
/* ===== PAGO DE CUOTAS - BANNER PRINCIPAL ===== */
/* ============================================================ */

.pay-banner {
  background: linear-gradient(135deg, #005198 0%, #26314d 100%);
  color: #ffffff;
  padding: 80px 25px;
  text-align: center;
}

.pay-banner-inner {
  max-width: 950px;
  margin: 0 auto;
}

.pay-banner-super {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #B8CDDE;
  margin-bottom: 10px;
}

.pay-banner h2 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 15px;
}

.pay-banner-sub {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 auto;
  max-width: 840px;
}

/* ============================================================ */
/* ===== MÉTODOS DE PAGO ===== */
/* ============================================================ */

.pay-section {
  padding: 60px 25px;
  background: #f0f7ff;
}

.pay-container {
  max-width: 1100px;
  margin: 0 auto;
}

.pay-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

/* ===== TARJETA DE PAGO ===== */

.pay-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  border-top: 6px solid #005198;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.pay-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.pay-card-body {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.pay-method-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #B8CDDE;
  background: #005198;
  display: inline-block;
  align-self: center;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.pay-member-type {
  font-size: 21px;
  font-weight: 800;
  color: #005198;
  margin-bottom: 14px;
}

.pay-desc {
  font-size: 15px;
  line-height: 1.7;
  color: #444444;
  text-align: justify;
  margin-bottom: 14px;
}

.pay-cta-label {
  font-size: 17px;
  font-weight: 800;
  color: #005198;
  margin: 6px 0 16px;
}

/* ===== BOTONES DE PAGO ===== */

.pay-button {
  display: block;
  width: 100%;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.pay-button img {
  display: block;
  width: 100%;
  height: 160px;
  object-fit: contain;
  padding: 14px;
}

.pay-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.pay-button:active {
  transform: translateY(0);
}

/* ============================================================ */
/* ===== AVISO ===== */
/* ============================================================ */

.pay-notice {
  margin-top: 40px;
  background: #fff8e1;
  border: 1px solid #e6c200;
  border-left: 6px solid #e6c200;
  border-radius: 10px;
  padding: 24px 28px;
}

.pay-notice h3 {
  font-size: 19px;
  font-weight: 800;
  color: #8a6d00;
  margin-bottom: 10px;
}

.pay-notice p {
  font-size: 15px;
  line-height: 1.7;
  color: #5c4d00;
  margin-bottom: 8px;
}

.pay-notice a {
  color: #005198;
  font-weight: 700;
}

/* ============================================================ */
/* ===== RESPONSIVO ===== */
/* ============================================================ */

@media (max-width: 768px) {
  .pay-banner {
    padding: 60px 20px;
  }

  .pay-banner h2 {
    font-size: 28px;
  }

  .pay-grid {
    grid-template-columns: 1fr;
  }

  .pay-card-body {
    padding: 24px 20px;
  }

  .pay-button img {
    height: 120px;
  }
}