/* =========================================================
   CUOTAS ESCOLARES PAGE
   ========================================================= */

.page-content--cuotas {
  width: min(1240px, calc(100% - 160px));
  margin: 52px auto 88px;
}

.cuotas-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
}

/* — Cards base — */
.cuota-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  overflow: hidden;
  border-radius: 4px;
}

/* — Card 1: Agenda Tu Visita — */
.cuota-card--agenda {
  background: #0b84b7;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}

.cuota-card__agenda-label {
  color: #fff;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.3;
  padding: 18px;
  text-transform: uppercase;
  text-decoration: none; /* ← agregar */
}

/* — Cards con ícono — */
.cuota-card__icon {
  flex: 1;
  background: #f0f5f9;
  display: flex;
  align-items: center;
  justify-content: flex-end;  /* ← era center */
  padding: 28px 24px;
  min-height: 140px;
}

.cuota-card__icon img {
  width: 100%;
  max-width: 100px;
  height: auto;
  display: block;
  object-fit: contain;
}

.cuota-card__label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  background: #0b84b7;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 300;
  text-align: center;
  line-height: 1.4;
  min-height: 52px;
}

.cuota-card:hover .cuota-card__label {
  background: #c8e2f0;
}

.cuota-card--agenda:hover {
  background: #c8e2f0;
}

/* — Cards vacíos — */
.cuota-card--placeholder {
  background: #f0f5f9;
  min-height: 180px;
  border: 1px solid #d4e4ef;
}
