/* =============================================================
   Best Party!!! Party Rental — styles.css
   Hoja única, organizada por secciones. Ver 01-stack-and-conventions.
   ============================================================= */

/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg:        #FFFDF6;
  --bg-2:      #EFF8EF;
  --paper:     #FFFFFF;
  --ink:       #201E1A;
  --ink-soft:  #423F38;
  --ink-mute:  #7A7468;
  --line:      rgba(32,30,26,.10);

  --green:       #1E8E3E;
  --green-dark:  #146B2E;
  --green-deep:  #0B3D1F;
  --green-light: #7CC576;
  --green-pale:  #E8F6EA;

  --red:       #E5342A;
  --red-dark:  #B71F1F;
  --red-pale:  #FDEAE8;

  --yellow:    #FFC72C;
  --yellow-dark: #E0A400;
  --blue:      #2E86DE;
  --purple:    #8E4FE0;

  --radius-s:  10px;
  --radius-m:  18px;
  --radius-l:  28px;
  --radius-xl: 40px;

  --shadow-s:  0 2px 10px rgba(32,30,26,.08);
  --shadow-m:  0 10px 30px rgba(32,30,26,.12);
  --shadow-l:  0 24px 60px rgba(32,30,26,.18);

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --font-display: "Baloo 2", "Fredoka", system-ui, sans-serif;
  --font-body: "Nunito Sans", "Inter", system-ui, sans-serif;

  --nav-h: 76px;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  overflow-x: clip;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
body.no-scroll { overflow: hidden; }
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.05; font-family: var(--font-display); }
ul { list-style: none; padding: 0; }
::selection { background: var(--yellow); color: var(--ink); }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; border-radius: 6px; }

.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 9999;
  padding: .7rem 1.1rem; background: var(--ink); color: #fff;
  border-radius: var(--radius-s); font-weight: 700;
  transition: top .3s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

.icon { display: inline-flex; width: 1em; height: 1em; }
.icon svg { width: 100%; height: 100%; }

/* =============================================================
   3. Utilities
   ============================================================= */
.container { width: 100%; max-width: 1220px; margin-inline: auto; padding-inline: 1.25rem; }
.section { padding-block: clamp(3.5rem, 7vw, 6.5rem); position: relative; }
.section-alt { background: var(--bg-2); }
.section-head { max-width: 640px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.kicker {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  font-size: .8rem; color: var(--green-dark);
  background: var(--green-pale); padding: .35rem .9rem; border-radius: 999px;
  margin-bottom: .9rem;
}
.section-title { font-size: clamp(1.9rem, 4vw, 2.9rem); font-weight: 800; color: var(--ink); }
.section-title em { color: var(--red); font-style: normal; }
.section-sub { margin-top: .8rem; color: var(--ink-mute); font-size: 1.05rem; max-width: 60ch; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-weight: 800; font-family: var(--font-display); letter-spacing: .01em;
  padding: 1rem 1.7rem; border-radius: 999px; font-size: 1.02rem;
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out), background .25s var(--ease-out);
  white-space: nowrap;
}
.btn .icon { width: 1.15em; height: 1.15em; }
.btn-primary { background: var(--red); color: #fff; box-shadow: var(--shadow-m); }
.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: var(--shadow-l); background: var(--red-dark); }
.btn-secondary { background: var(--paper); color: var(--ink); border: 2px solid var(--ink); }
.btn-secondary:hover { transform: translateY(-3px); background: var(--ink); color: #fff; }
.btn-outline { background: transparent; color: var(--green-dark); border: 2px solid var(--green); }
.btn-outline:hover { background: var(--green); color: #fff; transform: translateY(-2px); }
.btn-whatsapp { background: #25D366; color: #fff; box-shadow: var(--shadow-m); }
.btn-whatsapp:hover { transform: translateY(-3px) scale(1.02); background: #1DA851; }
.btn-small { padding: .6rem 1rem; font-size: .88rem; border-radius: 999px; }
.btn-block { width: 100%; }
.btn:active { transform: translateY(0) scale(.98); }

.pill {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .65rem 1.15rem; border-radius: 999px; background: var(--paper);
  border: 2px solid var(--line); font-weight: 700; color: var(--ink-soft);
  transition: all .25s var(--ease-out);
}
.pill .icon { width: 1.15em; height: 1.15em; border-radius: 50%; background: var(--ink-mute); padding: 3px; }
.pill:hover { border-color: var(--green); color: var(--green-dark); }
.pill.is-active { background: var(--green); border-color: var(--green); color: #fff; }
.pill.is-active .icon { background: rgba(255,255,255,.25); }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(32px); 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; }

/* =============================================================
   4. Nav
   ============================================================= */
.site-nav {
  position: sticky; top: 0; z-index: 100; height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(255,253,246,.7);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s var(--ease-out), border-color .3s var(--ease-out), background .3s var(--ease-out);
}
@supports not (backdrop-filter: blur(1px)) { .site-nav { background: rgba(255,253,246,.97); } }
.site-nav.is-scrolled { box-shadow: var(--shadow-s); border-color: var(--line); background: rgba(255,253,246,.92); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; width: 100%; }
.brand { display: flex; align-items: center; font-family: var(--font-display); }
.logo-badge { height: 58px; width: auto; display: block; }
.logo-badge-footer { height: 128px; margin-bottom: .4rem; }

.nav-links { display: none; align-items: center; gap: 1.6rem; font-weight: 700; }
.nav-links a { position: relative; padding-block: .3rem; color: var(--ink-soft); }
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px;
  background: var(--red); transition: right .3s var(--ease-out);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { right: 0; }

.nav-actions { display: flex; align-items: center; gap: .6rem; }
.lang-btn {
  height: 42px; padding-inline: 1.1rem; border-radius: 999px; border: 2px solid var(--line);
  font-weight: 800; font-size: .78rem; letter-spacing: .03em; display: flex; align-items: center; justify-content: center;
  white-space: nowrap; transition: border-color .2s, background .2s;
}
.lang-btn:hover { border-color: var(--green); background: var(--green-pale); }
.nav-cta { display: none; }
.nav-toggle {
  display: flex; width: 44px; height: 44px; align-items: center; justify-content: center;
  border-radius: 50%; border: 2px solid var(--line);
}

.nav-drawer {
  position: fixed; inset: var(--nav-h) 0 0 0; z-index: 90; background: var(--paper);
  transform: translateY(-8px); opacity: 0; pointer-events: none;
  transition: opacity .25s var(--ease-out), transform .25s var(--ease-out);
  padding: 2rem 1.5rem; overflow-y: auto;
}
.nav-drawer.is-open { opacity: 1; transform: none; pointer-events: auto; }
.nav-drawer ul { display: flex; flex-direction: column; gap: 1.1rem; font-size: 1.3rem; font-weight: 800; font-family: var(--font-display); }
.nav-drawer .btn { margin-top: 1.6rem; }

@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-toggle { display: none; }
  .nav-drawer { display: none; }
}

/* =============================================================
   5. Hero
   ============================================================= */
.hero {
  position: relative; overflow: clip;
  padding-top: clamp(3rem, 8vw, 5rem);
  padding-bottom: clamp(4rem, 9vw, 7rem);
  min-height: 100svh;
  display: flex; align-items: center;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: -10% -10% -10% -10%; z-index: -2;
  background:
    radial-gradient(62% 58% at 88% 10%, rgba(11,61,31,.68), transparent 62%),
    radial-gradient(56% 50% at 102% 92%, rgba(30,142,62,.5), transparent 60%),
    radial-gradient(36% 32% at 4% 94%, rgba(229,52,42,.16), transparent 65%),
    linear-gradient(150deg, #F1FAF0 0%, var(--bg) 42%, #FFF6E6 100%);
  filter: blur(16px);
  animation: heroDrift 24s ease-in-out infinite alternate;
}
@keyframes heroDrift {
  0%   { transform: scale(1) rotate(0deg); }
  100% { transform: scale(1.08) rotate(3deg); }
}
.hero-grid {
  display: grid; gap: clamp(2.5rem, 6vw, 4rem); align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 960px) { .hero-grid { grid-template-columns: 1.1fr .9fr; } }

.hero-kicker {
  display: inline-flex; align-items: center; gap: .5rem;
  background: #fff; border: 2px solid var(--line); border-radius: 999px;
  padding: .5rem 1rem; font-weight: 800; font-size: .82rem; color: var(--green-dark);
  box-shadow: var(--shadow-s); margin-bottom: 1.3rem;
}
.hero-title {
  font-size: clamp(2.6rem, 6.4vw, 4.6rem); font-weight: 800; color: var(--ink);
  max-width: 14ch;
}
.hero-title .hl-green { color: var(--green); }
.hero-title .hl-red { color: var(--red); position: relative; white-space: nowrap; }
.hero-sub { margin-top: 1.3rem; font-size: 1.18rem; color: var(--ink-soft); max-width: 46ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.1rem; }

.hero-badges { display: flex; flex-wrap: wrap; gap: .6rem 1.3rem; margin-top: 2.4rem; }
.hero-badge { display: flex; align-items: center; gap: .5rem; font-weight: 700; font-size: .88rem; color: var(--ink-soft); }
.hero-badge .badge-dot {
  width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: #fff; padding: 7px; flex-shrink: 0; box-shadow: var(--shadow-s);
}
.hero-badge .badge-dot svg { width: 100%; height: 100%; }

.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-illustration { position: relative; width: min(420px, 90%); filter: drop-shadow(0 30px 40px rgba(32,30,26,.18)); animation: floaty 4.2s ease-in-out infinite; }
.hero-media { position: relative; width: min(480px, 94%); }
.hero-media img, .hero-media video {
  width: 100%; height: auto; object-fit: contain;
  filter: drop-shadow(0 34px 34px rgba(32,30,26,.32));
  animation: floaty 4.2s ease-in-out infinite;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.confetti-layer { position: absolute; inset: -60px -20px; z-index: -1; pointer-events: none; overflow: visible; }
.confetti-piece {
  position: absolute; top: -30px; width: 12px; height: 12px; opacity: .9;
  animation-name: confettiFall; animation-timing-function: linear; animation-iteration-count: infinite;
}
.confetti-piece.s-circle { border-radius: 50%; }
.confetti-piece.s-tri { width: 0; height: 0; border-left: 7px solid transparent; border-right: 7px solid transparent; border-bottom: 13px solid; background: none !important; }
.confetti-piece.c-green { background: var(--green); border-bottom-color: var(--green); }
.confetti-piece.c-red { background: var(--red); border-bottom-color: var(--red); }
.confetti-piece.c-yellow { background: var(--yellow); border-bottom-color: var(--yellow); }
.confetti-piece.c-blue { background: var(--blue); border-bottom-color: var(--blue); }
@keyframes confettiFall {
  0%   { transform: translateY(0) rotate(0deg); opacity: 0; }
  8%   { opacity: .9; }
  100% { transform: translateY(560px) rotate(340deg); opacity: 0; }
}

/* =============================================================
   6. Trust / count strip
   ============================================================= */
.strip { padding-block: 2.4rem; background: var(--ink); color: #fff; }
.strip-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.6rem; text-align: center; }
@media (min-width: 720px) { .strip-grid { grid-template-columns: repeat(4,1fr); } }
.strip-num { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; color: var(--yellow); }
.strip-label { font-size: .85rem; color: rgba(255,255,255,.75); font-weight: 700; margin-top: .2rem; }

/* =============================================================
   7. Catálogo
   ============================================================= */
.cat-filters { display: flex; flex-wrap: wrap; gap: .7rem; margin-bottom: 2.4rem; }
.product-grid { display: grid; gap: 1.4rem; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }

.product-card {
  background: var(--paper); border-radius: var(--radius-l); overflow: clip;
  box-shadow: var(--shadow-s); border: 1px solid var(--line);
  transform: perspective(800px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.product-card.is-tilting { box-shadow: var(--shadow-l); }
.product-media { position: relative; aspect-ratio: 4/3; overflow: clip; }
.product-media img { width: 100%; height: 100%; object-fit: cover; }
.icon-illustration {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  padding: 2.2rem;
}
.icon-illustration .icon { width: 100%; height: 100%; max-width: 96px; }
.icon-illustration.cat-green  { background: linear-gradient(145deg, var(--green), var(--green-dark)); }
.icon-illustration.cat-red    { background: linear-gradient(145deg, var(--red), var(--red-dark)); }
.icon-illustration.cat-yellow { background: linear-gradient(145deg, var(--yellow), var(--yellow-dark)); }
.icon-illustration.cat-blue   { background: linear-gradient(145deg, var(--blue), #1B5EA6); }
.icon-illustration.cat-purple { background: linear-gradient(145deg, var(--purple), #5E2FA0); }
.chip {
  position: absolute; top: .8rem; right: .8rem; width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; padding: 7px; color: #fff;
  box-shadow: var(--shadow-s);
}
.chip-green { background: var(--green); } .chip-red { background: var(--red); }
.chip-yellow { background: var(--yellow-dark); } .chip-blue { background: var(--blue); } .chip-purple { background: var(--purple); }

.product-body { padding: 1.3rem 1.3rem 1.5rem; }
.product-name { font-size: 1.12rem; font-weight: 800; }
.product-desc { color: var(--ink-mute); font-size: .92rem; margin-top: .4rem; min-height: 2.6em; }
.product-foot { display: flex; align-items: center; justify-content: space-between; gap: .7rem; margin-top: 1.1rem; }
.product-price { font-family: var(--font-display); font-weight: 800; color: var(--green-dark); font-size: 1.05rem; }
.product-price span { font-family: var(--font-body); font-weight: 600; font-size: .78rem; color: var(--ink-mute); }

/* =============================================================
   7.5 Paquetes
   ============================================================= */
.package-grid { display: grid; gap: 1.4rem; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); }
.package-card {
  position: relative; background: var(--paper); border-radius: var(--radius-l);
  padding: 1.6rem 1.5rem 1.5rem; border: 1px solid var(--line); box-shadow: var(--shadow-s);
  border-top: 6px solid var(--green);
}
.package-card.pkg-green  { border-top-color: var(--green); }
.package-card.pkg-red    { border-top-color: var(--red); }
.package-card.pkg-purple { border-top-color: var(--purple); }
.package-card.pkg-blue   { border-top-color: var(--blue); }
.package-card.pkg-yellow { border-top-color: var(--yellow-dark); }
.package-badge {
  display: inline-block; font-size: .72rem; font-weight: 800; letter-spacing: .03em;
  text-transform: uppercase; padding: .3rem .7rem; border-radius: 999px; margin-bottom: .8rem;
  background: var(--green-pale); color: var(--green-dark);
}
.pkg-red .package-badge    { background: var(--red-pale); color: var(--red-dark); }
.pkg-purple .package-badge { background: #F1E9FC; color: var(--purple); }
.pkg-blue .package-badge   { background: #E7F1FC; color: var(--blue); }
.pkg-yellow .package-badge { background: #FFF6DD; color: var(--yellow-dark); }
.package-name { font-size: 1.2rem; font-weight: 800; }
.package-desc { color: var(--ink-mute); font-size: .9rem; margin-top: .4rem; }
.package-items { margin-top: 1rem; padding-top: 1rem; border-top: 1px dashed var(--line); display: flex; flex-direction: column; gap: .4rem; }
.package-items li { font-size: .88rem; color: var(--ink-soft); }
.pkg-item-qty { font-weight: 800; color: var(--ink); }
.package-foot { display: flex; align-items: center; justify-content: space-between; gap: .8rem; margin-top: 1.3rem; }
.package-price { font-family: var(--font-display); font-weight: 800; color: var(--green-dark); font-size: 1.2rem; }
.package-price span { font-family: var(--font-body); font-weight: 600; font-size: .76rem; color: var(--ink-mute); }

/* =============================================================
   8. Galería
   ============================================================= */
.gallery-grid { display: grid; gap: 1rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 720px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
.gallery-tile {
  position: relative; aspect-ratio: 1/1; border-radius: var(--radius-m); overflow: clip;
  box-shadow: var(--shadow-s); transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.gallery-tile:hover { transform: translateY(-4px) scale(1.02); box-shadow: var(--shadow-m); }
.gallery-tile img, .gallery-tile video { width: 100%; height: 100%; object-fit: cover; }
.tile-illustration { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.tile-illustration .icon { width: 30%; height: 30%; }
.tile-confetti { background: linear-gradient(135deg, var(--red), var(--yellow)); }
.tile-balloons { background: linear-gradient(135deg, var(--blue), var(--purple)); }
.tile-lights   { background: linear-gradient(135deg, var(--green), var(--green-dark)); }
.tile-cake     { background: linear-gradient(135deg, var(--yellow), var(--red)); }
.tile-jump     { background: linear-gradient(135deg, var(--purple), var(--blue)); }
.tile-candy    { background: linear-gradient(135deg, var(--red-dark), var(--purple)); }
.gallery-caption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: .9rem .8rem .7rem;
  font-size: .78rem; font-weight: 700; color: #fff; text-align: left;
  background: linear-gradient(0deg, rgba(0,0,0,.6), transparent);
}

dialog#lightbox {
  border: 0; border-radius: var(--radius-l); padding: 0; max-width: min(560px, 92vw);
  box-shadow: var(--shadow-l);
}
dialog#lightbox::backdrop { background: rgba(20,18,14,.7); backdrop-filter: blur(4px); }
.lightbox-inner { position: relative; }
.lightbox-body { aspect-ratio: 1/1; }
.lightbox-body .icon { width: 30%; height: 30%; }
.lightbox-close {
  position: absolute; top: .7rem; right: .7rem; width: 38px; height: 38px; border-radius: 50%;
  background: #fff; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-s); z-index: 2;
}

/* =============================================================
   9. Agenda / Reservaciones
   ============================================================= */
.reservation-grid { display: grid; gap: 2rem; }
@media (min-width: 960px) { .reservation-grid { grid-template-columns: 1.1fr .9fr; align-items: start; } }

.card-panel { background: var(--paper); border-radius: var(--radius-l); box-shadow: var(--shadow-s); border: 1px solid var(--line); padding: clamp(1.4rem, 3vw, 2.2rem); }

.field { margin-bottom: 1.1rem; }
.field label { display: block; font-weight: 700; font-size: .9rem; margin-bottom: .45rem; }
.field input, .field textarea {
  width: 100%; padding: .85rem 1rem; border-radius: var(--radius-s); border: 2px solid var(--line);
  font: inherit; background: var(--bg); transition: border-color .2s;
}
.field input:focus, .field textarea:focus { border-color: var(--green); outline: none; }
.field-row { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
@media (min-width: 620px) { .field-row { grid-template-columns: 1fr 1fr; } }

.res-group { border-bottom: 1px solid var(--line); padding-block: .3rem; }
.res-group:last-child { border-bottom: 0; }
.res-group summary {
  display: flex; align-items: center; gap: .6rem; padding: .8rem .2rem; font-weight: 800; cursor: pointer;
  list-style: none; font-family: var(--font-display);
}
.res-group summary::-webkit-details-marker { display: none; }
.res-group summary .icon { width: 1.5rem; height: 1.5rem; background: var(--green); border-radius: 50%; padding: 5px; color: #fff; }
.res-group-body { padding-bottom: .6rem; display: flex; flex-direction: column; gap: .5rem; }

.res-row {
  display: flex; align-items: center; justify-content: space-between; gap: .8rem;
  padding: .6rem .7rem; border-radius: var(--radius-s); transition: background .3s;
}
.res-row.is-selected { background: var(--green-pale); }
.res-row.flash { animation: flashRow .9s var(--ease-out); }
@keyframes flashRow { 0% { background: var(--yellow); } 100% { background: var(--green-pale); } }
.res-row-info { display: flex; align-items: center; gap: .7rem; min-width: 0; }
.res-row-icon { width: 2.1rem; height: 2.1rem; flex-shrink: 0; background: var(--ink-mute); border-radius: 50%; padding: 6px; color: #fff; }
.res-row-name { font-weight: 700; font-size: .92rem; }
.res-row-price { font-size: .8rem; color: var(--ink-mute); }
.res-row-price span { font-size: .78rem; }

.stepper { display: flex; align-items: center; gap: .6rem; flex-shrink: 0; }
.stepper-btn {
  width: 32px; height: 32px; border-radius: 50%; background: var(--paper); border: 2px solid var(--line);
  display: flex; align-items: center; justify-content: center; transition: border-color .2s, background .2s;
}
.stepper-btn:hover { border-color: var(--red); background: var(--red-pale); }
.stepper-btn .icon { width: 1rem; height: 1rem; color: var(--ink); }
.stepper-qty { min-width: 1.4rem; text-align: center; font-weight: 800; }

.cart-summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  background: var(--green-pale); border-radius: var(--radius-m); padding: 1rem 1.2rem; margin-block: 1.4rem;
  font-weight: 700;
}
.cart-summary strong { color: var(--green-dark); font-family: var(--font-display); font-size: 1.15rem; }

.form-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.4rem; }
.form-note {
  margin-top: 1rem; display: flex; align-items: center; gap: .6rem;
  background: var(--green-pale); color: var(--green-dark); font-weight: 700; font-size: .9rem;
  padding: .8rem 1rem; border-radius: var(--radius-s);
}
.form-note .icon { width: 1.2rem; height: 1.2rem; }

/* =============================================================
   10. Contacto
   ============================================================= */
.contact-grid { display: grid; gap: 2rem; }
@media (min-width: 960px) { .contact-grid { grid-template-columns: .95fr 1.05fr; } }
.contact-info-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.6rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: .9rem; }
.contact-info-item .icon-badge {
  width: 2.6rem; height: 2.6rem; border-radius: 50%; background: var(--paper); border: 2px solid var(--line);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--red);
}
.contact-info-item .icon-badge .icon { width: 1.2rem; height: 1.2rem; }
.contact-info-item h4 { font-size: .95rem; font-weight: 800; }
.contact-info-item p { color: var(--ink-mute); font-size: .92rem; }
.social-row { display: flex; gap: .7rem; margin-top: 1.6rem; }
.social-row a {
  width: 2.6rem; height: 2.6rem; border-radius: 50%; background: var(--ink); color: #fff;
  display: flex; align-items: center; justify-content: center; transition: background .2s, transform .2s;
}
.social-row a .icon { width: 1.1rem; height: 1.1rem; }
.social-row a:hover { background: var(--red); transform: translateY(-3px); }

.zone-card {
  margin-top: 1.6rem; border-radius: var(--radius-m); padding: 1.4rem;
  background: linear-gradient(135deg, var(--green-pale), var(--bg-2));
  border: 1px solid var(--line);
  position: relative; overflow: clip;
}
.zone-card::after {
  content: ""; position: absolute; inset: -40% -20% auto auto; width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, rgba(30,142,62,.18), transparent 70%);
}

/* =============================================================
   11. Sobre nosotros
   ============================================================= */
.about-grid { display: grid; gap: 2.4rem; align-items: center; }
@media (min-width: 960px) { .about-grid { grid-template-columns: .9fr 1.1fr; } }
.about-art {
  aspect-ratio: 4/3; border-radius: var(--radius-xl); overflow: clip;
  background: linear-gradient(150deg, var(--green), var(--green-dark));
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-m);
}
.about-art img { width: 100%; height: 100%; object-fit: cover; }
.about-art .icon { width: 42%; height: 42%; }
.pillars { display: grid; gap: 1.1rem; margin-top: 1.8rem; grid-template-columns: 1fr; }
@media (min-width: 620px) { .pillars { grid-template-columns: 1fr 1fr; } }
.pillar { display: flex; gap: .8rem; align-items: flex-start; }
.pillar .icon-badge {
  width: 2.4rem; height: 2.4rem; border-radius: 50%; background: var(--red-pale); color: var(--red);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.pillar .icon-badge .icon { width: 1.1rem; height: 1.1rem; }
.pillar h4 { font-size: .95rem; font-weight: 800; }
.pillar p { font-size: .86rem; color: var(--ink-mute); margin-top: .15rem; }

/* =============================================================
   12. Testimonios
   ============================================================= */
.testimonial-grid { display: grid; gap: 1.4rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .testimonial-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial-card { background: var(--paper); border-radius: var(--radius-l); padding: 1.6rem; box-shadow: var(--shadow-s); border: 1px solid var(--line); }
.stars { display: flex; gap: .2rem; margin-bottom: .8rem; }
.stars .icon { width: 1.1rem; height: 1.1rem; }
.star-on { color: var(--yellow-dark); }
.star-off { color: var(--line); }
.testimonial-quote { font-size: .98rem; color: var(--ink-soft); }
.testimonial-author { margin-top: 1rem; font-weight: 800; font-size: .85rem; color: var(--ink); }

/* =============================================================
   13. CTA final
   ============================================================= */
.final-cta {
  border-radius: var(--radius-xl); padding: clamp(2.2rem, 6vw, 4rem); text-align: center;
  background: linear-gradient(135deg, var(--green), var(--green-dark) 60%, var(--red-dark));
  color: #fff; position: relative; overflow: clip;
}
.final-cta h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.final-cta p { margin-top: .8rem; color: rgba(255,255,255,.9); font-size: 1.05rem; }
.final-cta .hero-cta { justify-content: center; margin-top: 1.8rem; }
.final-cta .btn-secondary { background: #fff; border-color: #fff; }

/* =============================================================
   14. Footer
   ============================================================= */
.site-footer { background: var(--ink); color: rgba(255,255,255,.8); padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.footer-grid { display: grid; gap: 2.2rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.3fr .8fr .8fr 1fr; } }
.footer-grid h4 { color: #fff; font-size: .92rem; font-weight: 800; margin-bottom: 1rem; }
.footer-grid ul { display: flex; flex-direction: column; gap: .6rem; font-size: .9rem; }
.footer-grid a:hover { color: #fff; }
.footer-brand p { margin-top: .8rem; font-size: .88rem; max-width: 32ch; color: rgba(255,255,255,.65); }
.footer-bottom {
  margin-top: 2.6rem; padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,.14);
  display: flex; flex-wrap: wrap; gap: .8rem; justify-content: space-between; font-size: .8rem; color: rgba(255,255,255,.55);
}

/* =============================================================
   15. WhatsApp flotante
   ============================================================= */
.wa-float {
  position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 80;
  width: 60px; height: 60px; border-radius: 50%; background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-l);
}
.wa-float .icon { width: 1.9rem; height: 1.9rem; }
.wa-float::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%; background: #25D366;
  animation: waPulse 2.4s ease-out infinite; z-index: -1;
}
@keyframes waPulse { 0% { transform: scale(1); opacity: .55; } 100% { transform: scale(1.7); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .wa-float::before { animation: none; } }

/* =============================================================
   16. Responsive tweaks
   ============================================================= */
@media (max-width: 539px) {
  .hero-cta .btn { flex: 1 1 auto; }
  .strip-grid { grid-template-columns: repeat(2,1fr); }
}

/* =============================================================
   17. Reduced motion — solo gatea lo intrusivo
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero-bg { animation: none; }
  .confetti-layer { display: none; }
  .reveal { transition-duration: .01s; }
}
