/* ============================================================
   SoundFactoryBooking — Custom CSS
   Paleta: #DCFF31 (primary-container) / #010101 (bg) / #fff
   Tipografía: Oswald (display/headers) · Inter (body)
   ============================================================ */

/* ── Base ── */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Neón glow ── */
.neon-bloom {
  box-shadow: 0 0 28px rgba(220, 255, 49, 0.32), 0 4px 24px rgba(0, 0, 0, 0.4);
}
.neon-bloom-hover:hover {
  box-shadow: 0 0 48px rgba(220, 255, 49, 0.5), 0 8px 32px rgba(0, 0, 0, 0.35);
  transform: translateY(-2px);
}
.text-glow {
  text-shadow: 0 0 40px rgba(220, 255, 49, 0.35);
}

/* ── Botones ── */
.btn-primary {
  background: #DCFF31;
  color: #000;
  font-family: Oswald, sans-serif;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-primary:hover {
  background: #e8ff5a;
}
.btn-primary-lg {
  padding: 1.05rem 2.25rem;
  font-size: 0.7rem;
  min-width: 13.5rem;
}
@media (min-width: 640px) {
  .btn-primary-lg { padding: 1.15rem 2.5rem; }
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  font-family: Oswald, sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-secondary:hover {
  border-color: #DCFF31;
  color: #DCFF31;
  background: rgba(220, 255, 49, 0.06);
}

/* ── Section label & title ── */
.section-eyebrow::before {
  content: "";
  display: inline-block;
  width: 1.75rem;
  height: 2px;
  background: #DCFF31;
  margin-right: 0.65rem;
  vertical-align: middle;
}
.section-title {
  font-family: Oswald, sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
  font-size: clamp(1.65rem, 3.8vw, 2.65rem);
}
.section-header {
  margin-bottom: clamp(2.5rem, 5vw, 3.75rem);
}

/* ── Hero ── */
.hero-vignette {
  background:
    radial-gradient(ellipse 90% 80% at 15% 60%, rgba(1, 1, 1, 0.15), rgba(1, 1, 1, 0.92) 55%),
    linear-gradient(180deg, rgba(1, 1, 1, 0.5) 0%, rgba(1, 1, 1, 0.95) 100%);
}
.hero-content {
  max-width: min(36rem, 100%);
}
@media (min-width: 1024px) {
  .hero-content { max-width: 42rem; }
}
.hero-title { text-wrap: balance; }

/* Grid de fondo del hero */
.hero-grid-bg {
  background-image:
    linear-gradient(rgba(220, 255, 49, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(220, 255, 49, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 75%);
}

/* Pills de servicios del hero */
.pill-service {
  font-family: Inter, sans-serif;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease, border-color 0.2s ease;
}

/* ── Tarjetas de servicio ── */
.service-card {
  position: relative;
  overflow: hidden;
  transition: border-color 0.35s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, #DCFF31, transparent 70%);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45);
}
.service-card:hover::before { opacity: 1; }

.service-num {
  font-family: Oswald, sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: rgba(163, 163, 163, 0.55);
  padding: 0.35rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  line-height: 1;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.service-card:hover .service-num {
  color: #DCFF31;
  border-color: rgba(220, 255, 49, 0.35);
}
.icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border: 1px solid rgba(220, 255, 49, 0.2);
  background: rgba(220, 255, 49, 0.06);
  transition: all 0.35s ease;
}
.service-card:hover .icon-wrap {
  border-color: rgba(220, 255, 49, 0.5);
  background: rgba(220, 255, 49, 0.12);
}

/* ── Sección estudio: values list ── */
.values-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
@media (min-width: 640px) {
  .values-list { gap: 0.75rem; }
}
.value-card {
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.value-card:hover {
  border-color: rgba(220, 255, 49, 0.35);
  background: rgba(220, 255, 49, 0.04);
  transform: translateX(2px);
}
.value-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
  border: 1px solid rgba(220, 255, 49, 0.15);
  background: rgba(220, 255, 49, 0.05);
}

/* ── Proceso ── */
.process-step {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.5rem 1.35rem;
  border: 1px solid #2e2e2e;
  background: linear-gradient(165deg, #181818 0%, #121212 100%);
  transition: border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}
.process-step::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #DCFF31, transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.process-step:hover {
  border-color: rgba(220, 255, 49, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}
.process-step:hover::after { opacity: 1; }
.process-num {
  font-family: Oswald, sans-serif;
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(220, 255, 49, 0.22);
  margin-bottom: 0.75rem;
  transition: color 0.35s ease;
}
.process-step:hover .process-num { color: rgba(220, 255, 49, 0.7); }
.process-title {
  font-family: Oswald, sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
@media (min-width: 640px) {
  .process-title { font-size: 1.0625rem; }
}

/* ── Tarjetas equipo tipo póster ── */
.team-bg {
  will-change: opacity;
}

/* ── Contacto / Instagram CTA ── */
.instagram-cta-panel {
  border: 1px solid rgba(220, 255, 49, 0.22);
  background: linear-gradient(165deg, rgba(22, 22, 22, 0.98) 0%, rgba(12, 12, 12, 0.99) 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05),
    0 28px 72px rgba(0, 0, 0, 0.55),
    0 0 80px rgba(220, 255, 49, 0.06);
  text-align: center;
}
.btn-instagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
  max-width: 22rem;
  padding: 1.2rem 1.75rem;
  font-family: Oswald, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: #000;
  background: #DCFF31;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.btn-instagram:hover {
  background: #e8ff5a;
  box-shadow: 0 0 52px rgba(220, 255, 49, 0.55), 0 8px 32px rgba(0, 0, 0, 0.35);
  transform: translateY(-2px);
}
@media (min-width: 640px) {
  .btn-instagram { width: auto; min-width: 18rem; padding: 1.25rem 2.25rem; }
}

.dm-hints {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  margin: 1.5rem auto 1.75rem;
  max-width: 26rem;
  text-align: left;
}
@media (min-width: 640px) {
  .dm-hints { grid-template-columns: 1fr 1fr; max-width: 32rem; }
}
.dm-hints li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(163, 163, 163, 0.95);
  line-height: 1.45;
}
.dm-hints .material-symbols-outlined {
  font-size: 1.125rem;
  color: #DCFF31;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.contact-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  padding: 0.85rem 1rem;
  margin-top: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.3);
  font-size: 0.8125rem;
  color: rgba(163, 163, 163, 0.95);
}
.contact-trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.cta-secondary {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin-top: 1.25rem;
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.9rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: Inter, sans-serif;
  color: rgba(236, 236, 236, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
  cursor: pointer;
  min-height: 44px;
}
.btn-ghost:hover {
  border-color: rgba(220, 255, 49, 0.45);
  color: #DCFF31;
  background: rgba(220, 255, 49, 0.06);
}
.btn-ghost.is-copied {
  border-color: rgba(220, 255, 49, 0.5);
  color: #DCFF31;
}

/* ── Footer ── */
.footer-accent {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(220, 255, 49, 0.45), transparent);
}

/* ── Nav ── */
#mobile-menu {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
}
#mobile-menu.open {
  max-height: 30rem;
  opacity: 1;
}
nav.is-scrolled {
  background: rgba(1, 1, 1, 0.95);
  border-color: rgba(255, 255, 255, 0.08);
}
nav.is-scrolled .nav-inner {
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
}

/* Nav link active state */
.nav-link.is-active {
  color: #DCFF31;
}

/* ── Accesibilidad: reduce motion ── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .eq-bar { animation: none; } /* mantenido por compatibilidad, sin efecto */
}
