/* =========================================================
   Beats DJs — Sistema de diseño "GSAP neon"
   Void black · cream glow · acentos arcoíris · pills · plano sin sombras
   ========================================================= */

:root {
  /* Colores */
  --color-void-black:     #0e100f;
  --color-cream-glow:     #fffce1;
  --color-olive-stone:    #42433d;
  --color-ash-gray:       #7c7c6f;
  --color-pulse-green:    #0ae448;
  --gradient-pulse-green: linear-gradient(114.41deg, #0ae448 20.74%, #abff84 65.5%);
  --color-candy-pink:     #fec5fb;
  --color-ember-orange:   #ff8709;
  --color-electric-violet:#9d95ff;
  --color-signal-blue:    #00bae2;
  --color-lime-flash:     #abff84;

  --muted: #9a9a8c;             /* cream apagado para texto secundario legible */
  --accent: var(--color-pulse-green); /* acento por defecto (cada bloque lo redefine) */

  /* Tipografía */
  --font-mori: "Inter Tight", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Layout */
  --page-max-width: 1280px;
  --section-gap: 80px;
  --header-h: 70px;
  --radius-cards: 8px;
  --radius-full: 100px;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset / base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-mori);
  background: var(--color-void-black);
  color: var(--color-cream-glow);
  font-size: 18px;
  line-height: 1.38;
  letter-spacing: -0.18px;
  font-feature-settings: "ss01" on;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--color-pulse-green); color: var(--color-void-black); }

.container { width: 100%; max-width: var(--page-max-width); margin-inline: auto; padding-inline: 28px; }

.ic { width: 18px; height: 18px; fill: currentColor; flex: none; }
.ic--sm { width: 15px; height: 15px; }
.muted { color: var(--color-ash-gray); }

.accent-green {
  background: var(--gradient-pulse-green);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Tipografía de sección ---------- */
.eyebrow {
  font-size: 14px;
  line-height: 1.38;
  letter-spacing: -0.14px;
  color: var(--color-cream-glow);
  margin-bottom: 20px;
}

.band { border-top: 1px solid var(--color-olive-stone); }
.section { padding: clamp(64px, 9vw, 108px) 0; scroll-margin-top: var(--header-h); }

.section__head { max-width: 760px; margin: 0 auto clamp(44px, 6vw, 72px); }
.section__title {
  font-size: clamp(34px, 5.2vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 400;
}
.section__sub { color: var(--muted); margin-top: 20px; font-size: clamp(18px, 2vw, 21px); }

/* ---------- Botones (pill ghost) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.16px;
  padding: 11px 20px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-cream-glow);
  color: var(--color-cream-glow);
  background: transparent;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s, transform .25s var(--ease);
  white-space: nowrap;
}
.btn--primary:hover { background: var(--color-cream-glow); color: var(--color-void-black); transform: translateY(-2px); }
.btn--ghost:hover   { background: rgba(255, 252, 225, .08); transform: translateY(-2px); }
.btn--wa {
  border-color: var(--color-pulse-green);
  color: var(--color-pulse-green);
  justify-content: center;
}
.btn--wa:hover { background: var(--color-pulse-green); color: var(--color-void-black); }
.btn--sm { padding: 8px 16px; font-size: 14px; }
.btn--lg { padding: 15px 26px; font-size: 17px; }
.btn--block { width: 100%; }
.btn__ico {
  width: 26px; height: 26px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid currentColor;
  border-radius: var(--radius-full);
}
.btn__ico .ic { width: 15px; height: 15px; }

/* ---------- Banner superior ---------- */
.banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--color-pulse-green);
  color: var(--color-void-black);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.14px;
  text-align: center;
  padding: 7px 20px;
  transition: filter .25s;
}
.banner .ic { width: 16px; height: 16px; }
.banner:hover { filter: brightness(1.06); }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), border-color .3s;
}
.header.is-scrolled {
  background: rgba(14, 16, 15, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--color-olive-stone);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; width: 100%; }

.brand { display: inline-flex; align-items: center; }
.brand__logo { height: 30px; width: auto; display: block; }
.brand--footer .brand__logo { height: 28px; }

.nav { display: flex; align-items: center; gap: 28px; }
.nav__link {
  font-size: 16px;
  color: var(--color-cream-glow);
  position: relative;
  transition: color .2s;
}
.nav__link::after {
  content: "";
  position: absolute; left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--gradient-pulse-green);
  transition: width .3s var(--ease);
}
.nav__link:hover, .nav__link.is-active { font-weight: 600; }
.nav__link.is-active::after { width: 100%; }
.nav__cta { margin-left: 4px; }

.nav-toggle { display: none; width: 44px; height: 44px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--color-cream-glow); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Blobs de gradiente ---------- */
.blob {
  position: absolute;
  border-radius: 42% 58% 63% 37% / 41% 44% 56% 59%;
  background: var(--gradient-pulse-green);
  animation: morph 16s var(--ease) infinite;
}
.blob::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 32% 28%, rgba(255, 252, 225, .55), transparent 52%);
  mix-blend-mode: soft-light;
}
.blob--green  { background: linear-gradient(114.41deg, #0ae448 20%, #abff84 70%); }
.blob--pink   { background: linear-gradient(114.41deg, #fec5fb 12%, #9d95ff 92%); }
.blob--blue   { background: linear-gradient(114.41deg, #00bae2 12%, #9d95ff 92%); }
.blob--orange { background: linear-gradient(114.41deg, #ff8709 12%, #fec5fb 95%); }
@keyframes morph {
  0%   { border-radius: 42% 58% 63% 37% / 41% 44% 56% 59%; transform: rotate(0deg); }
  50%  { border-radius: 60% 40% 38% 62% / 52% 60% 40% 48%; transform: rotate(8deg); }
  100% { border-radius: 42% 58% 63% 37% / 41% 44% 56% 59%; transform: rotate(0deg); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: flex;
  align-items: center;
  padding: 60px 0;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.blob--hero1 { width: 360px; height: 360px; top: -40px; right: 6%; opacity: .9; }
.blob--hero2 { width: 180px; height: 180px; bottom: 8%; right: 30%; opacity: .8; animation-delay: -6s; }

.hero__inner { position: relative; z-index: 1; max-width: 960px; }
.hero__title {
  font-size: clamp(48px, 11vw, 132px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  font-weight: 400;
  margin-bottom: 28px;
}
.hero__lead { font-size: clamp(17px, 2vw, 21px); color: var(--color-cream-glow); max-width: 620px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 40px; }

.scroll-cue {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  width: 25px; height: 40px;
  border: 1.5px solid var(--color-olive-stone);
  border-radius: var(--radius-full);
  z-index: 1; display: flex; justify-content: center;
}
.scroll-cue span { width: 4px; height: 8px; background: var(--color-pulse-green); border-radius: 4px; margin-top: 7px; animation: cue 1.8s var(--ease) infinite; }
@keyframes cue { 0% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 100% { opacity: 0; transform: translateY(13px); } }

/* ---------- Cards (servicios) ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  border: 1px solid var(--color-olive-stone);
  border-radius: var(--radius-cards);
  padding: 28px 26px;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.card:hover { border-color: var(--accent); transform: translateY(-4px); }
.card__icon {
  display: inline-flex; width: 54px; height: 54px;
  align-items: center; justify-content: center;
  border: 1px solid var(--accent);
  border-radius: var(--radius-full);
  color: var(--accent);
  margin-bottom: 22px;
}
.card__icon svg { width: 26px; height: 26px; }
.card__title { font-size: clamp(24px, 3vw, 34px); line-height: 1.1; letter-spacing: -0.02em; font-weight: 400; color: var(--accent); margin-bottom: 12px; }
.card__text { color: var(--muted); font-size: 17px; }

/* ---------- Eventos ---------- */
.events { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.event { border: 1px solid var(--color-olive-stone); border-radius: var(--radius-cards); overflow: hidden; transition: border-color .3s var(--ease), transform .3s var(--ease); }
.event:hover { border-color: var(--accent); transform: translateY(-4px); }
.event__media { position: relative; height: 190px; overflow: hidden; border-bottom: 1px solid var(--color-olive-stone); }
.event__media .blob { width: 150%; height: 220%; top: -55%; left: -10%; opacity: .9; }
.event__body { padding: 24px 26px 28px; }
.event__title { font-size: clamp(24px, 3vw, 34px); line-height: 1.1; letter-spacing: -0.02em; font-weight: 400; color: var(--accent); margin-bottom: 12px; }
.event__text { color: var(--muted); font-size: 17px; margin-bottom: 20px; }
.event__list { display: grid; gap: 10px; }
.event__list li { display: flex; align-items: center; gap: 10px; font-size: 16px; color: var(--color-cream-glow); }
.event__list .ic { color: var(--accent); width: 17px; height: 17px; }

/* ---------- Nosotros ---------- */
.nosotros { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.nosotros__intro .btn { margin-top: 32px; }
.features { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 30px; }
.feature { display: flex; gap: 14px; }
.feature__ic {
  width: 32px; height: 32px; flex: none;
  display: grid; place-items: center;
  border: 1px solid var(--accent);
  border-radius: var(--radius-full);
  color: var(--accent);
  padding: 7px;
}
.feature h3 { font-size: 19px; font-weight: 600; margin-bottom: 3px; letter-spacing: -0.02em; }
.feature p { font-size: 16px; color: var(--muted); }

/* ---------- Proceso ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step { border: 1px solid var(--color-olive-stone); border-radius: var(--radius-cards); padding: 28px 24px; transition: border-color .3s; }
.step:hover { border-color: var(--accent); }
.step__num { display: block; font-size: clamp(44px, 5vw, 66px); line-height: 1; letter-spacing: -0.03em; font-weight: 400; color: var(--accent); margin-bottom: 14px; }
.step__title { font-size: 21px; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 8px; }
.step__text { font-size: 16px; color: var(--muted); }

/* ---------- Galería ---------- */
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); grid-auto-rows: 360px; gap: 16px; }
.tile {
  position: relative;
  border: 1px solid var(--color-olive-stone);
  border-radius: var(--radius-cards);
  overflow: hidden;
  display: flex; align-items: flex-end;
  padding: 18px;
  background:
    linear-gradient(160deg,
      color-mix(in srgb, var(--accent) 26%, var(--color-void-black)),
      var(--color-void-black) 78%);
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.tile__label { position: relative; z-index: 1; font-size: 16px; color: var(--color-cream-glow); }
.tile:hover { border-color: var(--accent); transform: translateY(-3px); }

/* ---------- Testimonios ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.quote { border: 1px solid var(--color-olive-stone); border-radius: var(--radius-cards); padding: 30px 28px; transition: border-color .3s; }
.quote:hover { border-color: var(--accent); }
.quote__stars { display: flex; gap: 4px; color: var(--accent); margin-bottom: 18px; }
.quote__stars .ic { width: 17px; height: 17px; }
.quote blockquote { font-size: 21px; line-height: 1.25; letter-spacing: -0.02em; color: var(--color-cream-glow); margin-bottom: 20px; }
.quote figcaption { display: flex; flex-direction: column; gap: 2px; }
.quote figcaption strong { font-weight: 600; }
.quote figcaption span { color: var(--accent); font-size: 14px; }

/* ---------- Contacto ---------- */
.contact { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(40px, 6vw, 72px); align-items: start; }
.contact__list { margin-top: 36px; display: grid; gap: 22px; }
.contact__list li { display: flex; align-items: center; gap: 16px; }
.contact__ic {
  width: 48px; height: 48px; flex: none;
  display: grid; place-items: center;
  border: 1px solid var(--accent);
  border-radius: var(--radius-full);
  color: var(--accent);
}
.contact__ic svg { width: 22px; height: 22px; fill: currentColor; }
.contact__k { display: block; font-size: 14px; color: var(--color-ash-gray); }
.contact__v { font-size: 18px; }
a.contact__v { transition: color .2s; }
a.contact__v:hover { color: var(--accent); }

.form { border: 1px solid var(--color-olive-stone); border-radius: var(--radius-cards); padding: clamp(26px, 3vw, 36px); display: grid; gap: 18px; }
.field { display: grid; gap: 8px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label { font-size: 14px; color: var(--color-ash-gray); }
.field input, .field select, .field textarea {
  width: 100%;
  background: transparent;
  border: 1px solid var(--color-olive-stone);
  border-radius: var(--radius-cards);
  padding: 13px 15px;
  color: var(--color-cream-glow);
  font-family: inherit;
  font-size: 17px;
  letter-spacing: -0.16px;
  transition: border-color .2s;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input::placeholder, .field textarea::placeholder { color: var(--color-ash-gray); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--color-cream-glow); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%237c7c6f' stroke-width='1.8'%3E%3Cpath d='m3 5 4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.field input[type="date"] { color-scheme: dark; }
.field.invalid input, .field.invalid select { border-color: var(--color-ember-orange); }
.form__hint { font-size: 14px; color: var(--color-ash-gray); text-align: center; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--color-olive-stone); padding-top: clamp(48px, 6vw, 76px); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; }
.brand--footer { margin-bottom: 16px; }
.footer__desc { color: var(--color-ash-gray); font-size: 16px; max-width: 320px; margin-bottom: 22px; }
.socials { display: flex; gap: 12px; }
.social {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border: 1px solid var(--color-olive-stone);
  border-radius: var(--radius-full);
  color: var(--color-cream-glow);
  transition: color .2s, border-color .2s, transform .2s;
}
.social svg { width: 19px; height: 19px; fill: currentColor; }
.social:hover { color: var(--color-pulse-green); border-color: var(--color-pulse-green); transform: translateY(-2px); }
.footer__col h4 { font-size: 14px; color: var(--color-cream-glow); margin-bottom: 18px; }
.footer__col a, .footer__zone { display: flex; align-items: center; gap: 8px; color: var(--color-ash-gray); font-size: 16px; padding-block: 5px; transition: color .2s; }
.footer__col a:hover { color: var(--color-cream-glow); }
.footer__col .ic { color: var(--color-pulse-green); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-block: 26px; border-top: 1px solid var(--color-olive-stone); color: var(--color-ash-gray); font-size: 14px; }
.footer__top { display: inline-flex; align-items: center; gap: 8px; color: var(--color-cream-glow); transition: color .2s; }
.footer__top:hover { color: var(--color-pulse-green); }
.footer__top .ic { transform: rotate(-90deg); width: 16px; height: 16px; }

/* ---------- Botón flotante WhatsApp ---------- */
.float-wa {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 56px; height: 56px;
  display: grid; place-items: center;
  background: var(--color-pulse-green);
  color: var(--color-void-black);
  border-radius: var(--radius-full);
  transition: transform .3s var(--ease);
}
.float-wa svg { width: 30px; height: 30px; fill: currentColor; }
.float-wa:hover { transform: scale(1.08); }

/* ---------- Animaciones de aparición ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .cards, .events, .quotes { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .nosotros { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: rgba(14, 16, 15, .98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--color-olive-stone);
    padding: 16px 28px 24px;
    transform: translateY(-10px);
    opacity: 0; visibility: hidden;
    transition: transform .3s var(--ease), opacity .3s, visibility .3s;
  }
  .nav.is-open { transform: none; opacity: 1; visibility: visible; }
  .nav__link { padding: 13px 4px; font-size: 18px; border-bottom: 1px solid var(--color-olive-stone); }
  .nav__link::after { display: none; }
  .nav__cta { margin: 14px 0 0; justify-content: center; }
  .nav-toggle { display: flex; }

  .contact { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  body { font-size: 17px; }
  .cards, .events, .quotes, .steps, .features { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .field-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .hero__actions .btn { flex: 1; justify-content: center; }
  .blob--hero1 { width: 220px; height: 220px; right: -30px; }
  .blob--hero2 { display: none; }
}

/* ---------- Accesibilidad ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
:focus-visible { outline: 2px solid var(--color-pulse-green); outline-offset: 3px; border-radius: 4px; }
