/* =========================================================
   MASPASTA.COM — styles.css  v2  (premium redesign)
   ========================================================= */

:root {
  --gold:       #C8A44A;
  --gold-light: #F5E6C0;
  --gold-dark:  #8B6F2E;
  --ink:        #111111;
  --ink-2:      #1E1E1E;
  --ink-3:      #2A2A2A;
  --smoke:      #F7F5F1;
  --warm:       #EDE9E2;
  --white:      #FFFFFF;
  --muted:      #888888;

  --ff-head: 'Bricolage Grotesque', sans-serif;
  --ff-ital: 'Lora', serif;
  --ff-body: 'Bricolage Grotesque', sans-serif;

  --ease: cubic-bezier(.22,1,.36,1);
  --r:    12px;
  --r-lg: 20px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  background: var(--smoke);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }

/* ── TYPOGRAPHY ── */
h1 {
  font-family: var(--ff-head);
  font-size: clamp(2.6rem, 10vw, 4.8rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -.025em;
}
h1 em, h2 em {
  font-family: var(--ff-ital);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -.01em;
}
h2 {
  font-family: var(--ff-head);
  font-size: clamp(1.9rem, 6vw, 3.2rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.022em;
  margin-bottom: 1.2rem;
}
h2.light { color: var(--white); }
h2.dark  { color: var(--ink); }
h2.dark em.dark-em { color: var(--ink); }
h3 {
  font-family: var(--ff-head);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .35rem;
}
p {
  font-size: clamp(.95rem, 2.4vw, 1.05rem);
  line-height: 1.72;
  font-weight: 350;
}
strong { font-weight: 600; }

/* ── LAYOUT ── */
.wrap {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 1.4rem;
}
.wrap--narrow { max-width: 560px; }
.wrap--center { text-align: center; }

/* ── SECTIONS ── */
.sec { padding: 5rem 0; }
.sec--white { background: var(--white); }
.sec--dark  { background: var(--ink);   }
.sec--gold  { background: #F5E6BE;      }
.sec--form  { background: var(--warm);  }
.sec--cta   { background: var(--ink); position: relative; overflow: hidden; }

/* ── PILL LABEL ── */
.label {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: var(--gold-light);
  padding: .3rem .85rem;
  border-radius: 999px;
  margin-bottom: 1.1rem;
}
.label--gold { background: rgba(200,164,74,.25); color: var(--gold); }
.label--dark { background: rgba(0,0,0,.12); color: var(--ink-3); }

/* ── LEAD TEXT ── */
.lead {
  font-size: clamp(1rem, 2.8vw, 1.12rem);
  color: #555;
  margin-bottom: 2rem;
  max-width: 520px;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .9rem 1.4rem;
  background: rgba(17,17,17,.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav__logo {
  font-family: var(--ff-head);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.02em;
}
.nav__logo span { color: var(--gold); }
.nav__cta {
  font-size: .82rem;
  font-weight: 600;
  background: var(--gold);
  color: var(--ink);
  padding: .5rem 1.1rem;
  border-radius: 999px;
  transition: background .2s;
}
.nav__cta:hover { background: #d4aa50; }

/* ── HERO ── */
.hero {
  min-height: 100svh;
  background: var(--ink);
  display: flex;
  align-items: center;
  padding: 7rem 1.4rem 4rem;
  position: relative;
  overflow: hidden;
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}
.orb1 { width: 380px; height: 380px; background: rgba(200,164,74,.22); bottom: -80px; right: -60px; }
.orb2 { width: 260px; height: 260px; background: rgba(200,164,74,.1);  top: 60px;    left: -80px; }
.orb3 { width: 200px; height: 200px; background: rgba(255,255,255,.04);top: 40%;     right: 20%;  }

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
  width: 100%;
  animation: fadeUp .8s var(--ease) both;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  padding: .35rem .9rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}
.pill__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .5; transform: scale(.8); }
}

.hero h1 { color: var(--white); margin-bottom: 1.5rem; }
.hero h1 em { color: var(--gold); }
.hero__sub {
  font-size: clamp(1.05rem, 3vw, 1.2rem);
  color: rgba(255,255,255,.65);
  margin-bottom: 2.4rem;
  line-height: 1.6;
}
.hero__sub strong { color: var(--white); }

.btn-hero {
  display: inline-block;
  font-family: var(--ff-head);
  font-size: 1rem;
  font-weight: 700;
  background: var(--gold);
  color: var(--ink);
  padding: 1rem 2rem;
  border-radius: var(--r);
  transition: transform .2s var(--ease), box-shadow .2s, background .2s;
  box-shadow: 0 4px 24px rgba(200,164,74,.4);
}
.btn-hero:hover {
  background: #d4aa50;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(200,164,74,.55);
}

.social-proof {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-top: 2rem;
}
.avatars { display: flex; }
.av {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 700;
  margin-left: -10px;
  border: 2px solid var(--ink);
}
.av:first-child { margin-left: 0; }
.social-proof span { font-size: .85rem; color: rgba(255,255,255,.55); }

/* ── TWO STATS ── */
.two-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.stat-box {
  border-radius: var(--r-lg);
  padding: 1.6rem 1.2rem;
}
.stat-box--gold { background: var(--gold-light); }
.stat-box--dark { background: var(--ink); color: var(--white); }
.stat-num {
  font-family: var(--ff-head);
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  color: var(--gold);
  margin-bottom: .5rem;
}
.stat-box--gold .stat-num { color: var(--gold-dark); }
.stat-num small {
  font-size: 1.1rem;
  font-weight: 600;
  vertical-align: baseline;
}
.stat-box p { font-size: .88rem; line-height: 1.5; }
.stat-box--gold p { color: var(--ink-3); }
.stat-box--dark p { color: rgba(255,255,255,.65); }

/* ── TIMELINE ── */
.timeline { margin-top: 2.2rem; }
.tl {
  display: grid;
  grid-template-columns: 1px 18px 1fr;
  gap: 0 1rem;
  padding-bottom: 2rem;
  column-gap: 1rem;
}
.tl--last .tl__line { visibility: hidden; }
.tl__line {
  grid-column: 1;
  grid-row: 1 / 10;
  width: 1px;
  background: rgba(255,255,255,.12);
  margin: 6px auto 0;
}
.tl__dot {
  grid-column: 2;
  grid-row: 1;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 4px;
  flex-shrink: 0;
}
.tl__body {
  grid-column: 3;
  grid-row: 1;
}
.tl__era {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .4rem;
}
.tl__body p { color: rgba(255,255,255,.72); }
.tl__body strong { color: var(--white); }

/* ── OPPORTUNITIES ── */
.opp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.8rem;
}
.opp {
  background: var(--smoke);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: var(--r-lg);
  padding: 1.4rem 1.2rem;
  transition: transform .2s var(--ease), box-shadow .2s;
}
.opp:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,.07); }
.opp__ico { font-size: 1.6rem; margin-bottom: .7rem; }
.opp h3  { font-size: .95rem; margin-bottom: .4rem; }
.opp p   { font-size: .88rem; color: #666; line-height: 1.55; }

/* ── LEAKS ── */
.leaks { margin: 1.8rem 0; }
.leak {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  padding: .9rem 0;
  border-bottom: 1px solid rgba(0,0,0,.1);
}
.leak:last-child { border-bottom: none; }
.leak span {
  font-family: var(--ff-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-dark);
  flex-shrink: 0;
  margin-top: .08rem;
}
.leak p { font-size: .97rem; color: #4a3a1a; }
.gold-callout {
  margin-top: 1.5rem;
  background: rgba(0,0,0,.08);
  border-left: 3px solid var(--gold-dark);
  padding: 1rem 1.1rem;
  border-radius: 0 var(--r) var(--r) 0;
  font-size: 1rem;
  color: #3a2e10;
  line-height: 1.6;
}
.gold-callout strong { font-weight: 700; }

/* ── AUDIENCE ── */
.aud-list { margin: 1.5rem 0; }
.aud {
  display: grid;
  grid-template-columns: 1.4rem 1fr;
  gap: .9rem;
  padding: .9rem 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
  align-items: start;
}
.aud:last-child { border-bottom: none; }
.aud__check {
  font-size: .9rem;
  font-weight: 800;
  color: var(--gold-dark);
  padding-top: .08rem;
}
.aud p { font-size: .97rem; color: #444; }
.not-for {
  background: #f0ece4;
  border-radius: var(--r);
  padding: 1.1rem 1.2rem;
  margin-top: 1.5rem;
  font-size: .91rem;
  color: #666;
  line-height: 1.6;
  border-left: 3px solid #ccc;
  border-radius: 0 var(--r) var(--r) 0;
}
.not-for strong { color: var(--ink); }

/* ── RESULTS ── */
.results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 2rem;
  background: rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
}
.res {
  padding: 1.4rem 1.1rem;
  background: var(--ink-2);
  transition: background .2s;
}
.res:hover { background: var(--ink-3); }
.res__n {
  display: block;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--gold);
  margin-bottom: .4rem;
}
.res h3 { color: var(--white); font-size: .98rem; margin-bottom: .3rem; }
.res p  { color: rgba(255,255,255,.55); font-size: .87rem; line-height: 1.5; }

/* ── CTA SECTION ── */
.sec--cta { padding: 6rem 0; }
.cta-sub {
  font-size: 1rem;
  color: rgba(255,255,255,.6);
  max-width: 440px;
  margin: 0 auto 2rem;
  line-height: 1.65;
}

/* ── FORM ── */
.form-desc { color: #666; margin-bottom: 2rem; font-size: .97rem; }
.form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.field {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.field label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink);
}
.opt {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: #aaa;
  font-size: .78rem;
}
.field input,
.field select,
.field textarea {
  font-family: var(--ff-body);
  font-size: .97rem;
  font-weight: 400;
  padding: .85rem 1rem;
  border: 1.5px solid rgba(0,0,0,.14);
  border-radius: var(--r);
  background: var(--white);
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,164,74,.15);
}
.field input.err,
.field select.err { border-color: #c0392b; }

.check-label {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  cursor: pointer;
}
.check-label input[type=checkbox] {
  flex-shrink: 0;
  width: 18px; height: 18px;
  margin-top: .18rem;
  accent-color: var(--gold);
  cursor: pointer;
}
.check-label span {
  font-size: .88rem;
  color: #666;
  line-height: 1.5;
}

.btn-submit {
  width: 100%;
  font-family: var(--ff-head);
  font-size: 1rem;
  font-weight: 700;
  background: var(--gold);
  color: var(--ink);
  border: none;
  border-radius: var(--r);
  padding: 1rem;
  cursor: pointer;
  transition: background .2s, transform .15s;
  box-shadow: 0 4px 20px rgba(200,164,74,.35);
}
.btn-submit:hover {
  background: #d4aa50;
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(200,164,74,.5);
}
.form-disc { font-size: .79rem; color: #aaa; text-align: center; }

.success {
  text-align: center;
  padding: 3rem 1rem;
  animation: fadeUp .6s var(--ease) both;
}
.success__ico {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
}
.success h3 { font-size: 1.8rem; margin-bottom: .6rem; }
.success p  { color: #666; }

/* ── FAQ ── */
.faq { margin-top: 1.5rem; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,.07); }
.faq-btn {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.1rem 0;
  font-family: var(--ff-head);
  font-size: .97rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-btn::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--gold-dark);
  flex-shrink: 0;
  transition: transform .3s var(--ease);
}
.faq-btn[aria-expanded=true]::after { transform: rotate(45deg); }
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease);
}
.faq-body.open { max-height: 300px; padding-bottom: 1.1rem; }
.faq-body p { color: #555; font-size: .95rem; }

/* ── FOOTER ── */
.footer {
  background: var(--ink-2);
  padding: 3rem 0;
  text-align: center;
}
.footer__logo {
  font-family: var(--ff-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: .3rem;
}
.footer__logo span { color: var(--gold); }
.footer__tag  { font-size: .9rem; color: rgba(255,255,255,.5); margin-bottom: 1rem; }
.footer__legal { font-size: .78rem; color: rgba(255,255,255,.3); line-height: 1.8; }
.footer__legal a { color: rgba(255,255,255,.3); transition: color .2s; }
.footer__legal a:hover { color: var(--gold); }

/* ── STICKY BAR ── */
.sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .85rem 1.4rem;
  z-index: 999;
  transform: translateY(100%);
  transition: transform .4s var(--ease);
}
.sticky-bar.show { transform: translateY(0); }
.sticky-bar p { font-size: .88rem; font-weight: 600; color: rgba(255,255,255,.75); }
.sticky-btn {
  display: inline-block;
  font-family: var(--ff-head);
  font-size: .85rem;
  font-weight: 700;
  background: var(--gold);
  color: var(--ink);
  padding: .55rem 1.15rem;
  border-radius: var(--r);
  white-space: nowrap;
  transition: background .2s;
}
.sticky-btn:hover { background: #d4aa50; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE: wider phones ── */
@media (min-width: 480px) {
  .two-stats { grid-template-columns: 1fr 1fr; }
  .opp-grid  { grid-template-columns: 1fr 1fr; }
  .results   { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 360px) {
  .two-stats { grid-template-columns: 1fr; }
  .opp-grid  { grid-template-columns: 1fr; }
  .results   { grid-template-columns: 1fr; }
}

/* Honeypot - invisible para humanos */
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
  height: 0;
  overflow: hidden;
}