/* ============================================================
   PETTOWN CONNECT — 4ª edición
   Estética alineada al banner: navy profundo + neón turquesa
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=DM+Sans:wght@400;500;600;700&display=swap');

:root {
  --bg:         #07111f;
  --bg-2:       #0a1628;
  --surface:    #0f1f36;
  --surface-2:  #142844;
  --line:       rgba(0, 212, 196, 0.16);
  --teal:       #00b4a6;
  --teal-light: #00e0cf;
  --teal-glow:  rgba(0, 224, 207, 0.35);
  --text:       #e9f2f7;
  --muted:      #93a8bd;
  --font-title: 'Outfit', sans-serif;
  --font-body:  'DM Sans', sans-serif;
  --radius:     14px;
  --radius-lg:  22px;
  --ease:       cubic-bezier(.2,.7,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-body); background: var(--bg); color: var(--text); line-height: 1.6; overflow-x: hidden; }
img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
svg  { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.nav-paw { fill: currentColor; stroke: none; }
[hidden] { display: none !important; }

.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 20px; }

section { padding: 96px 0; position: relative; }
h2 { font-family: var(--font-title); font-size: clamp(1.9rem, 4.2vw, 2.9rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 16px; }
h3 { font-family: var(--font-title); font-weight: 700; font-size: 1.15rem; }

.section-tag { display: inline-block; font-family: var(--font-title); font-size: .72rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--teal-light); margin-bottom: 14px; }
.section-subtitle { color: var(--muted); font-size: 1.05rem; max-width: 620px; margin-bottom: 44px; }

.fade-in { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.fade-in.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .08s; } .delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; } .delay-4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) { .fade-in { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* ---------- Botones ---------- */
.btn-primary, .btn-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-title); font-weight: 700; font-size: 1rem;
  padding: 15px 28px; border-radius: 999px; min-height: 48px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, border-color .25s;
}
.btn-primary { background: linear-gradient(135deg, var(--teal-light), var(--teal)); color: #04211f; box-shadow: 0 0 0 1px rgba(0,224,207,.4), 0 10px 30px -8px var(--teal-glow); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 0 1px rgba(0,224,207,.6), 0 14px 38px -8px rgba(0,224,207,.55); }
.btn-outline { border: 1.5px solid rgba(0,224,207,.45); color: var(--teal-light); }
.btn-outline:hover { background: rgba(0,224,207,.08); border-color: var(--teal-light); }

/* ============================================================ NAVBAR */
#navbar { position: fixed; inset: 0 0 auto 0; z-index: 1000; background: rgba(7,17,31,.72); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid transparent; transition: background .3s, border-color .3s; }
#navbar.scrolled { background: rgba(7,17,31,.95); border-color: var(--line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-paw { width: 24px; height: 24px; color: var(--teal-light); }
.nav-logo-text { font-family: var(--font-title); font-size: 1.1rem; font-weight: 800; letter-spacing: .02em; }
.nav-logo-text .pet { color: var(--teal-light); }
.nav-logo-text .connect { font-weight: 400; letter-spacing: .14em; text-transform: uppercase; font-size: .78em; color: var(--muted); margin-left: 2px; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: .92rem; font-weight: 500; color: rgba(233,242,247,.78); transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--teal-light); }
.btn-nav { background: var(--teal); color: #04211f !important; font-family: var(--font-title); font-weight: 700; padding: 10px 20px; border-radius: 999px; }
.btn-nav:hover { background: var(--teal-light); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 10px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================ HERO */
#hero { position: relative; padding: 130px 0 90px; overflow: hidden; background:
  radial-gradient(1200px 600px at 85% 20%, rgba(0,180,166,.18), transparent 60%),
  radial-gradient(900px 500px at 0% 100%, rgba(0,120,160,.18), transparent 60%),
  linear-gradient(180deg, var(--bg-2), var(--bg)); }
.hero-glow { position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(0,224,207,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(0,224,207,.05) 1px, transparent 1px);
  background-size: 56px 56px; mask-image: radial-gradient(ellipse at 60% 40%, #000 20%, transparent 70%); -webkit-mask-image: radial-gradient(ellipse at 60% 40%, #000 20%, transparent 70%); }
.hero-inner { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }

.hero-badge { display: inline-block; font-family: var(--font-title); font-size: .75rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--teal-light); border: 1px solid rgba(0,224,207,.4); border-radius: 999px; padding: 7px 16px; margin-bottom: 24px; box-shadow: 0 0 18px -6px var(--teal-glow) inset; }
.hero-title { font-family: var(--font-title); line-height: .92; margin-bottom: 18px; }
.hero-title .pettown { display: block; font-size: clamp(3.4rem, 10vw, 6.4rem); font-weight: 900; letter-spacing: -.03em; }
.hero-title .pet { color: var(--teal-light); text-shadow: 0 0 28px var(--teal-glow); }
.hero-title .connect { display: block; font-size: clamp(1.1rem, 3vw, 1.7rem); font-weight: 300; letter-spacing: .5em; text-transform: uppercase; color: var(--text); margin-top: 10px; padding-left: 4px; }
.hero-subtitle { font-family: var(--font-title); font-size: clamp(1.15rem, 2.4vw, 1.45rem); font-weight: 600; color: var(--teal-light); margin-bottom: 14px; }
.hero-desc { color: var(--muted); font-size: 1.05rem; max-width: 560px; margin-bottom: 28px; }

.hero-meta { display: grid; grid-template-columns: repeat(3, auto); gap: 22px; margin-bottom: 32px; justify-content: start; }
.hero-meta li { display: flex; gap: 10px; align-items: flex-start; }
.hero-meta svg { width: 22px; height: 22px; color: var(--teal-light); flex-shrink: 0; margin-top: 2px; }
.hero-meta span { display: flex; flex-direction: column; font-size: .85rem; color: var(--muted); line-height: 1.35; }
.hero-meta strong { color: var(--text); font-size: .95rem; font-weight: 600; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 34px; }

.countdown { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.countdown > div { background: rgba(15,31,54,.8); border: 1px solid var(--line); border-radius: 12px; padding: 10px 14px; min-width: 70px; text-align: center; }
.countdown span { display: block; font-family: var(--font-title); font-size: 1.6rem; font-weight: 800; line-height: 1; color: var(--text); font-variant-numeric: tabular-nums; }
.countdown small { font-size: .7rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); }
.countdown p { color: var(--muted); font-size: .9rem; margin-left: 4px; }

.hero-poster { position: relative; align-self: stretch; width: 100%; min-height: 360px; }
.hero-poster img { position: absolute; top: 0; bottom: 0; left: 50%; height: 100%; width: auto; max-width: 100%; object-fit: contain; translate: -50% 0; }
.hero-poster img { border-radius: var(--radius-lg); border: 1px solid rgba(0,224,207,.3); box-shadow: 0 0 0 6px rgba(0,224,207,.05), 0 30px 80px -20px rgba(0,0,0,.8), 0 0 70px -10px var(--teal-glow); transform: rotate(2deg); transition: transform .5s var(--ease); }
.hero-poster:hover img { transform: rotate(0) scale(1.01); }

/* ============================================================ PILARES */
#pilares { padding: 0; margin-top: -30px; z-index: 2; }
.pilares-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.pilar { background: var(--surface); padding: 30px 28px; }
.pilar svg { width: 30px; height: 30px; color: var(--teal-light); margin-bottom: 14px; }
.pilar h3 { margin-bottom: 6px; }
.pilar p { color: var(--muted); font-size: .95rem; }

/* ============================================================ EVENTO */
.evento-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 64px; align-items: center; }
.intro-text { color: var(--muted); font-size: 1.08rem; margin-bottom: 30px; }
.rubros-title { font-family: var(--font-title); font-weight: 700; margin-bottom: 12px; }
.rubros { display: flex; flex-wrap: wrap; gap: 8px; }
.rubros li { font-size: .88rem; padding: 7px 14px; border-radius: 999px; background: rgba(0,224,207,.07); border: 1px solid var(--line); color: var(--text); }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.stat-card { background: linear-gradient(160deg, var(--surface-2), var(--surface)); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px; }
.stat-number { font-family: var(--font-title); font-size: 2.6rem; font-weight: 900; color: var(--teal-light); line-height: 1; margin-bottom: 8px; }
.stat-label { color: var(--muted); font-size: .9rem; line-height: 1.4; }

/* ============================================================ AGENDA */
#agenda { background: var(--bg-2); }
.agenda-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; margin-top: 12px; }
.agenda-strip li { background: var(--surface); padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 4px; }
.agenda-strip li.hl { background: linear-gradient(180deg, rgba(0,224,207,.12), var(--surface)); }
.ag-time { font-family: var(--font-title); font-weight: 800; font-size: 1.3rem; color: var(--teal-light); font-variant-numeric: tabular-nums; margin-bottom: 4px; }
.agenda-strip strong { font-family: var(--font-title); font-size: 1.05rem; }
.ag-sub { color: var(--muted); font-size: .88rem; }



/* ============================================================ CARRUSEL */
.carousel { position: relative; border-radius: var(--radius-lg); overflow: hidden; background: var(--surface); border: 1px solid var(--line); }
.car-track { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; scrollbar-width: none; -webkit-overflow-scrolling: touch; outline: none; }
.car-track::-webkit-scrollbar { display: none; }
.car-slide { flex: 0 0 100%; scroll-snap-align: center; aspect-ratio: 16 / 9; position: relative; cursor: zoom-in; overflow: hidden; }
.car-slide img { width: 100%; height: 100%; object-fit: cover; user-select: none; -webkit-user-drag: none; transform: scale(1.04); transition: transform 6s linear; }
.car-slide.is-active img { transform: scale(1); }
.carousel::after { content: ''; position: absolute; inset: auto 0 0 0; height: 90px; background: linear-gradient(transparent, rgba(4,10,20,.7)); pointer-events: none; }
.car-nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 2; width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; background: rgba(7,17,31,.6); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border: 1px solid rgba(0,224,207,.35); color: #fff; transition: background .2s, transform .2s, opacity .2s; }
.car-nav:hover { background: rgba(0,180,166,.85); color: #04211f; }
.car-nav svg { width: 22px; height: 22px; stroke-width: 2.4; }
.car-prev { left: 16px; } .car-next { right: 16px; }
.car-bar { position: absolute; left: 16px; right: 16px; bottom: 16px; z-index: 2; display: flex; align-items: center; gap: 8px; }
.car-counter { font-family: var(--font-title); font-weight: 700; font-size: .85rem; padding: 6px 12px; border-radius: 99px; background: rgba(7,17,31,.65); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); margin-right: auto; font-variant-numeric: tabular-nums; }
.car-play, .car-expand { width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; background: rgba(7,17,31,.65); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); color: #fff; }
.car-play:hover, .car-expand:hover { color: var(--teal-light); }
.car-play svg, .car-expand svg { width: 17px; height: 17px; stroke-width: 2.2; }
.car-play .i-play { display: none; } .car-play.paused .i-play { display: block; } .car-play.paused .i-pause { display: none; }
.car-progress { position: absolute; left: 0; right: 0; bottom: 0; height: 3px; z-index: 3; background: rgba(255,255,255,.08); }
.car-progress span { display: block; height: 100%; width: 0; background: var(--teal-light); box-shadow: 0 0 10px var(--teal-glow); }
.car-thumbs { display: flex; gap: 8px; margin-top: 12px; overflow-x: auto; scroll-snap-type: x proximity; scrollbar-width: none; padding: 2px; }
.car-thumbs::-webkit-scrollbar { display: none; }
.car-thumb { flex: 0 0 auto; width: 96px; aspect-ratio: 3 / 2; border-radius: 10px; overflow: hidden; padding: 0; opacity: .45; outline: 2px solid transparent; outline-offset: 1px; transition: opacity .25s, outline-color .25s; scroll-snap-align: center; }
.car-thumb img { width: 100%; height: 100%; object-fit: cover; }
.car-thumb:hover { opacity: .8; }
.car-thumb.active { opacity: 1; outline-color: var(--teal-light); }
@media (prefers-reduced-motion: reduce) { .car-slide img { transition: none; transform: none; } .car-track { scroll-behavior: auto; } }

.lightbox { position: fixed; inset: 0; z-index: 2000; background: rgba(3,8,16,.94); display: flex; align-items: center; justify-content: center; padding: 20px; }
.lightbox img { max-width: min(1200px, 100%); max-height: 86vh; border-radius: 10px; }
.lb-close { position: absolute; top: 14px; right: 18px; font-size: 2.4rem; line-height: 1; color: #fff; padding: 6px 12px; }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); font-size: 3rem; color: #fff; padding: 10px 16px; opacity: .8; }
.lb-nav:hover { opacity: 1; color: var(--teal-light); }
.lb-prev { left: 6px; } .lb-next { right: 6px; }
.lb-counter { position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); font-family: var(--font-title); font-weight: 700; color: var(--muted); font-size: .9rem; }

/* ============================================================ LUGAR */
#lugar { background: var(--bg-2); }
.lugar-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
.lugar-grid .section-subtitle { margin-bottom: 28px; }
.info-list { display: grid; gap: 18px; margin-bottom: 30px; }
.info-list li { display: flex; gap: 14px; }
.info-list svg { width: 24px; height: 24px; color: var(--teal-light); flex-shrink: 0; margin-top: 2px; }
.info-list strong { display: block; }
.info-list span { color: var(--muted); font-size: .95rem; }
.mapa { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 4/3; background: var(--surface); }
.mapa iframe { width: 100%; height: 100%; border: 0; filter: invert(.9) hue-rotate(180deg) saturate(.6) brightness(.95); }

/* ============================================================ ENTRADAS */
#entradas { background: radial-gradient(800px 400px at 20% 0%, rgba(0,180,166,.12), transparent 60%), var(--bg); }
.checkout-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 24px; align-items: start; }
.ticket-info-panel { position: sticky; top: 90px; background: linear-gradient(165deg, #10304a, var(--surface)); border: 1px solid rgba(0,224,207,.35); border-radius: var(--radius-lg); padding: 32px 28px; box-shadow: 0 0 60px -25px var(--teal-glow); }
.ticket-type { font-family: var(--font-title); font-size: .75rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--teal-light); margin-bottom: 12px; }
.ticket-price { font-family: var(--font-title); font-size: 3.2rem; font-weight: 900; line-height: 1; }
.ticket-price-note { color: var(--muted); margin-bottom: 24px; }
.ticket-includes { display: grid; gap: 10px; padding-top: 22px; border-top: 1px dashed rgba(0,224,207,.25); margin-bottom: 24px; }
.ticket-includes li { position: relative; padding-left: 28px; font-size: .95rem; }
.ticket-includes li::before { content: ''; position: absolute; left: 0; top: 4px; width: 16px; height: 16px; border-radius: 50%; background: rgba(0,224,207,.15) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300e0cf' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5 9-10'/%3E%3C/svg%3E") center/10px no-repeat; }
.ticket-secure-note { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: .85rem; }
.ticket-secure-note svg { width: 16px; height: 16px; }

.checkout-form-panel { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px 30px; }
.checkout-steps { display: flex; gap: 8px; margin-bottom: 24px; font-size: .8rem; font-weight: 600; }
.checkout-steps li { flex: 1; padding: 8px 10px; border-radius: 8px; background: rgba(255,255,255,.04); color: var(--muted); text-align: center; }
.checkout-steps li.active { background: rgba(0,224,207,.14); color: var(--teal-light); }
.checkout-form-title { font-family: var(--font-title); font-size: 1.3rem; font-weight: 700; margin-bottom: 8px; }
.credencial-aviso { color: var(--muted); font-size: .92rem; margin-bottom: 24px; padding: 12px 14px; border-left: 3px solid var(--teal); background: rgba(0,224,207,.05); border-radius: 0 8px 8px 0; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; border: 0; min-width: 0; }
.form-group.full { grid-column: 1 / -1; }
.form-group label, .form-group legend { font-size: .85rem; font-weight: 600; color: var(--text); margin-bottom: 2px; }
.opt { font-weight: 400; color: var(--muted); }
input[type=text], input[type=email], input[type=tel], select {
  width: 100%; background: var(--bg-2); border: 1px solid rgba(147,168,189,.25); border-radius: 10px;
  padding: 13px 14px; color: var(--text); font: inherit; font-size: 16px; transition: border-color .2s, box-shadow .2s;
}
select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2393a8bd' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 18px; padding-right: 40px; }
input::placeholder { color: rgba(147,168,189,.55); }
input:focus, select:focus { outline: none; border-color: var(--teal-light); box-shadow: 0 0 0 3px rgba(0,224,207,.15); }
.invalid { border-color: #ff6b6b !important; box-shadow: 0 0 0 3px rgba(255,107,107,.15) !important; }
.checkboxes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.checkbox-item { display: flex; align-items: center; gap: 10px; font-size: .9rem; font-weight: 400 !important; padding: 10px 12px; border: 1px solid rgba(147,168,189,.18); border-radius: 10px; cursor: pointer; transition: border-color .2s, background .2s; }
.checkbox-item:has(input:checked) { border-color: rgba(0,224,207,.5); background: rgba(0,224,207,.06); }
.checkbox-item input { accent-color: var(--teal); width: 16px; height: 16px; }
.form-error { color: #ff8f8f; font-size: .9rem; margin-bottom: 10px; }
.btn-checkout { width: 100%; display: flex; align-items: center; justify-content: center; gap: 10px; background: linear-gradient(135deg, var(--teal-light), var(--teal)); color: #04211f; font-family: var(--font-title); font-weight: 700; font-size: 1.05rem; padding: 16px; border-radius: 12px; min-height: 54px; transition: background .2s, transform .2s; }
.btn-checkout:hover { filter: brightness(1.06); transform: translateY(-1px); }
.btn-checkout:disabled { opacity: .7; cursor: wait; transform: none; }
.btn-checkout svg { width: 20px; height: 20px; }
.ticket-secure { color: var(--muted); font-size: .82rem; text-align: center; margin-top: 10px; }
.checkout-steps li.done { color: var(--teal-light); opacity: .7; }
.pago { display: grid; gap: 18px; }
.pago-ok { font-family: var(--font-title); font-weight: 700; font-size: 1.15rem; color: var(--teal-light); }
.pago-paso { display: flex; gap: 14px; }
.pago-num { width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0; display: grid; place-items: center; font-family: var(--font-title); font-weight: 800; background: rgba(0,224,207,.14); color: var(--teal-light); border: 1px solid rgba(0,224,207,.4); }
.pago-body { flex: 1; min-width: 0; }
.pago-body h3 { margin: 4px 0 10px; }
.pago-nota { color: var(--muted); font-size: .92rem; margin-bottom: 12px; }
.banco { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.banco > div { display: grid; grid-template-columns: 1fr auto; grid-template-areas: 'dt btn' 'dd btn'; align-items: center; column-gap: 12px; padding: 10px 14px; background: var(--bg-2); }
.banco dt { grid-area: dt; color: var(--muted); font-size: .75rem; }
.banco dd { display: contents; }
.banco dd span { grid-area: dd; font-weight: 700; font-size: 1rem; overflow-wrap: anywhere; font-variant-numeric: tabular-nums; letter-spacing: .01em; }
.banco .copiar { grid-area: btn; }
.copiar { font-size: .75rem; font-weight: 700; color: var(--teal-light); border: 1px solid rgba(0,224,207,.4); border-radius: 99px; padding: 5px 10px; flex-shrink: 0; }
.copiar:hover { background: rgba(0,224,207,.1); }
.btn-wa { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; background: #25d366; color: #05301a; font-family: var(--font-title); font-weight: 700; font-size: 1.02rem; padding: 15px; border-radius: 12px; min-height: 52px; transition: transform .2s, filter .2s; }
.btn-wa:hover { transform: translateY(-1px); filter: brightness(1.05); }
.btn-wa svg { width: 22px; height: 22px; fill: #05301a; stroke: none; flex-shrink: 0; }
.checkout-steps li { line-height: 1.3; }
.form-success { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; padding: 22px; border-radius: 12px; background: rgba(0,224,207,.08); border: 1px solid rgba(0,224,207,.35); }
.form-success strong { font-family: var(--font-title); font-size: 1.2rem; color: var(--teal-light); }
.form-success span { color: var(--muted); }

/* Sponsors */
#sponsors { padding: 40px 0 20px; }
.spon-card { display: grid; grid-template-columns: 1.4fr .9fr; gap: 40px; align-items: center; padding: 40px; border-radius: var(--radius-lg); border: 1px solid rgba(0,224,207,.35); background: radial-gradient(600px 300px at 100% 0%, rgba(0,224,207,.14), transparent 70%), linear-gradient(160deg, #10304a, var(--surface)); box-shadow: 0 0 60px -30px var(--teal-glow); }
.spon-desc { color: var(--muted); font-size: 1.05rem; margin-bottom: 20px; }
.spon-list { display: grid; gap: 9px; margin-bottom: 16px; }
.spon-list li { position: relative; padding-left: 26px; }
.spon-list li::before { content: ''; position: absolute; left: 0; top: 9px; width: 10px; height: 10px; border-radius: 3px; background: var(--teal-light); box-shadow: 0 0 10px var(--teal-glow); transform: rotate(45deg); }
.spon-note { color: var(--teal-light); font-size: .88rem; font-weight: 600; }
.spon-cta { text-align: center; }
.spon-cta p { color: var(--muted); font-size: .85rem; margin-top: 10px; }

/* Contador de cupos */
.cupos { margin: -8px 0 22px; }
.cupos-head { display: flex; justify-content: space-between; align-items: baseline; font-size: .9rem; margin-bottom: 8px; }
.cupos-head span:first-child { font-weight: 700; color: var(--text); }
.cupos-head span:last-child { color: var(--muted); font-size: .8rem; }
.cupos-bar { height: 8px; border-radius: 99px; background: rgba(255,255,255,.08); overflow: hidden; }
.cupos-bar span { display: block; height: 100%; width: 0; border-radius: inherit; background: linear-gradient(90deg, var(--teal), var(--teal-light)); box-shadow: 0 0 12px var(--teal-glow); transition: width .8s var(--ease); }
.cupos.pocos .cupos-head span:first-child { color: #ffb86b; }
.cupos.pocos .cupos-bar span { background: linear-gradient(90deg, #ff9a3c, #ffc46b); box-shadow: 0 0 12px rgba(255,170,80,.4); }
body.agotado .btn-checkout { background: #3a4a5e; color: var(--muted); cursor: not-allowed; }

/* WhatsApp flotante */
.wa-float { position: fixed; right: 18px; bottom: 18px; z-index: 950; width: 56px; height: 56px; border-radius: 50%; background: #25d366; display: grid; place-items: center; box-shadow: 0 8px 24px rgba(0,0,0,.45); transition: transform .2s var(--ease), bottom .3s var(--ease); }
.wa-float:hover { transform: scale(1.06); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; stroke: none; }

/* ============================================================ FAQ */
.faq-wrap { max-width: 820px; }
.faq-list { display: grid; gap: 10px; margin-top: 28px; }
.faq-list details { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 0 22px; transition: border-color .2s; }
.faq-list details[open] { border-color: rgba(0,224,207,.4); }
.faq-list summary { list-style: none; cursor: pointer; padding: 18px 0; font-weight: 600; display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: '+'; font-size: 1.5rem; font-weight: 300; color: var(--teal-light); transition: transform .25s; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { color: var(--muted); padding-bottom: 18px; }
.faq-list a { color: var(--teal-light); text-decoration: underline; }

/* ============================================================ CTA FINAL */
#cta-final { padding: 90px 0; text-align: center; background: radial-gradient(700px 300px at 50% 100%, rgba(0,224,207,.18), transparent 70%), var(--bg-2); border-top: 1px solid var(--line); }
.cta-inner p { color: var(--muted); margin-bottom: 26px; font-size: 1.05rem; }

/* ============================================================ FOOTER */
#footer { padding: 44px 0 110px; border-top: 1px solid var(--line); text-align: center; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.footer-meta { color: var(--muted); font-size: .9rem; }
.footer-email { color: var(--teal-light); font-weight: 600; }
.footer-copy { color: rgba(147,168,189,.6); font-size: .8rem; }
.footer-credito { color: rgba(147,168,189,.55); font-size: .78rem; margin-top: 6px; }
.footer-credito a { color: var(--muted); text-decoration: underline; text-underline-offset: 2px; }
.footer-credito a:hover { color: var(--teal-light); }

/* ============================================================ STICKY CTA (mobile) */
.sticky-cta { display: none; }

/* ============================================================ RESPONSIVE */
@media (max-width: 960px) {
  .spon-card { grid-template-columns: 1fr; gap: 24px; padding: 28px 22px; }
  section { padding: 76px 0; }
  .hero-inner { grid-template-columns: 1fr; gap: 44px; }
  .hero-poster { max-width: 300px; order: 2; justify-self: center; align-self: auto; min-height: 0; }
  .hero-poster img { position: static; height: auto; width: 100%; translate: none; }
  .hero-meta { grid-template-columns: 1fr 1fr; }
  .evento-grid, .lugar-grid, .checkout-layout { grid-template-columns: 1fr; gap: 36px; }
  .ticket-info-panel { position: static; }
  .agenda-strip { grid-template-columns: 1fr 1fr; }
  .car-slide { aspect-ratio: 4 / 3; }
}

@media (max-width: 820px) {
  .nav-toggle { display: flex; }
  .nav-links { position: absolute; top: 68px; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0; background: rgba(7,17,31,.98); border-bottom: 1px solid var(--line); padding: 8px 20px 20px; transform: translateY(-8px); opacity: 0; pointer-events: none; transition: opacity .25s, transform .25s; }
  .nav-links.open { opacity: 1; transform: none; pointer-events: auto; }
  .nav-links li a { display: block; padding: 14px 4px; border-bottom: 1px solid rgba(255,255,255,.05); }
  .nav-links .btn-nav { margin-top: 14px; text-align: center; border-bottom: 0; }
}

@media (max-width: 600px) {
  #hero { padding: 104px 0 70px; }
  .hero-poster { max-width: 260px; }
  .hero-meta { grid-template-columns: 1fr; gap: 14px; }
  .hero-actions .btn-primary, .hero-actions .btn-outline { width: 100%; }
  .pilares-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-number { font-size: 2.1rem; }
  .form-grid, .checkboxes-grid { grid-template-columns: 1fr; }
  .checkout-form-panel, .ticket-info-panel { padding: 24px 18px; }
  .agenda-strip { grid-template-columns: 1fr; }
  .agenda-strip li { padding: 16px 18px; display: grid; grid-template-columns: 112px 1fr; column-gap: 12px; row-gap: 0; }
  .agenda-strip .ag-time { grid-row: span 2; font-size: 1.05rem; margin: 0; align-self: center; }
  .car-nav { width: 40px; height: 40px; opacity: .9; } .car-prev { left: 10px; } .car-next { right: 10px; }
  .car-bar { left: 10px; right: 10px; bottom: 12px; }
  .car-thumb { width: 74px; }
  .carousel { border-radius: 16px; }
  .countdown > div { min-width: 62px; padding: 8px 10px; }
  .countdown p { width: 100%; margin: 4px 0 0; }

  .sticky-cta { display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 900; align-items: center; justify-content: space-between; gap: 12px;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom)); background: rgba(7,17,31,.96); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-top: 1px solid var(--line);
    transform: translateY(110%); transition: transform .3s var(--ease); }
  .sticky-cta.show { transform: none; }
  body.sticky-on .wa-float { bottom: 88px; }
  .wa-float { width: 52px; height: 52px; right: 14px; bottom: 14px; }
  .sticky-cta div { display: flex; flex-direction: column; line-height: 1.2; }
  .sticky-cta strong { font-family: var(--font-title); font-size: 1.2rem; }
  .sticky-cta span { font-size: .78rem; color: var(--muted); }
  .sticky-cta .btn-primary { padding: 12px 20px; font-size: .95rem; }
}
