/* =========================================================
   Please Music — DJ premium para bodas en España
   Mobile-first (base 375px) · breakpoints min-width
   ========================================================= */

:root {
  --black: #000000;
  --black-2: #0a0a0a;
  --black-3: #141414;
  --white: #ffffff;
  --yellow: #ffb303;
  --yellow-2: #ffc233;
  --gray-1: #f5f5f5;
  --gray-2: #c4c4c4;
  --gray-3: #6e6e6e;
  --gray-4: #2a2a2a;

  --font-display: "Permanent Marker", "Bangers", "Anton", Impact, sans-serif;
  --font-body: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;

  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.18);
  --shadow-yellow: 0 8px 24px rgba(255, 179, 3, 0.35);

  --container-max: 1200px;
}

/* ---------- Reset / base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

h1, h2, h3, h4, h5 {
  margin: 0;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

p {
  margin: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 768px) {
  .container { padding: 0 32px; }
}

@media (min-width: 1024px) {
  .container { padding: 0 48px; }
}

/* ---------- Logo ---------- */
.logo-link {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 50;
  cursor: pointer;
  display: inline-block;
}

.brand-logo {
  width: 64px;
  height: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.6));
}

@media (min-width: 768px) {
  .logo-link { top: 24px; left: 32px; }
  .brand-logo { width: 88px; }
}

@media (min-width: 1024px) {
  .logo-link { top: 24px; left: 48px; }
  .brand-logo { width: 112px; }
}

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 16px;
}

.eyebrow--center {
  display: block;
  text-align: center;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border: 2px solid transparent;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-align: center;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
  box-shadow: var(--shadow-yellow);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--yellow-2);
  border-color: var(--yellow-2);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn--block { width: 100%; }
.btn--xl { min-height: 56px; padding: 0 28px; font-size: 16px; }
.btn--sm { min-height: 40px; padding: 0 16px; font-size: 13px; }

/* ---------- Section common ---------- */
section {
  padding: 64px 0;
}

@media (min-width: 768px) { section { padding: 88px 0; } }
@media (min-width: 1024px) { section { padding: 112px 0; } }

.section-title {
  font-size: 30px;
  line-height: 1.1;
  margin-bottom: 12px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) { .section-title { font-size: 42px; } }
@media (min-width: 1024px) { .section-title { font-size: 54px; } }

.section-sub {
  font-size: 16px;
  color: var(--gray-2);
  margin-bottom: 40px;
  max-width: 720px;
}

@media (min-width: 768px) { .section-sub { font-size: 18px; } }

.accent {
  color: var(--yellow);
}

.accent-brush {
  font-family: var(--font-display);
  color: var(--yellow);
  font-weight: 400;
  letter-spacing: 0.01em;
  display: inline-block;
  transform: rotate(-2deg);
  padding: 0 4px;
  font-size: 1.08em;
  line-height: 0.95;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 96px;
  padding-bottom: 48px;
  overflow: hidden;
  background: var(--black);
}

@media (min-width: 1024px) {
  .hero { padding-top: 120px; padding-bottom: 80px; }
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/hero-grupo.png");
  background-size: cover;
  background-position: center;
  filter: grayscale(0.2) contrast(1.05) brightness(0.65);
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.55) 40%, rgba(0,0,0,0.85) 100%),
    radial-gradient(60% 50% at 30% 30%, rgba(255, 179, 3, 0.12) 0%, transparent 60%);
  z-index: 1;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (min-width: 1024px) {
  .hero__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
  }
}

.hero__copy {
  flex: 1;
  max-width: 720px;
}

.hero__slogan {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.05;
  color: var(--white);
  margin: 0 0 14px;
  text-transform: none;
  transform: rotate(-1deg);
  letter-spacing: 0.01em;
}
.hero__slogan .accent-brush {
  color: var(--yellow);
  display: inline-block;
}

@media (min-width: 768px) { .hero__slogan { font-size: 28px; } }
@media (min-width: 1024px) { .hero__slogan { font-size: 32px; margin-bottom: 18px; } }

.hero__h1 {
  font-size: 46px;
  line-height: 1.0;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--white);
}

@media (min-width: 768px) { .hero__h1 { font-size: 68px; } }
@media (min-width: 1024px) { .hero__h1 { font-size: 84px; } }

.hero__sub {
  font-size: 16px;
  color: var(--gray-2);
  max-width: 560px;
  margin-bottom: 24px;
}

@media (min-width: 768px) { .hero__sub { font-size: 18px; } }

.hero__checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.hero__checks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--white);
}

.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  font-weight: 800;
  font-size: 13px;
  margin-top: 1px;
}

.hero__ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

@media (min-width: 480px) {
  .hero__ctas { flex-direction: row; flex-wrap: wrap; }
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: var(--gray-2);
  font-weight: 500;
}

/* ---------- Form card ---------- */
.hero__form-card {
  width: 100%;
  background: var(--white);
  color: var(--black);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-card);
}

@media (min-width: 1024px) {
  .hero__form-card {
    width: 420px;
    flex-shrink: 0;
    padding: 32px;
  }
}

.form__title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--black);
}

.form__sub {
  font-size: 14px;
  color: var(--gray-3);
  margin-bottom: 20px;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
}

.optional {
  color: var(--gray-3);
  font-weight: 400;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  font-size: 16px; /* >=16px evita zoom en iOS */
  font-family: var(--font-body);
  padding: 12px 14px;
  border: 1.5px solid #e0e0e0;
  border-radius: 12px;
  background: var(--white);
  color: var(--black);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  min-height: 48px;
}

.field textarea {
  resize: vertical;
  min-height: 88px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(255, 179, 3, 0.18);
}

.form__legal {
  font-size: 11.5px;
  color: var(--gray-3);
  text-align: center;
  margin-top: 4px;
}

.form__success {
  margin-top: 16px;
  padding: 16px;
  border-radius: 12px;
  background: #f0fff4;
  border: 1.5px solid #86efac;
  color: #14532d;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* hidden attribute siempre gana sobre display utilities */
[hidden] { display: none !important; }

/* =========================================================
   PAIN STATEMENT (cierre del bloque dolor con la promesa Please Music)
   ========================================================= */
.pain__statement {
  margin-top: 40px;
  padding: 28px 24px;
  border-left: 4px solid var(--yellow);
  background: rgba(255, 179, 3, 0.04);
  border-radius: 8px;
}

.pain__statement p {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.5;
  color: var(--white);
  margin: 0;
}

.pain__statement strong {
  color: var(--yellow);
  font-weight: 700;
}

@media (min-width: 768px) {
  .pain__statement {
    padding: 36px 40px;
  }
  .pain__statement p {
    font-size: 20px;
  }
}

/* =========================================================
   SECCIÓN NUESTROS DJs (peso real del negocio)
   ========================================================= */
.djs {
  background: var(--black-2);
  border-top: 1px solid var(--gray-4);
  border-bottom: 1px solid var(--gray-4);
  padding: 64px 0;
  position: relative;
}

@media (min-width: 1024px) {
  .djs { padding: 96px 0; }
}

.djs__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}

@media (min-width: 768px) {
  .djs__grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

.dj-card {
  background: var(--black-3);
  border: 1.5px solid var(--gray-4);
  border-radius: 8px;
  padding: 28px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.dj-card:hover {
  border-color: var(--yellow);
  transform: translateY(-2px);
}

.dj-card__header {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--gray-4);
}

.dj-card__name {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1;
  color: var(--white);
  margin: 0;
  transform: rotate(-1deg);
  display: inline-block;
}

.dj-card__years {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--yellow);
  font-weight: 700;
}

.dj-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dj-card__label {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-3);
  margin: 8px 0 2px;
  font-weight: 600;
}

.dj-card__label:first-child { margin-top: 0; }

.dj-card__venues {
  font-size: 15px;
  line-height: 1.5;
  color: var(--white);
  margin: 0;
}

.dj-card__quote {
  font-style: italic;
  color: var(--gray-2);
  font-size: 14px;
  margin: 12px 0 0;
  line-height: 1.5;
}

.djs__footnote {
  margin: 40px auto 0;
  max-width: 760px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--gray-2);
  font-style: italic;
}

@media (min-width: 768px) {
  .dj-card__name { font-size: 40px; }
  .djs__footnote { font-size: 18px; }
}

/* =========================================================
   LOGO SVG sin fondo (los tamaños vienen del .brand-logo de arriba)
   ========================================================= */

/* =========================================================
   POR QUÉ PLEASE MUSIC — bloque positivo + Línea Musical
   ========================================================= */
.why {
  background: var(--black);
  padding: 56px 0 64px;
  border-bottom: 1px solid var(--gray-4);
}

@media (min-width: 1024px) {
  .why { padding: 88px 0 96px; }
}

.why__statement {
  max-width: 760px;
  margin: 24px auto 56px;
  text-align: center;
}

.why__statement p {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--gray-2);
  margin: 0 0 14px;
}

.why__statement strong {
  color: var(--yellow);
  font-weight: 700;
}

@media (min-width: 768px) {
  .why__statement p { font-size: 19px; }
}

.why__line {
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--gray-4);
}

.why__sub-title {
  text-align: center;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 700;
  color: var(--white);
  margin: 8px auto 32px;
  max-width: 720px;
}

@media (min-width: 768px) {
  .why__sub-title { font-size: 32px; margin-bottom: 48px; }
}

.why__pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .why__pillars { grid-template-columns: 1fr 1fr; gap: 28px; }
}

.why__pillar {
  background: var(--black-3);
  border: 1.5px solid var(--gray-4);
  border-radius: 8px;
  padding: 28px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.why__pillar:hover {
  border-color: var(--yellow);
  transform: translateY(-2px);
}

.why__pillar-num {
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 1;
  color: var(--yellow);
  margin-bottom: 12px;
  transform: rotate(-2deg);
  display: inline-block;
}

.why__pillar h4 {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin: 4px 0 12px;
  line-height: 1.2;
}

.why__pillar p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--gray-2);
  margin: 0;
}

@media (min-width: 768px) {
  .why__pillar h4 { font-size: 24px; }
  .why__pillar p { font-size: 16px; }
}

/* =========================================================
   VIDEO SHOWCASE — Bloque emocional temprano (post-hero)
   ========================================================= */
.video-showcase {
  background: var(--black);
  padding: 56px 0 64px;
  position: relative;
  border-bottom: 1px solid var(--gray-4);
}

@media (min-width: 1024px) {
  .video-showcase { padding: 88px 0 96px; }
}

.video-showcase__bridge {
  margin: 28px auto 0;
  max-width: 640px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--gray-2);
  font-style: italic;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .video-showcase__bridge { font-size: 18px; }
}

/* =========================================================
   VIDEO GRID — facade lazy-load YouTube Shorts
   ========================================================= */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 32px 0 40px;
}

@media (min-width: 640px) {
  .video-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}

@media (min-width: 1024px) {
  .video-grid { grid-template-columns: repeat(5, 1fr); gap: 16px; }
}

/* Variante para 2 videos (testimonios): 2 columnas siempre, centradas, no estiradas */
.video-grid--two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 640px) {
  .video-grid--two { grid-template-columns: repeat(2, 1fr); max-width: 640px; }
}

@media (min-width: 1024px) {
  .video-grid--two { grid-template-columns: repeat(2, 1fr); max-width: 720px; }
}

.video-card {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  background: var(--black-3);
  border: 1.5px solid var(--gray-4);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.video-card:hover {
  border-color: var(--yellow);
  transform: translateY(-2px);
}

.video-card__thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  box-shadow: var(--shadow-yellow);
  pointer-events: none;
  padding-left: 4px;
  transition: transform 0.2s ease;
}

.video-card:hover .video-card__play { transform: translate(-50%, -50%) scale(1.1); }

.video-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-card__label {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: rgba(0, 0, 0, 0.75);
  color: var(--yellow);
  padding: 4px 10px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  z-index: 2;
  backdrop-filter: blur(4px);
}

/* Sub-bloques temáticos del Vídeo Showcase */
.video-section { margin-top: 48px; }
.video-section:first-of-type { margin-top: 32px; }

.video-section__title {
  font-size: 22px;
  line-height: 1.2;
  font-weight: 800;
  color: var(--white);
  margin: 0 0 6px;
}

.video-section__sub {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--gray-2);
  margin: 0 0 18px;
}

@media (min-width: 768px) {
  .video-section { margin-top: 64px; }
  .video-section__title { font-size: 28px; }
  .video-section__sub { font-size: 16px; margin-bottom: 22px; }
}

/* =========================================================
   ELEMENTO DISRUPTIVO VERTICAL (look&feel cliente reclama)
   ========================================================= */
.disruptive-vertical {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  height: 60%;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
  display: none;
}

@media (min-width: 1024px) {
  .disruptive-vertical { display: block; }
}

/* =========================================================
   PAIN
   ========================================================= */
.pain {
  background: var(--black-2);
  border-top: 1px solid var(--gray-4);
  border-bottom: 1px solid var(--gray-4);
}

.pain__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) { .pain__grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

.pain__card {
  background: var(--black-3);
  border: 1px solid var(--gray-4);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.pain__card:hover {
  transform: translateY(-3px);
  border-color: var(--yellow);
}

.pain__face {
  font-size: 28px;
  font-weight: 800;
  color: var(--yellow);
  margin-bottom: 14px;
  font-family: var(--font-display);
}

.pain__card h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--white);
}

.pain__card p {
  font-size: 15px;
  color: var(--gray-2);
}

/* =========================================================
   FEATURES
   ========================================================= */
.features {
  background: var(--black);
  text-align: center;
}

.features .section-sub {
  margin-left: auto;
  margin-right: auto;
}

.features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  text-align: left;
}

@media (min-width: 640px) { .features__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (min-width: 1024px) { .features__grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

.feature {
  background: var(--black-3);
  border: 1px solid var(--gray-4);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.feature:hover {
  transform: translateY(-3px);
  border-color: var(--yellow);
}

.feature__num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--yellow);
  margin-bottom: 12px;
}

.feature h3 {
  font-size: 19px;
  margin-bottom: 8px;
  color: var(--white);
}

.feature p {
  font-size: 14.5px;
  color: var(--gray-2);
  line-height: 1.55;
}

/* =========================================================
   HOW IT WORKS
   ========================================================= */
.how {
  background: var(--black-2);
  border-top: 1px solid var(--gray-4);
  border-bottom: 1px solid var(--gray-4);
  text-align: center;
}

.how .section-sub { margin-left: auto; margin-right: auto; }

.how__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  counter-reset: step;
  text-align: left;
}

@media (min-width: 1024px) { .how__steps { grid-template-columns: repeat(3, 1fr); gap: 32px; } }

.how__step {
  position: relative;
  background: var(--black-3);
  border: 1px solid var(--gray-4);
  border-radius: var(--radius);
  padding: 32px 24px;
}

.how__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: var(--shadow-yellow);
}

.how__step h3 {
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--white);
}

.how__step p {
  font-size: 15px;
  color: var(--gray-2);
}

/* =========================================================
   PROOF
   ========================================================= */
.proof {
  background: var(--black);
  text-align: center;
}

.proof__hero {
  margin: 0 auto 40px;
  max-width: 560px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.proof__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.proof__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  text-align: left;
  margin-bottom: 40px;
}

@media (min-width: 768px) { .proof__grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

.testimonial {
  background: var(--black-3);
  border: 1px solid var(--gray-4);
  border-left: 3px solid var(--yellow);
  border-radius: var(--radius);
  padding: 24px;
}

.testimonial__quote {
  font-size: 16px;
  font-style: italic;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.5;
}

.testimonial__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 13px;
  color: var(--gray-2);
}

.testimonial__meta strong {
  color: var(--yellow);
  font-weight: 600;
}

.proof__venues {
  margin-top: 24px;
  padding: 24px;
  border-top: 1px solid var(--gray-4);
}

.proof__venues-label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-2);
  margin-bottom: 12px;
}

.proof__venues-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--white);
  letter-spacing: 0.02em;
}

/* =========================================================
   SERVICE
   ========================================================= */
.service {
  background: var(--black-2);
  border-top: 1px solid var(--gray-4);
  border-bottom: 1px solid var(--gray-4);
}

.service__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

@media (min-width: 1024px) {
  .service__inner { grid-template-columns: 1.2fr 1fr; gap: 64px; }
}

.service__copy .section-title {
  margin-bottom: 16px;
}

.service__lead {
  font-size: 18px;
  color: var(--white);
  margin-bottom: 16px;
  font-weight: 500;
}

.service__body {
  font-size: 15.5px;
  color: var(--gray-2);
  margin-bottom: 28px;
  line-height: 1.6;
}

.service__art {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-card);
}

.service__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================================================
   FAQ
   ========================================================= */
.faq {
  background: var(--black);
  text-align: center;
}

.faq__list {
  max-width: 800px;
  margin: 32px auto 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background: var(--black-3);
  border: 1px solid var(--gray-4);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq__item[open] {
  border-color: var(--yellow);
}

.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 600;
  font-size: 16px;
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  position: relative;
}

.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary::after {
  content: "+";
  font-family: var(--font-display);
  color: var(--yellow);
  font-size: 24px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq__item[open] summary::after { content: "−"; }

.faq__item p {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--gray-2);
  line-height: 1.6;
}

/* =========================================================
   CTA FINAL
   ========================================================= */
.cta-final {
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-final__bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/img6249.png");
  background-size: cover;
  background-position: center;
  filter: grayscale(0.3) brightness(0.5);
  z-index: 0;
}

.cta-final__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.85) 100%),
    radial-gradient(60% 50% at 50% 30%, rgba(255, 179, 3, 0.18) 0%, transparent 60%);
  z-index: 1;
}

.cta-final__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.cta-final__title {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.1;
  max-width: 800px;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) { .cta-final__title { font-size: 48px; } }
@media (min-width: 1024px) { .cta-final__title { font-size: 60px; } }

.cta-final__sub {
  font-size: 16px;
  color: var(--gray-2);
  max-width: 600px;
}

@media (min-width: 768px) { .cta-final__sub { font-size: 18px; } }

.cta-final__ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 360px;
}

@media (min-width: 480px) {
  .cta-final__ctas { flex-direction: row; max-width: none; width: auto; }
}

.cta-final__trust {
  font-size: 13px;
  color: var(--gray-2);
  margin-top: 8px;
  letter-spacing: 0.04em;
}

/* =========================================================
   STICKY CTA BAR
   ========================================================= */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: var(--black);
  border-top: 2px solid var(--yellow);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.4);
  transform: translateY(100%);
  transition: transform 0.25s ease;
}

.sticky-cta.is-visible {
  transform: translateY(0);
}

.sticky-cta__text {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  flex: 1;
  min-width: 0;
}

@media (min-width: 768px) {
  .sticky-cta { padding: 14px 32px; }
  .sticky-cta__text { font-size: 15px; }
}

/* =========================================================
   WHATSAPP FLOAT
   ========================================================= */
.whatsapp-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 55;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: transform 0.15s ease, bottom 0.25s ease;
  cursor: pointer;
}

.whatsapp-float:hover { transform: scale(1.06); }

/* Subimos el WhatsApp cuando aparece la sticky bar */
body.sticky-active .whatsapp-float {
  bottom: 80px;
}

@media (min-width: 768px) {
  .whatsapp-float { right: 24px; bottom: 24px; width: 60px; height: 60px; }
  body.sticky-active .whatsapp-float { bottom: 88px; }
}

/* =========================================================
   REVEAL ANIM
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   A11Y / FOCUS
   ========================================================= */
:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =========================================================
   DUCK MASCOT (branding Please Music)
   ========================================================= */
.duck-mascot {
  display: inline-block;
  vertical-align: middle;
  margin-left: 8px;
  width: 36px;
  height: 36px;
  object-fit: contain;
  animation: duck-bob 2.4s ease-in-out infinite;
}

.eyebrow-duck {
  display: inline-block;
  vertical-align: middle;
  margin-right: 6px;
  width: 22px;
  height: 22px;
  object-fit: contain;
  animation: duck-bob 2.4s ease-in-out infinite;
}

.cta-final__duck {
  display: block;
  margin: 0 auto 24px;
  width: 80px;
  height: 80px;
  object-fit: contain;
  animation: duck-bob 2.4s ease-in-out infinite;
  filter: drop-shadow(0 8px 24px rgba(255, 179, 3, 0.35));
}

@keyframes duck-bob {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%      { transform: translateY(-6px) rotate(2deg); }
}

/* =========================================================
   FEATURE HERO (DJs como #1, peso del negocio)
   ========================================================= */
.feature--hero {
  background: linear-gradient(135deg, rgba(255, 179, 3, 0.08) 0%, rgba(255, 179, 3, 0) 100%);
  border: 2px solid var(--yellow);
  position: relative;
}

.feature--hero::before {
  content: "★ Lo que más nos piden";
  position: absolute;
  top: -12px;
  left: 16px;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
}

.feature--hero .feature__num {
  color: var(--yellow);
}

@media (min-width: 1024px) {
  .feature--hero {
    grid-column: span 2;
  }
  .feature--hero h3 {
    font-size: 28px;
  }
}

/* =========================================================
   BLOQUES CUADRADOS (feedback Alex 2026-05-08)
   reducción de border-radius para sensación más estructurada
   ========================================================= */
.pain__card,
.feature,
.testimonial,
.how__step,
.faq__item {
  border-radius: 8px !important;
}

.hero__form-card {
  border-radius: 12px !important;
}

.btn {
  border-radius: 6px !important;
}

.btn--block,
.btn--xl {
  border-radius: 8px !important;
}

/* =========================================================
   PARALLAX HERO (feedback Alex 2026-05-08)
   ========================================================= */
@media (min-width: 768px) {
  .hero__bg {
    background-attachment: fixed;
    will-change: transform;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
  html { scroll-behavior: auto; }
}
