/* terms.css */
.terms-main {
  padding-top: 110px; /* deja espacio para navbar fija */
  padding-bottom: 60px;
  font-family: "Poppins", sans-serif;
}

.terms-hero {
  margin-top: 20px;
  margin-bottom: 26px;
}

.terms-title {
  font-weight: 600;
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 10px;
}

.terms-subtitle {
  font-size: clamp(14px, 1.6vw, 18px);
  opacity: 0.9;
  margin-bottom: 6px;
}

.terms-updated {
  font-size: 14px;
  opacity: 0.75;
  margin-bottom: 18px;
}

.terms-lead-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 16px 16px;
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.25);
}

.terms-lead {
  margin: 0 0 10px 0;
  opacity: 0.92;
}

.terms-contact {
  margin: 0;
  opacity: 0.9;
}

.terms-email {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.terms-section {
  margin-top: 22px;
  padding-top: 10px;
}

.terms-section h2 {
  font-weight: 600;
  font-size: clamp(18px, 2vw, 22px);
  margin-bottom: 10px;
}

.terms-paragraphs p {
  opacity: 0.92;
  line-height: 1.65;
  margin-bottom: 10px;
}

.terms-list {
  margin: 10px 0 0 0;
  padding-left: 18px;
}

.terms-list li {
  margin-bottom: 8px;
  opacity: 0.92;
  line-height: 1.55;
}

.terms-note {
  margin-top: 12px;
  padding: 12px 14px;
  border-left: 3px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  opacity: 0.95;
}

@media (max-width: 576px) {
  .terms-main {
    padding-top: 95px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .terms-lead-card {
    padding: 14px;
  }
}