/* ══════════════════════════════════════════
   RESET + VARIABLES
   Fondo mas oscuro y profundo como en la imagen
══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #F7F0E3;
  --bg2:      #FFFFFF;
  --bg3:      #EDE5D5;
  --gold:     #8B5E1A;
  --gold2:    #A06A1E;
  --gold-dim: rgba(139,94,26,0.1);
  --cream:    #2C1A06;
  --white:    #FFFFFF;
  --muted:    rgba(44,26,6,0.5);
  --muted2:   rgba(44,26,6,0.3);
  --border:   rgba(139,94,26,0.2);
  --border2:  rgba(44,26,6,0.08);
  --wa:       #25D366;
  --r:        14px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--cream);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: auto;
}

/* ══════════════════════════════════════════
   BARRA DE PROGRESO + INDICADOR
   Minimalista, centrado, como en la imagen
══════════════════════════════════════════ */
#bar-track {
  position: fixed; top: 0; left: 0; right: 0; height: 2px;
  background: rgba(139,94,26,0.12); z-index: 100;
}
#bar {
  height: 2px;
  background: var(--gold);
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: 25%;
}

/* Dots ocultos — la imagen usa solo texto de indicador */
#steps { display: none; }

#indicator {
  position: fixed; top: 0; left: 0; right: 0;
  text-align: center;
  padding-top: 8px;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); opacity: 0.75; z-index: 101;
  pointer-events: none;
}

/* ══════════════════════════════════════════
   PAGINAS
══════════════════════════════════════════ */
.page {
  display: none;
  min-height: 100vh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 56px 18px 48px;
}
.page.on { display: flex; }
#p4 { justify-content: flex-start; padding-top: 48px; }
#p0 { background: var(--bg); }

/* ══════════════════════════════════════════
   TIPOGRAFIA BASE
══════════════════════════════════════════ */
.eyebrow {
  font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px; opacity: 0.65; text-align: center;
}

h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(26px, 7vw, 42px); font-weight: 700;
  line-height: 1.06; text-align: left;
  color: var(--cream); margin-bottom: 20px;
  letter-spacing: -0.02em;
}
h1 em { font-style: italic; color: var(--gold2); }

.sub {
  font-size: 13px; color: var(--muted);
  text-align: left; margin-bottom: 24px;
  max-width: 320px; line-height: 1.6;
}

/* ══════════════════════════════════════════
   CARDS DE OPCIONES
   Referencia: borde izquierdo dorado al seleccionar,
   fondo ligeramente mas claro, icono circular
══════════════════════════════════════════ */
.grid {
  display: grid; gap: 8px;
  width: 100%; max-width: 400px;
}
.grid.c2 { grid-template-columns: 1fr 1fr; }

.card {
  background: var(--bg2);
  border: 1px solid rgba(139,94,26,0.15);
  border-left: 3px solid transparent;
  border-radius: var(--r);
  padding: 14px 14px 14px 16px;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s;
  text-align: left; position: relative; overflow: hidden;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  display: flex; align-items: center; gap: 12px;
}

/* Grid 2 columnas — cards mas compactas */
.grid.c2 .card {
  flex-direction: column; align-items: flex-start; gap: 6px;
}

.card:active { background: var(--bg3); }

.card.sel {
  background: rgba(139,94,26,0.08);
  border-left: 3px solid var(--gold);
  border-color: rgba(139,94,26,0.15);
  border-left-color: var(--gold);
}

/* Checkmark circular — oculto por defecto */
.chk {
  position: absolute; top: 10px; right: 10px;
  width: 18px; height: 18px; border-radius: 50%;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 900; color: transparent;
  transition: all 0.18s; flex-shrink: 0;
}
.card.sel .chk {
  background: var(--gold); color: var(--bg);
  border-color: var(--gold);
}

/* Icono en circulo como en la imagen */
.ci-wrap {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--gold-dim);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ci { font-size: 20px; display: block; line-height: 1; }

/* Si no hay ci-wrap, aplicar directo */
.grid.c2 .ci { font-size: 22px; margin-bottom: 4px; }

.cl {
  font-family: 'Fraunces', serif; font-size: 14px; font-weight: 700;
  color: var(--cream); display: block; line-height: 1.25;
}
.cd {
  font-size: 11px; color: var(--muted);
  margin-top: 2px; display: block; line-height: 1.4;
}

/* ══════════════════════════════════════════
   SLIDER DE PRESUPUESTO
   Numero enorme, slider limpio
══════════════════════════════════════════ */
.sbox { width: 100%; max-width: 400px; }

.bnum {
  font-family: 'Fraunces', serif;
  font-size: clamp(52px, 14vw, 72px); font-weight: 900;
  color: var(--gold2); text-align: center;
  margin-bottom: 2px; letter-spacing: -0.03em;
  line-height: 1;
}

.bsub {
  text-align: center; font-size: 12px; color: var(--muted);
  margin-bottom: 24px; min-height: 16px; line-height: 1.4;
}
.bsub b { color: var(--gold2); }

input[type=range] {
  -webkit-appearance: none; width: 100%; height: 3px;
  background: rgba(255,255,255,0.1); border-radius: 99px;
  outline: none; cursor: pointer; display: block; margin-bottom: 6px;
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,149,58,0.2), 0 2px 6px rgba(0,0,0,0.5);
  transition: transform 0.15s;
}
input[type=range]:active::-webkit-slider-thumb {
  transform: scale(1.15);
}

.rlabs {
  display: flex; justify-content: space-between;
  font-size: 10px; color: var(--muted2);
}

/* Hint de m2 — compacto, sin caja */
.bhint {
  text-align: center; font-size: 12px; color: var(--muted);
  margin-top: 14px; line-height: 1.5;
  min-height: 16px;
}
.bhint b { color: var(--gold2); font-weight: 600; }

/* ══════════════════════════════════════════
   BOTONES RAPIDOS DE PRESUPUESTO
══════════════════════════════════════════ */
.budget-quick {
  display: flex; flex-wrap: wrap; gap: 6px;
  justify-content: center; margin-bottom: 14px;
}
.bq-btn {
  background: rgba(139,94,26,0.05);
  border: 1px solid rgba(139,94,26,0.15);
  color: var(--muted); border-radius: 6px;
  padding: 6px 14px; font-size: 12px; font-weight: 600;
  cursor: pointer; font-family: 'DM Sans', sans-serif;
  transition: all 0.18s;
  -webkit-tap-highlight-color: transparent;
  letter-spacing: 0.02em;
}
.bq-btn:active, .bq-btn.act {
  background: var(--gold-dim);
  border-color: var(--gold);
  color: var(--gold2);
}

/* ══════════════════════════════════════════
   TOGGLES DE EXTRAS
   Mas compactos, icono circular
══════════════════════════════════════════ */
.tgrid {
  display: flex; flex-direction: column; gap: 7px;
  width: 100%; max-width: 400px;
}

.tcard {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--bg2); border: 1px solid rgba(139,94,26,0.12);
  border-left: 3px solid transparent;
  border-radius: var(--r); padding: 12px 14px 12px 16px;
  cursor: pointer; transition: background 0.18s, border-color 0.18s;
  -webkit-tap-highlight-color: transparent; user-select: none;
}
.tcard:active { background: var(--bg3); }
.tcard.on {
  background: rgba(139,94,26,0.07);
  border-left-color: var(--gold);
}

.tleft { display: flex; align-items: center; gap: 12px; }

.tico-wrap {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gold-dim);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.tico { font-size: 18px; }

.tname {
  font-family: 'Fraunces', serif; font-size: 14px; font-weight: 700;
  color: var(--cream); line-height: 1.2;
}
.tinfo { font-size: 11px; color: var(--muted); margin-top: 1px; }

/* Toggle switch */
.tsw {
  width: 38px; height: 21px;
  background: rgba(139,94,26,0.15);
  border-radius: 99px; position: relative;
  transition: background 0.2s; flex-shrink: 0;
}
.tcard.on .tsw { background: var(--gold); }
.tsw::after {
  content: ''; position: absolute; top: 2.5px; left: 2.5px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--white);
  box-shadow: 0 1px 3px rgba(0,0,0,0.35);
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.tcard.on .tsw::after { transform: translateX(17px); }

/* ══════════════════════════════════════════
   BOTONES
══════════════════════════════════════════ */
.btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; max-width: 360px;
  background: var(--gold);
  color: #FFFFFF;
  border: none; border-radius: 10px; padding: 15px 24px;
  font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 700;
  cursor: pointer; transition: opacity 0.18s; margin-top: 16px;
  -webkit-tap-highlight-color: transparent; user-select: none;
  letter-spacing: 0.01em;
}
.btn:active { opacity: 0.8; }

.btn.ghost {
  background: transparent; color: var(--muted);
  border: 1px solid rgba(44,26,6,0.18);
  font-size: 13px; font-weight: 500; margin-top: 8px;
}
.btn.ghost:active { opacity: 0.6; }

/* Boton WhatsApp — prominente, ancho completo */
.btn.wa {
  background: var(--wa); color: #fff;
  border-radius: 10px;
  font-size: 16px; font-weight: 700;
  padding: 17px 24px;
  max-width: 100%;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
  letter-spacing: 0.01em;
}
.btn.wa:active { opacity: 0.88; }

.brow { display: flex; flex-direction: column; align-items: stretch; width: 100%; max-width: 400px; }
.brow .btn { max-width: 100%; }

.urgency {
  font-size: 11px; color: var(--muted2);
  text-align: center; margin-top: 8px;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.udot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--wa); flex-shrink: 0;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { opacity: 0.8; } 50% { opacity: 0.2; } }

/* ══════════════════════════════════════════
   PANTALLA RESULTADO
══════════════════════════════════════════ */
.rbox { width: 100%; max-width: 420px; }

/* Badge de estado */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(139,94,26,0.1);
  border: 1px solid rgba(139,94,26,0.25);
  border-radius: 6px; padding: 4px 12px; margin-bottom: 14px;
  font-size: 10px; font-weight: 700; color: var(--gold2);
  letter-spacing: 0.08em; text-transform: uppercase;
}
.bdot {
  width: 5px; height: 5px; background: var(--wa); border-radius: 50%;
  animation: pulse 2s infinite;
}

/* Pills de resumen */
.pills { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 14px; }
.pill {
  display: flex; align-items: center;
  background: rgba(139,94,26,0.07);
  border: 1px solid rgba(139,94,26,0.15);
  border-radius: 5px; padding: 3px 10px;
  font-size: 11px; color: var(--muted);
}
.pill b { color: var(--gold2); font-weight: 600; }

/* Hero precio — numero grande dominante */
.hero {
  background: var(--bg2);
  border: 1px solid rgba(139,94,26,0.2);
  border-left: 4px solid var(--gold);
  box-shadow: 0 2px 12px rgba(139,94,26,0.08);
  border-radius: var(--r);
  padding: 18px 18px 14px; margin-bottom: 10px;
}
.hero-intro {
  font-size: 11px; color: var(--muted); margin-bottom: 4px;
  line-height: 1.4; text-transform: uppercase; letter-spacing: 0.06em;
}
.hero-price {
  font-family: 'Fraunces', serif;
  font-size: clamp(44px, 12vw, 64px); font-weight: 900;
  color: var(--gold2); line-height: 1;
  letter-spacing: -0.03em;
}
.hero-note {
  font-size: 10px; color: var(--muted2); margin-top: 6px; line-height: 1.45;
}
.price-ctx {
  margin-top: 8px; font-size: 11px; color: var(--muted);
  line-height: 1.5; border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 8px; min-height: 10px;
}

/* Trust note */
.trust {
  display: flex; gap: 10px; align-items: flex-start;
  background: var(--bg2);
  border: 1px solid rgba(139,94,26,0.12);
  border-radius: var(--r); padding: 10px 14px; margin-bottom: 12px;
}
.trust-icon { font-size: 15px; flex-shrink: 0; margin-top: 1px; }
.trust p { font-size: 11px; color: var(--muted); line-height: 1.5; }
.trust p b { color: var(--cream); }

/* Stats — key facts como pills en la imagen */
.stats {
  display: flex; gap: 7px; margin-bottom: 12px;
  flex-wrap: wrap;
}
.sc {
  background: var(--bg2); border: 1px solid var(--border2);
  border-radius: 8px; padding: 10px 14px;
  display: flex; flex-direction: column; align-items: center;
  flex: 1; min-width: 80px;
}
.sv {
  font-family: 'Fraunces', serif; font-size: 20px; font-weight: 900;
  color: var(--gold2); display: block; line-height: 1;
}
.sl {
  font-size: 9px; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--muted2); margin-top: 3px; display: block;
}

/* Seccion titulo */
.stitle {
  font-size: 9px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--gold); opacity: 0.55; margin: 16px 0 8px;
}

/* Desglose */
.desg {
  background: var(--bg2); border: 1px solid rgba(139,94,26,0.12);
  border-radius: var(--r); padding: 10px 14px; margin-bottom: 12px;
}
.dr {
  display: flex; justify-content: space-between; align-items: center;
  padding: 5px 0;
}
.dr + .dr { border-top: 1px solid rgba(255,255,255,0.04); }
.dl { font-size: 11px; color: var(--muted); }
.dv { font-size: 12px; font-weight: 600; color: var(--cream); }
.dv.hi { color: var(--gold2); }

/* Aviso presupuesto */
.warn {
  background: rgba(200,80,20,0.08); border: 1px solid rgba(200,80,20,0.25);
  border-radius: 8px; padding: 10px 14px; font-size: 12px;
  color: var(--cream); margin-bottom: 10px; display: none; line-height: 1.5;
}
.warn.on { display: block; }

/* Ajustadores +/- */
.arow {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--bg2); border: 1px solid rgba(139,94,26,0.12);
  border-radius: var(--r); padding: 11px 14px; margin-bottom: 7px;
}
.albl {
  font-family: 'Fraunces', serif; font-size: 14px; font-weight: 700;
  color: var(--cream);
}
.asub { font-size: 11px; color: var(--muted); margin-top: 2px; }
.actrl { display: flex; align-items: center; gap: 10px; }
.abtn {
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(139,94,26,0.07);
  border: 1px solid rgba(139,94,26,0.2);
  color: var(--cream); font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  -webkit-tap-highlight-color: transparent; user-select: none;
  line-height: 1; font-weight: 300;
}
.abtn:active { background: var(--gold); color: #fff; border-color: var(--gold); }
.aval {
  font-family: 'Fraunces', serif; font-size: 22px; font-weight: 900;
  color: var(--gold2); min-width: 28px; text-align: center;
}

/* ══════════════════════════════════════════
   PLANO VISUAL
   Fondo muy oscuro, colores mas saturados,
   etiquetas legibles con m2 dentro
══════════════════════════════════════════ */
.fp-wrap {
  border-radius: var(--r); overflow: hidden;
  margin-bottom: 10px;
  border: 1px solid rgba(139,94,26,0.2);
  box-shadow: 0 4px 16px rgba(139,94,26,0.1);
}
#fp {
  width: 100%; aspect-ratio: 16 / 8;
  background: #E8DEC8;
  position: relative; overflow: hidden;
}
.rm {
  position: absolute;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  border: 1px solid rgba(0,0,0,0.15);
}
.rml {
  font-size: 8px; text-transform: uppercase; letter-spacing: 0.04em;
  font-weight: 700; color: rgba(0,0,0,0.7); text-align: center;
  line-height: 1.2; padding: 1px 3px; pointer-events: none;
}
.rmm {
  font-size: 8px; color: rgba(0,0,0,0.55); pointer-events: none;
  margin-top: 1px; font-weight: 600;
}

/* Colores de ambientes — mas saturados y diferenciables */
.c-so  { background: #6FA876; }
.c-ki  { background: #B8956A; }
.c-do  { background: #5482A8; }
.c-ba  { background: #C4BA3A; }
.c-ga  { background: #7A9AA3; }
.c-bb  { background: #C47030; }
.c-of  { background: #8A68B8; }
.c-ci  { background: #A89880; }
.c-lau { background: #7AB880; }
.c-dep { background: #9A9088; }
.c-gal { background: #C8B070; }

/* Leyenda */
.leg { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 14px; }
.li {
  display: flex; align-items: center; gap: 4px;
  font-size: 10px; color: var(--muted);
}
.ld { width: 8px; height: 8px; border-radius: 2px; flex-shrink: 0; }

/* ══════════════════════════════════════════
   SOCIAL PROOF + TESTIMONIO
══════════════════════════════════════════ */
.social-proof {
  display: flex; align-items: center; gap: 10px;
  background: var(--bg2); border: 1px solid rgba(139,94,26,0.12);
  border-radius: var(--r); padding: 10px 14px; margin-bottom: 10px;
}
.sp-avs { display: flex; flex-shrink: 0; }
.sp-av {
  width: 26px; height: 26px; border-radius: 50%;
  border: 2px solid var(--bg); margin-left: -6px;
  font-size: 12px; display: flex; align-items: center; justify-content: center;
  background: var(--gold-dim);
}
.sp-av:first-child { margin-left: 0; }
.sp-text { font-size: 11px; color: var(--muted); line-height: 1.45; }
.sp-text b { color: var(--gold2); }

.testimony {
  background: rgba(139,94,26,0.04); border: 1px solid rgba(139,94,26,0.15);
  border-left: 3px solid var(--gold);
  border-radius: var(--r); padding: 12px 14px; margin-bottom: 12px;
}
.tq {
  font-family: 'Fraunces', serif; font-size: 36px; color: var(--gold);
  opacity: 0.25; line-height: 1; float: left; margin-right: 6px;
}
.testimony-text {
  font-size: 12px; color: var(--muted); line-height: 1.6;
  overflow: hidden;
}
.testimony-author {
  font-size: 10px; color: var(--gold); opacity: 0.6;
  margin-top: 6px; font-weight: 700; letter-spacing: 0.04em;
  clear: both;
}

/* ══════════════════════════════════════════
   CTA BLOCK
══════════════════════════════════════════ */
.cta {
  background: var(--bg2);
  border: 1px solid rgba(139,94,26,0.18);
  box-shadow: 0 2px 16px rgba(139,94,26,0.08);
  border-radius: var(--r); padding: 20px 16px;
  margin: 20px 0 0;
}
.cta h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(18px, 5vw, 24px); font-weight: 700;
  color: var(--cream); margin-bottom: 6px; line-height: 1.2;
}
.cta h2 em { color: var(--gold2); font-style: italic; }
.cta p {
  font-size: 12px; color: var(--muted);
  margin-bottom: 16px; line-height: 1.6;
}
.sec-btns {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: 10px;
}
.obtn {
  background: rgba(139,94,26,0.05);
  border: 1px solid rgba(139,94,26,0.25);
  color: var(--gold); border-radius: 7px; padding: 8px 14px;
  font-size: 12px; font-weight: 600; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  -webkit-tap-highlight-color: transparent;
  flex: 1; text-align: center;
}
.obtn:active { background: var(--gold-dim); }

/* ══════════════════════════════════════════
   FORMULARIO INLINE
══════════════════════════════════════════ */
.inline-form {
  margin-top: 14px; padding-top: 14px;
  border-top: 1px solid rgba(139,94,26,0.12);
  display: none;
}
.inline-form.show { display: block; }

.iflabel {
  display: block; font-size: 9px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--gold); opacity: 0.65; margin-bottom: 5px;
}
.ifinput {
  width: 100%;
  background: #FAFAF7;
  border: 1px solid rgba(139,94,26,0.18);
  border-radius: 8px; padding: 12px 14px;
  font-family: 'DM Sans', sans-serif; font-size: 15px; color: var(--cream);
  outline: none; margin-bottom: 10px;
  transition: border-color 0.18s;
}
.ifinput::placeholder { color: rgba(240,228,200,0.2); }
.ifinput:focus { border-color: var(--gold); }

.privacy {
  font-size: 10px; color: var(--muted2);
  text-align: center; margin-top: 8px; line-height: 1.5;
}

.waic { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }

/* RESUMEN DE LO QUE INCLUYE */
.resumen-box {
  background: var(--bg2);
  border: 1px solid rgba(139,94,26,0.18);
  border-left: 4px solid var(--gold);
  box-shadow: 0 1px 8px rgba(139,94,26,0.06);
  border-radius: var(--r);
  padding: 12px 14px;
  margin-bottom: 14px;
}
.res-row {
  display: flex; align-items: center; gap: 10px;
  padding: 6px 0;
}
.res-row + .res-row { border-top: 1px solid rgba(255,255,255,0.04); }
.res-ico { font-size: 16px; width: 24px; text-align: center; flex-shrink: 0; }
.res-lbl { font-size: 14px; font-weight: 600; color: var(--cream); flex: 1; }
.res-det { font-size: 11px; color: var(--muted); flex-shrink: 0; }

/* SUBTITULO DE SECCION */
.stitle-sub {
  font-size: 11px; color: var(--muted);
  margin: -4px 0 10px; line-height: 1.5;
}

/* PRECIO DELTA — base + extras + total */
.precio-delta {
  background: var(--bg2);
  border: 1px solid rgba(139,94,26,0.15);
  border-radius: var(--r);
  padding: 12px 14px;
  margin: 14px 0;
}
.pd-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 5px 0;
}
.pd-row + .pd-row { border-top: 1px solid rgba(255,255,255,0.04); }
.pd-label { font-size: 12px; color: var(--muted); }
.pd-val   { font-size: 13px; font-weight: 600; color: var(--cream); }
.pd-plus  { color: #E0A050; }
.pd-total { border-top: 1px solid rgba(201,149,58,0.25) !important; margin-top: 2px; padding-top: 8px !important; }
.pd-big   {
  font-family: 'Fraunces', serif;
  font-size: 22px; font-weight: 900; color: var(--gold2);
}


/* PORTADA P0 */
#p0 {
  background: linear-gradient(160deg, #F7F0E3 0%, #EDE0C4 100%);
  padding: 0;
  position: relative;
  overflow: hidden;
}
#p0::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(139,94,26,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.p0-inner {
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: flex-end;
  min-height: 100vh;
  padding: 48px 24px 52px;
  position: relative; z-index: 1;
  width: 100%; max-width: 480px;
}
.p0-tag {
  font-size: 10px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  background: rgba(139,94,26,0.1);
  border: 1px solid rgba(139,94,26,0.25);
  border-radius: 6px; padding: 4px 12px;
  margin-bottom: 20px; display: inline-block;
}
.p0-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(34px, 9vw, 52px); font-weight: 900;
  line-height: 1.05; color: #1C0E04;
  margin-bottom: 14px; letter-spacing: -0.02em;
  text-align: left;
}
.p0-title em { font-style: italic; color: var(--gold); }
.p0-sub {
  font-size: 15px; color: rgba(44,26,6,0.6);
  line-height: 1.65; margin-bottom: 32px;
  max-width: 300px;
}
.p0-cta {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%;
  background: var(--gold); color: #fff;
  border: none; border-radius: 12px;
  padding: 17px 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 17px; font-weight: 700;
  cursor: pointer; letter-spacing: 0.01em;
  box-shadow: 0 4px 20px rgba(139,94,26,0.3);
  -webkit-tap-highlight-color: transparent;
}
.p0-cta:active { opacity: 0.88; }
.p0-marca {
  font-size: 11px; color: rgba(44,26,6,0.35);
  text-align: center; margin-top: 14px;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.p0-deco {
  position: absolute; top: 40px; right: -20px;
  font-size: 130px; opacity: 0.06;
  pointer-events: none; user-select: none;
  line-height: 1;
}
