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

:root {
  --red:     #e8201a;
  --yellow:  #f5c800;
  --green:   #3db354;
  --dkgreen: #1a7a3c;
  --text:    #111;
  --text-2:  #666;
  --border:  #eee;
  --serif:   'Spectral', Georgia, 'Times New Roman', serif;
  --sans:    'Hanken Grotesk', system-ui, -apple-system, sans-serif;
}

html  { scroll-behavior: smooth; }
body  { font-family: var(--serif); color: var(--text); background: #fff; -webkit-font-smoothing: antialiased; }

/* ── Puntos decorativos ───────────────────────────────── */
.dots { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.dot  { position: absolute; width: 10px; height: 10px; border-radius: 50%; }
.dot--yellow  { background: var(--yellow); }
.dot--green   { background: var(--green); }
.dot--dkgreen { background: var(--dkgreen); }

/* ── Hero ─────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 80px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.wordmark {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(52px, 9vw, 88px);
  letter-spacing: -1.5px;
  line-height: 1;
  color: var(--text);
  margin-bottom: 18px;
}

.red-dot {
  color: var(--red);
  font-size: 0.55em;
  vertical-align: baseline;
  margin-left: 3px;
  line-height: 1;
}

.tagline {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(9px, 1.4vw, 12px);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.9;
  margin-bottom: 28px;
}

.red-dot-sm {
  color: var(--red);
  font-size: 0.75em;
  margin-left: 3px;
}

.hero-sub {
  font-family: var(--serif);
  font-size: clamp(17px, 2.4vw, 21px);
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 44px;
}

.download-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Botones ──────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  padding: 14px 30px;
  border-radius: 100px;
  text-decoration: none;
  transition: opacity .15s;
  cursor: pointer;
  border: none;
}
.btn:hover          { opacity: 0.8; }
.btn-dark           { background: var(--text); color: #fff; }
.btn-outline        { background: transparent; color: var(--text); border: 1.5px solid #ccc; }
.btn-full           { width: 100%; text-align: center; }

/* ── Pasos ────────────────────────────────────────────── */
.steps-section {
  padding: 88px 24px 100px;
  max-width: 1040px;
  margin: 0 auto;
}

.section-label {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 52px;
  text-align: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 52px 48px;
}

@media (max-width: 680px) {
  .steps-grid { grid-template-columns: 1fr; gap: 44px; }
}

.step-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 42px;
  color: var(--red);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 14px;
}

.step-title {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 10px;
}

.step-body {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.75;
}

/* ── Footer ───────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 44px 24px;
}

.footer-inner {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.footer-brand {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--text);
  text-decoration: none;
}

.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--text-2);
  text-decoration: none;
  transition: color .15s;
}
.footer-nav a:hover { color: var(--text); }

.footer-copy {
  font-family: var(--sans);
  font-size: 12px;
  color: #bbb;
}

/* ── Páginas interiores (formulario, confirmación) ────── */
.simple-header {
  padding: 28px 32px;
  border-bottom: 1px solid var(--border);
}

.header-brand {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--text);
  text-decoration: none;
}

.form-page {
  min-height: calc(100svh - 80px - 120px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 64px 24px 80px;
}

.form-wrap {
  width: 100%;
  max-width: 520px;
}

.form-wrap--center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-top: 32px;
}

.form-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 5vw, 44px);
  letter-spacing: -0.5px;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.15;
}

.form-desc {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 14px;
}

.delete-form {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-label {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text);
}

.field-input {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--text);
  background: #fff;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  padding: 13px 16px;
  outline: none;
  transition: border-color .15s;
  -webkit-appearance: none;
}
.field-input:focus   { border-color: var(--text); }
.field-input::placeholder { color: #bbb; }

.field-textarea {
  resize: vertical;
  min-height: 110px;
  font-size: 15px;
}

.form-legal {
  margin-top: 20px;
  font-family: var(--sans);
  font-size: 13px;
  color: #aaa;
  line-height: 1.6;
}
.form-legal a { color: var(--text-2); text-decoration: underline; }
.form-legal a:hover { color: var(--text); }

.success-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #f0faf4;
  color: var(--dkgreen);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-weight: 700;
}

/* ── Páginas legales (Términos, Privacidad) ───────────── */
.legal-page {
  padding: 56px 24px 96px;
}

.legal-wrap {
  max-width: 720px;
  margin: 0 auto;
}

.legal-eyebrow {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}

.legal-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 5vw, 48px);
  letter-spacing: -0.5px;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 10px;
}

.legal-meta {
  font-family: var(--sans);
  font-size: 13px;
  color: #aaa;
  margin-bottom: 52px;
  line-height: 1.6;
}

.legal-body h2 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.3px;
  color: var(--text);
  margin-top: 44px;
  margin-bottom: 12px;
}

.legal-body h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  color: var(--text);
  margin-top: 24px;
  margin-bottom: 8px;
}

.legal-body p {
  font-family: var(--serif);
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 14px;
}

.legal-body ul, .legal-body ol {
  font-family: var(--serif);
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 14px;
  padding-left: 24px;
}

.legal-body li { margin-bottom: 6px; }

.legal-body strong { font-weight: 600; color: var(--text); }
.legal-body em { font-style: italic; }

.legal-body a { color: var(--text); }
.legal-body a:hover { color: var(--red); }

.legal-body table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--sans);
  font-size: 13px;
  margin-bottom: 20px;
}

.legal-body th {
  text-align: left;
  font-weight: 700;
  padding: 10px 12px;
  border-bottom: 2px solid var(--border);
  color: var(--text);
}

.legal-body td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
  color: #444;
  vertical-align: top;
  line-height: 1.6;
}

.legal-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 48px 0;
}
