/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg: #0e0b09;
  --bg-2: #15110e;
  --bg-3: #211813;
  --panel: rgba(255, 246, 232, .065);
  --paper: #f8f7f4;
  --ink: #3f454d;
  --cream: #f2ebda;
  --cream-2: #d8cbb8;
  --muted: #9f907a;
  --accent: #f07a22;
  --accent-2: #c5301e;
  --gold: #c49a5b;
  --whatsapp: #25D366;
  --whatsapp-dark: #0b7c3b;
  --line: rgba(242, 235, 218, .13);
  --shadow: 0 24px 80px rgba(0, 0, 0, .42);
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: Georgia, "Times New Roman", serif;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-soft: cubic-bezier(.25, .46, .45, .94);
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }
body {
  min-width: 320px;
  background: var(--bg);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 998;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 107, 0, .18), transparent 30%),
    #0e0b09;
  opacity: 1;
  pointer-events: none;
  transition: opacity .75s var(--ease-out);
}
html.is-ready body::before {
  opacity: 0;
}
img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3 { line-height: 1.02; text-wrap: balance; letter-spacing: 0; }
::selection { background: var(--accent); color: var(--bg); }
:focus-visible { outline: 2px solid var(--whatsapp); outline-offset: 4px; border-radius: 6px; }

/* =============================================================
   3. Utilities
   ============================================================= */
.skip-link {
  position: fixed;
  top: -100px;
  left: 1rem;
  z-index: 1000;
  padding: .65rem 1rem;
  border-radius: 8px;
  background: var(--cream);
  color: var(--bg);
  font-weight: 800;
}
.skip-link:focus { top: 1rem; }
.kicker {
  color: var(--gold);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s var(--ease-out), transform .75s var(--ease-out);
}
.reveal[data-split] {
  opacity: 1;
  transform: none;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================================
   4. Components
   ============================================================= */
.splash {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  gap: .9rem;
  place-items: center;
  align-content: center;
  background: var(--bg);
  color: var(--cream);
  font-family: var(--sans);
  font-size: clamp(1.3rem, 5vw, 2.4rem);
  font-weight: 950;
  animation: splashSafety .01s 4.5s forwards;
}
.splash img {
  width: clamp(92px, 24vw, 150px);
  height: clamp(92px, 24vw, 150px);
  border-radius: 50%;
  object-fit: contain;
  background: #ff6b00;
  animation: logoArrive 1.05s var(--ease-out) both, logoPulse 1.8s var(--ease-soft) .6s infinite alternate;
}
.splash span {
  opacity: 0;
  transform: translateY(12px);
  animation: splashText .75s var(--ease-out) .22s forwards;
}
.splash.is-out { opacity: 0; pointer-events: none; clip-path: inset(0 0 100% 0); transition: opacity .55s var(--ease-out), clip-path .55s var(--ease-out); }
@keyframes splashSafety { to { opacity: 0; pointer-events: none; clip-path: inset(0 0 100% 0); } }
@keyframes logoArrive {
  from { opacity: 0; transform: translateY(18px) scale(.9); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes logoPulse {
  from { box-shadow: 0 0 0 rgba(255, 107, 0, 0); }
  to { box-shadow: 0 0 44px rgba(255, 107, 0, .32); }
}
@keyframes splashText {
  to { opacity: 1; transform: translateY(0); }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .8rem 1rem;
  background: rgba(14, 11, 9, .78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  min-width: 0;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #170b06;
  font-weight: 950;
}
.brand-logo {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: contain;
  background: #ff6b00;
  box-shadow: 0 10px 26px rgba(255, 107, 0, .22);
}
.brand strong { display: block; font-weight: 900; line-height: 1.1; }
.brand small { display: none; color: var(--muted); font-size: .74rem; line-height: 1.2; }
.nav-toggle {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
}
.nav-toggle span {
  width: 19px;
  height: 2px;
  background: var(--cream);
  grid-area: 1 / 1;
  transition: transform .25s var(--ease-out);
}
.nav-toggle span:first-child { transform: translateY(-4px); }
.nav-toggle span:last-child { transform: translateY(4px); }
.nav-toggle[aria-expanded="true"] span:first-child { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: rotate(-45deg); }
.site-nav {
  position: absolute;
  top: calc(100% + 1px);
  left: 1rem;
  right: 1rem;
  display: grid;
  gap: .45rem;
  padding: .8rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(21, 17, 14, .98);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity .25s var(--ease-out), transform .25s var(--ease-out);
}
.site-nav.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.site-nav a {
  padding: .75rem .85rem;
  border-radius: 7px;
  color: var(--cream-2);
  font-weight: 750;
}
.nav-whatsapp {
  background: var(--whatsapp);
  color: #04170b !important;
  text-align: center;
}
.language-picker {
  position: relative;
}
.language-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .55rem;
  width: 100%;
  min-height: 46px;
  padding: .65rem .85rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.05);
  color: var(--cream-2);
  font-weight: 850;
}
.language-toggle span {
  color: var(--muted);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.language-toggle strong {
  color: var(--cream);
  font-size: .92rem;
}
.language-menu {
  display: grid;
  gap: .35rem;
  margin-top: .4rem;
  padding: .4rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7f6f2;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: max-height .24s var(--ease-out), opacity .2s var(--ease-out);
}
.language-menu.is-open {
  max-height: 180px;
  opacity: 1;
  pointer-events: auto;
}
.language-menu button {
  min-height: 42px;
  padding: .55rem .7rem;
  border-radius: 7px;
  color: #252a30;
  text-align: left;
  font-weight: 850;
}
.language-menu button.is-active,
.language-menu button:hover {
  background: #ff6b00;
  color: #111;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 50px;
  padding: .78rem 1rem;
  border-radius: 8px;
  font-weight: 950;
  transition: transform .22s var(--ease-out), box-shadow .22s var(--ease-out), background .22s var(--ease-out);
}
.btn svg {
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 auto;
  fill: currentColor;
}
.btn-whatsapp {
  background: var(--whatsapp);
  color: #032211;
  box-shadow: 0 18px 44px rgba(37, 211, 102, .22);
}
.btn-mid { background: #2bdd70; }
.btn-alt {
  background: #6f766f;
  color: #f7f3ea;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .18);
}
.btn-xl {
  width: 100%;
  min-height: 62px;
  font-size: 1.02rem;
}
.inline-cta {
  display: grid;
  gap: .85rem;
  align-items: center;
  margin-top: 1.2rem;
  padding: 1rem;
  border: 1px solid rgba(37, 211, 102, .28);
  border-radius: 8px;
  background: rgba(37, 211, 102, .07);
}
.inline-cta p { font-weight: 850; color: var(--cream); }

/* =============================================================
   5. Sections
   ============================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding: 7.4rem 1rem 2.4rem;
  overflow: clip;
  isolation: isolate;
}
.hero-mesh {
  position: absolute;
  inset: -20%;
  z-index: -3;
  background:
    radial-gradient(circle at 75% 20%, rgba(240, 122, 34, .38), transparent 32%),
    radial-gradient(circle at 15% 70%, rgba(197, 48, 30, .28), transparent 34%),
    radial-gradient(circle at 55% 80%, rgba(196, 154, 91, .12), transparent 36%);
  filter: blur(38px) saturate(135%);
  animation: meshBreath 14s var(--ease-soft) infinite alternate;
}
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .12;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 92%);
}
.hero-inner {
  display: grid;
  gap: 2rem;
  max-width: 1180px;
  margin: 0 auto;
}
.hero-copy { display: grid; gap: 1rem; align-content: center; }
.hero-title {
  max-width: 11ch;
  font-family: var(--display);
  font-size: clamp(3.25rem, 16vw, 7.9rem);
  font-weight: 900;
  line-height: .88;
}
.hero-sub {
  max-width: 58ch;
  color: var(--cream-2);
  font-size: clamp(1.02rem, 2vw, 1.25rem);
}
.hero-actions {
  display: grid;
  gap: .7rem;
  margin-top: .35rem;
}
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.hero-proof span {
  padding: .45rem .65rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--cream-2);
  font-size: .82rem;
  font-weight: 800;
  background: rgba(255, 255, 255, .04);
}
.hero-visual {
  min-height: 280px;
  border: 1px solid rgba(240, 122, 34, .28);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
}
.hero-visual img { width: 100%; height: 100%; min-height: 280px; object-fit: cover; }
.trust-strip {
  display: grid;
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}
.trust-item {
  padding: 1.25rem 1rem;
  background: var(--bg-2);
}
.trust-item strong { display: block; font-size: 1.02rem; }
.trust-item span { color: var(--muted); font-weight: 650; }
.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 4.2rem 1rem;
}
.section-head {
  display: grid;
  gap: .75rem;
  margin-bottom: 1.4rem;
}
.section-head h2,
.why-panel h2,
.final-cta h2 {
  max-width: 13ch;
  font-family: var(--display);
  font-size: clamp(2.1rem, 9vw, 5rem);
}
.section-head p:not(.kicker) {
  max-width: 58ch;
  color: var(--cream-2);
}
.product-grid {
  display: grid;
  gap: .85rem;
}
.product-card {
  display: grid;
  gap: .9rem;
  padding: .75rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 18px 55px rgba(0,0,0,.16);
  transform-style: preserve-3d;
}
.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
}
.product-card h3 { font-size: 1.24rem; }
.product-card p { color: var(--muted); }
.buying {
  max-width: none;
  background:
    linear-gradient(180deg, rgba(240, 122, 34, .09), transparent 28%),
    var(--bg-2);
}
.buying .section-head,
.steps {
  max-width: 1180px;
  margin-inline: auto;
}
.steps {
  display: grid;
  gap: .8rem;
}
.step {
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(14, 11, 9, .58);
}
.step span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 1.2rem;
  border-radius: 50%;
  background: var(--accent);
  color: #1a0904;
  font-weight: 950;
}
.step h3 { margin-bottom: .4rem; font-size: 1.25rem; }
.step p { color: var(--cream-2); }
.why {
  display: grid;
  gap: 1rem;
}
.about-media {
  min-height: 320px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(240, 122, 34, .22);
  box-shadow: var(--shadow);
}
.about-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  filter: saturate(.95) contrast(.98);
}
.why-panel {
  padding: 1.2rem;
  border: 1px solid rgba(240, 122, 34, .28);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(240, 122, 34, .14), rgba(197, 48, 30, .06));
}
.about .why-panel {
  display: grid;
  gap: 1rem;
}
.about-copy {
  display: grid;
  gap: .85rem;
}
.about-copy p {
  color: var(--cream-2);
  font-size: clamp(1rem, 2vw, 1.12rem);
}
.about-actions {
  margin-top: .4rem;
}
.about-actions .btn {
  width: 100%;
}
.why-list {
  display: grid;
  border-top: 1px solid var(--line);
}
.why-item {
  display: grid;
  gap: .35rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
}
.why-item h3 { font-size: 1.2rem; }
.why-item p { color: var(--cream-2); }
.final-cta {
  position: relative;
  display: grid;
  gap: 1rem;
  place-items: center;
  text-align: center;
  padding: 5rem 1rem 6rem;
  overflow: clip;
}
.final-glow {
  position: absolute;
  inset: 5% 0 auto;
  height: 420px;
  z-index: -1;
  background: radial-gradient(circle, rgba(37, 211, 102, .2), rgba(240, 122, 34, .16) 34%, transparent 65%);
  filter: blur(40px);
}
.final-cta h2 { max-width: 14ch; }
.final-cta p:not(.kicker) { max-width: 50ch; color: var(--cream-2); }
.final-actions {
  display: grid;
  gap: .75rem;
  width: min(100%, 680px);
}
.footer {
  display: grid;
  gap: 1.4rem;
  padding: 2rem 1rem 7.2rem;
  border-top: 1px solid var(--line);
  background: #090705;
  color: var(--cream-2);
}
.footer strong { display: block; color: var(--cream); font-size: 1.25rem; }
.footer span { display: block; color: var(--gold); font-weight: 900; margin-bottom: .4rem; }
.footer a { display: block; margin-top: .25rem; font-weight: 800; }
.footer-social {
  display: grid !important;
  grid-template-columns: 34px 1fr;
  column-gap: .65rem;
  align-items: center;
  margin-top: .7rem !important;
  padding: .55rem 0;
}
.footer-social svg {
  grid-row: span 2;
  width: 26px;
  height: 26px;
  fill: var(--accent);
}
.footer-social span {
  margin: 0;
  color: var(--gold);
  font-size: .76rem;
  line-height: 1.1;
}
.footer-social strong {
  color: var(--cream-2);
  font-size: .95rem;
  line-height: 1.25;
}
.footer-logo {
  width: 82px;
  height: 82px;
  margin-bottom: .8rem;
  border-radius: 50%;
  object-fit: contain;
  background: #ff6b00;
}
.sticky-whatsapp {
  position: fixed;
  left: .7rem;
  right: .7rem;
  bottom: .7rem;
  z-index: 40;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .5rem;
}
.sticky-whatsapp a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  min-height: 52px;
  border-radius: 8px;
  background: var(--whatsapp);
  color: #032211;
  font-weight: 950;
  font-size: clamp(.68rem, 2.4vw, .92rem);
  box-shadow: 0 18px 44px rgba(0,0,0,.35);
}
.sticky-whatsapp svg { width: 1.15rem; height: 1.15rem; fill: currentColor; }

/* =============================================================
   6. Effects
   ============================================================= */
@keyframes meshBreath {
  from { transform: scale(1) rotate(0deg); }
  to { transform: scale(1.12) rotate(7deg); }
}
@media (hover: hover) and (pointer: fine) {
  .btn:hover,
  .sticky-whatsapp a:hover,
  .site-nav a:hover {
    transform: translateY(-2px);
  }
  .btn-whatsapp:hover,
  .sticky-whatsapp a:hover {
    box-shadow: 0 24px 60px rgba(37, 211, 102, .28);
  }
  .product-card:hover {
    border-color: rgba(240, 122, 34, .5);
    box-shadow: 0 24px 80px rgba(240, 122, 34, .14);
  }
}

/* =============================================================
   7. Responsive
   ============================================================= */
@media (min-width: 540px) {
  .brand small { display: block; }
  .hero-actions,
  .final-actions,
  .inline-cta {
    grid-template-columns: 1fr 1fr;
  }
  .inline-cta p { align-self: center; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 720px) {
  .site-header { padding-inline: 1.4rem; }
  .trust-strip { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .footer {
    grid-template-columns: 1.4fr .8fr;
    padding: 2.6rem 1.4rem 6.5rem;
  }
  .sticky-whatsapp {
    left: auto;
    width: 420px;
  }
}
@media (min-width: 960px) {
  .nav-toggle { display: none; }
  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    width: auto;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
  .site-nav a { padding: .62rem .72rem; }
  .language-toggle {
    width: auto;
    min-height: 42px;
    padding: .52rem .7rem;
  }
  .language-menu {
    position: absolute;
    top: calc(100% + .45rem);
    right: 0;
    width: 160px;
    margin-top: 0;
    max-height: none;
    overflow: visible;
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity .2s var(--ease-out), transform .2s var(--ease-out);
    border-color: rgba(37, 42, 48, .14);
    box-shadow: 0 18px 44px rgba(0,0,0,.18);
  }
  .language-menu.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .hero {
    display: grid;
    align-items: center;
    padding: 7.8rem 1.4rem 4rem;
  }
  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(390px, .88fr);
    align-items: center;
  }
  .hero-visual img { min-height: 590px; }
  .section { padding: 6rem 1.4rem; }
  .product-grid { grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
  .why { grid-template-columns: .9fr 1.1fr; align-items: start; }
  .about { grid-template-columns: .92fr 1.08fr; }
  .why-panel { position: sticky; top: 92px; padding: 1.5rem; }
  .about .why-panel { position: static; align-self: stretch; align-content: center; }
  .about-media { min-height: 560px; }
  .about-media img { min-height: 560px; }
  .about-actions .btn { width: auto; }
  .why-item { grid-template-columns: .48fr 1fr; gap: 1rem; padding: 1.45rem 0; }
}
@media (min-width: 1280px) {
  .site-header { padding-inline: 2rem; }
  .hero-title { font-size: 7.8rem; }
}

/* =============================================================
   8. Reduced-motion
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-mesh { animation-duration: 28s; }
  .splash { animation-delay: 2s; }
  .splash img,
  .splash span,
  html.is-ready .hero-eyebrow,
  html.is-ready .hero-title,
  html.is-ready .hero-sub,
  html.is-ready .hero-actions,
  html.is-ready .hero-proof,
  html.is-ready .hero-ticker,
  html.is-ready .hero-visual {
    animation-duration: .35s;
  }
  html.is-ready .hero-ticker span,
  html.is-ready .hero .hero-visual img {
    animation: none;
  }
}

/* =============================================================
   9. Mundo Latino branding refresh
   ============================================================= */
.hero {
  background: var(--bg);
  color: var(--cream);
}

.hero-mesh {
  inset: 0;
  background:
    radial-gradient(circle at 16% 20%, rgba(255, 107, 0, .24), transparent 30%),
    radial-gradient(circle at 82% 72%, rgba(197, 48, 30, .18), transparent 30%),
    linear-gradient(180deg, #15110e 0%, #0e0b09 100%);
  filter: none;
  animation: none;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .5;
  background:
    linear-gradient(30deg, rgba(242,235,218,.055) 12%, transparent 12.5%, transparent 87%, rgba(242,235,218,.055) 87.5%, rgba(242,235,218,.055)),
    linear-gradient(150deg, rgba(242,235,218,.055) 12%, transparent 12.5%, transparent 87%, rgba(242,235,218,.055) 87.5%, rgba(242,235,218,.055)),
    linear-gradient(30deg, rgba(242,235,218,.055) 12%, transparent 12.5%, transparent 87%, rgba(242,235,218,.055) 87.5%, rgba(242,235,218,.055)),
    linear-gradient(150deg, rgba(242,235,218,.055) 12%, transparent 12.5%, transparent 87%, rgba(242,235,218,.055) 87.5%, rgba(242,235,218,.055));
  background-position: 0 0, 0 0, 44px 78px, 44px 78px;
  background-size: 88px 156px;
  mask-image: linear-gradient(90deg, rgba(0,0,0,.94), rgba(0,0,0,.28));
}

.hero-eyebrow {
  color: var(--cream-2);
  font-size: clamp(1.35rem, 5vw, 2rem);
  font-weight: 550;
  line-height: 1.15;
}

.hero .hero-title {
  max-width: 12ch;
  font-family: var(--sans);
  font-size: clamp(3rem, 13vw, 6.9rem);
  font-weight: 950;
  line-height: .92;
  color: #ff6b00;
}

.hero .hero-sub {
  color: var(--cream);
  font-size: clamp(1.45rem, 4.2vw, 2.25rem);
  font-weight: 900;
  line-height: 1.1;
}

.hero-or {
  display: inline-grid;
  place-items: center;
  min-height: 34px;
  color: var(--cream);
  font-weight: 900;
}

.hero .hero-proof span {
  border-color: rgba(255, 107, 0, .22);
  background: rgba(255, 246, 232, .07);
  color: var(--cream-2);
}

.hero .hero-visual {
  display: block;
  position: relative;
  min-height: 260px;
  border: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .36);
}

.hero .hero-inner {
  max-width: 980px;
  grid-template-columns: 1fr;
}

.hero .hero-copy {
  max-width: 900px;
}

.hero .hero-actions {
  grid-template-columns: 1fr;
  width: min(100%, 820px);
}

.hero-ticker {
  display: flex;
  flex-wrap: nowrap;
  gap: .55rem;
  width: min(100%, 780px);
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.hero-ticker span {
  flex: 0 0 auto;
  padding: .48rem .68rem;
  border: 1px solid rgba(255, 107, 0, .26);
  border-radius: 999px;
  background: rgba(255, 246, 232, .08);
  color: var(--cream);
  font-size: .78rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.hero .hero-visual img {
  width: 100%;
  min-height: 260px;
  height: 100%;
  object-fit: cover;
  filter: saturate(.92) contrast(.96) brightness(1.03);
}

html.is-ready .hero-eyebrow,
html.is-ready .hero-title,
html.is-ready .hero-sub,
html.is-ready .hero-actions,
html.is-ready .hero-proof,
html.is-ready .hero-ticker,
html.is-ready .hero-visual {
  animation: heroLayerIn .82s var(--ease-out) both;
}

html.is-ready .hero-title { animation-delay: .08s; }
html.is-ready .hero-sub { animation-delay: .16s; }
html.is-ready .hero-actions { animation-delay: .24s; }
html.is-ready .hero-proof { animation-delay: .32s; }
html.is-ready .hero-ticker { animation-delay: .42s; }
html.is-ready .hero-visual { animation-delay: .24s; }

html.is-ready .hero-ticker span {
  animation: tickerFloat 9s linear infinite;
}

html.is-ready .hero .hero-visual img {
  animation: heroImageDrift 8s var(--ease-soft) .65s infinite alternate;
}

@keyframes heroLayerIn {
  from {
    opacity: 0;
    transform: translateY(24px);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes tickerFloat {
  from { transform: translateX(0); }
  to { transform: translateX(-88px); }
}

@keyframes heroImageDrift {
  from { transform: scale(1.01) translate3d(0, 0, 0); }
  to { transform: scale(1.045) translate3d(-10px, -6px, 0); }
}

.hero .hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(0,0,0,.38));
  pointer-events: none;
}

.hero-visual-badge {
  position: absolute;
  left: .9rem;
  right: .9rem;
  bottom: .9rem;
  z-index: 1;
  display: grid;
  gap: .1rem;
  padding: .85rem;
  border-radius: 8px;
  background: rgba(14, 11, 9, .88);
  color: var(--cream);
  box-shadow: 0 16px 42px rgba(0,0,0,.18);
}

.hero-visual-badge strong {
  font-size: .92rem;
  font-weight: 950;
}

.hero-visual-badge span {
  color: var(--cream-2);
  font-size: .82rem;
  font-weight: 750;
}

.hero .btn-whatsapp,
.btn-catalog {
  background: #ff6b00;
  color: #111;
  box-shadow: 0 18px 44px rgba(255, 107, 0, .22);
}

.contact-details {
  display: grid;
  gap: .8rem;
  width: min(100%, 980px);
  margin-top: 1.2rem;
  text-align: left;
}

.contact-details article {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 246, 232, .06);
}

.contact-details span {
  display: block;
  margin-bottom: .45rem;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.contact-details a {
  overflow-wrap: anywhere;
  color: var(--cream);
  font-weight: 850;
}

.contact-details p {
  color: var(--cream-2);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: .42rem;
  min-height: 42px;
  padding: .55rem .7rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.05);
}

.social-links svg {
  width: 1.05rem;
  height: 1.05rem;
  fill: currentColor;
}

@media (min-width: 720px) {
  .contact-details { grid-template-columns: repeat(3, 1fr); }
  .footer { grid-template-columns: 1.15fr .95fr .95fr; }
}

@media (min-width: 960px) {
  .hero .hero-inner {
    max-width: 1180px;
    grid-template-columns: minmax(0, 1fr) minmax(340px, .62fr);
  }

  .hero .hero-actions {
    grid-template-columns: repeat(4, 1fr);
  }

  .final-actions {
    grid-template-columns: repeat(3, 1fr);
    width: min(100%, 920px);
  }

  .hero .hero-visual {
    min-height: 520px;
  }

  .hero .hero-visual img {
    min-height: 520px;
  }
}
