/* =========================================================
   MÉTODOS DE PAGO
   Versión compacta - Opción 4
   ========================================================= */

.banner-payment {
  width: 100%;
  margin: 12px 0 0;
  padding: 12px;
  background: #ffffff;
  border: 1px solid #d8edf7;
  border-radius: 10px;
}


/* =========================================================
   HEADER
   ========================================================= */

.banner-payment-header {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 10px;
}


/* =========================================================
   ICONO
   ========================================================= */

.banner-payment-header-icon {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #e9f8ff;
  border: 1px solid #bce7f8;
  border-radius: 8px;

  color: #19a9e5;
}

.banner-payment-header-icon i {
  font-size: 18px;
  line-height: 1;
}


/* =========================================================
   TEXTO HEADER
   ========================================================= */

.banner-payment-header-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.banner-payment-header-content strong {
  display: block;

  font-family: "Kanit", sans-serif;
  font-size: 14px;
  line-height: 1.1;
  font-weight: 800;

  text-transform: uppercase;
  color: #353535;
}

.banner-payment-header-content span {
  display: block;

  font-family: Arial, sans-serif;
  font-size: 9px;
  line-height: 1.2;
  font-weight: 500;

  color: #858585;
}


/* =========================================================
   MÉTODOS
   ========================================================= */

.banner-payment-methods {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
  width: 100%;
}


/* =========================================================
   MÉTODO INDIVIDUAL
   ========================================================= */

.banner-payment-method {
  min-width: 0;
  height: 55px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4px 3px;
  background: #fafcfd;
  border: 1px solid #dceff7;
  border-radius: 6px;
  transition: border-color 0.2s ease, background 0.2s ease;
}


/* =========================================================
   LOGO
   ========================================================= */

.banner-payment-method img {
  display: block;
  width: auto;
  max-width: 42px;
  height: 30px;
  object-fit: contain;
  margin: 0 0 2px;
}


/* =========================================================
   NOMBRE
   ========================================================= */

.banner-payment-method span {
  display: block;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: Arial, sans-serif;
  font-size: 0.7rem;
  line-height: 1;
  font-weight: 600;
  text-align: center;
  color: #666666;
}


/* =========================================================
   HOVER
   ========================================================= */

.banner-payment-method:hover {
  background: #f1faff;
  border-color: #8ed8f4;
}


/* =========================================================
   TABLET
   ========================================================= */

@media screen and (max-width: 991px) {

  .banner-payment {
    padding: 11px;
  }

  .banner-payment-header {
    margin-bottom: 9px;
  }

  .banner-payment-header-icon {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .banner-payment-header-icon i {
    font-size: 17px;
  }

  .banner-payment-header-content strong {
    font-size: 13px;
  }

  .banner-payment-header-content span {
    font-size: 8px;
  }

  .banner-payment-method {
    height: 41px;
  }

  .banner-payment-method img {
    max-width: 39px;
    height: 18px;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media screen and (max-width: 575px) {

  .banner-payment {
    margin-top: 10px;
    padding: 10px;
    border-radius: 8px;
  }

  .banner-payment-header {
    gap: 8px;
    margin-bottom: 8px;
  }

  .banner-payment-header-icon {
    width: 29px;
    height: 29px;
    flex-basis: 29px;
    border-radius: 7px;
  }

  .banner-payment-header-icon i {
    font-size: 16px;
  }

  .banner-payment-header-content strong {
    font-size: 0.9rem;
  }

  .banner-payment-header-content span {
    font-size: 0.7rem;
  }

  .banner-payment-methods {
    gap: 10px;
  }

  .banner-payment-method {
    height: 55px;
    padding: 3px 2px;
    border-radius: 5px;
  }

  .banner-payment-method img {
    max-width: 36px;
    height: 25px;
    margin-bottom: 5px;
  }

  .banner-payment-method span {
    font-size: 0.65rem
  }

}


/* =========================================================
   MUY PEQUEÑOS
   ========================================================= */

@media screen and (max-width: 360px) {

  .banner-payment {
    padding: 8px;
  }

  .banner-payment-header {
    margin-bottom: 7px;
  }

  .banner-payment-header-icon {
    width: 27px;
    height: 27px;
    flex-basis: 27px;
  }

}