/* ══════════════════════════════════════════════
   LOS REYES DEL SARAO — styles.css
   Archetype: Festive Vibrant / Familia & Diversión
   ══════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────── */
:root {
  --orange:    #FF6B1A;
  --orange-2:  #FF8C42;
  --coral:     #FF4D6D;
  --yellow:    #FFD60A;
  --green:     #06D6A0;
  --blue:      #118AB2;
  --sky:       #73EFFF;
  --purple:    #9B5DE5;
  --bg:        #FFF9F3;
  --bg-2:      #FFF3E8;
  --white:     #FFFFFF;
  --ink:       #1A1A2E;
  --ink-soft:  #3A3A5C;
  --ink-mute:  #7A7A9A;
  --line:      rgba(26,26,46,0.08);
  --r-sm:      12px;
  --r-md:      20px;
  --r-lg:      32px;
  --r-xl:      48px;
  --shadow-sm: 0 4px 16px rgba(255,107,26,0.15);
  --shadow-md: 0 8px 32px rgba(255,107,26,0.2);
  --shadow-lg: 0 20px 60px rgba(255,107,26,0.25);
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --nav-h:     72px;
}

/* ── RESET ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  overflow-x: clip;
  font-size: 16px;
}
body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg);
  color: var(--ink);
  overflow-x: clip;
  line-height: 1.6;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── UTILITIES ──────────────────────────────── */
.container { max-width: 1200px; margin-inline: auto; padding-inline: clamp(1rem, 4vw, 2.5rem); }

.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 2rem; border-radius: 100px;
  font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 1rem;
  transition: transform .25s var(--ease-bounce), box-shadow .25s var(--ease-out), background .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px) scale(1.03); }
.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--coral));
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { box-shadow: var(--shadow-lg); }
.btn-ghost {
  background: rgba(255,255,255,0.9);
  color: var(--orange);
  border: 2.5px solid var(--orange);
}
.btn-ghost:hover { background: var(--orange); color: #fff; }
.btn-xl { padding: 1.1rem 2.8rem; font-size: 1.15rem; }

/* ── REVEALS ────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal[data-split] { opacity: 1; transform: none; }

/* ── SECTION COMMON ─────────────────────────── */
.section-kicker {
  display: inline-block;
  font-size: .85rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .75rem;
}
.section-title {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.1;
  color: var(--ink);
}
.section-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--orange), var(--coral));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-desc { color: var(--ink-soft); max-width: 52ch; margin-top: .75rem; font-size: 1.05rem; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header .section-desc { margin-inline: auto; }

/* ── BUBBLES BG ─────────────────────────────── */
.bubbles-bg {
  position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden;
}
.bubble {
  position: absolute; border-radius: 50%;
  opacity: .06;
  animation: floatBubble linear infinite;
}
.b1 { width: 600px; height: 600px; background: var(--orange); top:-10%; left:-8%; animation-duration:28s; }
.b2 { width: 400px; height: 400px; background: var(--coral);  top:20%; right:-5%; animation-duration:22s; animation-delay:-6s; }
.b3 { width: 300px; height: 300px; background: var(--yellow); bottom:10%; left:10%; animation-duration:18s; animation-delay:-3s; }
.b4 { width: 500px; height: 500px; background: var(--green);  bottom:-8%; right:5%; animation-duration:32s; animation-delay:-10s; }
.b5 { width: 200px; height: 200px; background: var(--purple); top:50%; left:40%; animation-duration:24s; animation-delay:-8s; }

@keyframes floatBubble {
  0%   { transform: translate(0,0) scale(1); }
  33%  { transform: translate(30px,-40px) scale(1.05); }
  66%  { transform: translate(-20px,20px) scale(.97); }
  100% { transform: translate(0,0) scale(1); }
}

/* ── SPLASH ─────────────────────────────────── */
.splash {
  position: fixed; inset: 0; z-index: 9999;
  background: linear-gradient(135deg, var(--orange), var(--coral) 60%, var(--yellow));
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
  animation: splashSafety .01s 4.5s forwards;
}
@keyframes splashSafety {
  to { opacity: 0; pointer-events: none; transform: scale(1.05); }
}
.splash.is-out { opacity: 0; pointer-events: none; transform: scale(1.05); }
.splash-logo {
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
  color: #fff; font-family: 'Fredoka One', cursive;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  text-shadow: 0 2px 16px rgba(0,0,0,.15);
  animation: splashBounce .8s var(--ease-bounce);
}
@keyframes splashBounce {
  0%   { opacity: 0; transform: scale(.6); }
  100% { opacity: 1; transform: scale(1); }
}
.splash-icon { font-size: 4rem; animation: splashBounce .6s var(--ease-bounce) .1s both; }
.splash-bar {
  width: 180px; height: 5px; background: rgba(255,255,255,.3);
  border-radius: 100px; overflow: hidden;
}
.splash-fill {
  height: 100%; background: #fff; border-radius: 100px;
  animation: splashFill 2.5s var(--ease-out) .3s both;
}
@keyframes splashFill { 0% { width: 0; } 100% { width: 100%; } }

/* ── NAV ────────────────────────────────────── */
.nav {
  position: fixed; top: 0; inset-inline: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(1.2rem, 4vw, 2.5rem);
  height: var(--nav-h);
  background: rgba(255,249,243,0);
  backdrop-filter: blur(0px);
  transition: background .35s, backdrop-filter .35s, box-shadow .35s;
}
.nav.is-solid {
  background: rgba(255,249,243,0.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line);
}
.nav-logo {
  display: flex; align-items: center; gap: .65rem;
  font-family: 'Fredoka One', cursive; font-size: 1.15rem; color: var(--ink);
  transition: transform .2s var(--ease-bounce);
}
.nav-logo:hover { transform: scale(1.05); }
.nav-logo-icon { font-size: 1.6rem; }
.nav-logo-text small { display: block; font-family: 'Nunito', sans-serif; font-size: .65rem; font-weight: 700; color: var(--ink-mute); letter-spacing: .08em; }
.nav-links {
  display: flex; align-items: center; gap: 2rem;
}
.nav-links a {
  font-weight: 700; font-size: .95rem;
  color: var(--ink-soft);
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0; height: 2px;
  background: var(--orange); border-radius: 2px;
  transform: scaleX(0); transition: transform .25s var(--ease-out);
  transform-origin: left;
}
.nav-links a:hover { color: var(--orange); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  background: linear-gradient(135deg, var(--orange), var(--coral));
  color: #fff !important;
  padding: .5rem 1.25rem; border-radius: 100px;
  font-weight: 800 !important;
  transition: transform .2s var(--ease-bounce), box-shadow .2s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: translateY(-2px) scale(1.04) !important; box-shadow: var(--shadow-sm); }
.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  width: 36px; padding: 4px;
}
.nav-burger span {
  display: block; height: 3px; border-radius: 3px;
  background: var(--ink); transition: transform .3s, opacity .3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ── HERO ───────────────────────────────────── */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #FF6B1A 0%, #FF4D6D 50%, #FFD60A 100%);
}
.hero-img-wrap {
  position: absolute; inset: 0; z-index: 0;
}
.hero-img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.06);
  transition: transform 8s ease;
}
.hero:hover .hero-img { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,107,26,.82) 0%, rgba(255,77,109,.65) 50%, rgba(255,214,10,.4) 100%);
}
.hero-confetti { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero-content {
  position: relative; z-index: 2;
  max-width: 700px;
  padding: calc(var(--nav-h) + 2rem) clamp(1.5rem, 5vw, 4rem) 4rem;
  animation: heroIn .9s var(--ease-out) .3s both;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: none; }
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(255,255,255,.2); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.4);
  color: #fff; font-weight: 800; font-size: .8rem;
  padding: .35rem .9rem; border-radius: 100px;
  letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.hero-title {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(3rem, 7.5vw, 6rem);
  line-height: 1;
  color: #fff;
  text-shadow: 0 4px 24px rgba(0,0,0,.2);
  text-wrap: balance;
  margin-bottom: .5rem;
}
.hero-big {
  font-style: normal;
  display: block;
  font-size: clamp(4rem, 11vw, 8.5rem);
  background: linear-gradient(135deg, #FFE34D 0%, #FFD60A 45%, #FFB703 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 3px 10px rgba(255,183,3,.55)) drop-shadow(0 6px 24px rgba(0,0,0,.22));
}
.hero-sub-title { font-size: clamp(1.5rem, 3.5vw, 2.8rem); opacity: .9; }
.hero-desc {
  color: rgba(255,255,255,.9); font-size: clamp(.95rem, 1.5vw, 1.15rem);
  margin: 1.25rem 0 2rem; max-width: 45ch;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-actions .btn-ghost { background: rgba(255,255,255,.15); backdrop-filter: blur(8px); color: #fff; border-color: rgba(255,255,255,.5); }
.hero-actions .btn-ghost:hover { background: rgba(255,255,255,.95); color: var(--orange); }
.hero-stats {
  display: flex; align-items: center; gap: 1.5rem;
  padding: 1rem 1.5rem; border-radius: var(--r-md);
  background: rgba(255,255,255,.15); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.25);
  width: fit-content;
}
.stat { display: flex; flex-direction: column; align-items: center; }
.stat-num { font-family: 'Fredoka One', cursive; font-size: 1.6rem; color: #fff; line-height: 1; }
.stat-label { font-size: .72rem; font-weight: 700; color: rgba(255,255,255,.8); letter-spacing: .06em; text-transform: uppercase; }
.stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,.3); }
.hero-scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem; z-index: 2;
  color: rgba(255,255,255,.7); font-size: .75rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; animation: scrollHint 2s ease infinite;
}
@keyframes scrollHint { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }
.scroll-arrow {
  width: 24px; height: 24px; border-right: 2px solid; border-bottom: 2px solid;
  border-color: rgba(255,255,255,.6); transform: rotate(45deg) translateX(-4px) translateY(-4px);
}

/* ── MARQUEE ────────────────────────────────── */
.marquee-wrap {
  background: var(--ink);
  overflow: hidden; padding: .85rem 0;
  position: relative; z-index: 1;
}
.marquee-track {
  display: flex; gap: 0;
  white-space: nowrap;
  animation: marqueeScroll 25s linear infinite;
  width: max-content;
}
.marquee-track span {
  padding: 0 2.5rem; color: var(--orange-2);
  font-weight: 800; font-size: .9rem; letter-spacing: .1em;
  text-transform: uppercase;
}
.marquee-track span:nth-child(even) { color: var(--yellow); }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── ABOUT ──────────────────────────────────── */
.about {
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative; z-index: 1;
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.about-media { position: relative; }
.about-img-wrap {
  border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 4/5; position: relative;
  box-shadow: var(--shadow-lg);
}
.about-img-badge {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  background: rgba(255,255,255,.95); backdrop-filter: blur(8px);
  border-radius: var(--r-md); padding: .75rem 1.25rem;
  display: flex; align-items: center; gap: .6rem;
  font-weight: 800; font-size: .9rem; color: var(--ink);
  box-shadow: var(--shadow-sm);
  animation: badgeFloat 3s ease infinite;
}
.about-img-badge span:first-child { font-size: 1.5rem; }
@keyframes badgeFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
.about-body { color: var(--ink-soft); font-size: 1.05rem; margin: 1.25rem 0 2rem; max-width: 46ch; }
.about-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.pillar {
  display: flex; gap: .9rem; align-items: flex-start;
  padding: 1rem; border-radius: var(--r-md);
  background: var(--white); border: 2px solid var(--line);
  transition: border-color .2s, box-shadow .2s, transform .25s var(--ease-bounce);
}
.pillar:hover { border-color: var(--orange); box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.pillar-icon { font-size: 1.6rem; flex-shrink: 0; }
.pillar h3 { font-size: .9rem; font-weight: 800; margin-bottom: .2rem; }
.pillar p { font-size: .8rem; color: var(--ink-mute); }

/* ── CATÁLOGO ───────────────────────────────── */
.catalogo {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--bg-2);
  position: relative; z-index: 1;
}
.cat-tabs {
  display: flex; gap: .75rem; flex-wrap: wrap; justify-content: center;
  margin-bottom: 2.5rem;
}
.cat-tab {
  padding: .7rem 1.5rem; border-radius: 100px;
  font-weight: 800; font-size: .9rem;
  background: var(--white); color: var(--ink-soft);
  border: 2.5px solid var(--line);
  transition: all .25s var(--ease-bounce);
}
.cat-tab:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }
.cat-tab.active {
  background: linear-gradient(135deg, var(--orange), var(--coral));
  color: #fff; border-color: transparent;
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.cat-grid {
  display: none;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 1.5rem;
}
.cat-grid.active { display: grid; }
.cat-grid--single { grid-template-columns: 1fr; max-width: 600px; margin-inline: auto; }

/* Product Card */
.prod-card {
  background: var(--white); border-radius: var(--r-lg);
  overflow: hidden;
  border: 2px solid var(--line);
  transition: transform .3s var(--ease-bounce), box-shadow .3s var(--ease-out), border-color .3s;
  animation: cardIn .5s var(--ease-out) both;
  text-decoration: none; color: inherit; display: block;
  cursor: pointer;
}
@keyframes cardIn { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:none; } }
.prod-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: var(--shadow-lg); border-color: var(--orange); }
.prod-card--large { grid-column: span 2; display: flex; }
.prod-card--large .prod-card-img-real { aspect-ratio: auto; width: 48%; min-height: 220px; flex-shrink: 0; }
.prod-card--hero { flex-direction: column; grid-column: 1; }
.prod-card-icon {
  position: absolute; font-size: 2.2rem;
  top: .8rem; right: .8rem; z-index: 1;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.15));
  animation: iconFloat 3s ease infinite;
}
@keyframes iconFloat { 0%,100%{transform:translateY(0) rotate(-3deg);}50%{transform:translateY(-6px) rotate(3deg);} }

/* Imagen real del producto */
.prod-card-img-real {
  aspect-ratio: 4/3; overflow: hidden;
  background: var(--bg-2);
  display: flex; align-items: center; justify-content: center;
}
.prod-card-img-real img {
  width: 100%; height: 100%; object-fit: contain;
  padding: .5rem;
  transition: transform .5s var(--ease-out);
}
.prod-card:hover .prod-card-img-real img { transform: scale(1.08); }
.prod-card-img-real--large { aspect-ratio: auto; }

.prod-card-body { padding: 1.25rem; position: relative; flex: 1; }

/* "Ver detalles" label */
.prod-ver-mas {
  display: inline-block; margin-top: .75rem;
  font-size: .8rem; font-weight: 800;
  color: var(--orange); letter-spacing: .04em;
  transition: gap .2s;
}
.prod-card:hover .prod-ver-mas { letter-spacing: .1em; }
.prod-tag {
  display: inline-block; font-size: .72rem; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; padding: .25rem .7rem; border-radius: 100px;
  background: rgba(255,107,26,.12); color: var(--orange); margin-bottom: .6rem;
}
.prod-tag--agua { background: rgba(17,138,178,.12); color: var(--blue); }
.prod-tag--espuma { background: rgba(6,214,160,.12); color: var(--green); }
.prod-tag--carpa { background: rgba(155,93,229,.12); color: var(--purple); }
.prod-tag--atraccion { background: rgba(255,107,26,.12); color: var(--orange); }
.prod-name {
  font-family: 'Fredoka One', cursive;
  font-size: 1.4rem; color: var(--ink); margin-bottom: .4rem;
}
.prod-desc { font-size: .875rem; color: var(--ink-soft); margin-bottom: .8rem; }
.prod-dims {
  display: flex; gap: .6rem; flex-wrap: wrap; margin-top: auto;
}
.prod-dims span {
  font-size: .75rem; font-weight: 700; color: var(--ink-mute);
  background: var(--bg-2); padding: .2rem .6rem; border-radius: var(--r-sm);
}
.prod-features { margin-top: .75rem; display: flex; flex-direction: column; gap: .3rem; }
.prod-features li { font-size: .85rem; color: var(--ink-soft); }

/* ── HOW IT WORKS ────────────────────────────── */
.how {
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative; z-index: 1; overflow: hidden;
}
.how-bg-shape {
  position: absolute; top: 0; left: -10%; right: -10%; bottom: 0;
  background: linear-gradient(135deg, rgba(255,107,26,.06), rgba(255,77,109,.04));
  border-radius: 50% 50% 0 0 / 30% 30% 0 0;
  pointer-events: none;
}
.how-steps {
  display: flex; align-items: flex-start; gap: 1rem;
  flex-wrap: wrap; justify-content: center;
  margin-bottom: 2.5rem;
}
.how-step {
  background: var(--white); border-radius: var(--r-lg);
  padding: 2rem 1.5rem; text-align: center;
  border: 2px solid var(--line);
  flex: 1; min-width: 210px; max-width: 240px;
  transition: transform .3s var(--ease-bounce), box-shadow .3s, border-color .3s;
}
.how-step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--orange); }
.how-step-num {
  display: inline-block; font-family: 'Fredoka One', cursive;
  font-size: .85rem; letter-spacing: .1em;
  background: linear-gradient(135deg, var(--orange), var(--coral));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: .75rem;
}
.how-step-icon { font-size: 2.5rem; margin-bottom: .75rem; animation: iconFloat 3s ease infinite; }
.how-step h3 { font-family: 'Fredoka One', cursive; font-size: 1.2rem; margin-bottom: .5rem; }
.how-step p { font-size: .875rem; color: var(--ink-soft); }
.how-step-arrow {
  font-size: 1.8rem; color: var(--orange); font-weight: 900;
  align-self: center; flex-shrink: 0; margin-top: -1rem;
}
.how-note {
  display: flex; gap: 1rem; align-items: flex-start;
  background: rgba(255,107,26,.08); border-left: 4px solid var(--orange);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 1.25rem 1.5rem; border-radius: var(--r-md);
  border: 2px solid rgba(255,107,26,.2);
}
.how-note-icon { font-size: 1.4rem; flex-shrink: 0; }
.how-note p { font-size: .9rem; color: var(--ink-soft); }
.how-note strong { color: var(--ink); }

/* ── GALLERY ────────────────────────────────── */
.gallery {
  padding: 0; position: relative; z-index: 1;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 300px 300px;
  gap: 8px;
}
.gallery-item {
  position: relative; overflow: hidden; border-radius: var(--r-sm);
  cursor: pointer;
}
.gallery-item img { transition: transform .6s var(--ease-out), filter .4s; }
.gallery-item:hover img { transform: scale(1.08); filter: brightness(1.1); }
.gallery-overlay {
  position: absolute; bottom: 0; inset-inline: 0;
  padding: 1rem 1.25rem;
  background: linear-gradient(to top, rgba(26,26,46,.85), transparent);
  color: #fff; font-weight: 800; font-size: .9rem;
  transform: translateY(4px); transition: transform .3s;
}
.gallery-item:hover .gallery-overlay { transform: translateY(0); }
.gi-1 { grid-row: 1 / 3; }
.gi-4 { grid-column: 3; grid-row: 1 / 3; }

/* ── CONTACT ────────────────────────────────── */
.contact {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--bg-2);
  position: relative; z-index: 1; overflow: hidden;
}
.contact-deco {
  position: absolute; top: -1rem; right: -2rem;
  font-size: clamp(6rem, 15vw, 12rem); opacity: .08;
  animation: floatBubble 6s ease infinite; pointer-events: none;
  user-select: none;
}
.contact-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.25rem; margin-bottom: 2.5rem;
}
.contact-card {
  display: flex; align-items: center; gap: 1rem;
  background: var(--white); border-radius: var(--r-lg);
  padding: 1.5rem; border: 2.5px solid var(--line);
  transition: transform .3s var(--ease-bounce), box-shadow .3s, border-color .3s;
}
.contact-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.contact-card--phone:hover { border-color: #25D366; }
.contact-card--instagram:hover { border-color: #E1306C; }
.contact-card--email:hover { border-color: var(--blue); }
.contact-card-icon { font-size: 2.2rem; flex-shrink: 0; animation: iconFloat 3s ease infinite; }
.contact-card-body { display: flex; flex-direction: column; gap: .15rem; min-width: 0; }
.contact-card-label { font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-mute); }
.contact-card-value { font-weight: 800; font-size: 1rem; color: var(--ink); word-break: break-all; }
.contact-card-hint { font-size: .78rem; color: var(--ink-mute); }
.contact-cta { display: flex; justify-content: center; }

/* ── FOOTER ─────────────────────────────────── */
.footer {
  background: var(--ink); color: rgba(255,255,255,.7);
  padding: 2.5rem 0 1.5rem;
  position: relative; z-index: 1;
}
.footer-top {
  display: flex; justify-content: space-between; align-items: center;
  gap: 2rem; flex-wrap: wrap;
  padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 1.5rem;
}
.footer-brand {
  display: flex; align-items: center; gap: 1rem; color: #fff;
}
.footer-logo-icon { font-size: 2.5rem; }
.footer-brand strong { font-family: 'Fredoka One', cursive; font-size: 1.2rem; display: block; }
.footer-brand p { font-size: .8rem; color: rgba(255,255,255,.5); }
.footer-nav { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-nav a { font-size: .875rem; font-weight: 700; transition: color .2s; }
.footer-nav a:hover { color: var(--orange); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.footer-bottom p { font-size: .78rem; }
.footer-credits a { color: var(--orange-2); }

/* ── NAV LOGO IMG ───────────────────────────── */
.nav-logo-img {
  height: 48px; width: auto; object-fit: contain;
  display: block;
}

/* ── SPLASH INNER / LOGO IMG ────────────────── */
.splash-inner {
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
}
.splash-logo-img {
  height: 120px; width: auto; object-fit: contain;
  filter: brightness(0) invert(1);
  animation: splashBounce .8s var(--ease-bounce);
}

/* ── MARQUEE DOT ─────────────────────────────── */
.marquee-dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--yellow);
  vertical-align: middle;
  flex-shrink: 0;
  margin: 0 .25rem;
  opacity: .7;
}

/* ── FOOTER LOGO / CONTACT INFO ─────────────── */
.footer-logo {
  height: 52px; width: auto; object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .9;
}
.footer-contact-info {
  display: flex; flex-direction: column; gap: .35rem;
  text-align: right;
}
.footer-contact-info a {
  font-size: .875rem; font-weight: 700;
  color: rgba(255,255,255,.65);
  transition: color .2s;
}
.footer-contact-info a:hover { color: var(--orange); }

/* ── WHATSAPP HERO BTN ───────────────────────── */
.btn-whatsapp-hero {
  display: inline-flex; align-items: center; gap: .75rem;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff; border: none;
  padding: 1.1rem 2.5rem; border-radius: 100px;
  font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 1.1rem;
  cursor: pointer;
  transition: transform .25s var(--ease-bounce), box-shadow .2s;
  box-shadow: 0 8px 28px rgba(37,211,102,.35);
  text-decoration: none;
}
.btn-whatsapp-hero:hover { transform: translateY(-4px) scale(1.03); box-shadow: 0 14px 40px rgba(37,211,102,.45); }

/* ── PILLAR ICON SVG ─────────────────────────── */
.pillar-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(255,107,26,.12), rgba(255,77,109,.08));
  border-radius: var(--r-sm);
  color: var(--orange);
}
.pillar-icon svg { width: 22px; height: 22px; }

/* ── HOW STEP ICON SVG ───────────────────────── */
.how-step-icon {
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto .75rem;
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(255,107,26,.1), rgba(255,77,109,.07));
  border-radius: 50%;
  color: var(--orange);
  animation: iconFloat 3s ease infinite;
}
.how-step-icon svg { width: 32px; height: 32px; }

/* ── CONTACT CARD ICON SVG ───────────────────── */
.contact-card-icon {
  flex-shrink: 0;
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(255,107,26,.1), rgba(255,77,109,.07));
  color: var(--orange);
  animation: iconFloat 3s ease infinite;
}
.contact-card--phone .contact-card-icon { color: #25D366; background: rgba(37,211,102,.1); }
.contact-card--instagram .contact-card-icon { color: #E1306C; background: rgba(225,48,108,.1); }
.contact-card--email .contact-card-icon { color: var(--blue); background: rgba(17,138,178,.1); }
.contact-card-icon svg { width: 26px; height: 26px; }

/* ── HOW NOTE SVG ────────────────────────────── */
.how-note svg { flex-shrink: 0; color: var(--orange); margin-top: 2px; }
.how-step-arrow svg { color: var(--orange); }

/* ── FEATURED CARD ───────────────────────────── */
.prod-card--featured { grid-column: 1 / -1; display: flex; flex-direction: row; }
.prod-card--featured .prod-card-img-real { width: 45%; aspect-ratio: auto; min-height: 240px; flex-shrink: 0; }
.prod-card--featured .prod-card-body { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.prod-card-img-real--featured { aspect-ratio: auto !important; }
.prod-desc-short { font-size: .9rem; color: var(--ink-soft); margin-bottom: .6rem; line-height: 1.5; }

/* ── HERO SCROLL HINT SVG ────────────────────── */
.hero-scroll-hint svg { color: rgba(255,255,255,.6); }

/* ── CONFETTI PARTICLES (JS-drawn) ─────────── */
.confetti-dot {
  position: absolute; border-radius: 50%;
  pointer-events: none;
  animation: confettiFall linear infinite;
}
@keyframes confettiFall {
  0%   { transform: translate(0,0) rotate(0deg); opacity: 1; }
  100% { transform: translate(var(--dx, 20px), 110vh) rotate(720deg); opacity: 0; }
}

/* ── RESPONSIVE ─────────────────────────────── */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 480px; margin-inline: auto; }
  .about-pillars { grid-template-columns: 1fr; }
  .prod-card--large { grid-column: 1; flex-direction: column; }
  .prod-card--featured { grid-column: 1; flex-direction: column; }
  .prod-card--featured .prod-card-img-real { width: 100%; min-height: 200px; aspect-ratio: 4/3; }
  .how-step-arrow { display: none; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gi-1, .gi-4 { grid-column: auto; grid-row: auto; }
  .gallery-item { aspect-ratio: 4/3; height: auto; }
  .footer-contact-info { text-align: left; }
}

@media (max-width: 700px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav.menu-open .nav-links {
    display: flex; flex-direction: column;
    position: fixed; inset: var(--nav-h) 0 0 0;
    background: rgba(255,249,243,.98); backdrop-filter: blur(20px);
    align-items: center; justify-content: center; gap: 2.5rem;
    z-index: 99;
    animation: menuFadeIn .3s var(--ease-out);
  }
  @keyframes menuFadeIn { from { opacity:0; transform:translateY(-12px); } to { opacity:1; transform:none; } }
  .nav.menu-open .nav-links a { font-size: 1.4rem; }
  .hero-stats { flex-direction: column; gap: 1rem; }
  .stat-divider { width: 60px; height: 1px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item { aspect-ratio: 4/3; height: auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .ig-card-head { flex-direction: column; text-align: center; }
  .ig-card-meta { align-items: center; }
}

/* ── INSTAGRAM PREVIEW ──────────────────────── */
.ig-preview { margin-top: 2rem; display: flex; justify-content: center; }
.ig-card {
  width: 100%; max-width: 480px;
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}
.ig-card-head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; }
.ig-avatar {
  width: 72px; height: 72px; flex-shrink: 0;
  border-radius: 50%; padding: 3px;
  background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
}
.ig-avatar img {
  width: 100%; height: 100%; border-radius: 50%;
  object-fit: cover; background: var(--white); border: 3px solid var(--white);
}
.ig-card-meta { display: flex; flex-direction: column; gap: .15rem; }
.ig-handle { font-weight: 900; color: var(--ink); font-size: 1.05rem; }
.ig-name { font-size: .85rem; font-weight: 800; color: var(--ink-mute); }
.ig-bio { font-size: .85rem; color: var(--ink-soft); font-weight: 600; line-height: 1.4; margin-top: .25rem; }
.ig-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: .4rem;
  margin-bottom: 1.25rem;
}
.ig-grid span { aspect-ratio: 1; border-radius: var(--r-sm); display: block; }
.ig-btn {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  width: 100%; padding: .9rem 1.5rem; border-radius: 100px;
  background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF);
  color: #fff; font-weight: 800; font-size: 1rem;
  transition: transform .25s var(--ease-bounce), box-shadow .2s;
  box-shadow: 0 6px 20px rgba(221,42,123,.3);
}
.ig-btn:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 10px 30px rgba(221,42,123,.4); }
.ig-btn svg { flex-shrink: 0; }
