.elementor-2867 .elementor-element.elementor-element-f855f4e > .elementor-element-populated{margin:0px 0px 0px 0px;--e-column-margin-right:0px;--e-column-margin-left:0px;padding:0px 0px 0px 0px;}/* Start custom CSS for html, class: .elementor-element-6e13e9b *//* ============================================================
   EASTER EGG SLIDE DECK — CIUDADELA NIO TORRE 4
   Pega esto en WP → Apariencia → Personalizar → CSS adicional
   (o en Elementor → Avanzado → CSS personalizado del template).
   Reemplaza al easter.css anterior — formato presentación tipo slides.
   Las fuentes se cargan vía <link> en el <head> de cada página.
   ============================================================ */

:root {
  --primary: #f5c518;
  --primary-hover: #d4a017;
  --green: #147f70;
  --green-bright: #1db99f;
  --bg-dark: #07070e;
  --bg-section: #0d0d1a;
  --bg-card: rgba(19, 19, 34, 0.78);
  --bg-surface: rgba(28, 28, 46, 0.85);
  --text-main: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.65);
  --gold-glow: rgba(245, 197, 24, 0.45);
  --green-glow: rgba(20, 127, 112, 0.4);
  --slide-pad: clamp(1.25rem, 4vw, 4rem);
}

*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: "Manrope", sans-serif;
  background: var(--bg-dark);
  color: var(--text-main);
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
  overscroll-behavior: none;
}

h1, h2, h3, h4 { font-family: "Montserrat", sans-serif; letter-spacing: -0.02em; margin: 0; }

/* Override de tema WP/Elementor — fuerza color blanco en headings dentro del deck.
   Sin esto, themes oscuros pintan h2 con color verde corporativo y no se ven. */
.deck h1, .deck h2, .deck h3, .deck h4, .deck h5, .deck h6,
.deck p, .deck li, .deck span, .deck strong, .deck em {
  color: var(--text-main);
}
.deck .headline .grad,
.deck .headline .glow {
  color: transparent !important;
}
.deck h1, .deck h2, .deck h3, .deck h4, .deck h5, .deck h6 {
  color: var(--text-main) !important;
}
.deck .eyebrow { color: var(--primary) !important; }
.deck .story-quote { color: var(--primary) !important; }
.deck .reveal-card-ribbon,
.deck .fullbleed-ribbon { color: #1a1208 !important; }
.deck .hotspot-num { color: #1a1208 !important; }
.deck .hotspot-list-content h4 { color: var(--primary) !important; }
.deck .lead, .deck .story-text, .deck .reveal-card p,
.deck .hotspot-list-content p, .deck .highlights-head p,
.deck .slide-cta p, .deck .testimonial-card .quote,
.deck .deck-counter, .deck .scroll-hint, .deck .deck-back {
  color: var(--text-muted) !important;
}
.deck .testimonial-card .author .name { color: var(--text-main) !important; }
.deck .testimonial-card .stars { color: var(--primary) !important; }
.deck .btn-primary { color: #1a1208 !important; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
.material-symbols-outlined {
  font-family: "Material Symbols Outlined" !important;
  font-weight: normal; font-style: normal; line-height: 1;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

/* ---------- DECK ---------- */
.deck {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  background: var(--bg-dark);
  isolation: isolate;
}

.deck-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(1200px 600px at 20% -10%, rgba(245, 197, 24, 0.18), transparent 60%),
    radial-gradient(900px 700px at 110% 110%, rgba(20, 127, 112, 0.22), transparent 55%),
    var(--bg-dark);
  z-index: 0;
}

/* ---------- TOP BAR ---------- */
.deck-top {
  position: absolute; top: 0; left: 0; right: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: clamp(3.4rem, 7vh, 4.7rem) clamp(1rem, 3vw, 2.5rem) 0;
  z-index: 30;
  pointer-events: none;
}
.deck-top > * { pointer-events: auto; }
.deck-logo {
  display: inline-flex; align-items: center;
}
.deck-logo img {
  height: 52px; width: auto; display: block;
  filter: drop-shadow(0 0 12px var(--gold-glow));
}

/* ---------- PROGRESS ---------- */
.deck-progress {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: rgba(255,255,255,0.06);
  z-index: 35;
}
.deck-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--green-bright));
  width: 0%;
  transition: width 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  box-shadow: 0 0 16px var(--gold-glow);
}

/* ---------- SLIDES ---------- */
.slides {
  position: absolute; inset: 0;
  z-index: 5;
}
.slide {
  position: absolute; inset: 0;
  display: grid;
  grid-template-rows: 1fr;
  padding: clamp(4rem, 8vh, 6rem) var(--slide-pad) clamp(5rem, 9vh, 7rem);
  opacity: 0;
  transform: translateX(60px) scale(0.98);
  transition: opacity 0.6s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  overflow: hidden;
}
.slide.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}
.slide.is-prev { transform: translateX(-60px) scale(0.98); }

.slide-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  align-self: center;
  display: flex;
  flex-direction: column;
  gap: clamp(0.8rem, 2vh, 1.6rem);
}

/* Stagger reveal of children when slide actives */
.slide.is-active .reveal {
  animation: revealUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.slide.is-active .reveal:nth-child(1) { animation-delay: 0.05s; }
.slide.is-active .reveal:nth-child(2) { animation-delay: 0.18s; }
.slide.is-active .reveal:nth-child(3) { animation-delay: 0.31s; }
.slide.is-active .reveal:nth-child(4) { animation-delay: 0.44s; }
.slide.is-active .reveal:nth-child(5) { animation-delay: 0.57s; }
.slide.is-active .reveal:nth-child(6) { animation-delay: 0.70s; }
@keyframes revealUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- SHARED PIECES ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--primary);
  align-self: flex-start;
}
.eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(245, 197, 24, 0.18);
  animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(245, 197, 24, 0.18); }
  50% { box-shadow: 0 0 0 10px rgba(245, 197, 24, 0); }
}

.headline {
  font-size: clamp(2rem, 5.2vw, 4rem);
  line-height: 1.05;
  font-weight: 800;
}
.headline .glow {
  background: linear-gradient(120deg, var(--primary) 20%, #ffd966 70%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  text-shadow: 0 0 60px var(--gold-glow);
}
.headline .grad {
  background: linear-gradient(120deg, var(--primary), var(--green-bright));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lead {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--text-muted);
  max-width: 60ch;
  line-height: 1.55;
}

/* ---------- VIDEO BACKGROUND (slide-level) ---------- */
.slide-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.slide-video-bg.is-blur {
  filter: blur(22px) saturate(1.1) brightness(0.65);
  transform: scale(1.15);
  transform-origin: center;
}
.slide-video-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 600px at 20% 20%, rgba(7,7,14,0.55), transparent 60%),
    linear-gradient(135deg, rgba(7,7,14,0.78) 0%, rgba(7,7,14,0.55) 60%, rgba(7,7,14,0.85) 100%);
  z-index: 1;
  pointer-events: none;
}
.slide.has-video-bg .slide-inner {
  position: relative;
  z-index: 2;
}

/* ---------- SLIDE 1 — TEASER ---------- */
.slide-teaser .slide-inner {
  align-items: flex-start;
  text-align: left;
}
.scroll-hint {
  margin-top: 1.5rem;
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.85rem; color: var(--text-muted);
  padding: 0.6rem 1.1rem; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  cursor: pointer;
  transition: 0.2s;
}
.scroll-hint:hover { color: var(--primary); border-color: var(--primary); }
.scroll-hint .material-symbols-outlined { animation: bobR 1.4s infinite; }
@keyframes bobR {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(6px); }
}

/* ---------- SLIDE 2 — REVEAL (imagen + hotspots) ---------- */
.slide-reveal .slide-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}
.reveal-stage {
  position: relative;
  width: 100%;
  height: clamp(220px, 55vh, 540px);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.06);
  background: var(--bg-section);
}
.reveal-stage img,
.reveal-stage video {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.02);
  transition: transform 8s ease;
}
.slide-reveal.is-active .reveal-stage img,
.slide-reveal.is-active .reveal-stage video { transform: scale(1.08); }
.reveal-stage::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,7,14,0) 35%, rgba(7,7,14,0.55) 100%);
  pointer-events: none;
}
.reveal-ribbon {
  position: absolute; top: 14px; left: 14px;
  background: var(--primary);
  color: #1a1208;
  font-weight: 700; font-size: 0.72rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.45rem 0.8rem; border-radius: 999px;
  box-shadow: 0 8px 24px var(--gold-glow);
  z-index: 3;
}
.reveal-caption {
  display: flex; flex-direction: column; gap: 0.6rem;
}
.reveal-caption h2 {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.15;
}
.reveal-caption p {
  color: var(--text-muted);
  max-width: 64ch; line-height: 1.55;
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  margin: 0;
}

/* ---------- HOTSPOTS ---------- */
.hotspot {
  position: absolute;
  left: var(--x); top: var(--y);
  transform: translate(-50%, -50%);
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: #1a1208;
  font-weight: 800; font-size: 1.1rem;
  display: grid; place-items: center;
  box-shadow: 0 0 0 6px rgba(245,197,24,0.25), 0 12px 24px rgba(0,0,0,0.45);
  cursor: pointer;
  z-index: 4;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: hotPulse 2.4s infinite;
}
.hotspot:hover { transform: translate(-50%, -50%) scale(1.12); }
.hotspot.is-open {
  background: var(--green-bright);
  color: #fff;
  animation: none;
}
@keyframes hotPulse {
  0%, 100% { box-shadow: 0 0 0 6px rgba(245,197,24,0.25), 0 12px 24px rgba(0,0,0,0.45); }
  50% { box-shadow: 0 0 0 14px rgba(245,197,24,0), 0 12px 24px rgba(0,0,0,0.45); }
}

.hotspot-pop {
  position: absolute;
  left: var(--x); top: var(--y);
  transform: translate(-50%, calc(-100% - 30px));
  background: rgba(13, 13, 26, 0.95);
  border: 1px solid rgba(245,197,24,0.35);
  border-radius: 14px;
  padding: 0.85rem 1rem;
  width: min(260px, 70vw);
  font-size: 0.88rem; color: var(--text-main); line-height: 1.45;
  box-shadow: 0 18px 40px rgba(0,0,0,0.55);
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 5;
  backdrop-filter: blur(8px);
}
.hotspot-pop.is-open {
  opacity: 1;
  transform: translate(-50%, calc(-100% - 18px));
  pointer-events: auto;
}
.hotspot-pop strong {
  display: block;
  color: var(--primary);
  font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.hotspot-pop::after {
  content: ""; position: absolute; left: 50%; bottom: -8px;
  width: 14px; height: 14px;
  background: rgba(13, 13, 26, 0.95);
  border-right: 1px solid rgba(245,197,24,0.35);
  border-bottom: 1px solid rgba(245,197,24,0.35);
  transform: translateX(-50%) rotate(45deg);
}

/* ---------- FULL BLEED VIDEO SLIDE ---------- */
.slide.slide-fullbleed {
  padding: 0;
  overflow: hidden;
}
.slide.slide-fullbleed > .slide-video-bg { z-index: 0; }
.slide.slide-fullbleed > .slide-video-overlay { z-index: 1; }
.slide-video-overlay.edge {
  background:
    linear-gradient(180deg, rgba(7,7,14,0.55) 0%, rgba(7,7,14,0.05) 22%, rgba(7,7,14,0.05) 55%, rgba(7,7,14,0.88) 100%),
    linear-gradient(90deg, rgba(7,7,14,0.4) 0%, rgba(7,7,14,0) 35%);
}

.reveal-card {
  position: absolute;
  left: clamp(1rem, 4vw, 3rem);
  bottom: clamp(5.5rem, 10vh, 7rem);
  max-width: min(560px, calc(100vw - 2rem));
  padding: 1.4rem 1.6rem 1.5rem;
  background: rgba(15, 15, 25, 0.42);
  backdrop-filter: blur(22px) saturate(1.3);
  -webkit-backdrop-filter: blur(22px) saturate(1.3);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 22px;
  z-index: 10;
  box-shadow: 0 24px 60px rgba(0,0,0,0.55);
  color: #fff;
  animation: revealUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.25s;
}
.reveal-card-ribbon {
  display: inline-block;
  background: var(--primary);
  color: #1a1208;
  font-weight: 700; font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.35rem 0.75rem; border-radius: 999px;
  margin-bottom: 0.7rem;
  box-shadow: 0 8px 18px var(--gold-glow);
}
.reveal-card h2 {
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  line-height: 1.15; margin-bottom: 0.5rem; color: #fff;
}
.reveal-card p {
  color: rgba(255,255,255,0.88);
  font-size: clamp(0.9rem, 1.3vw, 1rem); line-height: 1.55; margin: 0;
}
.reveal-card p strong { color: var(--primary); }

/* Hotspot label variant (no + bullet, glass pill with number + name) */
.hotspot.hotspot-label {
  width: auto; height: auto;
  border-radius: 999px;
  padding: 0.35rem 1rem 0.35rem 0.35rem;
  background: rgba(15, 15, 25, 0.55);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  border: 1px solid rgba(245,197,24,0.45);
  color: #fff;
  font-weight: 600; font-size: 0.82rem;
  display: inline-flex; align-items: center; gap: 0.6rem;
  box-shadow: 0 14px 30px rgba(0,0,0,0.5);
  z-index: 6;
  animation: labelPulse 2.6s infinite;
}
.hotspot.hotspot-label:hover {
  transform: translate(-50%, -50%) scale(1.06);
  border-color: var(--primary);
}
.hotspot.hotspot-label.is-open {
  background: var(--green-bright);
  border-color: var(--green-bright);
  color: #fff;
  animation: none;
}
.hotspot-num {
  display: grid; place-items: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-hover));
  color: #1a1208;
  font-weight: 800; font-size: 0.78rem;
  flex-shrink: 0;
  box-shadow: 0 0 10px var(--gold-glow);
  font-family: "Montserrat", sans-serif;
}
.hotspot.hotspot-label.is-open .hotspot-num {
  background: #fff;
  color: var(--green-bright);
}
.hotspot-name {
  white-space: nowrap;
  font-family: "Manrope", sans-serif;
}
@keyframes labelPulse {
  0%, 100% { box-shadow: 0 14px 30px rgba(0,0,0,0.5), 0 0 0 0 rgba(245,197,24,0.3); }
  50% { box-shadow: 0 14px 30px rgba(0,0,0,0.5), 0 0 0 12px rgba(245,197,24,0); }
}

/* Hotspot list (stacked glass cards bottom-right) */
.hotspot-list {
  position: absolute;
  right: clamp(1rem, 4vw, 3rem);
  bottom: clamp(5.5rem, 10vh, 7rem);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
  width: min(340px, calc(100vw - 2rem));
  z-index: 10;
}
.hotspot-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: rgba(15, 15, 25, 0.45);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
  color: #fff;
  animation: revealRight 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
  transition: border-color 0.25s, transform 0.25s;
}
.hotspot-list-item:hover {
  border-color: rgba(245,197,24,0.55);
  transform: translateX(-3px);
}
.hotspot-list-item:nth-child(1) { animation-delay: 0.25s; }
.hotspot-list-item:nth-child(2) { animation-delay: 0.38s; }
.hotspot-list-item:nth-child(3) { animation-delay: 0.51s; }
.hotspot-list-item:nth-child(4) { animation-delay: 0.64s; }
.hotspot-list-item:nth-child(5) { animation-delay: 0.77s; }
.hotspot-list-item:nth-child(6) { animation-delay: 0.90s; }
@keyframes revealRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
.hotspot-list-item .hotspot-num {
  margin-top: 1px;
}
.hotspot-list-content { display: flex; flex-direction: column; gap: 0.2rem; min-width: 0; }
.hotspot-list-content h4 {
  font-family: "Manrope", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
  letter-spacing: 0.01em;
}
.hotspot-list-content p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: rgba(255,255,255,0.8);
}

@media (max-width: 720px) {
  .hotspot-list {
    right: 0.8rem;
    left: 0.8rem;
    bottom: 5rem;
    width: auto;
    gap: 0.45rem;
  }
  .hotspot-list-item { padding: 0.7rem 0.85rem; }
  .hotspot-list-content h4 { font-size: 0.85rem; }
  .hotspot-list-content p { font-size: 0.76rem; }
  .reveal-card { display: none; }
}

/* Top-of-slide ribbon for fullbleed (sin reveal-stage) */
.fullbleed-ribbon {
  position: absolute;
  top: clamp(4.2rem, 8vh, 5.5rem);
  left: calc(clamp(1rem, 3vw, 2.5rem) + 52px * 0.87 + 0.9rem);
  background: var(--primary);
  color: #1a1208;
  font-weight: 700; font-size: 0.72rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.45rem 0.85rem; border-radius: 999px;
  box-shadow: 0 10px 24px var(--gold-glow);
  z-index: 8;
}

@media (max-width: 720px) {
  .hotspot.hotspot-label { font-size: 0.72rem; padding: 0.3rem 0.75rem 0.3rem 0.3rem; }
  .hotspot-num { width: 24px; height: 24px; font-size: 0.72rem; }
  .hotspot.hotspot-label .hotspot-name { display: none; }
  .reveal-card {
    left: 0.8rem; right: 0.8rem; bottom: 5rem; padding: 1.1rem 1.2rem;
    max-width: none;
  }
  .fullbleed-ribbon { top: 3.6rem; left: calc(1rem + 40px * 0.87 + 0.7rem); }
}

/* ---------- SLIDE 3 — HIGHLIGHTS GRID ---------- */
.slide-highlights .slide-inner { gap: 1.4rem; }
.highlights-head h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  line-height: 1.15;
}
.highlights-head p {
  color: var(--text-muted);
  margin: 0.35rem 0 0;
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}
.highlight-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  padding: 1.1rem 1.1rem 1.2rem;
  transition: 0.3s;
  backdrop-filter: blur(8px);
}
.highlight-card:hover {
  border-color: rgba(245,197,24,0.45);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
}
.highlight-card .highlight-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-hover));
  color: #1a1208;
  display: grid; place-items: center;
  margin-bottom: 0.7rem;
  box-shadow: 0 8px 20px var(--gold-glow);
}
.highlight-card .highlight-icon .material-symbols-outlined { font-size: 1.4rem; }
.highlight-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.highlight-card p {
  color: var(--text-muted);
  font-size: 0.9rem; line-height: 1.5; margin: 0;
}

/* ---------- SLIDE 4 — STORY / TESTIMONIO ---------- */
.slide-story .slide-inner {
  align-items: center;
  text-align: center;
  max-width: 880px;
}
.story-icon {
  width: 64px; height: 64px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--green), var(--green-bright));
  color: #fff;
  display: grid; place-items: center;
  margin: 0 auto;
  box-shadow: 0 16px 32px var(--green-glow);
}
.story-icon .material-symbols-outlined { font-size: 2rem; }
.story-title {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  line-height: 1.2;
}
.story-text {
  color: var(--text-muted);
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  line-height: 1.6;
  margin: 0;
}
.story-text strong { color: var(--text-main); }
.story-quote {
  font-family: "Montserrat", sans-serif;
  font-style: italic;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: var(--primary);
  border-top: 1px solid rgba(245,197,24,0.25);
  border-bottom: 1px solid rgba(245,197,24,0.25);
  padding: 0.9rem 0;
  margin: 0.4rem auto 0;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid rgba(245,197,24,0.18);
  border-radius: 22px;
  padding: 1.6rem 1.4rem;
  max-width: 640px; margin: 0 auto;
  position: relative;
  backdrop-filter: blur(10px);
}
.testimonial-card .qmark {
  position: absolute; top: -18px; left: 22px;
  font-size: 4rem; line-height: 1; color: var(--primary);
  font-family: "Montserrat", sans-serif;
}
.testimonial-card .stars {
  color: var(--primary); letter-spacing: 0.18em;
  margin-bottom: 0.6rem; font-size: 0.95rem;
}
.testimonial-card .quote {
  font-size: 1.05rem; line-height: 1.55; margin: 0 0 0.8rem;
}
.testimonial-card .author { display: flex; gap: 0.4rem; flex-wrap: wrap; margin: 0; }
.testimonial-card .author .name { font-weight: 700; }
.testimonial-card .author .role { color: var(--text-muted); }

/* ---------- SLIDE 5 — CTA ---------- */
.slide-cta .slide-inner {
  align-items: center;
  text-align: center;
  max-width: 760px;
}
.slide-cta h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.1;
}
.slide-cta p {
  color: var(--text-muted);
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  line-height: 1.55;
  margin: 0;
}
.cta-actions {
  display: flex; flex-wrap: wrap; gap: 0.8rem;
  justify-content: center;
  margin-top: 0.5rem;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-hover));
  color: #1a1208;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  font-weight: 700; font-size: 1rem;
  box-shadow: 0 16px 40px var(--gold-glow);
  transition: 0.25s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 22px 50px var(--gold-glow); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent;
  color: var(--text-main);
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  font-weight: 600; font-size: 0.95rem;
  transition: 0.25s;
}
.btn-secondary:hover {
  border-color: var(--green-bright);
  color: var(--green-bright);
}

/* ---------- GALLERY (planos múltiples) ---------- */
.plan-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
  width: 100%;
}
.plan-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  overflow: hidden;
  display: flex; flex-direction: column;
  backdrop-filter: blur(8px);
}
.plan-card-image {
  background: #fff;
  aspect-ratio: 4/3;
  display: grid; place-items: center;
  padding: 0.6rem;
}
.plan-card-image img {
  max-height: 100%; width: auto; object-fit: contain;
}
.plan-card-caption { padding: 0.9rem 1rem 1.1rem; }
.plan-card-caption h4 { font-size: 0.95rem; margin-bottom: 0.2rem; font-weight: 700; }
.plan-card-caption p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.45; margin: 0; }

/* ---------- BOTTOM NAV ---------- */
.deck-nav {
  position: absolute; bottom: 0; left: 0; right: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem clamp(1rem, 3vw, 2.5rem);
  z-index: 30;
  pointer-events: none;
}
.deck-nav > * { pointer-events: auto; }
.deck-dots {
  display: flex; gap: 0.55rem;
  background: rgba(7,7,14,0.55);
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
}
.deck-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.25);
  transition: 0.25s;
  cursor: pointer;
}
.deck-dot.is-active {
  background: var(--primary);
  width: 24px; border-radius: 999px;
  box-shadow: 0 0 16px var(--gold-glow);
}
.deck-arrows { display: flex; gap: 0.5rem; }
.deck-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(7,7,14,0.55);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text-main);
  display: grid; place-items: center;
  transition: 0.2s;
  backdrop-filter: blur(8px);
}
.deck-arrow:hover:not(:disabled) {
  background: var(--primary); color: #1a1208;
  border-color: var(--primary);
  box-shadow: 0 0 24px var(--gold-glow);
}
.deck-arrow:disabled { opacity: 0.3; cursor: not-allowed; }
.deck-arrow .material-symbols-outlined { font-size: 1.4rem; }
.deck-counter {
  font-size: 0.8rem; color: var(--text-muted);
  letter-spacing: 0.12em;
  font-variant-numeric: tabular-nums;
  padding: 0 0.5rem;
}

/* ---------- WHATSAPP FLOAT ---------- */
.wa-float {
  position: absolute; right: clamp(1rem, 3vw, 2rem); bottom: 5.2rem;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 16px 32px rgba(37, 211, 102, 0.45);
  z-index: 25;
  transition: 0.25s;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 22px 46px rgba(37, 211, 102, 0.55); }
.wa-float svg { width: 26px; height: 26px; fill: #fff; }

/* ---------- KEYBOARD HINT ---------- */
.kbd-hint {
  position: absolute;
  bottom: 5.4rem; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 0.4rem; align-items: center;
  font-size: 0.72rem; color: rgba(255,255,255,0.4);
  letter-spacing: 0.06em;
  z-index: 20;
  pointer-events: none;
}
.kbd-hint kbd {
  font-family: "Manrope", sans-serif;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 6px;
  padding: 2px 6px;
  font-size: 0.72rem;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 720px) {
  .slide { padding: 4.5rem 1rem 6.5rem; }
  .deck-top { padding: 2.4rem 1rem 0; }
  .deck-nav { padding: 0.7rem 1rem; }
  .reveal-stage { height: 42vh; }
  .deck-arrow { width: 40px; height: 40px; }
  .kbd-hint { display: none; }
  .wa-float { bottom: 4.6rem; }
  .deck-logo img { height: 40px; }
}

@media (max-height: 640px) and (min-width: 721px) {
  .slide { padding-top: 4rem; padding-bottom: 5rem; }
  .reveal-stage { height: 38vh; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .slide, .slide.is-active .reveal,
  .reveal-stage img, .hotspot, .eyebrow .dot {
    animation: none !important;
    transition: opacity 0.25s ease !important;
    transform: none !important;
  }
  .slide { transform: none; }
}/* End custom CSS */