/* Manual Veterinario del Gato — landing page styles */

:root {
  --bg: #FAF6EF;
  --ink: #2A2823;
  --muted: #5F5A50;
  --muted-2: #8A8478;
  --muted-3: #6E695E;
  --teal: #3F7D71;
  --teal-dark: #2F5F56;
  --teal-darker: #2F5F56;
  --clay: #C67A50;
  --clay-dark: #B36A42;
  --line: #EAE3D6;
  --line-2: #E4DCCC;
  --panel: #F1ECE2;
  --mint: #EAF1EE;
  --serif: 'Spectral', Georgia, serif;
  --sans: 'Mulish', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max: 1240px;
}

* { box-sizing: border-box; }
html, body { margin: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
a { color: var(--teal); }
a:hover { color: var(--teal-dark); }
img, svg { max-width: 100%; }

.wrap { max-width: var(--max); margin: 0 auto; }
.eyebrow {
  margin: 0 0 12px;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow--clay { color: var(--clay); }
.eyebrow--teal { color: var(--teal); }

/* ---------- announcement bar ---------- */
.announce {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--teal-dark);
  color: var(--mint);
  padding: 11px 24px;
  display: flex;
  gap: 8px 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  box-shadow: 0 2px 20px -8px rgba(0,0,0,.4);
}
.announce__time {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .04em;
  text-transform: none;
  color: #fff;
  background: rgba(0,0,0,.22);
  padding: 3px 10px;
  border-radius: 6px;
  font-variant-numeric: tabular-nums;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  padding: 18px 32px;
  border-radius: 5px;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 13.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  border: none;
  transition: background .18s ease, color .18s ease;
}
.btn__arrow { font-size: 16px; }
.btn--primary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 16px 30px -14px rgba(63,125,113,.7);
}
.btn--primary:hover { background: #356B61; }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--bg); }

.cta-link {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  transition: background .18s ease;
}
.cta-link--clay {
  background: var(--clay);
  padding: 19px 48px;
  border-radius: 12px;
  font-size: 20px;
  box-shadow: 0 18px 34px -14px rgba(198,122,80,.75);
}
.cta-link--clay:hover { background: var(--clay-dark); color: #fff; }
.cta-link--teal {
  background: var(--teal);
  padding: 21px 52px;
  border-radius: 12px;
  font-size: 21px;
  box-shadow: 0 18px 44px -14px rgba(63,125,113,.85);
}
.cta-link--teal:hover { background: #4A8B7E; color: #fff; }

/* ---------- hero ---------- */
.hero { padding: 64px 48px 80px; }
.hero__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 60px;
  align-items: center;
}
.hero__kicker {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
.hero__kicker span:first-child {
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--clay);
  white-space: nowrap;
}
.hero__kicker span:last-child {
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted-2);
  white-space: nowrap;
}
.hero__rule { flex: 1; height: 1px; background: #D8CBB5; }
.hero__title {
  margin: 0 0 26px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 62px;
  line-height: 1.03;
  letter-spacing: -.015em;
  color: var(--ink);
  text-wrap: balance;
}
.hero__title em { font-style: italic; font-weight: 500; color: var(--clay); }
.hero__lede {
  margin: 0 0 36px;
  font-size: 19px;
  line-height: 1.62;
  color: var(--muted);
  max-width: 46ch;
}
.hero__lede strong { color: var(--ink); }
.dropcap {
  float: left;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 66px;
  line-height: .74;
  color: var(--clay);
  padding: 8px 12px 0 0;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; }
.hero__stats {
  display: flex;
  margin-top: 44px;
  border-top: 1px solid var(--line-2);
  padding-top: 26px;
}
.stat { padding: 0 32px; border-left: 1px solid var(--line-2); }
.stat:first-child { padding-left: 0; border-left: none; padding-right: 32px; }
.stat__num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  font-size: 30px;
  color: var(--clay);
  line-height: 1;
}
.stat__label {
  margin-top: 8px;
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.hero__media { position: relative; width: 100%; max-width: 470px; margin: 0 auto; }
.hero__frame { border: 1px solid #D8CBB5; padding: 12px; border-radius: 4px; width: 100%; }
.hero__photo {
  display: block;
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 3px;
  background: var(--mint);
}
.hero__quote {
  position: absolute;
  left: -16px;
  bottom: 36px;
  max-width: 340px;
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 24px 26px 22px;
  border-radius: 6px;
  box-shadow: 0 24px 50px -26px rgba(42,40,35,.5);
}
.hero__quote-mark {
  font-family: var(--serif);
  font-size: 44px;
  line-height: .4;
  color: var(--clay);
  display: block;
  height: 22px;
}
.hero__quote p:nth-of-type(1) {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.45;
  color: var(--ink);
}
.hero__quote p:nth-of-type(2) {
  margin: 0;
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted-2);
}

/* ---------- section title helpers ---------- */
.section { padding: 84px 48px; }
.section__head {
  margin: 0 0 44px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 40px;
  line-height: 1.12;
  color: var(--ink);
}

/* ---------- problem ---------- */
.problem { background: var(--panel); padding: 84px 48px; }
.problem .wrap { max-width: 1160px; }
.problem__title { max-width: 22ch; }
.problem__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 30px 32px;
}
.card h3 {
  margin: 0 0 9px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 21px;
  color: var(--ink);
}
.card p { margin: 0; font-size: 15.5px; line-height: 1.6; color: var(--muted); }

/* ---------- solution ---------- */
.solution { padding: 88px 48px 40px; text-align: center; }
.solution .wrap { max-width: 820px; }
.solution h2 {
  margin: 0 0 22px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 44px;
  line-height: 1.1;
  color: var(--ink);
}
.solution p { margin: 0; font-size: 19px; line-height: 1.65; color: var(--muted); }

/* ---------- features ---------- */
.features { padding: 40px 48px 88px; }
.features .wrap {
  max-width: 1160px;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}
.features__head {
  padding: 30px 36px;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
}
.features__head h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 26px;
  color: var(--ink);
}
.features__value { font-weight: 800; font-size: 14px; color: var(--teal); }
.features__grid { display: grid; grid-template-columns: 1fr 1fr 1fr; }
.feature {
  padding: 28px 32px;
  border-bottom: 1px solid var(--panel);
  border-right: 1px solid var(--panel);
  display: flex;
  gap: 16px;
}
.feature__n {
  flex: 0 0 auto;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--teal);
  opacity: .55;
}
.feature h4 { margin: 0 0 5px; font-weight: 800; font-size: 16.5px; color: var(--ink); }
.feature p { margin: 0; font-size: 14px; line-height: 1.55; color: var(--muted-3); }

/* ---------- offer ---------- */
.offer { background: var(--teal-dark); color: var(--mint); padding: 88px 48px; }
.offer .wrap { max-width: 820px; }
.offer__head { text-align: center; margin-bottom: 36px; }
.offer__cover {
  display: block;
  width: 262px;
  max-width: 60%;
  height: auto;
  margin: 0 auto 30px;
  border-radius: 8px;
  box-shadow: 0 30px 60px -24px rgba(0,0,0,.55);
}
.offer__eyebrow { color: #9FC4BB; }
.offer__head h2 { margin: 0; font-family: var(--serif); font-weight: 600; font-size: 40px; color: #fff; }
.stack {
  background: var(--bg);
  color: var(--ink);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 70px -34px rgba(0,0,0,.5);
}
.stack__row {
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--panel);
}
.stack__row--main { padding: 24px 30px; border-bottom: 1px solid var(--line); }
.stack__row--main strong { font-family: var(--serif); font-weight: 600; font-size: 18px; }
.stack__sub { display: block; font-size: 13.5px; color: var(--muted-3); margin-top: 3px; }
.stack__price { font-weight: 800; font-size: 16px; white-space: nowrap; }
.stack__bonus { display: flex; gap: 14px; align-items: baseline; }
.stack__tag {
  font-weight: 800;
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--clay);
  text-transform: uppercase;
  white-space: nowrap;
}
.stack__bonus strong { font-weight: 700; font-size: 15.5px; }
.stack__bonus .stack__sub { font-size: 13px; margin-top: 2px; }
.stack__bonus-price { font-weight: 800; font-size: 15px; color: var(--muted-3); white-space: nowrap; }
.stack__total {
  padding: 28px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--panel);
}
.stack__total-label { display: block; font-size: 14px; color: var(--muted-3); }
.stack__total-price {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 32px;
  color: var(--ink);
}
.stack__total-note { font-size: 13px; color: var(--muted-3); text-align: right; max-width: 20ch; }
.offer__cta { text-align: center; margin-top: 38px; }
.offer__cta p { margin: 16px 0 0; font-size: 13.5px; color: #9FC4BB; }

/* ---------- urgency ---------- */
.urgency { padding: 64px 48px; }
.urgency .wrap {
  max-width: 1160px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.panelbox { border: 1px solid var(--line); background: #fff; border-radius: 16px; padding: 30px 32px; }
.panelbox--center { text-align: center; }
.panelbox--flex { display: flex; flex-direction: column; justify-content: center; }
.urgency__label {
  margin: 0 0 16px;
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--clay);
}
.cd-boxes { display: flex; justify-content: center; gap: 12px; }
.cd-box {
  min-width: 72px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 12px;
  padding: 14px 6px;
}
.cd-box__num {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 38px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.cd-box__unit {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #A29B8D;
  margin-top: 6px;
}
.urgency__note { margin: 16px 0 0; font-size: 13px; color: var(--muted-2); }
.spots__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 14px;
}
.spots__head strong { font-weight: 800; font-size: 15px; color: var(--ink); }
.spots__count { font-weight: 800; font-size: 14px; color: var(--clay); }
.spots__track { height: 12px; background: var(--panel); border-radius: 99px; overflow: hidden; }
.spots__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--clay));
  border-radius: 99px;
  transition: width .4s ease;
}
.spots__note { margin: 14px 0 0; font-size: 13px; color: var(--muted-2); }
.spots__note strong { color: var(--ink); }

/* ---------- guarantee ---------- */
.guarantee { padding: 8px 48px 84px; }
.guarantee .wrap {
  max-width: 1000px;
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 36px;
  align-items: center;
  background: var(--mint);
  border: 1px solid #D5E4DE;
  border-radius: 18px;
  padding: 46px 48px;
}
.guarantee__badge {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 2px solid var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--serif);
}
.guarantee__badge span:first-child {
  display: block;
  font-size: 44px;
  font-weight: 700;
  color: var(--teal-dark);
  line-height: 1;
}
.guarantee__badge span:last-child {
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--teal);
  text-transform: uppercase;
}
.guarantee h2 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 28px;
  color: var(--ink);
}
.guarantee p { margin: 0; font-size: 16.5px; line-height: 1.6; color: var(--muted); }
.guarantee p strong { color: var(--ink); }

/* ---------- author ---------- */
.author { background: var(--panel); padding: 64px 48px; }
.author .wrap {
  max-width: 1000px;
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 44px;
  align-items: center;
}
.author__photo {
  display: block;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--mint);
}
.author h2 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 28px;
  color: var(--ink);
}
.author p { margin: 0; font-size: 16.5px; line-height: 1.65; color: var(--muted); max-width: 60ch; }

/* ---------- faq ---------- */
.faq { padding: 84px 48px; }
.faq .wrap { max-width: 800px; }
.faq__title {
  margin: 0 0 32px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 36px;
  text-align: center;
  color: var(--ink);
}
.faq__list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 24px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
}
.faq-sign { flex: 0 0 auto; font-family: var(--serif); font-size: 26px; color: var(--teal); }
.faq-a {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .35s ease, opacity .3s ease;
}
.faq-item.is-open .faq-a { max-height: 260px; opacity: 1; }
.faq-a p { margin: 0; padding: 0 4px 26px; font-size: 16px; line-height: 1.65; color: var(--muted); }

/* ---------- final cta ---------- */
.final { background: var(--ink); color: var(--bg); padding: 88px 48px; text-align: center; }
.final .wrap { max-width: 760px; }
.final h2 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 46px;
  line-height: 1.1;
  color: #fff;
}
.final__lede { margin: 0 0 22px; font-size: 19px; line-height: 1.6; color: #C7C2B6; }
.final__deadline { margin: 0 0 30px; font-size: 14px; color: var(--muted-2); }
.final__deadline strong { color: var(--mint); font-variant-numeric: tabular-nums; }
.final__note { margin: 22px 0 0; font-size: 13px; color: var(--muted-2); }

/* ---------- footer ---------- */
.footer {
  padding: 30px 48px;
  background: #211F1B;
  color: #7A756B;
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
}

/* ---------- responsive ---------- */
@media (max-width: 940px) {
  .hero { padding: 48px 24px 60px; }
  .hero__grid { grid-template-columns: 1fr; gap: 44px; }
  .hero__title { font-size: 46px; }
  .hero__media { order: -1; }
  .section, .problem, .offer, .author, .faq, .final { padding-left: 24px; padding-right: 24px; }
  .solution, .features, .urgency, .guarantee { padding-left: 24px; padding-right: 24px; }
  .problem__grid { grid-template-columns: 1fr; }
  .features__grid { grid-template-columns: 1fr; }
  .solution h2 { font-size: 34px; }
  .section__head { font-size: 32px; }
  .offer__head h2 { font-size: 32px; }
  .urgency .wrap { grid-template-columns: 1fr; }
  .guarantee .wrap { grid-template-columns: 1fr; justify-items: center; text-align: center; padding: 40px 28px; }
  .author .wrap { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .author p { max-width: none; }
  .final h2 { font-size: 34px; }
}

@media (max-width: 560px) {
  .hero__title { font-size: 38px; }
  .hero__stats { flex-wrap: wrap; gap: 20px 0; }
  .stat, .stat:first-child { padding: 0 18px; }
  .stack__row, .stack__row--main, .stack__total { flex-wrap: wrap; }
  .stack__total-note { text-align: left; max-width: none; }
  .cta-link--clay, .cta-link--teal { padding-left: 32px; padding-right: 32px; font-size: 18px; }
  .btn { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .faq-a, .spots__fill { transition: none; }
}
