/* =========================================================
   AlexMart Shipping LLC — Términos y Condiciones
   ========================================================= */

/* ---- Hero ---- */
.terms-hero {
  background: var(--heading-color);
  padding: 130px 0 60px;
  color: #fff;
  position: relative;
}
.terms-hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 4px;
  background: var(--accent-color);
}
.terms-hero-content { max-width: 780px; margin: 0 auto; text-align: center; }
.terms-hero .section-badge { background: rgba(255, 255, 255, .12); color: #fff; }
.terms-hero h1 { color: #fff; font-size: clamp(1.7rem, 3.2vw, 2.3rem); margin: .8rem 0 1rem; }
.terms-hero p { color: rgba(255, 255, 255, .82); margin: 0 auto; }

/* ---- Contenido ---- */
.terms-section { background: var(--bg-soft); }
.terms-lang-note {
  display: flex; align-items: center; gap: .6rem; background: var(--accent-color-light); color: var(--accent-color-dark);
  font-size: .85rem; font-weight: 600; padding: .8rem 1.1rem; border-radius: 12px; margin-bottom: 2rem;
}
.terms-lang-note i { flex-shrink: 0; }
.terms-card { background: #fff; border-radius: var(--radius); padding: 2.4rem; border: 1px solid var(--border-color); }
.terms-clause { padding-bottom: 1.5rem; margin-bottom: 1.5rem; border-bottom: 1px solid var(--border-color); }
.terms-clause:last-child { padding-bottom: 0; margin-bottom: 0; border-bottom: none; }
.terms-clause h2 {
  font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
  color: var(--accent-color-dark); margin-bottom: .5rem;
}
.terms-clause p { font-size: .92rem; color: var(--default-color); margin: 0; line-height: 1.7; }

@media (max-width: 576px) {
  .terms-card { padding: 1.6rem; }
}
