/* VERA — fake door B2C. Paleta cálida de coach: crema, tinta, terracota, salvia. */
:root {
  --bg: #FAF6F0;
  --bg-card: #FFFFFF;
  --ink: #2D2A26;
  --ink-soft: #6B6459;
  --accent: #C4552D;
  --accent-dark: #A34423;
  --sage: #5F7A61;
  --line: #E8E0D4;
  --radius: 14px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; line-height: 1.2; font-weight: 700; }
a { color: var(--accent); }
.wrap { max-width: 1000px; margin: 0 auto; padding: 0 20px; }

/* Header */
header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(250, 246, 240, 0.94); backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.logo { font-family: Georgia, serif; font-size: 1.5rem; font-weight: 700; letter-spacing: 0.12em; color: var(--ink); text-decoration: none; }
.logo span { color: var(--accent); }
.btn {
  display: inline-block; background: var(--accent); color: #fff; text-decoration: none;
  padding: 12px 24px; border-radius: 999px; font-weight: 600; border: none;
  font-size: 1rem; cursor: pointer; transition: background 0.15s;
}
.btn:hover { background: var(--accent-dark); }
.btn-small { padding: 8px 18px; font-size: 0.9rem; }

/* Hero */
.hero { padding: 72px 0 40px; text-align: center; }
.hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); max-width: 720px; margin: 0 auto 18px; }
.hero h1 em { font-style: italic; color: var(--accent); }
.hero p.sub { font-size: 1.2rem; color: var(--ink-soft); max-width: 620px; margin: 0 auto 28px; }
.hero .note { margin-top: 12px; font-size: 0.9rem; color: var(--sage); font-weight: 600; }

/* Avatar / vídeo */
.avatar-block { padding: 30px 0 10px; display: flex; justify-content: center; }
.avatar-card {
  background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; max-width: 520px; width: 100%; text-align: center;
  box-shadow: 0 8px 30px rgba(45, 42, 38, 0.06);
}
.avatar-face { width: 130px; height: 130px; margin: 0 auto 14px; display: block; }
.avatar-video {
  width: 100%; border-radius: calc(var(--radius) - 8px); display: block;
  margin: 0 auto 16px; background: #000;
}
.play-fake {
  margin-top: 10px; display: inline-flex; align-items: center; gap: 8px;
  color: var(--ink-soft); font-size: 0.95rem; border: 1px dashed var(--line);
  padding: 8px 16px; border-radius: 999px; background: var(--bg);
}
.play-fake svg { width: 16px; height: 16px; fill: var(--accent); }

/* Secciones */
section.block { padding: 56px 0; }
section.block.alt { background: var(--bg-card); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.block h2 { font-size: clamp(1.5rem, 3.5vw, 2.1rem); text-align: center; margin-bottom: 34px; }
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.card {
  background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px;
}
.alt .card { background: var(--bg); }
.card h3 { font-size: 1.05rem; margin-bottom: 8px; color: var(--accent-dark); }
.card p { font-size: 0.95rem; color: var(--ink-soft); }

.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; counter-reset: paso; }
.step { text-align: center; padding: 10px; }
.step .num {
  width: 44px; height: 44px; border-radius: 50%; background: var(--sage); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 700;
  margin: 0 auto 12px; font-size: 1.1rem;
}
.step h3 { font-size: 1.05rem; margin-bottom: 6px; }
.step p { font-size: 0.95rem; color: var(--ink-soft); }

/* Precio */
.price-box {
  max-width: 420px; margin: 0 auto; text-align: center; background: var(--bg-card);
  border: 2px solid var(--accent); border-radius: var(--radius); padding: 30px;
}
.price-box .amount { font-size: 2.6rem; font-family: Georgia, serif; color: var(--ink); }
.price-box .amount small { font-size: 1rem; color: var(--ink-soft); }
.price-box .beta { margin-top: 10px; color: var(--sage); font-weight: 600; }

/* Formulario */
#interes { padding: 64px 0 80px; }
.form-card {
  max-width: 520px; margin: 0 auto; background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 32px; box-shadow: 0 8px 30px rgba(45, 42, 38, 0.06);
}
.form-card h2 { text-align: left; margin-bottom: 8px; font-size: 1.5rem; }
.form-card p.lead-in { color: var(--ink-soft); margin-bottom: 20px; }
.form-card label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 0.95rem; }
.form-card input[type="email"], .form-card input[type="text"], .form-card select {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px;
  font-size: 1rem; margin-bottom: 16px; background: var(--bg); color: var(--ink);
}
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 18px; }
.consent input { margin-top: 4px; }
.form-card .btn { width: 100%; }
.hidden-field { display: none; }

/* Footer */
footer { border-top: 1px solid var(--line); padding: 28px 0 90px; font-size: 0.85rem; color: var(--ink-soft); }
footer .wrap { display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; }

/* Banner de consentimiento */
#consent-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 50;
  background: var(--ink); color: #F5F1EA; padding: 14px 20px;
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: center;
  font-size: 0.88rem;
}
#consent-banner a { color: #F0B9A2; }
#consent-banner button {
  border: none; border-radius: 999px; padding: 8px 18px; font-size: 0.88rem;
  cursor: pointer; font-weight: 600;
}
#consent-accept { background: var(--accent); color: #fff; }
#consent-reject { background: transparent; color: #F5F1EA; border: 1px solid #6B6459; }

/* Páginas interiores */
.page { max-width: 720px; margin: 0 auto; padding: 60px 20px 80px; }
.page h1 { font-size: 2rem; margin-bottom: 18px; }
.page h2 { font-size: 1.2rem; margin: 24px 0 8px; }
.page p, .page li { color: var(--ink-soft); }
.page ul { padding-left: 22px; }
.survey { margin-top: 30px; background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.survey fieldset { border: none; }
.survey legend { font-weight: 700; margin-bottom: 12px; font-size: 1.05rem; color: var(--ink); }
.survey label.opt {
  display: block; padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px;
  margin-bottom: 10px; cursor: pointer; background: var(--bg); font-size: 0.95rem;
}
.survey label.opt:hover { border-color: var(--accent); }
.survey .btn { margin-top: 8px; }
