*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:       #00674F;
  --green-dark:  #1A4A38;
  --green-ghost: rgba(0,103,79,0.07);
  --black:       #0D0D0D;
  --ink:         #141C19;
  --ink-mid:     #3A4A44;
  --muted:       #eefff9;
  --cream:       #F7F5F0;
  --white:       #ffffff;
  --border:      #E2EAE6;
  --border-soft: #EEF2F0;
  --radius-sm:   9px;
}

html { font-size: 15px; }
body { font-family: 'Inter', sans-serif; background: #ffffff; color: var(--ink); }
a { text-decoration: none; color: inherit; }

.container      { max-width: 750px;  margin: 0 auto; padding: 0 32px; }
.container-wide { max-width: 950px; margin: 0 auto; padding: 0 32px; }

/* ── PAGE AREA ── */
.terms-area { padding: 64px 0 100px; }

/* ── DOC HEADER ── */
.doc-header {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
  text-align: justify;
}

.doc-eyebrow {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--green);
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 16px;
}

.doc-eyebrow::before { content: ''; width: 22px; height: 1.5px; background: var(--green); }

.doc-title {
  font-family: 'Inter', sans-serif;
  font-size: 52px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 22px;
}

.doc-lead {
  font-size: 15px; font-weight: 300;
  color: var(--ink-mid); line-height: 1.9;
  max-width: 100%;
  padding-left: 18px;
  border-left: 3px solid var(--green);
  text-align: justify;
}

/* ── SECTIONS ── */
.terms-section { margin-bottom: 32px; }

.section-head {
  display: flex; align-items: baseline;
  gap: 16px; margin-bottom: 20px;
}

.section-index {
  font-family: 'Inter', sans-serif;
  font-size: 46px; font-weight: 300; font-style: italic;
  color: var(--green); line-height: 1;
  flex-shrink: 0; user-select: none;
  letter-spacing: -0.02em;
}

.section-title {
  font-family: 'Inter', sans-serif;
  font-size: 18px; font-weight: 700;
  color: var(--ink); letter-spacing: -0.02em;
  line-height: 1.25;
}

.section-body {
  text-align: justify;
}

.section-body p {
  font-size: 14.5px; font-weight: 300;
  color: var(--ink-mid); line-height: 1.95;
  margin-bottom: 10px;
  text-align: justify;
}

.section-body p:last-child { margin-bottom: 0; }

/* Notice boxes */
.notice {
  border-radius: var(--radius-sm);
  padding: 14px 18px; margin: 20px 0;
  font-size: 13.5px; font-weight: 300;
  color: var(--ink-mid); line-height: 1.75;
}

.notice-green {
  background: var(--green-ghost);
  border-left: 3px solid var(--green);
}

.notice-amber {
  background: rgba(201,157,48,0.06);
  border-left: 3px solid #C99D30;
}

/* Divider */
.section-divider {
  border: none;
  border-top: 1px solid var(--border-soft);
  margin: 0 0 32px;
}

/* ── RESPONSIVE ── */
.footer .container {
  max-width: 1200px !important;
}

@media (max-width: 640px) {
  .container, .container-wide { padding: 0 20px; }
  .doc-title { font-size: 36px; }
  .terms-area { padding: 44px 0 70px; }
  .meta-items { gap: 12px; }
  .section-index { font-size: 36px; }
}

/* Borde verde para navegación principal solo en términos */
body .main-navigation {
  border-bottom: 3px solid #ffffff;
}
