/* ── Buddy Public Web ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink:      #1a1a1a;
  --ink-muted:#6b7280;
  --sand:     #c9a96e;
  --teal:     #2a9d8f;
  --canvas:   #f5f3ef;
  --surface:  #ffffff;
  --border:   #e5e7eb;
  --radius:   16px;
  --max-w:    760px;
}

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--canvas);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
}

/* ── NAV ── */
.web-nav {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}
.web-nav .logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.5px;
  text-decoration: none;
  color: var(--ink);
}
.web-nav .logo img { border-radius: 7px; flex-shrink: 0; }
.web-nav .logo span { color: var(--sand); }
.web-nav-links { display: flex; gap: 24px; }
.web-nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-muted);
  text-decoration: none;
  transition: color .2s;
}
.web-nav-links a:hover { color: var(--ink); }

/* ── HERO ── */
.hero {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 24px 60px;
  text-align: center;
}
.hero-badge {
  display: inline-block;
  background: var(--teal);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.hero h1 em { color: var(--sand); font-style: normal; }
.hero p {
  font-size: 18px;
  color: var(--ink-muted);
  max-width: 520px;
  margin: 0 auto 36px;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: white;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 100px;
  text-decoration: none;
  transition: opacity .2s;
}
.hero-cta:hover { opacity: .85; }

/* ── FEATURES ── */
.features {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px 80px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.feature-icon {
  font-size: 28px;
  margin-bottom: 14px;
}
.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.6;
}

/* ── HOW IT WORKS ── */
.section {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px 80px;
}
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 12px;
}
.section h2 {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  letter-spacing: -0.8px;
  margin-bottom: 40px;
}
.steps { display: flex; flex-direction: column; gap: 24px; }
.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--ink);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
}
.step-body h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.step-body p  { font-size: 14px; color: var(--ink-muted); }

/* ── LEGAL PAGES ── */
.legal-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 60px 24px 100px;
}
.legal-wrap h1 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.8px;
  margin-bottom: 8px;
}
.legal-meta {
  font-size: 13px;
  color: var(--ink-muted);
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.legal-wrap h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 40px 0 12px;
}
.legal-wrap h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 24px 0 8px;
  color: var(--ink-muted);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
}
.legal-wrap p  { margin-bottom: 16px; color: var(--ink); font-size: 15px; }
.legal-wrap ul { margin: 0 0 16px 20px; }
.legal-wrap li { font-size: 15px; margin-bottom: 6px; color: var(--ink); }
.legal-wrap a  { color: var(--teal); text-decoration: underline; }
.legal-wrap table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  font-size: 14px;
}
.legal-wrap th, .legal-wrap td {
  text-align: left;
  padding: 10px 14px;
  border: 1px solid var(--border);
}
.legal-wrap th { background: var(--canvas); font-weight: 600; }

/* ── REASONS GRID (por qué participar) ── */
.reasons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 8px;
}
@media (max-width: 600px) { .reasons-grid { grid-template-columns: 1fr; } }
.reason-item { border-top: 2px solid var(--teal); padding-top: 14px; }
.reason-item h4 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.reason-item p { font-size: 14px; color: var(--ink-muted); }

/* ── PROFILE GRID (¿quién puede ser Buddy?) ── */
.profile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 12px;
  margin-top: 8px;
}
.profile-tag {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
}
.profile-tag .emoji { font-size: 20px; flex-shrink: 0; }

/* ── QUOTE CARD (negocios) ── */
.quote-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.quote-card .quote-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 12px;
}
.quote-card blockquote {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.4px;
  margin-bottom: 14px;
}
.quote-card p { font-size: 14px; color: var(--ink-muted); }
.check-list { list-style: none; margin-top: 20px; }
.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 15px;
  padding: 6px 0;
}
.check-list li::before { content: "✓"; color: var(--teal); font-weight: 800; flex-shrink: 0; }

/* ── DESTINATION TAGS (expansión) ── */
.destino-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.destino-tag {
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 13px;
  color: var(--ink-muted);
}
.destino-tag.hoy { background: var(--ink); color: white; border-color: var(--ink); font-weight: 600; }

/* ── BUDDY FORM (postular) ── */
.buddy-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.buddy-form .field { margin-bottom: 16px; }
.buddy-form label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 6px;
}
.buddy-form input, .buddy-form select, .buddy-form textarea {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--canvas);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 11px 12px;
}
.buddy-form textarea { resize: vertical; min-height: 80px; }
.buddy-form .form-note { font-size: 13px; color: var(--ink-muted); margin-top: 12px; }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 720px) { .two-col { grid-template-columns: 1fr; } }
.contact-links { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.contact-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
}
.contact-links a:hover { color: var(--teal); }

/* ── FOOTER ── */
.web-footer {
  border-top: 1px solid var(--border);
  padding: 40px 24px;
  text-align: center;
}
.web-footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.web-footer-links a {
  font-size: 13px;
  color: var(--ink-muted);
  text-decoration: none;
}
.web-footer-links a:hover { color: var(--ink); }
.web-footer p { font-size: 12px; color: var(--ink-muted); }

@media (max-width: 600px) {
  .web-nav-links { display: none; }
  .hero { padding: 48px 20px 40px; }
}
