/* ═══ FÁBRICA DE FIESTAS · Pelotero & Eventos ═══ */
:root {
  --purple: #7C3AED;
  --pink: #EC4899;
  --yellow: #FFD60A;
  --cyan: #22D3EE;
  --ink: #2E1065;
  --ink-soft: #6D28D9;
  --bg: #F7F2FF;
  --soft: #F0E8FB;
  --white: #FFFFFF;
  --line: rgba(46, 16, 101, 0.12);
  --sans: 'Fredoka', sans-serif;
  --ease: cubic-bezier(0.34, 1.56, 0.64, 1);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html { overflow-x: clip; }
body { background: var(--bg); color: var(--ink); font-family: var(--sans); line-height: 1.65; overflow-x: clip; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: var(--sans); }
::selection { background: var(--yellow); color: var(--ink); }
.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
h1, h2, h3 { font-weight: 600; }
span, .brand span { color: var(--pink); }

/* Balloons */
.balloons { position: fixed; inset: 0; pointer-events: none; z-index: 0; }
.balloons span { position: absolute; bottom: -90px; width: 34px; height: 42px; border-radius: 50%; background: var(--balloon-color, var(--pink)); opacity: .35; animation: floatUp 9s linear infinite; }
.balloons span::before { content: ""; position: absolute; bottom: -2px; left: 50%; transform: translateX(-50%); border-left: 6px solid transparent; border-right: 6px solid transparent; border-top: 12px solid var(--balloon-color, var(--pink)); }
.balloons span:nth-child(even) { --balloon-color: var(--cyan); }
.balloons span:nth-child(3n) { --balloon-color: var(--yellow); }
@keyframes floatUp { 0% { transform: translateY(0); } 100% { transform: translateY(-120vh) rotate(18deg); } }

/* Nav */
.nav-wrap { position: sticky; top: 0; z-index: 100; background: rgba(247,242,255,.9); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.brand { font-size: 1.25rem; font-weight: 600; }
.brand i { color: var(--pink); margin-right: 8px; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: .82rem; font-weight: 500; color: var(--ink-soft); transition: color .3s; }
.nav-links a:hover { color: var(--pink); }
.nav-cta { background: linear-gradient(120deg, var(--purple), var(--pink)); color: #fff !important; padding: 13px 22px; border-radius: 100px; box-shadow: 0 10px 24px rgba(236,72,153,.35); }
.nav-cta:hover { transform: translateY(-2px); }
.nav-toggle { display: none; background: none; border: none; font-size: 1.4rem; color: var(--ink); cursor: pointer; }

/* Hero */
.hero { position: relative; min-height: 88vh; display: flex; align-items: center; text-align: center; z-index: 1; overflow: hidden; background: radial-gradient(1200px 600px at 70% -10%, rgba(236,72,153,.18), transparent), radial-gradient(900px 500px at 10% 110%, rgba(34,211,238,.18), transparent); clip-path: polygon(0 0, 100% 0, 100% calc(100% - 1.746vw), 0 100%); }
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  filter: blur(46px);
  opacity: .5;
  pointer-events: none;
 
}
.hero::before {
  width: 320px; height: 320px;
  top: 8%; left: 4%;
  background: radial-gradient(circle, rgba(236, 72, 153, .5), transparent 70%);
  animation: floatA 14s ease-in-out infinite;
}
.hero::after {
  width: 280px; height: 280px;
  bottom: 6%; right: 5%;
  background: radial-gradient(circle, rgba(34, 211, 238, .45), transparent 70%);
  animation: floatB 17s ease-in-out infinite;
}
@keyframes floatA {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(46px, -34px) scale(1.14); }
}
@keyframes floatB {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-40px, 30px) scale(1.1); }
}
.hero-content { position: relative; z-index: 1; padding: 70px 0; max-width: 760px; margin: 0 auto; }
.hero-badge { display: inline-block; background: var(--yellow); padding: 10px 20px; border-radius: 100px; font-size: .9rem; font-weight: 600; box-shadow: 0 8px 20px rgba(255,214,10,.4); transform: rotate(-2deg); margin-bottom: 24px; }
.hero h1 { font-size: clamp(2.6rem, 6.4vw, 4.6rem); line-height: 1.05; margin-bottom: 20px; }
.hero h1 span { display: block; font-size: 1.25em; background: linear-gradient(120deg, var(--purple), var(--pink)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p { font-size: 1.08rem; color: var(--ink-soft); max-width: 560px; margin: 0 auto 30px; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 34px; }
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 16px 30px; font-size: .82rem; font-weight: 500; transition: all .35s var(--ease); border: 2px solid transparent; border-radius: 100px; }
.btn-solid { background: linear-gradient(120deg, var(--purple), var(--pink)); color: #fff; box-shadow: 0 14px 30px rgba(236,72,153,.4); }
.btn-solid:hover { transform: translateY(-3px) scale(1.03); }
.btn-ghost { border-color: var(--ink-soft); color: var(--ink-soft); }
.btn-ghost:hover { border-color: var(--pink); color: var(--pink); transform: translateY(-3px); }
.btn-block { width: 100%; justify-content: center; }
.btn:hover { animation: elastic .6s var(--ease); }
@keyframes elastic {
  0% { transform: scale(1); }
  35% { transform: scale(1.08); }
  60% { transform: scale(.97); }
  100% { transform: scale(1); }
}
.hero-tags { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; font-size: .9rem; color: var(--ink-soft); }
.hero-visual { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.polaroid { position: absolute; width: 148px; background: #fff; padding: 10px 10px 8px; border-radius: 14px; box-shadow: 0 22px 44px rgba(46, 16, 101, .2); }
.polaroid img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 8px; display: block; }
.polaroid figcaption { font-size: .72rem; font-weight: 700; text-align: center; color: var(--ink); padding-top: 8px; }
.po1 { top: 12%; right: 5%; --r: 6deg; animation: poFloat 7s ease-in-out infinite; }
.po2 { top: 42%; left: 4%; --r: -7deg; animation: poFloat 8s ease-in-out 1s infinite; }
.po3 { bottom: 10%; right: 13%; --r: 4deg; animation: poFloat 6.5s ease-in-out .5s infinite; }
@keyframes poFloat { 0%, 100% { transform: rotate(var(--r, 0)) translateY(0); } 50% { transform: rotate(var(--r, 0)) translateY(-12px); } }
.hero-tags span { background: var(--white); padding: 10px 18px; border-radius: 100px; box-shadow: 0 8px 20px rgba(46,16,101,.08); transition: transform .35s var(--ease); }
.hero-tags span:nth-child(2) { transform: rotate(1.5deg); }
.hero-tags span:nth-child(3) { transform: rotate(-1.5deg); }
.hero-tags span:hover { transform: rotate(-2deg) scale(1.06); }

/* Confetti marquee */
.confetti { overflow: hidden; white-space: nowrap; background: var(--ink); color: #fff; padding: 14px 0; font-weight: 500; letter-spacing: .14em; font-size: .82rem; transform: rotate(-1deg) scale(1.02); width: 110%; margin-left: -5%; position: relative; top: -17px; z-index: 1; }
.confetti-track { display: flex; white-space: nowrap; animation: confettiMove 22s linear infinite; }
.confetti-track i { color: var(--yellow); font-style: normal; padding: 0 16px; }
.confetti-track span { color: #fff; flex-shrink: 0; }
@keyframes confettiMove { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Confetti burst (formulario) */
.confetti-piece {
  position: fixed;
  z-index: 999;
  width: 8px;
  height: 12px;
  border-radius: 2px;
  pointer-events: none;
  animation: confettiBurst 1.15s ease-out forwards;
  will-change: transform, opacity;
}
@keyframes confettiBurst {
  0% { transform: translate(0, 0) rotate(0deg); opacity: 1; }
  100% { transform: translate(var(--dx), var(--dy)) rotate(var(--rot)); opacity: 0; }
}

/* Secciones: número */
.sec-num { display: inline-block; background: var(--ink); color: var(--yellow); font-size: .7rem; font-weight: 700; border-radius: 100px; padding: 3px 10px; margin-right: 6px; vertical-align: 1px; }

/* Sections */
.section { padding: clamp(60px, 9vw, 110px) 0; position: relative; z-index: 1; }
.section-soft { background: var(--soft); }
.sec-head { text-align: center; max-width: 680px; margin: 0 auto 46px; }
.sec-kicker { display: inline-block; background: var(--yellow); padding: 8px 18px; border-radius: 100px; font-size: .78rem; font-weight: 600; transform: rotate(-2deg); margin-bottom: 18px; box-shadow: 0 8px 20px rgba(255,214,10,.35); }
.sec-head h2 { font-size: clamp(2rem, 4.8vw, 3.2rem); line-height: 1.08; margin-bottom: 14px; }
.sec-copy { color: var(--ink-soft); }

/* Paquetes */
.packs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.pack { position: relative; background: var(--white); border: 3px solid var(--line); border-radius: 24px; padding: 34px 30px; display: flex; flex-direction: column; gap: 18px; transition: all .4s var(--ease); overflow: hidden; }
.pack::after { content: ""; position: absolute; inset: 0 0 auto; height: 6px; background: linear-gradient(90deg, var(--purple), var(--pink), var(--cyan)); opacity: 0; transition: opacity .4s; }
.pack:hover::after { opacity: 1; }
.pack:nth-child(1) { transform: rotate(-1deg); }
.pack:nth-child(3) { transform: rotate(1deg); }
.pack:hover { transform: translateY(-8px) rotate(-1.5deg); box-shadow: 0 24px 50px rgba(46,16,101,.14); }
.pack:nth-child(3):hover { transform: translateY(-8px) rotate(1.5deg); }
.pack-featured:hover { transform: scale(1.06) rotate(-1deg) !important; }
.pack-featured { background: linear-gradient(160deg, var(--purple), var(--pink)); border-color: transparent; color: #fff; transform: scale(1.04); box-shadow: 0 26px 50px rgba(236,72,153,.42); position: relative; overflow: hidden; }
.pack-featured::before { content: ""; position: absolute; top: -60%; right: -40%; width: 260px; height: 260px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.18), transparent 70%); }
.pack-top { font-size: 1.15rem; font-weight: 600; }
.pack-top .mini { background: var(--yellow); color: var(--ink); font-size: .7rem; padding: 4px 10px; border-radius: 100px; vertical-align: middle; box-shadow: 0 6px 14px rgba(255,214,10,.4); }
.pack-featured .pack-top .mini { color: #fff; }
.pack-price { font-size: 2.6rem; font-weight: 700; }
.pack-price span { font-size: 1.2rem; vertical-align: super; }
.pack ul { list-style: none; display: flex; flex-direction: column; gap: 12px; flex: 1; font-size: .95rem; }
.pack li { display: flex; gap: 10px; align-items: center; }
.pack li i { color: #10B981; }
.pack-featured li i { color: var(--yellow); }
.pack .btn-ghost { border-color: var(--ink-soft); color: var(--ink-soft); }

/* Actividades */
.acts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.act { position: relative; background: var(--white); border-radius: 24px; padding: 30px; text-align: center; transition: all .4s var(--ease); overflow: hidden; }
.act::before { content: ""; position: absolute; top: -46px; right: -46px; width: 100px; height: 100px; border-radius: 50%; background: radial-gradient(circle, rgba(236,72,153,.14), transparent 70%); opacity: 0; transition: opacity .4s; }
.act:hover::before { opacity: 1; }
.act:nth-child(2n) { transform: rotate(1deg); }
.act:nth-child(2n+1) { transform: rotate(-1deg); }
.act:hover { transform: translateY(-8px) rotate(1.5deg); box-shadow: 0 22px 44px rgba(46,16,101,.14); }
.act-emoji { font-size: 2.8rem; margin-bottom: 12px; animation: bounce 2.4s var(--ease) infinite; }
.act:nth-child(2n) .act-emoji { animation-delay: .6s; }
.act:nth-child(3n) .act-emoji { animation-delay: 1.2s; }
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.act h3 { font-size: 1.15rem; margin-bottom: 8px; }
.act p { color: var(--ink-soft); font-size: .92rem; }

/* Galería */
.gal-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 210px; gap: 14px; }
.gal-item { position: relative; border-radius: 20px; overflow: hidden; margin: 0; cursor: pointer; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gal-item:hover img { transform: scale(1.08) rotate(-1deg); }
.gal-item.gal-lg { grid-column: span 2; grid-row: span 2; }
.gal-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(46,16,101,.55), transparent 50%); opacity: 0; transition: opacity .4s; }
.gal-item:hover::after { opacity: 1; }
.gal-item figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 14px; color: #fff; font-size: .8rem; font-weight: 600; text-align: center; transform: translateY(100%); transition: transform .4s var(--ease); z-index: 2; }
.gal-item:hover figcaption { transform: translateY(0); }

/* Reseñas */
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.rev { position: relative; background: var(--white); border-radius: 24px; padding: 30px; display: flex; flex-direction: column; gap: 14px; transition: all .35s var(--ease); }
.rev:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(46,16,101,.12); }
.rev-quote { position: absolute; top: 14px; right: 24px; font-family: Georgia, serif; font-size: 3.6rem; line-height: 1; color: rgba(236,72,153,.18); }
.rev-stars { color: var(--yellow); letter-spacing: 3px; text-shadow: 0 2px 0 rgba(255,214,10,.3); }
.rev p { color: var(--ink-soft); font-size: .95rem; flex: 1; }
.rev-author { display: flex; align-items: center; gap: 12px; font-weight: 600; }
.rev-avatar { width: 38px; height: 38px; flex-shrink: 0; border-radius: 50%; background: linear-gradient(120deg, var(--purple), var(--pink)); color: #fff; display: flex; align-items: center; justify-content: center; font-size: .9rem; box-shadow: 0 6px 14px rgba(124,58,237,.35); }

/* Reservas */
.reserve-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.reserve-info h2 { font-size: clamp(2rem, 4.6vw, 3.2rem); line-height: 1.08; margin: 16px 0 16px; }
.reserve-info > p { color: var(--ink-soft); margin-bottom: 26px; }
.contact-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.contact-list li { display: flex; align-items: center; gap: 14px; font-size: .95rem; }
.contact-list i { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(120deg, var(--purple), var(--pink)); color: #fff; display: flex; align-items: center; justify-content: center; }
.reserve-form { position: relative; background: var(--white); border-radius: 24px; padding: 36px; display: flex; flex-direction: column; gap: 14px; box-shadow: 0 30px 60px rgba(46,16,101,.12); overflow: hidden; }
.reserve-form::before { content: ""; position: absolute; inset: 0 0 auto; height: 6px; background: linear-gradient(90deg, var(--purple), var(--pink), var(--cyan)); }
.reserve-form h3 { font-size: 1.3rem; margin-bottom: 4px; }
.reserve-form input, .reserve-form textarea { border: 3px solid var(--line); border-radius: 16px; padding: 14px 16px; font-family: var(--sans); font-size: .95rem; color: var(--ink); background: var(--bg); transition: border-color .3s, box-shadow .3s; }
.reserve-form input:focus, .reserve-form textarea:focus { outline: none; border-color: var(--pink); box-shadow: 0 0 0 4px rgba(236,72,153,.12); }

/* Footer */
footer { position: relative; background: var(--ink); color: rgba(255,255,255,.8); padding: 56px 0 0; }
.footer-inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; padding-bottom: 44px; }
.footer-brand .brand { color: #fff; }
.footer-brand .brand span { color: var(--pink); }
.footer-brand p { margin-top: 14px; font-size: .88rem; max-width: 320px; }
.footer-brand strong { color: var(--pink); }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h5 { color: var(--yellow); font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 8px; }
.footer-col a { font-size: .88rem; color: rgba(255,255,255,.75); transition: color .3s; }
.footer-col a:hover { color: var(--yellow); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.15); padding-top: 22px; padding-bottom: 26px; font-size: .8rem; }
.footer-bottom b { color: var(--pink); }

/* WhatsApp float */
.wa-float { position: fixed; bottom: 24px; right: 24px; z-index: 90; width: 56px; height: 56px; border-radius: 50%; background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; box-shadow: 0 12px 30px rgba(37,211,102,.4); transition: all .35s; }
.wa-float:hover { transform: translateY(-4px) scale(1.05); }

/* Reveal */
.reveal { opacity: 0; transform: translateY(36px) rotate(0deg); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0) rotate(0deg); }
.pack.reveal, .act.reveal { transition: opacity .85s var(--ease); }
.pack.reveal.visible, .act.reveal.visible { animation: elasticPop .85s cubic-bezier(.34, 1.56, .64, 1) backwards; }
@keyframes elasticPop {
  0% { transform: translateY(44px) scale(.94); }
  55% { transform: translateY(-10px) scale(1.02); }
  100% { transform: translateY(0) scale(1); }
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-visual { display: none; }
}
@media (max-width: 900px) {
  .nav-links { position: fixed; top: 0; right: 0; height: 100vh; width: min(300px, 82vw); background: var(--white); flex-direction: column; justify-content: center; gap: 28px; padding: 40px; transform: translateX(100%); visibility: hidden; transition: transform .5s var(--ease), visibility 0s .5s; box-shadow: -20px 0 60px rgba(0,0,0,.2); z-index: 110; }
  .nav-links.open { transform: translateX(0); visibility: visible; transition: transform .5s var(--ease), visibility 0s; }
  .nav-toggle { display: block; z-index: 120; }
  .packs-grid { grid-template-columns: 1fr; }
  .pack-featured { transform: none; }
  .acts-grid, .rev-grid { grid-template-columns: 1fr; }
  .gal-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gal-item.gal-lg { grid-row: span 2; }
  .reserve-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .hero { min-height: 84vh; }
  .confetti { top: 0; }
  .hero-tags span { width: 100%; text-align: center; }
  .gal-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gal-item.gal-lg { grid-column: 1 / -1; grid-row: span 1; }
  .pack { padding: 28px 24px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 26px 24px; text-align: left; }
  .footer-brand { grid-column: 1 / -1; text-align: center; }
  .footer-brand p { max-width: 100%; }
  .footer-bottom { text-align: center; }
}
/* -- NEXT-LEVEL TOOLKIT ------------------------------------------- */

/* Scroll progress */
.scroll-progress { position: fixed; top: 0; left: 0; height: 4px; width: 0%; background: linear-gradient(90deg, var(--purple), var(--pink), var(--yellow), var(--cyan)); z-index: 200; pointer-events: none; }

/* Cursor candy */
.cursor-dot, .cursor-ring { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 300; border-radius: 50%; transform: translate(-50%, -50%); }
.cursor-dot { width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; font-size: 22px; line-height: 1; }
.cursor-dot::before { content: "🍬"; }
.cursor-ring { width: 42px; height: 42px; border: 2px dashed rgba(124, 58, 237, .6); animation: candySpin 12s linear infinite; transition: width .28s var(--ease), height .28s var(--ease), border-color .28s; }
@keyframes candySpin { to { transform: translate(-50%, -50%) rotate(360deg); } }
.cursor-ring.hovered { width: 64px; height: 64px; border-color: var(--pink); border-style: solid; }

/* Wave edges */
.edge { position: absolute; left: 0; top: calc(-1 * var(--edge-h, 110px)); width: 100%; height: var(--edge-h, 110px); line-height: 0; pointer-events: none; z-index: 2; }
.edge-soft { fill: var(--soft); }
.edge-bg { fill: var(--bg); }
.edge-dark { fill: var(--ink); }
@media (max-width: 768px) { .edge { --edge-h: 44px; } }

/* Split text */
.split .wl { color: inherit; display: inline-block; overflow: hidden; vertical-align: bottom; padding-bottom: .06em; margin-bottom: -.06em; }
.split .wl .wi { color: inherit; display: inline-block; transform: translateY(120%); opacity: 0; transition: transform .9s var(--ease), opacity .9s; transition-delay: var(--sd, 0s); }
.split.in .wl .wi { transform: translateY(0); opacity: 1; }
.split > span { color: var(--pink); }
.split > span .wl, .split > span .wi { color: var(--pink); }

/* Back to top */
.to-top { position: fixed; bottom: 92px; right: 24px; z-index: 90; width: 48px; height: 48px; border-radius: 50%; border: none; background: linear-gradient(135deg, var(--purple), var(--pink)); color: #fff; font-size: 1rem; cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(12px); transition: all .35s var(--ease); box-shadow: 0 10px 24px rgba(236,72,153,.45); }
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { transform: translateY(-3px); }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 400; display: flex; align-items: center; justify-content: center; background: rgba(46,16,101,.92); backdrop-filter: blur(8px); opacity: 0; visibility: hidden; transition: opacity .35s, visibility .35s; }
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: min(86vw, 980px); max-height: 82vh; border-radius: 16px; box-shadow: 0 30px 80px rgba(0,0,0,.5); transform: scale(.94); transition: transform .35s var(--ease); }
.lightbox.open img { transform: scale(1); }
.lb-close { position: absolute; top: 20px; right: 26px; width: 46px; height: 46px; border-radius: 50%; border: none; background: rgba(255,255,255,.15); color: #fff; font-size: 1.1rem; cursor: pointer; }
.lb-close:hover { background: var(--pink); }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%; border: none; background: rgba(255,255,255,.15); color: #fff; font-size: 1.1rem; cursor: pointer; }
.lb-nav.prev { left: 20px; }
.lb-nav.next { right: 20px; }
.lb-nav:hover { background: var(--pink); }
.lb-caption { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.85); font-size: .85rem; text-align: center; }


/* -- TEMA DE FIESTA � selector ------------------------------------ */
.theme-picker { margin-top: 30px; display: inline-flex; flex-direction: column; align-items: center; gap: 14px; }
.theme-label { font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-soft); font-weight: 500; }
.theme-chips { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.theme-chip { border: 2px solid var(--line); background: var(--white); color: var(--ink); font-family: var(--sans); font-size: .8rem; font-weight: 500; padding: 8px 16px 8px 12px; border-radius: 999px; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; transition: all .3s var(--ease); }
.theme-chip span { font-size: 1rem; color: inherit; }
.theme-chip:hover { transform: translateY(-2px); border-color: var(--pink); }
.theme-chip.active { border-color: var(--pink); background: linear-gradient(120deg, var(--purple), var(--pink)); color: #fff; box-shadow: 0 10px 24px rgba(236,72,153,.32); }
.theme-chip.active span { color: #fff; }
.theme-pop { position: fixed; z-index: 500; font-size: 1.5rem; line-height: 1; pointer-events: none; animation: themePop .95s cubic-bezier(.16,1,.3,1) forwards; }
@keyframes themePop { 0% { transform: translate(0,0) scale(.4) rotate(0); opacity: 0; } 15% { opacity: 1; } 100% { transform: translate(var(--dx), var(--dy)) scale(1.15) rotate(var(--rot)); opacity: 0; } }

body, .nav-wrap, .section-soft, .reserve-form, .confetti, .footer-inner { transition: background-color .5s ease, color .5s ease; }

:root[data-theme="super"] { --purple:#EF4444; --pink:#3B82F6; --yellow:#FACC15; --cyan:#22D3EE; --ink:#111827; --ink-soft:#4B5563; --bg:#EFF4FF; --soft:#E2EBFA; --line:rgba(17,24,39,.14); }
:root[data-theme="princesas"] { --purple:#A78BFA; --pink:#F472B6; --yellow:#FCD34D; --cyan:#67E8F9; --ink:#4C1D95; --ink-soft:#7C3AED; --bg:#FFF0F6; --soft:#FBE4F1; --line:rgba(76,29,149,.14); }
:root[data-theme="espacio"] { --purple:#6366F1; --pink:#8B5CF6; --yellow:#FDE047; --cyan:#22D3EE; --ink:#0F172A; --ink-soft:#475569; --bg:#EDF2FF; --soft:#E0E7FF; --line:rgba(15,23,42,.14); }
:root[data-theme="circo"] { --purple:#F43F5E; --pink:#F59E0B; --yellow:#FDE047; --cyan:#14B8A6; --ink:#431407; --ink-soft:#9A3412; --bg:#FFF7ED; --soft:#FFE8D0; --line:rgba(67,20,7,.14); }
