/* ════════════════════════════════════════════
   RESET
════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; }

/* ════════════════════════════════════════════
   TOKENS
════════════════════════════════════════════ */
:root {
  --cream:     #FBF5E8;
  --cream-dk:  #EDE4D0;
  --cream-dkr: #D9C9B0;
  --terra:     #C85A2A;
  --terra-txt: #8B3B18;
  --terra-lt:  #F0924E;
  --botanic:   #3D5E36;
  --brown:     #2D1F0F;
  --muted:     #6B5B48;
  --white:     #FFFFFF;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--brown);
  overflow-x: hidden;
}

/* ════════════════════════════════════════════
   SISTEMA TIPOGRÁFICO H1→H5
════════════════════════════════════════════ */
h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(52px, 7.5vw, 96px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -.025em;
}
h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(34px, 4.8vw, 62px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.015em;
}
h3 {
  font-family: 'Fraunces', serif;
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 700;
  line-height: 1.18;
}
h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
}
h5 {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  line-height: 1.4;
}
p { font-size: 16px; line-height: 1.72; }

/* ════════════════════════════════════════════
   UTILIDADES
════════════════════════════════════════════ */
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}
@media (max-width: 768px) { .wrap { padding: 0 24px; } }

.eyebrow {
  display: inline-block;
  color: var(--terra-txt);
  margin-bottom: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 16px 32px;
  border-radius: 100px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform .22s cubic-bezier(.34,1.56,.64,1), box-shadow .22s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,0,0,.15); }
.btn-terra   { background: var(--terra);   color: var(--cream); }
.btn-botanic { background: var(--botanic); color: var(--cream); }
.btn-outline { background: transparent; border: 2px solid var(--brown); color: var(--brown); }
.btn-outline:hover { box-shadow: none; }
.btn-cream   { background: var(--cream); color: var(--terra-txt); }

/* img placeholder */
.img-ph {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px;
  font-size: 12px; line-height: 1.5;
  text-align: center; padding: 24px;
}
.img-ph svg { opacity: .4; }

/* Reveal inicial */
.r-up { opacity: 0; transform: translateY(40px); }

/* ════════════════════════════════════════════
   MOBILE MENU OVERLAY
════════════════════════════════════════════ */
.mm-overlay {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: var(--terra);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 96px 32px 64px;
  transform: translateY(-100%);
  pointer-events: none;
}
.mm-overlay.mm-open {
  pointer-events: all;
}
.mm-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 40px;
}
.mm-links a {
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 10vw, 58px);
  font-weight: 800;
  color: var(--cream);
  text-decoration: none;
  line-height: 1.15;
  will-change: transform, opacity;
}
.mm-links a:hover { font-style: italic; }
.mm-cta { will-change: transform, opacity; }
.mm-foot {
  position: absolute;
  bottom: 40px; left: 32px; right: 32px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.mm-foot p { font-size: 12px; color: rgba(251,245,232,.45); }
.mm-foot a {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 700;
  color: rgba(251,245,232,.65);
  text-decoration: none;
}

.mm-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(251,245,232,.15);
  border: none;
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .18s;
  z-index: 10;
}
.mm-close-btn:hover { background: rgba(251,245,232,.25); }

/* ════════════════════════════════════════════
   NAV
════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: rgba(251,245,232,.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--cream-dk);
}
@media (max-width: 768px) { .nav { padding: 0 24px; } }

.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--brown);
  text-decoration: none;
  letter-spacing: -.03em;
}
.nav-logo em { font-style: italic; color: var(--terra); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}
@media (max-width: 880px) { .nav-links { display: none; } }

.nav-links a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--brown);
  transition: color .16s;
}
.nav-links a:hover { color: var(--terra-txt); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-cta {
  font-size: 14px;
  padding: 12px 24px;
}
@media (max-width: 880px) { .nav-cta { display: none; } }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
@media (max-width: 880px) { .burger { display: flex; } }

.burger span {
  display: block;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transform-origin: center;
  transition: transform .28s, opacity .2s;
}
.burger span:nth-child(1) { width: 100%; }
.burger span:nth-child(2) { width: 68%; }
.burger span:nth-child(3) { width: 100%; }

/* ════════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100svh;
  padding-top: 72px;
  position: relative;
}
@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    min-height: auto;
    overflow: hidden;
  }
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 48px;
}
@media (max-width: 1100px) { .hero-left { padding: 64px 40px 64px 48px; } }
@media (max-width: 768px)  { .hero-left { padding: 48px 24px 40px; } }

.hero-left h1 {
  color: var(--brown);
  margin-bottom: 24px;
}
.hero-left h1 em {
  font-style: italic;
  color: var(--terra);
}
.hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 400px;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero derecha — el gesto */
.hero-right {
  background: var(--cream-dk);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 300px;
}

/* círculos decorativos de fondo */
.hero-right::before {
  content: '';
  position: absolute;
  bottom: -80px; right: -60px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: var(--terra);
  opacity: .07;
  pointer-events: none;
}
.hero-right::after {
  content: '';
  position: absolute;
  top: 32px; left: 32px;
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--botanic);
  opacity: .1;
  pointer-events: none;
}
@media (max-width: 860px) {
  .hero-right { min-height: 280px; }
}

.hero-timer-wrap {
  text-align: center;
  position: relative;
  z-index: 2;
}
.timer-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.timer-num {
  font-family: 'Fraunces', serif;
  font-size: clamp(80px, 12vw, 160px);
  font-weight: 800;
  font-style: italic;
  color: var(--terra);
  line-height: 1;
  letter-spacing: -.04em;
  font-variant-numeric: tabular-nums;
  display: block;
  transition: color .3s, opacity .2s;
}
.timer-sub {
  font-family: 'Fraunces', serif;
  font-size: clamp(16px, 2vw, 24px);
  font-style: italic;
  color: var(--muted);
  margin-top: 8px;
}

/* ════════════════════════════════════════════
   TICKER
════════════════════════════════════════════ */
.ticker {
  background: var(--botanic);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 2;
}
.ticker-track {
  display: inline-flex;
  animation: ticker-scroll 30s linear infinite;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding: 0 40px;
  font-family: 'Fraunces', serif;
  font-size: 17px;
  font-style: italic;
  font-weight: 700;
  color: var(--cream);
}
.ticker-dot {
  width: 6px; height: 6px;
  background: rgba(251,245,232,.35);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ════════════════════════════════════════════
   PRODUCTOS
════════════════════════════════════════════ */
.productos { padding: 128px 0; }

.s-head { margin-bottom: 64px; }

.prod-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 860px) { .prod-grid { grid-template-columns: 1fr; } }

.prod-card {
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 580px;
}
.prod-card.pc-dark { background: var(--brown); color: var(--cream); }
.prod-card.pc-light { background: var(--cream-dk); color: var(--brown); }

.prod-img {
  flex: 1;
  min-height: 260px;
  position: relative;
}
.pc-dark .img-ph  { background: rgba(255,255,255,.05); color: rgba(251,245,232,.3); }
.pc-light .img-ph { background: rgba(45,31,15,.05);   color: var(--muted); }

.prod-body {
  padding: 40px;
  flex-shrink: 0;
}
@media (max-width: 560px) { .prod-body { padding: 32px 24px; } }

.prod-card h3 { margin-bottom: 12px; }
.prod-card p  { font-size: 15px; line-height: 1.72; margin-bottom: 28px; opacity: .78; }

.btn-sm {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: transform .2s;
  cursor: pointer;
  border: none;
}
.btn-sm:hover { transform: translateY(-2px); }
.btn-sm-cream  { background: var(--cream);   color: var(--terra-txt); }
.btn-sm-terra  { background: var(--terra);   color: var(--cream); }

/* ════════════════════════════════════════════
   SOBRE NOSOTROS
════════════════════════════════════════════ */
.sobre {
  background: var(--brown);
  color: var(--cream);
  padding: 128px 0;
  overflow: hidden;
}
.sobre-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}
@media (max-width: 860px) {
  .sobre-inner { grid-template-columns: 1fr; gap: 64px; }
}

.sobre .eyebrow { color: var(--terra-lt); }
.sobre h2 { color: var(--cream); margin-bottom: 24px; }
.sobre p { color: rgba(251,245,232,.7); margin-bottom: 16px; }

.stats-row {
  display: flex;
  gap: 48px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid rgba(251,245,232,.1);
}
.stat-n {
  font-family: 'Fraunces', serif;
  font-size: clamp(44px, 5vw, 60px);
  font-weight: 800;
  font-style: italic;
  color: var(--terra-lt);
  line-height: 1;
}
.stat-l {
  font-size: 12px;
  color: rgba(251,245,232,.4);
  margin-top: 4px;
  letter-spacing: .04em;
}

.sobre-visual { position: relative; }
.sobre-img-wrap {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 9/16;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
}
.sobre-img-wrap .img-ph { color: rgba(251,245,232,.25); }
.sobre-img-wrap video { width: 100%; height: 100%; object-fit: cover; display: block; }
.sobre-badge {
  position: absolute;
  bottom: -16px; right: -16px;
  width: 128px; height: 128px;
  background: var(--terra);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  color: var(--cream);
  text-align: center;
  box-shadow: 0 8px 32px rgba(200,90,42,.45);
}
.sobre-badge .bn { font-size: 34px; font-weight: 800; font-style: italic; line-height: 1; }
.sobre-badge .bl { font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; opacity: .78; }


/* ════════════════════════════════════════════
   FAQ
════════════════════════════════════════════ */
.faq { padding: 128px 0; }
.faq .wrap { max-width: 800px; }
.faq-list { margin-top: 64px; border-top: 1px solid var(--cream-dk); }

details.faq-item { border-bottom: 1px solid var(--cream-dk); }
summary.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  cursor: pointer;
  list-style: none;
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--brown);
  user-select: none;
}
summary.faq-q::-webkit-details-marker { display: none; }
summary.faq-q::marker { display: none; }

.faq-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--terra);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
  transition: transform .28s cubic-bezier(.34,1.56,.64,1);
}
details[open] > summary .faq-icon { transform: rotate(45deg); }
.faq-a {
  font-size: 15px;
  line-height: 1.76;
  color: var(--muted);
  padding: 0 56px 28px 0;
}

/* ════════════════════════════════════════════
   CTA FINAL
════════════════════════════════════════════ */
.cta-final {
  background: var(--terra);
  color: var(--cream);
  padding: 128px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) { .cta-final { padding: 96px 24px; } }

.cta-wm {
  position: absolute;
  font-family: 'Fraunces', serif;
  font-size: clamp(120px, 22vw, 280px);
  font-weight: 800;
  font-style: italic;
  color: rgba(255,255,255,.06);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0 auto;
}
.cta-final .eyebrow { color: rgba(251,245,232,.6); }
.cta-final h2 { color: var(--cream); margin-bottom: 16px; }
.cta-sub { font-size: 17px; color: rgba(251,245,232,.7); margin-bottom: 48px; line-height: 1.6; }

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
footer {
  background: var(--brown);
  padding: 64px 48px;
}
@media (max-width: 768px) { footer { padding: 64px 24px; } }

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 860px) { .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 560px) { .footer-inner { grid-template-columns: 1fr; gap: 32px; } }

.footer-logo {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--cream);
  text-decoration: none;
  display: block;
  margin-bottom: 12px;
}
.footer-logo em { font-style: italic; color: var(--terra-lt); }
.footer-tag { font-size: 13px; color: rgba(251,245,232,.32); }

.footer-nav-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(251,245,232,.3);
  margin-bottom: 16px;
}
.footer-nav ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { font-size: 13px; font-weight: 500; color: rgba(251,245,232,.45); text-decoration: none; transition: color .18s; }
.footer-nav a:hover { color: var(--terra-lt); }

.footer-contact-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(251,245,232,.3);
  margin-bottom: 16px;
}
.footer-contact a {
  display: block;
  font-size: 13px;
  color: rgba(251,245,232,.42);
  text-decoration: none;
  transition: color .18s;
  margin-bottom: 8px;
}
.footer-contact a:hover { color: var(--terra-lt); }

.footer-copy {
  grid-column: 1 / -1;
  padding-top: 40px;
  border-top: 1px solid rgba(251,245,232,.06);
  font-size: 12px;
  color: rgba(251,245,232,.18);
  text-align: center;
}
@media (max-width: 560px) { .footer-copy { grid-column: 1; } }

/* Logo imagen en nav */
.nav-logo img { height: 54px; width: auto; display: block; }

/* Logo en footer — contenedor crema para que el PNG con fondo blanco se vea bien */
.footer-logo-wrap {
  display: inline-block;
  background: var(--cream);
  border-radius: 12px;
  padding: 6px 10px;
  margin-bottom: 12px;
}
.footer-logo-wrap img { height: 52px; width: auto; display: block; }

/* ════════════════════════════════════════════
   CRAFTED BY
════════════════════════════════════════════ */
.crafted-by {
  background: var(--cream);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.crafted-by span {
  font-size: 12px;
  color: var(--muted);
}
.crafted-by img { height: 22px; width: auto; display: block; }

/* ════════════════════════════════════════════
   FLOATING WHATSAPP
════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 500;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
  text-decoration: none;
  transition: transform .22s cubic-bezier(.34,1.56,.64,1);
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 28px; height: 28px; }

/* ════════════════════════════════════════════
   MODAL FORMULARIO
════════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 700;
  background: rgba(45, 31, 15, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
}
.modal-overlay.m-open { pointer-events: all; }

.modal-card {
  background: var(--cream);
  border-radius: 24px;
  padding: 48px;
  width: 100%;
  max-width: 500px;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  transform: scale(.94) translateY(16px);
  scrollbar-width: none;
}
.modal-card::-webkit-scrollbar { display: none; }
@media (max-width: 560px) { .modal-card { padding: 36px 24px; } }

.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--cream-dk);
  color: var(--brown);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .18s;
  flex-shrink: 0;
}
.modal-close:hover { background: var(--cream-dkr); }

.modal-eyebrow { margin-bottom: 8px; }
.modal-card h3  { margin-bottom: 8px; }
.modal-sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 32px;
  line-height: 1.6;
}

/* Campos */
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 7px;
}
.field input, .field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--cream-dkr);
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--brown);
  background: var(--white);
  outline: none;
  transition: border-color .18s, box-shadow .18s;
  -webkit-appearance: none;
}
.field input:focus, .field textarea:focus {
  border-color: var(--terra);
  box-shadow: 0 0 0 3px rgba(200,90,42,.12);
}
.field input::placeholder, .field textarea::placeholder {
  color: var(--muted);
  opacity: .55;
}
.field textarea { resize: vertical; min-height: 96px; line-height: 1.6; }
.field.has-error input, .field.has-error textarea { border-color: #c0392b; }
.field-err {
  font-size: 12px;
  color: #c0392b;
  margin-top: 5px;
  display: none;
}
.field.has-error .field-err { display: block; }

.modal-submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
  font-size: 16px;
  padding: 17px 32px;
}

/* Estado de éxito */
.modal-success {
  display: none;
  text-align: center;
  padding: 16px 0;
}
.success-check {
  width: 64px; height: 64px;
  background: var(--botanic);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  color: var(--cream);
}
.modal-success h3 { margin-bottom: 12px; }
.modal-success p  { font-size: 15px; color: var(--muted); margin-bottom: 32px; }

/* ════════════════════════════════════════════
   SCROLL HINT (hero)
════════════════════════════════════════════ */
.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  pointer-events: none;
  animation: sh-bounce 2.2s ease-in-out infinite;
  z-index: 2;
}
.scroll-hint span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
@keyframes sh-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0);   opacity: .55; }
  50%       { transform: translateX(-50%) translateY(7px); opacity: .9;  }
}
@media (max-width: 860px) { .scroll-hint { display: none; } }

/* ════════════════════════════════════════════
   TIMER BADGE FLOTANTE
════════════════════════════════════════════ */
.timer-badge {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 500;
  width: 88px;
  height: 88px;
  background: var(--terra);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  box-shadow: 0 6px 28px rgba(200,90,42,.45);
  pointer-events: none;
  transform: scale(0);
  opacity: 0;
}
.tb-num {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 800;
  font-style: italic;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.tb-lbl {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .72;
  margin-top: 2px;
}
