/* ═══════════════════════════════════════════════════════════
   TuReporte Colombia — Editorial Atelier
   Strict source: tureporte.multiprestamo.com  (no invented content)
   Palette: parchment, deep forest, burnt sienna, gold, ink
   Type:    Fraunces (display serif), Manrope (body sans),
            Instrument Serif (accent italic), JetBrains Mono (data)
   ═══════════════════════════════════════════════════════════ */

:root {
  --bg:        #efe7d6;
  --bg-2:      #e7dec8;
  --bg-3:      #d9cdb2;
  --ink:       #16140f;
  --ink-2:     #3a352a;
  --ink-mute:  #756d5b;
  --forest:    #1f4332;
  --forest-2:  #0f2c20;
  --sienna:    #b3451e;
  --sienna-2:  #8a3215;
  --gold:      #c79a45;
  --line:      rgba(22,20,15,.18);
  --line-soft: rgba(22,20,15,.10);

  --serif:  "Fraunces", "Times New Roman", serif;
  --sans:   "Manrope", -apple-system, system-ui, sans-serif;
  --acc:    "Instrument Serif", "Times New Roman", serif;
  --mono:   "JetBrains Mono", ui-monospace, monospace;

  --r-card: 6px;
  --r-pill: 999px;
  --max:    1280px;
  --pad:    clamp(20px, 4vw, 56px);
  --pad-y:  clamp(72px, 9vw, 124px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  font-feature-settings: "ss01", "kern", "calt";
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
em { font-family: var(--acc); font-style: italic; font-weight: 400; letter-spacing: .005em; }
::selection { background: var(--forest); color: var(--bg); }

/* ─────────── grain ─────────── */
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 9999;
  mix-blend-mode: multiply; opacity: .32;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.09  0 0 0 0 0.08  0 0 0 0 0.06  0 0 0 .35 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
}

/* ─────────── ANNOUNCEMENT BAR ─────────── */
.announce {
  background: var(--ink);
  color: var(--bg);
  font-size: 13px;
  position: relative;
  overflow: hidden;
}
.announce::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(199,154,69,.18), transparent);
  background-size: 50% 100%;
  animation: shine 8s linear infinite;
}
@keyframes shine { 0% { background-position: -100% 0; } 100% { background-position: 200% 0; } }
.announce__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 10px var(--pad);
  display: flex; align-items: center; gap: 14px;
  position: relative;
}
.announce__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  animation: ann-pulse 1.8s ease-in-out infinite;
  flex: 0 0 8px;
}
@keyframes ann-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(199,154,69,.7); }
  50% { box-shadow: 0 0 0 8px rgba(199,154,69,0); }
}
.announce__text strong { color: var(--gold); font-weight: 600; }
.announce__cta {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: border-color .25s, gap .25s;
}
.announce__cta:hover { border-color: var(--gold); gap: 12px; }
@media (max-width: 720px) {
  .announce__text { font-size: 12px; }
  .announce__cta { display: none; }
}

/* ─────────── NAV ─────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: blur(10px) saturate(150%);
  -webkit-backdrop-filter: blur(10px) saturate(150%);
  border-bottom: 1px solid var(--line-soft);
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px var(--pad);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}
.brand {
  display: inline-flex; align-items: center; gap: 14px;
  color: var(--ink);
}
.brand__type { display: flex; flex-direction: column; line-height: 1; }
.brand__tu {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -.018em;
  font-variation-settings: "opsz" 24, "SOFT" 50;
}
.brand__tu em {
  color: var(--sienna);
  font-style: italic;
  font-weight: 500;
}
.brand__sub {
  font-family: var(--mono);
  font-size: 9.5px;
  margin-top: 5px;
  color: var(--ink-mute);
  letter-spacing: .14em;
  text-transform: uppercase;
}

.nav__links {
  justify-self: center;
  display: flex; gap: 28px;
  font-size: 14px;
  font-weight: 500;
}
.nav__links a {
  position: relative;
  color: var(--ink-2);
  transition: color .25s;
  padding: 4px 0;
}
.nav__links a::after {
  content: "";
  position: absolute; left: 50%; bottom: -2px;
  width: 0; height: 1.5px;
  background: var(--sienna);
  transition: all .35s cubic-bezier(.2,.8,.2,1);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; left: 0; }

.nav__right { display: inline-flex; gap: 10px; align-items: center; }
.nav__cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 18px;
  background: var(--ink);
  color: var(--bg);
  font-size: 13px; font-weight: 600;
  letter-spacing: .01em;
  border-radius: var(--r-pill);
  transition: background .25s, transform .25s;
}
.nav__cta:hover { background: var(--forest); transform: translateY(-1px); }

.nav__burger {
  display: none;
  width: 36px; height: 36px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  align-items: center; justify-content: center;
  gap: 3px; flex-direction: column;
  padding: 0;
}
.nav__burger span {
  width: 16px; height: 1.4px; background: var(--ink);
}
@media (max-width: 980px) {
  .nav__links { display: none; }
  .nav__inner { grid-template-columns: auto 1fr auto auto; }
  .nav__burger { display: inline-flex; }
  .nav.is-open .nav__links {
    display: flex;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--bg);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 8px var(--pad);
  }
  .nav.is-open .nav__links a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line-soft);
    font-size: 17px;
  }
  .nav.is-open .nav__links a:last-child { border-bottom: none; }
}

/* ═════════════════ HERO ═════════════════
   Single-column layout — no asymmetric grid gap.
   Editorial visual placed below the headline block.
   ════════════════════════════════════════════ */
.hero {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(36px, 6vw, 72px) var(--pad) 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.hero__bg {
  position: absolute; inset: 0;
  color: var(--ink);
  opacity: .2;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse at 80% 0%, #000 30%, transparent 75%);
}
.hero__bg svg { width: 100%; height: 100%; }
.hero > * { position: relative; z-index: 1; }

.hero__meta {
  display: flex; gap: 18px; align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--ink-mute);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  flex-wrap: wrap;
}
.kicker__num { color: var(--forest); font-weight: 600; }
.kicker { display: inline-flex; align-items: center; gap: 6px; }
.kicker--alt { margin-left: auto; color: var(--forest); }
.kicker--alt svg { color: var(--forest); }

.hero__title {
  font-family: var(--serif);
  font-weight: 330;
  font-size: clamp(48px, 8vw, 120px);
  line-height: .92;
  letter-spacing: -.038em;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  max-width: 12ch;
}
.hero__title .line { display: block; opacity: 0; transform: translateY(28px); animation: rise 1s cubic-bezier(.2,.8,.2,1) forwards; }
.hero__title .line-1 { animation-delay: .1s; }
.hero__title .line-2 { padding-left: 0.6em; animation-delay: .25s; }
.hero__title .line-3 { padding-left: 0.2em; animation-delay: .4s; color: var(--forest); }
.hero__title em {
  color: var(--sienna);
  font-style: italic;
  font-weight: 400;
  font-family: var(--serif);
  font-variation-settings: "opsz" 100, "SOFT" 100;
}
@keyframes rise { to { opacity: 1; transform: translateY(0); } }

.hero__lede {
  max-width: 56ch;
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-2);
  margin-top: 2px;
  opacity: 0; animation: rise 1s cubic-bezier(.2,.8,.2,1) .55s forwards;
}
.hero__lede .ul {
  border-bottom: 1.5px dotted var(--forest);
  padding-bottom: 1px;
  color: var(--forest);
  font-weight: 600;
}
.hero__lede em { color: var(--sienna); }

.hero__actions {
  display: flex; gap: 14px; flex-wrap: wrap; align-items: center;
  margin: 8px 0 14px;
  opacity: 0; animation: rise 1s cubic-bezier(.2,.8,.2,1) .7s forwards;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 22px;
  font-size: 14px; font-weight: 600;
  letter-spacing: .005em;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  transition: transform .3s, background .3s, color .3s, border-color .3s, box-shadow .3s;
  cursor: pointer;
  text-align: left;
  position: relative;
  overflow: hidden;
  font-family: var(--sans);
}
.btn--primary { background: var(--sienna); color: var(--bg); box-shadow: 0 8px 24px -8px rgba(179,69,30,.5); }
.btn--primary:hover { background: var(--sienna-2); transform: translateY(-2px); box-shadow: 0 12px 30px -8px rgba(179,69,30,.6); }
.btn--ghost { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--bg); }
.btn--ghost .btn__dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--forest);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(31,67,50,.6); }
  50% { box-shadow: 0 0 0 8px rgba(31,67,50,0); }
}
.btn--invert { background: var(--bg); color: var(--forest-2); }
.btn--invert:hover { background: var(--gold); color: var(--ink); }
.btn--block { width: 100%; justify-content: space-between; }

/* ─── QLOGRAR (Qué lograrás) ─── replaces fake dossier */
.qlograr {
  margin-top: 28px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 32px 36px 28px;
  position: relative;
  box-shadow: 0 1px 0 #fff inset, 0 20px 50px -30px rgba(22,20,15,.2);
}
.qlograr::before {
  content: "";
  position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg, transparent 0 31px, rgba(22,20,15,.04) 31px 32px);
  border-radius: inherit;
  pointer-events: none;
}
.qlograr__head {
  display: flex; justify-content: space-between; align-items: flex-start;
  border-bottom: 1px dashed var(--line);
  padding-bottom: 16px;
  margin-bottom: 22px;
  position: relative;
}
.qlograr__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
}
.qlograr__stamp {
  color: var(--sienna);
  width: 70px; height: 70px;
  animation: spin 40s linear infinite;
  margin-top: -10px;
}
@keyframes spin { to { transform: rotate(360deg); } }
.qlograr__stamp svg { width: 100%; height: 100%; }
.qlograr__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.qlograr__list li {
  padding: 6px 22px 6px 0;
  border-right: 1px dashed var(--line);
}
.qlograr__list li:last-child { border-right: none; padding-right: 0; }
.qlograr__n {
  display: inline-block;
  font-family: var(--acc);
  font-style: italic;
  font-size: 26px;
  color: var(--sienna);
  margin-bottom: 8px;
}
.qlograr__list h3 {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
  letter-spacing: -.012em;
  color: var(--ink);
  margin-bottom: 6px;
  font-variation-settings: "opsz" 30, "SOFT" 40;
  line-height: 1.15;
}
.qlograr__list p {
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.45;
}
@media (max-width: 980px) {
  .qlograr { padding: 26px 24px; }
  .qlograr__list { grid-template-columns: 1fr 1fr; gap: 24px; }
  .qlograr__list li { border-right: none; padding-right: 0; padding-bottom: 12px; border-bottom: 1px dashed var(--line); }
  .qlograr__list li:nth-last-child(-n+2) { border-bottom: none; padding-bottom: 0; }
}
@media (max-width: 560px) {
  .qlograr__list { grid-template-columns: 1fr; }
  .qlograr__list li { border-bottom: 1px dashed var(--line); padding-bottom: 14px; }
  .qlograr__list li:last-child { border-bottom: none; padding-bottom: 0; }
}

/* ─── TICKER ─── */
.ticker {
  margin-top: 32px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  overflow: hidden;
  background: var(--bg-2);
}
.ticker__track {
  display: flex; gap: 24px;
  white-space: nowrap;
  animation: marquee 42s linear infinite;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 340;
  color: var(--ink);
  font-variation-settings: "opsz" 60, "SOFT" 40;
}
.ticker__track span {
  display: inline-flex; align-items: center; padding-right: 6px;
}
.ticker__track span::after {
  content: "·";
  margin-left: 24px;
  color: var(--gold);
}
.ticker__track em { color: var(--sienna); margin: 0 2px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ─────────── SECTION SHARED ─────────── */
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: var(--pad-y) var(--pad);
  position: relative;
}
.section__head {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: clamp(40px, 5vw, 64px);
  border-top: 1px solid var(--line);
  padding-top: 26px;
}
.section__num {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .2em;
  color: var(--ink-mute);
  padding-top: 14px;
  text-transform: uppercase;
}
.section__title {
  font-family: var(--serif);
  font-weight: 350;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -.028em;
  color: var(--ink);
  font-variation-settings: "opsz" 120, "SOFT" 40;
  max-width: 18ch;
}
.section__title em {
  color: var(--sienna);
  font-style: italic;
  font-family: var(--serif);
  font-variation-settings: "opsz" 100, "SOFT" 100;
}
.section__sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--ink-mute);
  margin-top: 14px;
  max-width: 48ch;
}
@media (max-width: 880px) {
  .section__head { grid-template-columns: 1fr; gap: 16px; }
  .section__num { padding-top: 0; }
}

/* ═════════════════ PROBLEMAS (DOLOR) ═════════════════ */
.symptoms {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.symptoms li {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  transition: background .35s;
  padding: 30px 28px 34px;
  position: relative;
}
.symptoms li:hover { background: var(--bg-2); }
.symptoms__n {
  display: block;
  font-family: var(--acc);
  font-style: italic;
  font-size: 28px;
  color: var(--sienna);
  margin-bottom: 12px;
}
.symptoms h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -.015em;
  margin-bottom: 8px;
  color: var(--ink);
  font-variation-settings: "opsz" 36, "SOFT" 40;
}
.symptoms p { color: var(--ink-2); font-size: 15px; line-height: 1.5; }
@media (max-width: 880px) { .symptoms { grid-template-columns: 1fr; } }

.dolor__note {
  display: inline-flex; align-items: center; gap: 14px;
  margin-top: 32px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: var(--forest);
}
.dolor__note svg { color: var(--sienna); flex: 0 0 60px; }

/* ═════════════════ PLANES ═════════════════ */
.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tier {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 36px 30px 30px;
  display: flex; flex-direction: column;
  transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s;
}
.tier:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -30px rgba(22,20,15,.4);
}
.tier__tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding-bottom: 16px;
}
.tier h3 {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  letter-spacing: -.02em;
  color: var(--ink);
  font-variation-settings: "opsz" 60, "SOFT" 40;
}
.tier header p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--ink-mute);
  margin-top: 8px;
  min-height: 3em;
}
.tier__price {
  margin: 22px 0;
  padding: 16px 0;
  border-top: 1px dashed var(--line);
  border-bottom: 1px dashed var(--line);
  display: flex; align-items: baseline; gap: 6px;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.tier__price .cur {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--ink-mute);
}
.tier__price .num {
  font-family: var(--serif);
  font-size: 46px;
  font-weight: 400;
  letter-spacing: -.025em;
  line-height: 1;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.tier__feat {
  list-style: none;
  margin: 0 0 22px;
  display: flex; flex-direction: column; gap: 11px;
  flex: 1;
}
.tier__feat li {
  position: relative;
  padding-left: 22px;
  font-size: 14.5px;
  color: var(--ink-2);
}
.tier__feat li::before {
  content: "";
  position: absolute; left: 0; top: 10px;
  width: 12px; height: 1.5px;
  background: var(--forest);
}
.tier__feat strong { color: var(--ink); font-weight: 700; }

.tier--featured {
  background: var(--forest);
  color: var(--bg);
  border-color: var(--forest);
  transform: translateY(-10px);
}
.tier--featured:hover { transform: translateY(-16px); }
.tier--featured h3, .tier--featured .tier__price .num, .tier--featured .tier__tag { color: var(--bg); }
.tier--featured .tier__tag { color: var(--gold); }
.tier--featured header p { color: rgba(239,231,214,.75); }
.tier--featured .tier__price { border-color: rgba(239,231,214,.3); }
.tier--featured .tier__price .cur { color: rgba(239,231,214,.6); }
.tier--featured .tier__feat li { color: rgba(239,231,214,.9); }
.tier--featured .tier__feat strong { color: var(--bg); }
.tier--featured .tier__feat li::before { background: var(--gold); }
.tier--featured .btn--primary { background: var(--gold); color: var(--ink); box-shadow: 0 8px 24px -8px rgba(199,154,69,.5); }
.tier--featured .btn--primary:hover { background: var(--bg); }

.tier__ribbon {
  position: absolute;
  top: 16px; right: -10px;
  background: var(--sienna);
  color: var(--bg);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 6px 13px;
  transform: rotate(2deg);
  font-weight: 600;
}
.tier__ribbon::after {
  content: "";
  position: absolute; right: 0; top: 100%;
  border: 5px solid transparent;
  border-top-color: var(--sienna-2);
  border-right-color: var(--sienna-2);
}
.tier__ribbon--gold {
  background: var(--gold);
  color: var(--ink);
}
.tier__ribbon--gold::after {
  border-top-color: #a37e2c;
  border-right-color: #a37e2c;
}

.tier--premium { background: var(--bg-3); }

@media (max-width: 980px) {
  .tiers { grid-template-columns: 1fr; }
  .tier--featured { transform: none; }
  .tier--featured:hover { transform: translateY(-6px); }
}

.planes__foot {
  text-align: center;
  margin-top: 36px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--ink-mute);
  letter-spacing: .02em;
}
.planes__foot em { color: var(--sienna); }

/* ═════════════════ PROCESO ═════════════════ */
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.steps li {
  display: flex; flex-direction: column;
  padding: 32px 28px 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .35s;
  position: relative;
}
.steps li:hover { background: var(--bg-2); }
.steps__n {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 350;
  font-size: 64px;
  line-height: .9;
  color: var(--sienna);
  font-variation-settings: "opsz" 144, "SOFT" 80;
  font-variant-numeric: tabular-nums;
  margin-bottom: 14px;
}
.steps h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -.015em;
  color: var(--ink);
  margin-bottom: 8px;
  font-variation-settings: "opsz" 40, "SOFT" 50;
}
.steps p { color: var(--ink-2); font-size: 14.5px; line-height: 1.5; }
@media (max-width: 980px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 660px) { .steps { grid-template-columns: 1fr; } }

/* ═════════════════ TRUST PILLARS ═════════════════ */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.pillars > div {
  background: var(--bg);
  padding: 32px 28px;
  transition: background .35s, transform .35s;
}
.pillars > div:hover { background: var(--bg-2); transform: translateY(-2px); }
.pillars__ico {
  display: inline-block;
  font-family: var(--serif);
  font-size: 30px;
  color: var(--sienna);
  line-height: 1;
  margin-bottom: 14px;
}
.pillars h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 8px;
  letter-spacing: -.01em;
  font-variation-settings: "opsz" 36, "SOFT" 40;
}
.pillars p { color: var(--ink-2); font-size: 14.5px; line-height: 1.5; }
@media (max-width: 880px) { .pillars { grid-template-columns: 1fr; } }

/* ═════════════════ TESTIMONIOS ═════════════════ */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.quotes figure {
  background: var(--bg-2);
  padding: 36px 30px 26px;
  border-radius: var(--r-card);
  border-top: 3px solid var(--sienna);
  position: relative;
  transition: transform .4s;
}
.quotes figure:nth-child(2) { transform: translateY(28px); border-top-color: var(--forest); }
.quotes figure:nth-child(3) { border-top-color: var(--gold); }
.quotes figure:hover { transform: translateY(-4px); }
.quotes figure:nth-child(2):hover { transform: translateY(24px); }

.quotes__mark {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 350;
  font-size: 78px;
  line-height: .5;
  color: var(--sienna);
  opacity: .35;
  margin-bottom: 8px;
}
.quotes figure:nth-child(2) .quotes__mark { color: var(--gold); opacity: .4; }
.quotes figure:nth-child(3) .quotes__mark { color: var(--forest); opacity: .35; }

.quotes blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 350;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: -.01em;
  color: var(--ink);
  font-variation-settings: "opsz" 60, "SOFT" 70;
  margin-bottom: 22px;
}
.quotes blockquote em { color: var(--sienna); font-weight: 500; }
.quotes figure:nth-child(2) blockquote em { color: var(--gold); }
.quotes figure:nth-child(3) blockquote em { color: var(--forest); }

.quotes figcaption {
  border-top: 1px dashed var(--line);
  padding-top: 14px;
  display: flex; justify-content: space-between; align-items: baseline; gap: 8px;
}
.quotes__name {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--forest);
  font-weight: 600;
}
.quotes__meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
@media (max-width: 980px) {
  .quotes { grid-template-columns: 1fr; }
  .quotes figure:nth-child(2) { transform: none; }
  .quotes figure:nth-child(2):hover { transform: translateY(-4px); }
}

/* ═════════════════ FAQ ═════════════════ */
.faq__list {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--ink);
}
.faq__list details {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.faq__list summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 400;
  letter-spacing: -.015em;
  color: var(--ink);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 4px 0;
  font-variation-settings: "opsz" 40, "SOFT" 50;
  transition: color .25s;
}
.faq__list summary:hover { color: var(--sienna); }
.faq__list summary::-webkit-details-marker { display: none; }
.faq__icon {
  flex: 0 0 32px; width: 32px; height: 32px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  position: relative;
  transition: transform .35s, background .35s, border-color .35s;
}
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute; top: 50%; left: 50%;
  width: 12px; height: 1.5px;
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform .35s, background .35s;
}
.faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
details[open] .faq__icon { background: var(--ink); border-color: var(--ink); transform: rotate(90deg); }
details[open] .faq__icon::before, details[open] .faq__icon::after { background: var(--bg); }
details[open] .faq__icon::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq__body {
  padding: 14px 0 6px;
  max-width: 68ch;
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.55;
}

/* ═════════════════ B2B ═════════════════ */
.b2b { padding: 0 var(--pad); margin: 60px auto; max-width: var(--max); }
.b2b__inner {
  background: var(--ink);
  color: var(--bg);
  padding: clamp(48px, 8vw, 96px) clamp(28px, 6vw, 80px);
  border-radius: var(--r-card);
  position: relative;
  overflow: hidden;
}
.b2b__inner::before {
  content: "";
  position: absolute; top: -40%; right: -10%;
  width: 60%; aspect-ratio: 1;
  background: radial-gradient(circle, var(--gold) 0%, transparent 60%);
  opacity: .14;
}
.b2b__inner::after {
  content: "B²";
  position: absolute; bottom: -80px; right: 20px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 350;
  font-size: 360px;
  color: rgba(199,154,69,.08);
  line-height: 1;
  pointer-events: none;
}
.b2b__kicker {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.b2b h2 {
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 350;
  letter-spacing: -.025em;
  line-height: 1.05;
  max-width: 22ch;
  font-variation-settings: "opsz" 100, "SOFT" 40;
}
.b2b h2 em { color: var(--gold); }
.b2b p {
  font-size: 17px;
  color: rgba(239,231,214,.8);
  max-width: 60ch;
  margin: 22px 0 32px;
  position: relative; z-index: 1;
}
.b2b .btn { position: relative; z-index: 1; }

/* ═════════════════ CONTACTO ═════════════════ */
.contacto { background: var(--forest); color: var(--bg); max-width: 100%; }
.contacto__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.contacto__intro .section__num { color: var(--gold); }
.contacto__title {
  font-family: var(--serif);
  font-size: clamp(34px, 4.6vw, 60px);
  font-weight: 350;
  letter-spacing: -.025em;
  line-height: 1.02;
  color: var(--bg);
  margin: 6px 0 16px;
  font-variation-settings: "opsz" 100, "SOFT" 40;
}
.contacto__title em { color: var(--gold); }
.contacto__sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: rgba(239,231,214,.8);
  margin-bottom: 28px;
  max-width: 38ch;
}
.contacto__bullets {
  list-style: none;
  display: flex; flex-direction: column; gap: 22px;
  border-top: 1px dashed rgba(239,231,214,.25);
  padding-top: 28px;
}
.contacto__bullets li {
  display: grid; grid-template-columns: auto 1fr;
  gap: 18px; align-items: start;
}
.contacto__b-n {
  font-family: var(--acc);
  font-style: italic;
  font-size: 22px;
  color: var(--gold);
}
.contacto__bullets strong {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 19px;
  color: var(--bg);
  margin-bottom: 4px;
  font-variation-settings: "opsz" 28;
}
.contacto__bullets span {
  font-size: 14px;
  color: rgba(239,231,214,.7);
}

.contacto__form, .contacto__thanks {
  background: var(--bg);
  color: var(--ink);
  border-radius: var(--r-card);
  padding: 36px;
  display: flex; flex-direction: column; gap: 16px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.45);
  position: relative;
}
.contacto__count {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--sienna);
  font-weight: 600;
  margin-bottom: 4px;
}
.contacto__form label { display: flex; flex-direction: column; gap: 8px; font-size: 13.5px; font-weight: 500; color: var(--ink-2); }
.contacto__form input,
.contacto__form select,
.contacto__form textarea {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 13px 16px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: border-color .25s, background .25s;
  resize: vertical;
}
.contacto__form input:focus,
.contacto__form select:focus,
.contacto__form textarea:focus { border-color: var(--forest); background: var(--bg); }

.contacto__thanks {
  display: none;
  text-align: center;
  padding: 60px 36px;
  align-items: center; gap: 14px;
  color: var(--forest);
}
.contacto__thanks[hidden] { display: none !important; }
.contacto__thanks:not([hidden]) { display: flex; }
.contacto__thanks h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -.015em;
  font-variation-settings: "opsz" 36;
}
.contacto__thanks p { color: var(--ink-2); font-size: 15px; max-width: 32ch; }

@media (max-width: 980px) {
  .contacto__inner { grid-template-columns: 1fr; gap: 32px; }
}

/* ═════════════════ FOOTER ═════════════════ */
.footer {
  background: var(--ink);
  color: var(--bg);
  margin-top: 0;
  position: relative;
}
.footer::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.footer__top {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(56px, 7vw, 90px) var(--pad) 50px;
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr 1.1fr;
  gap: 48px;
}
.footer .brand--lg { color: var(--bg); }
.footer .brand__tu { font-size: 32px; }
.footer .brand__tu em { color: var(--gold); }
.footer .brand__sub { color: rgba(239,231,214,.5); margin-top: 8px; }
.footer__manifesto {
  margin-top: 24px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  line-height: 1.4;
  color: rgba(239,231,214,.75);
  max-width: 24em;
}
.footer__manifesto em { color: var(--gold); }

.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__h {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(239,231,214,.45);
  margin-bottom: 8px;
}
.footer__col a, .footer__col span {
  color: rgba(239,231,214,.85);
  font-size: 14.5px;
  transition: color .25s, padding .25s;
  width: max-content;
  max-width: 100%;
}
.footer__col a:hover { color: var(--gold); padding-left: 6px; }
.footer__hours { font-family: var(--mono); font-size: 12px; color: rgba(239,231,214,.5); margin-top: 4px; }

.footer__bottom {
  border-top: 1px solid rgba(239,231,214,.15);
  padding: 20px var(--pad);
  max-width: var(--max);
  margin: 0 auto;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .08em;
  color: rgba(239,231,214,.55);
}
.footer__legal a { color: inherit; }
.footer__legal a:hover { color: var(--gold); }
.footer__legal span { margin: 0 8px; opacity: .4; }

@media (max-width: 880px) { .footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__top { grid-template-columns: 1fr; } }

/* ─────────── WhatsApp float ─────────── */
.wa {
  position: fixed;
  bottom: 22px; right: 22px;
  height: 56px;
  background: var(--forest);
  color: var(--bg);
  display: inline-flex; align-items: center; gap: 0;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(31,67,50,.4);
  z-index: 200;
  transition: gap .35s, padding .35s, background .35s, transform .35s;
  padding: 0 16px;
  overflow: hidden;
}
.wa::after {
  content: "";
  position: absolute; left: 0; top: 0; width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--forest);
  opacity: .22;
  z-index: -1;
  animation: wa-pulse 2.2s ease-out infinite;
}
.wa__label {
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-width .4s, opacity .4s, margin .4s;
}
.wa:hover { background: var(--forest-2); transform: scale(1.02); gap: 10px; }
.wa:hover .wa__label { max-width: 200px; opacity: 1; margin-left: 4px; }
@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: .3; }
  100% { transform: scale(1.7); opacity: 0;  }
}

/* ─────────── reveal on scroll ─────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 1s cubic-bezier(.2,.8,.2,1), transform 1s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001s !important; transition-duration: .001s !important; }
  .ticker__track { animation: none; }
  .qlograr__stamp { animation: none; }
}
