/* ============================================================
   JULIANA APONTE STUDIO & ACADEMY — MASTER CLASS
   Editorial luxury · cream + gold · fluid & responsive
   ============================================================ */

:root {
  --cream: #F5EFE6;
  --cream-2: #EFE6D6;
  --beige: #E8DCC7;
  --warm-white: #FBF8F3;
  --gold: #C9A36B;
  --gold-light: #E3C896;
  --gold-deep: #8A6A3B;
  --gold-ink: #5A431F;
  --ink: #2A2118;
  --ink-soft: #4A3E2E;
  --mute: #8B7B65;
  --shadow-sm: 0 2px 10px rgba(138,106,59,.10);
  --shadow-md: 0 20px 50px rgba(138,106,59,.18);
  --shadow-lg: 0 40px 100px rgba(138,106,59,.25);
  --radius: 22px;
  --ease: cubic-bezier(.2,.7,.2,1);
  --maxw: 1320px;
  --nav-h: 78px;

  --f-display: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --f-body: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--warm-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
em { font-style: italic; color: var(--gold-deep); font-family: var(--f-display); font-weight: 400; }

/* ---------- GRAIN OVERLAY ---------- */
.grain {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: .07;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ---------- SCROLL PROGRESS BAR ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-deep) 100%);
  z-index: 1000;
  transition: width .15s linear;
  box-shadow: 0 0 12px rgba(201,163,107,.6);
}

/* ---------- CUSTOM CURSOR ---------- */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 28px; height: 28px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .25s var(--ease), height .25s var(--ease), background .25s var(--ease), opacity .3s;
  mix-blend-mode: difference;
  opacity: 0;
}
.cursor.is-active { opacity: .6; }
.cursor.is-hover { width: 60px; height: 60px; background: rgba(201,163,107,.15); }
@media (hover: none), (max-width: 900px) { .cursor { display: none; } }

/* ---------- TYPOGRAPHY HELPERS ---------- */
.eyebrow {
  display: inline-block;
  font-family: var(--f-body);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold-deep);
  padding: .4rem 0;
  position: relative;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: .8rem;
  transform: translateY(-2px);
}
.h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--ink);
}
.section-head {
  max-width: 900px;
  margin: 0 auto 4rem;
  text-align: center;
}
.section-head .h2 { margin-top: 1rem; }
.section-sub { color: var(--mute); font-size: 1.05rem; margin-top: 1.2rem; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  font-family: var(--f-body);
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .04em;
  padding: .95rem 1.6rem;
  border-radius: 999px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), background .4s var(--ease), color .4s var(--ease);
  cursor: pointer;
  white-space: nowrap;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}
.btn--gold {
  background: linear-gradient(135deg, #D8B478 0%, #C9A36B 45%, #8A6A3B 100%);
  background-size: 200% 200%;
  color: #fff;
  box-shadow: 0 10px 30px rgba(138,106,59,.35), inset 0 1px 0 rgba(255,255,255,.3);
  animation: btnGoldShift 6s ease-in-out infinite;
}
@keyframes btnGoldShift {
  0%,100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(138,106,59,.5); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(42,33,24,.25);
}
.btn--ghost:hover { background: var(--ink); color: var(--cream); }
.btn--big { padding: 1.15rem 2.2rem; font-size: 1rem; }

/* =========================================================
   NAVBAR
   ========================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: background .5s var(--ease), box-shadow .5s var(--ease), padding .5s var(--ease);
}
.nav.is-scrolled {
  background: rgba(251, 248, 243, .85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(138,106,59,.12);
  padding: .55rem 0;
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2.5rem);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav__logo { flex-shrink: 0; }
.nav__logo img { height: 44px; width: auto; transition: height .4s var(--ease); filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(0,0,0,.4)); }
.nav.is-scrolled .nav__logo img { height: 38px; filter: none; }
.nav__links {
  margin-left: auto;
  display: flex;
  gap: 2rem;
}
.nav__links a {
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .03em;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,.4);
  position: relative;
  padding: .3rem 0;
  transition: color .4s, text-shadow .4s;
}
.nav.is-scrolled .nav__links a { color: var(--ink); text-shadow: none; }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 1px; width: 0;
  background: var(--gold);
  transition: width .4s var(--ease);
}
.nav__links a:hover::after { width: 100%; }
.nav__cta { padding: .65rem 1.3rem; font-size: .85rem; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.nav__burger span {
  display: block;
  width: 26px; height: 1.5px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,.3);
  transition: transform .4s var(--ease), opacity .4s var(--ease), background .4s;
}
.nav.is-scrolled .nav__burger span { background: var(--ink); box-shadow: none; }
.nav__burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav__mobile {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--warm-white);
  padding: 2rem clamp(1rem, 5vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  transform: translateY(-120%);
  transition: transform .5s var(--ease);
  box-shadow: var(--shadow-md);
  z-index: 99;
}
.nav__mobile.is-open { transform: translateY(0); }
.nav__mobile a { font-family: var(--f-display); font-size: 1.5rem; color: var(--ink); }
.nav__mobile .btn { margin-top: 1rem; align-self: flex-start; }

/* =========================================================
   HERO — full-bleed cinematic
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  background: #1A1410;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

/* Animated gold aurora background */
.hero__aurora {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  mix-blend-mode: screen;
  will-change: transform, opacity;
}
.aurora--1 {
  top: -10%; left: -10%;
  width: 70vw; height: 70vw;
  background: radial-gradient(circle, #D8B478 0%, #8A6A3B 40%, transparent 70%);
  opacity: .65;
  animation: auroraMove1 18s ease-in-out infinite;
}
.aurora--2 {
  bottom: -20%; right: -10%;
  width: 65vw; height: 65vw;
  background: radial-gradient(circle, #E3C896 0%, #C9A36B 35%, transparent 70%);
  opacity: .55;
  animation: auroraMove2 22s ease-in-out infinite;
}
.aurora--3 {
  top: 30%; left: 35%;
  width: 50vw; height: 50vw;
  background: radial-gradient(circle, #8A6A3B 0%, transparent 60%);
  opacity: .6;
  animation: auroraMove3 25s ease-in-out infinite;
}
@keyframes auroraMove1 {
  0%,100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(15%, 10%) scale(1.15); }
  66% { transform: translate(-10%, 20%) scale(.9); }
}
@keyframes auroraMove2 {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(-20%, -15%) scale(1.2); }
}
@keyframes auroraMove3 {
  0%,100% { transform: translate(-50%, -50%) scale(1); top: 50%; left: 50%; }
  25% { transform: translate(-30%, -60%) scale(1.1); top: 50%; left: 50%; }
  50% { transform: translate(-70%, -40%) scale(.95); top: 50%; left: 50%; }
  75% { transform: translate(-40%, -55%) scale(1.05); top: 50%; left: 50%; }
}

/* Floating gold particles canvas */
.hero__particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  mix-blend-mode: screen;
}

/* Vignette overlay over aurora */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, transparent 0%, rgba(26,20,16,.4) 60%, rgba(26,20,16,.85) 100%),
    linear-gradient(180deg, rgba(26,20,16,.3) 0%, transparent 30%, transparent 70%, rgba(26,20,16,.7) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Big background number "01" */
.hero__bgnum {
  position: absolute;
  top: 10%;
  right: -3%;
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20rem, 50vw, 50rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201,163,107,.15);
  z-index: 1;
  pointer-events: none;
  user-select: none;
  will-change: transform;
}

/* Vertical labels */
.hero__vlabel {
  position: absolute;
  top: 50%;
  font-family: var(--f-body);
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .5em;
  text-transform: uppercase;
  color: rgba(227,200,150,.55);
  writing-mode: vertical-rl;
  z-index: 4;
}
.hero__vlabel--left {
  left: 1.2rem;
  transform: translateY(-50%) rotate(180deg);
}
.hero__vlabel--right {
  right: 1.2rem;
  transform: translateY(-50%);
}

/* Floating model image — full height */
.hero__model {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 55%;
  max-width: 900px;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
  will-change: transform;
}
.hero__model img {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom right;
  filter: drop-shadow(-30px 40px 80px rgba(0,0,0,.6)) drop-shadow(0 0 60px rgba(201,163,107,.25));
  position: relative;
  z-index: 2;
}
.hero__model-glow {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 80%; height: 60%;
  background: radial-gradient(ellipse at center bottom, rgba(216,180,120,.4), transparent 65%);
  filter: blur(40px);
  z-index: 1;
}

/* Hero content (text overlay) */
.hero__content {
  position: relative;
  z-index: 5;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: calc(var(--nav-h) + clamp(2rem, 8vh, 5rem)) clamp(2rem, 6vw, 5rem) clamp(6rem, 10vh, 8rem);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.hero__eyebrow { color: var(--gold-light); }
.hero__eyebrow::before { background: var(--gold-light); }

.hero__title {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(2.4rem, 6.8vw, 6.5rem);
  line-height: .95;
  letter-spacing: -.025em;
  margin: 1.5rem 0 2rem;
  color: #fff;
  max-width: 14ch;
}
.hero__line-wrap {
  display: block;
  overflow: hidden;
  padding-bottom: .12em;
}
.hero__title [data-word] {
  display: inline-block;
  opacity: 0;
  transform: translateY(110%);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  margin-right: .25em;
}
.hero__title.is-in [data-word] { opacity: 1; transform: translateY(0); }
.hero__title .italic { font-style: italic; color: var(--gold-light); }
.hero__title-accent [data-word] {
  background: linear-gradient(135deg, #F1D9A8 0%, #D8B478 30%, #8A6A3B 80%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  animation: titleShimmer 5s ease-in-out infinite;
}
@keyframes titleShimmer {
  0%,100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero__sub {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  max-width: 480px;
  color: rgba(245,239,230,.85);
  margin-bottom: 2.2rem;
}
.hero__sub strong { color: var(--gold-light); font-weight: 500; }

.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__cta .btn--ghost { color: #fff; border-color: rgba(255,255,255,.3); }
.hero__cta .btn--ghost:hover { background: #fff; color: var(--ink); }

/* Marquee strip */
.hero__marquee {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 5;
  border-top: 1px solid rgba(201,163,107,.25);
  border-bottom: 1px solid rgba(201,163,107,.25);
  background: rgba(26,20,16,.5);
  backdrop-filter: blur(8px);
  padding: 1rem 0;
  overflow: hidden;
  pointer-events: none;
}
.marquee { width: 100%; overflow: hidden; }
.marquee__track {
  display: inline-flex;
  gap: 2rem;
  white-space: nowrap;
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(1rem, 1.4vw, 1.3rem);
  color: var(--gold-light);
  animation: marquee 35s linear infinite;
}
.marquee__track span { display: inline-block; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.hero__scroll {
  position: absolute;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .7rem;
  font-size: .7rem;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: rgba(245,239,230,.6);
  z-index: 6;
}
.hero__scroll-line {
  display: block;
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold-light), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: .4; transform: scaleY(.6); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

/* =========================================================
   ABOUT
   ========================================================= */
.about {
  background: var(--warm-white);
  padding: clamp(5rem, 10vw, 9rem) clamp(1rem, 3vw, 2.5rem);
  position: relative;
}
.about__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .95fr 1.1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}
.about__photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  will-change: transform;
}
.about__photo::before {
  content: "";
  position: absolute;
  inset: -20px;
  border: 1px solid var(--gold);
  border-radius: calc(var(--radius) + 8px);
  transform: translate(16px, 16px);
  pointer-events: none;
  z-index: -1;
}
.about__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.about__photo:hover img { transform: scale(1.04); }
.about__photo figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem 1.5rem 1.3rem;
  background: linear-gradient(to top, rgba(42,33,24,.8), transparent);
  color: var(--cream);
  font-family: var(--f-display);
  font-style: italic;
  font-size: .95rem;
}
.about__text .h2 { margin: 1rem 0 1.8rem; }
.about__text p { color: var(--ink-soft); margin-bottom: 1.2rem; max-width: 540px; }
.about__text p strong { color: var(--gold-deep); font-weight: 500; }

.counters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(138,106,59,.2);
}
.counter { display: flex; flex-direction: column; }
.counter__num {
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 400;
  line-height: 1;
  color: var(--gold-deep);
  margin-bottom: .4rem;
}
.counter__label {
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--mute);
}

/* =========================================================
   PILLARS
   ========================================================= */
.pillars {
  background: var(--cream);
  padding: clamp(5rem, 10vw, 9rem) clamp(1rem, 3vw, 2.5rem);
  position: relative;
}
.pillars::before {
  content: "";
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.pillars__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.pillar {
  background: var(--warm-white);
  border: 1px solid rgba(138,106,59,.15);
  border-radius: var(--radius);
  padding: 2.5rem 1.8rem;
  transition: transform .6s var(--ease), box-shadow .6s var(--ease), border-color .6s var(--ease);
}
.pillar:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.pillar__icon {
  width: 48px; height: 48px;
  color: var(--gold-deep);
  margin-bottom: 1.5rem;
}
.pillar h3 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--ink);
  margin-bottom: .7rem;
}
.pillar p { color: var(--ink-soft); font-size: .95rem; }

/* =========================================================
   MODULES — 3D centered cards
   ========================================================= */
.modules {
  background: linear-gradient(180deg, var(--warm-white) 0%, var(--cream) 50%, var(--warm-white) 100%);
  padding: clamp(5rem, 10vw, 9rem) clamp(1rem, 3vw, 2.5rem);
  position: relative;
  overflow: hidden;
}
.modules::before, .modules::after {
  content: "";
  position: absolute;
  width: 50vw; height: 50vw;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  opacity: .35;
}
.modules::before {
  top: 20%; left: -20%;
  background: radial-gradient(circle, var(--gold-light), transparent 70%);
}
.modules::after {
  bottom: 10%; right: -25%;
  background: radial-gradient(circle, var(--beige), transparent 70%);
}

.modules__stack {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(1.2rem, 2.5vw, 2rem);
  perspective: 1600px;
}

.mod-card {
  position: relative;
  background: linear-gradient(145deg, #FBF8F3 0%, #F5EFE6 100%);
  border-radius: 26px;
  padding: 2px;
  background-clip: padding-box;
  box-shadow:
    0 30px 60px -20px rgba(138,106,59,.35),
    0 18px 36px -18px rgba(42,33,24,.25),
    inset 0 1px 0 rgba(255,255,255,.6);
  opacity: 0;
  transform: translateY(80px) rotateX(-15deg) scale(.94);
  transform-origin: center bottom;
  transition: opacity 1s var(--ease), transform 1s var(--ease);
  will-change: transform;
  transform-style: preserve-3d;
}
.mod-card.in-view {
  opacity: 1;
  transform: translateY(0) rotateX(0) scale(1);
}
.mod-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 26px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(216,180,120,.8), rgba(201,163,107,.1) 30%, rgba(138,106,59,.2) 70%, rgba(216,180,120,.6));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}

.mod-card__inner {
  position: relative;
  background: linear-gradient(145deg, #FDFAF4 0%, #F2E9D8 100%);
  border-radius: 24px;
  padding: clamp(2rem, 4vw, 3rem) clamp(1.8rem, 3.5vw, 2.8rem);
  overflow: hidden;
  z-index: 2;
}

.mod-card__num {
  display: block;
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(4rem, 8vw, 6.5rem);
  line-height: .85;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 40%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -.04em;
  margin-bottom: .4rem;
}

.mod-card__chip {
  display: inline-block;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  padding: .4rem .9rem;
  border: 1px solid rgba(138,106,59,.3);
  border-radius: 999px;
  color: var(--gold-deep);
  background: rgba(255,255,255,.5);
  margin-bottom: 1.2rem;
}
.mod-card__chip--gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #fff;
  border-color: transparent;
}

.mod-card h3 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: .8rem;
  letter-spacing: -.01em;
}
.mod-card p {
  color: var(--ink-soft);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  max-width: 50ch;
}
.mod-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.mod-card ul li {
  font-size: .8rem;
  padding: .4rem .9rem;
  border: 1px solid rgba(138,106,59,.25);
  border-radius: 999px;
  color: var(--gold-deep);
  background: rgba(255,255,255,.6);
  font-weight: 500;
}

/* Shine effect that follows mouse */
.mod-card__shine {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: radial-gradient(circle 220px at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,.6), transparent 60%);
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
  mix-blend-mode: overlay;
}
.mod-card:hover .mod-card__shine { opacity: 1; }

/* Final card emphasis */
.mod-card--final .mod-card__inner {
  background: linear-gradient(145deg, var(--ink) 0%, #1A1410 100%);
  color: #fff;
}
.mod-card--final h3 { color: #fff; }
.mod-card--final p { color: rgba(245,239,230,.75); }
.mod-card--final .mod-card__num {
  background: linear-gradient(135deg, #F1D9A8 0%, #D8B478 50%, #8A6A3B 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
.mod-card--final ul li {
  background: rgba(255,255,255,.05);
  border-color: rgba(201,163,107,.3);
  color: var(--gold-light);
}

/* =========================================================
   SPACE
   ========================================================= */
.space {
  background: linear-gradient(180deg, var(--warm-white) 0%, var(--cream) 100%);
  padding: clamp(5rem, 10vw, 9rem) clamp(1rem, 3vw, 2.5rem);
}
.space__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}
.space__text .h2 { margin: 1rem 0 1.5rem; }
.space__text p { color: var(--ink-soft); max-width: 420px; }
.space__dots { display: flex; gap: .6rem; margin-top: 2rem; }
.space__dots span {
  width: 40px; height: 1px; background: var(--gold);
  display: block;
  transform-origin: left;
  animation: dotPulse 3s ease-in-out infinite;
}
.space__dots span:nth-child(2) { animation-delay: .3s; }
.space__dots span:nth-child(3) { animation-delay: .6s; }
@keyframes dotPulse {
  0%,100% { transform: scaleX(.4); opacity: .5; }
  50% { transform: scaleX(1); opacity: 1; }
}
.space__image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
  /*clip-path: inset(0 100% 0 0);*/
  transition: clip-path 1.6s var(--ease);
}
.space__image.in-view { clip-path: inset(0 0 0 0); }
.space__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 8s linear; }
.space__image.in-view img { transform: scale(1.08); }

/* =========================================================
   INVEST
   ========================================================= */
.invest {
  background: var(--ink);
  padding: clamp(5rem, 10vw, 9rem) clamp(1rem, 3vw, 2.5rem);
  position: relative;
  overflow: hidden;
}
.invest::before {
  content: "";
  position: absolute;
  top: -30%; left: 50%;
  transform: translateX(-50%);
  width: 80vw; height: 80vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,163,107,.15), transparent 55%);
  pointer-events: none;
  animation: investPulse 8s ease-in-out infinite;
}
@keyframes investPulse {
  0%,100% { transform: translateX(-50%) scale(1); opacity: .8; }
  50% { transform: translateX(-50%) scale(1.15); opacity: 1; }
}
.invest__card {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4.5rem) clamp(1.5rem, 4vw, 3.5rem);
  text-align: center;
  color: var(--cream);
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border: 1px solid rgba(201,163,107,.4);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}
.invest__card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius) - 1px);
  background: linear-gradient(135deg, rgba(201,163,107,.08), transparent);
  pointer-events: none;
}
.invest__card .eyebrow { color: var(--gold-light); }
.invest__card .eyebrow::before { background: var(--gold-light); }
.invest__title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  margin: 1rem 0 2rem;
}
.invest__title em { color: var(--gold-light); }
.invest__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: .7rem;
  margin-bottom: 2.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(201,163,107,.3);
  border-bottom: 1px solid rgba(201,163,107,.3);
}
.invest__currency {
  font-family: var(--f-body);
  font-size: .85rem;
  letter-spacing: .3em;
  color: var(--gold-light);
}
.invest__amount {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  line-height: 1;
  background: linear-gradient(135deg, #F1D9A8 0%, #C9A36B 50%, #8A6A3B 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -.02em;
  animation: titleShimmer 5s ease-in-out infinite;
}
.invest__list {
  text-align: left;
  margin: 0 auto 2.5rem;
  max-width: 460px;
  display: flex;
  flex-direction: column;
  gap: .9rem;
}
.invest__list li {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  font-size: .98rem;
  color: rgba(245,239,230,.9);
}
.invest__list svg { color: var(--gold-light); flex-shrink: 0; margin-top: 3px; }
.invest__list strong { color: #fff; font-weight: 500; }
.invest__note {
  margin-top: 1.3rem;
  font-size: .8rem;
  color: rgba(245,239,230,.55);
  letter-spacing: .05em;
}

/* IMPORTANTE section */
.invest__important {
  margin-top: 2.8rem;
  padding: 2rem;
  background: linear-gradient(145deg, rgba(220,38,38,.12), rgba(220,38,38,.04));
  border: 1.5px solid #DC2626;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}
.invest__important::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #DC2626, transparent);
}
.invest__important-label {
  display: inline-block;
  font-family: var(--f-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: #DC2626;
  padding: .5rem 1rem;
  background: rgba(220,38,38,.08);
  border-radius: 6px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(220,38,38,.2);
}
.invest__important p {
  color: #fff;
  font-size: .95rem;
  margin-bottom: 1rem;
  font-weight: 500;
}
.invest__important p:first-of-type {
  color: #FFE4E6;
  font-weight: 600;
  margin-bottom: .8rem;
}
.invest__important-list {
  display: flex;
  flex-direction: column;
  gap: .7rem;
  margin-bottom: 1.2rem;
}
.invest__important-list li {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: .95rem;
  color: #FFE4E6;
  padding-left: 1.2rem;
  position: relative;
}
.invest__important-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: #DC2626;
  font-size: 1rem;
  font-weight: 700;
}
.invest__important-list strong {
  color: #FFD4D4;
  font-weight: 600;
}
.invest__sublist {
  margin-top: .6rem;
  padding-left: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: .45rem;
}
.invest__sublist li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .9rem;
  color: #FFE4E6;
  padding-left: 0;
  position: relative;
}
.invest__sublist li::before {
  content: "◆";
  position: absolute;
  left: -1.2rem;
  color: rgba(255,212,212,.6);
  font-size: .7rem;
}

.invest__important-sub {
  font-size: .8rem !important;
  color: rgba(255,228,230,.75) !important;
  font-weight: 400 !important;
  font-style: italic;
}

/* =========================================================
   BONUS / COLABORACIÓN — Epic dark section
   ========================================================= */
.bonus {
  position: relative;
  background: radial-gradient(ellipse at center top, #2A2118 0%, #1A1410 50%, #0F0A07 100%);
  padding: clamp(5rem, 10vw, 9rem) clamp(1rem, 3vw, 2.5rem) clamp(5rem, 10vw, 9rem);
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}
.bonus__aurora { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.bonus__ray {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .5;
  mix-blend-mode: screen;
}
.bonus__ray--1 {
  top: -20%; left: 10%;
  width: 55vw; height: 55vw;
  background: radial-gradient(circle, #D8B478 0%, #8A6A3B 40%, transparent 70%);
  animation: auroraMove1 18s ease-in-out infinite;
}
.bonus__ray--2 {
  bottom: -30%; right: -10%;
  width: 50vw; height: 50vw;
  background: radial-gradient(circle, #E3C896 0%, #C9A36B 40%, transparent 70%);
  animation: auroraMove2 22s ease-in-out infinite;
}
.bonus__ray--3 {
  top: 40%; left: 50%;
  width: 40vw; height: 40vw;
  background: radial-gradient(circle, #8A6A3B 0%, transparent 60%);
  animation: auroraMove3 25s ease-in-out infinite;
}

.bonus__inner {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

/* Partnership header */
.bonus__collab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 2rem;
}
.bonus__collab-line {
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.bonus__collab-label {
  font-family: var(--f-body);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--gold-light);
  white-space: nowrap;
}

/* Logos row */
.bonus__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 5vw, 4rem);
  margin-bottom: clamp(3rem, 6vw, 5rem);
  flex-wrap: wrap;
}
.bonus__logo {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .8rem;
  padding: 1.5rem 2rem;
  border-radius: 20px;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(201,163,107,.2);
  transition: transform .5s var(--ease), border-color .5s var(--ease), background .5s var(--ease), box-shadow .5s var(--ease);
  text-align: center;
}
.bonus__logo:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  background: rgba(201,163,107,.06);
  box-shadow: 0 20px 50px rgba(201,163,107,.25);
}
.bonus__logo img {
  height: clamp(70px, 9vw, 110px);
  width: auto;
  object-fit: contain;
  transition: transform .5s var(--ease), filter .5s var(--ease);
}
.bonus__logo--juliana img {
  filter: drop-shadow(0 4px 20px rgba(255,255,255,.15));
}
.bonus__logo--market img {
  filter: drop-shadow(0 4px 20px rgba(77,177,255,.35));
}
.bonus__logo:hover img { transform: scale(1.05); }
.bonus__logo-hint {
  font-family: var(--f-body);
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(245,239,230,.55);
  transition: color .4s;
}
.bonus__logo:hover .bonus__logo-hint { color: var(--gold-light); }

.bonus__cross {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: crossRotate 20s linear infinite;
}
@keyframes crossRotate {
  from { transform: rotate(0); }
  to { transform: rotate(360deg); }
}

/* Bonus card */
.bonus__card {
  position: relative;
  background: linear-gradient(145deg, rgba(42,33,24,.85) 0%, rgba(15,10,7,.92) 100%);
  border-radius: 32px;
  padding: clamp(2.5rem, 5vw, 4.5rem) clamp(1.8rem, 4vw, 4rem);
  text-align: left;
  overflow: hidden;
  backdrop-filter: blur(12px);
  box-shadow:
    0 40px 100px rgba(0,0,0,.6),
    0 20px 50px rgba(201,163,107,.15),
    inset 0 1px 0 rgba(255,255,255,.05);
}
/* Animated gold border */
.bonus__card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 32px;
  padding: 1.5px;
  background: conic-gradient(from 0deg,
    rgba(216,180,120,.1) 0deg,
    #F1D9A8 50deg,
    #C9A36B 120deg,
    rgba(138,106,59,.3) 180deg,
    #C9A36B 240deg,
    #F1D9A8 310deg,
    rgba(216,180,120,.1) 360deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: bonusBorderSpin 10s linear infinite;
  pointer-events: none;
  z-index: 1;
}
@keyframes bonusBorderSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.bonus__card > * { position: relative; z-index: 2; }

.bonus__card-glow {
  position: absolute;
  top: -40%; left: 50%;
  transform: translateX(-50%);
  width: 80%; height: 80%;
  background: radial-gradient(ellipse, rgba(201,163,107,.18), transparent 60%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
  animation: investPulse 8s ease-in-out infinite;
}

.bonus__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 84px; height: 84px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(216,180,120,.15), rgba(138,106,59,.05));
  border: 1px solid rgba(201,163,107,.3);
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 30px rgba(201,163,107,.2);
}

.bonus__chip {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--f-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold-light);
  padding: .7rem 1.4rem;
  border: 1px solid rgba(201,163,107,.4);
  border-radius: 999px;
  background: rgba(201,163,107,.08);
  margin-bottom: 1.8rem;
}
.bonus__chip svg { color: var(--gold-light); }

.bonus__title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -.025em;
  color: #fff;
  margin-bottom: 1.5rem;
  max-width: 16ch;
}
.bonus__title em {
  display: inline-block;
  background: linear-gradient(135deg, #F1D9A8 0%, #D8B478 40%, #C9A36B 70%, #8A6A3B 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  animation: titleShimmer 5s ease-in-out infinite;
}

.bonus__lead {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: rgba(245,239,230,.82);
  max-width: 50ch;
  margin-bottom: 2.5rem;
}
.bonus__lead strong { color: var(--gold-light); font-weight: 500; }

.bonus__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 60ch;
}
.bonus__list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
  color: rgba(245,239,230,.88);
  padding: .9rem 1.2rem;
  background: linear-gradient(90deg, rgba(201,163,107,.06), transparent);
  border-left: 2px solid var(--gold);
  border-radius: 4px 12px 12px 4px;
  transition: transform .4s var(--ease), background .4s var(--ease);
}
.bonus__list li:hover {
  transform: translateX(6px);
  background: linear-gradient(90deg, rgba(201,163,107,.12), transparent);
}
.bonus__li-mark {
  color: var(--gold-light);
  font-size: .7rem;
  flex-shrink: 0;
}

/* Rotating gold seal */
.bonus__seal {
  position: absolute;
  top: 2rem; right: 2rem;
  width: 130px; height: 130px;
  opacity: .9;
  pointer-events: none;
  animation: crossRotate 40s linear infinite;
  z-index: 3;
}

@media (max-width: 640px) {
  .bonus__collab-line { max-width: 50px; }
  .bonus__collab-label { font-size: .6rem; letter-spacing: .25em; }
  .bonus__logo { padding: 1rem 1.2rem; }
  .bonus__cross { transform: scale(.7); }
  .bonus__seal { top: 1rem; right: 1rem; width: 80px; height: 80px; }
  .bonus__card { padding: 2rem 1.4rem; }
  .bonus__icon { width: 64px; height: 64px; }
  .bonus__list li { font-size: .92rem; padding: .8rem 1rem; }
}

/* =========================================================
   FINAL CTA
   ========================================================= */
.final-cta {
  background: linear-gradient(180deg, var(--cream) 0%, var(--beige) 100%);
  padding: clamp(5rem, 12vw, 10rem) clamp(1rem, 3vw, 2.5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before, .final-cta::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-light), transparent 70%);
  opacity: .5;
  pointer-events: none;
}
.final-cta::before { top: -30%; left: -20%; width: 60vw; height: 60vw; animation: auroraMove1 22s ease-in-out infinite; }
.final-cta::after { bottom: -30%; right: -20%; width: 50vw; height: 50vw; animation: auroraMove2 26s ease-in-out infinite; }
.final-cta__inner { position: relative; max-width: 820px; margin: 0 auto; }
.final-cta__title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2.8rem, 8vw, 6rem);
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.final-cta__inner p { color: var(--ink-soft); font-size: 1.1rem; margin-bottom: 2.5rem; }
.final-cta__btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 3vw, 2.5rem) 2rem;
}
.footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  gap: 3rem;
}
.footer__logo { height: 64px; width: auto; }
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer__cols > div { display: flex; flex-direction: column; gap: .6rem; }
.footer__label {
  font-size: .7rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: .5rem;
}
.footer__cols a {
  color: rgba(245,239,230,.8);
  font-size: .95rem;
  transition: color .3s;
}
.footer__cols a:hover { color: var(--gold-light); }
.footer__copy {
  color: rgba(245,239,230,.5);
  font-size: .78rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(201,163,107,.2);
  letter-spacing: .08em;
}

/* =========================================================
   WHATSAPP FLOAT
   ========================================================= */
.whatsapp-float {
  position: fixed;
  bottom: 1.8rem; right: 1.8rem;
  width: 58px; height: 58px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(37,211,102,.45);
  z-index: 90;
  transition: transform .4s var(--ease);
  animation: waPulse 2.4s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.08); }
@keyframes waPulse {
  0%,100% { box-shadow: 0 10px 30px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.5); }
  50% { box-shadow: 0 10px 30px rgba(37,211,102,.45), 0 0 0 16px rgba(37,211,102,0); }
}

/* =========================================================
   REVEAL ANIMATIONS
   ========================================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
[data-reveal].in-view {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {
  .pillars__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__logo img { filter: none; }
  .nav__burger span { background: var(--ink); box-shadow: none; }

  /* Hero mobile: stack with PNG below */
  .hero { min-height: auto; }
  .hero__model {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 70vh;
    min-height: 500px;
    margin-top: 2rem;
  }
  .hero__model img { object-position: bottom center; }
  .hero__content {
    min-height: auto;
    padding: calc(var(--nav-h) + 2rem) clamp(1.2rem, 5vw, 2rem) 2rem;
    text-align: center;
    align-items: center;
  }
  .hero__title { max-width: 100%; }
  .hero__cta { justify-content: center; }
  .hero__vlabel { display: none; }
  .hero__bgnum { font-size: 30rem; right: -10%; top: 30%; }
  .hero__scroll { display: none; }
  .hero__marquee { position: relative; margin-top: 0; }

  .about__grid { grid-template-columns: 1fr; gap: 3rem; }
  .about__photo { max-width: 500px; margin: 0 auto; }
  .about__photo::before { inset: -10px; transform: translate(8px, 8px); }

  .space__grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .footer__cols { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .pillars__grid { grid-template-columns: 1fr; }
  .counters { grid-template-columns: repeat(3, 1fr); gap: .5rem; }
  .counter__num { font-size: 2rem; }
  .counter__label { font-size: .65rem; }
  .hero__cta { flex-direction: column; align-items: stretch; width: 100%; }
  .hero__cta .btn { width: 100%; }
  .hero__model { height: 60vh; min-height: 420px; }
  .final-cta__btns { flex-direction: column; align-items: stretch; }
  .final-cta__btns .btn { width: 100%; }
  .whatsapp-float { width: 52px; height: 52px; bottom: 1.2rem; right: 1.2rem; }
  .whatsapp-float svg { width: 24px; height: 24px; }
  .invest__list { max-width: 100%; }
  .mod-card__inner { padding: 1.8rem 1.4rem; }
  .mod-card ul li { font-size: .72rem; padding: .35rem .7rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .hero__title [data-word] { opacity: 1; transform: none; }
  .space__image { clip-path: inset(0); }
  .mod-card { opacity: 1; transform: none; }
}
