/* =========================================
   TÉRMINOS Y CONDICIONES
   ========================================= */

/* ---- Cuerpo ---- */
.term-body {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px 32px;
}

/* ---- Card principal ---- */
.term-card {
  background: #ffffff;
  border: 3px solid #FFCB00;
  border-radius: 18px;
  padding: 36px 44px;
  max-width: 820px;
  width: 100%;
  box-shadow: 0 4px 32px rgba(0,60,140,0.10);
}

/* ---- Título ---- */
.term-title {
  font-size: 1.15rem;
  font-weight: 900;
  color: #003d7a;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-align: center;
  margin: 0 0 28px;
  line-height: 1.3;
  border-bottom: 2px solid #FFCB00;
  padding-bottom: 18px;
}

/* ---- Lista de términos ---- */
.term-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.term-list p {
  font-size: 0.9rem;
  color: #1a1a1a;
  line-height: 1.65;
  margin: 0;
}

.term-list p strong {
  color: #003d7a;
}

/* ---- Texto legal ---- */
.term-legal {
  position: relative;
  z-index: 1;
  background: rgba(0, 40, 100, 0.82);
  padding: 20px 48px;
  font-size: 0.78rem;
  color: #e8f4ff;
  line-height: 1.65;
  text-align: center;
}

.term-legal strong {
  color: #ffffff;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 768px) {
  .term-body { padding: 24px 16px 20px; }
  .term-card { padding: 24px 20px; border-radius: 12px; }
  .term-title { font-size: 1rem; margin-bottom: 20px; }
  .term-list p { font-size: 0.84rem; }
  .term-legal { padding: 14px 16px; font-size: 0.74rem; }
}
