/* ============================================
   QDS · Estilos comunes
   Quality Dance Studio · Mockups web
   ============================================ */

:root {
  --black: #000;
  --off-black: #0A0A0A;
  --purple: #5B2D8A;
  --purple-deep: #2A1140;
  --yellow: #F5C518;
  --white: #FFF;
  --gray: #A0A0A0;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Helvetica Neue', 'Inter', Arial, sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.4;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 {
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* Photo container — uses real photo via inline style background-image; gradient is fallback */
.photo {
  position: relative;
  overflow: hidden;
  background-color: #1a0820;
  background-size: cover;
  background-position: center;
}
.photo:not([style*="background-image"])::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(at 25% 30%, rgba(245,197,24,0.35) 0%, transparent 45%),
    radial-gradient(at 75% 70%, rgba(91,45,138,0.7) 0%, transparent 50%),
    linear-gradient(135deg, #2a0d4a 0%, #5B2D8A 40%, #1a0820 100%);
  z-index: 0;
}
.photo[style*="background-image"]::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
}
.photo > * { position: relative; z-index: 2; }
.photo-tag {
  position: absolute; bottom: 12px; right: 12px;
  background: rgba(0,0,0,0.7);
  color: var(--yellow);
  font-size: 10px; font-weight: 700;
  padding: 4px 8px; border-radius: 2px;
  letter-spacing: 0.1em; text-transform: uppercase;
  z-index: 5;
}

/* HEADER */
.mockup-banner {
  background: var(--yellow); color: #000;
  padding: 8px; text-align: center;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  position: sticky; top: 0; z-index: 1000;
}
.header {
  position: fixed; top: 0; left: 0; right: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(12px);
  z-index: 100;
  padding: 12px 24px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.logo {
  display: flex; align-items: center; gap: 12px;
  font-weight: 900; font-size: 13px; letter-spacing: 0.15em;
}
.logo-img { height: 48px; width: auto; display: block; }
.logo-shield {
  width: 32px; height: 38px;
  background: var(--purple);
  border: 2px solid var(--yellow);
  border-radius: 4px 4px 16px 16px;
  display: flex; align-items: center; justify-content: center;
  color: var(--yellow); font-weight: 900; font-size: 11px;
}
.logo-text-fallback { display: none; }
.nav { display: flex; gap: clamp(12px, 1.5vw, 28px); align-items: center; }
.nav a {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  opacity: 0.8;
  white-space: nowrap;
}
.nav a:hover { opacity: 1; color: var(--yellow); }
.nav a.active { opacity: 1; color: var(--yellow); }
.cta-header {
  background: var(--yellow); color: var(--black);
  padding: 10px 14px;
  font-weight: 800; font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}
.cta-header:hover { background: var(--white); }
@media (max-width: 1150px) {
  .nav { gap: 10px; }
  .nav a { font-size: 10px; letter-spacing: 0.04em; }
  .cta-header { padding: 9px 10px; font-size: 10px; letter-spacing: 0.04em; }
}
@media (max-width: 900px) {
  .nav a:not(.cta-header) { display: none; }
}

/* HERO — full bleed photo + minimal text */
.hero {
  height: 100vh; min-height: 700px;
  position: relative;
  display: flex; align-items: flex-end;
  padding: 0 48px 64px;
  overflow: hidden;
}
.hero .photo { position: absolute; inset: 0; z-index: 0; }
.hero-text {
  position: relative; z-index: 5;
  max-width: 1400px; margin: 0 auto; width: 100%;
}
.hero h1 {
  font-size: clamp(40px, 6.5vw, 110px);
  font-style: italic;
  margin-bottom: 32px;
  text-transform: uppercase;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
  max-width: 100%;
  word-break: break-word;
}
.hero h1 em { color: var(--yellow); font-style: italic; }
.hero-cta { display: flex; gap: 32px; align-items: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--yellow); color: var(--black);
  padding: 22px 38px;
  font-weight: 900; font-size: 13px;
  letter-spacing: 0.15em; text-transform: uppercase;
  border-radius: 0;
  transition: all 0.2s;
  display: inline-block;
}
.btn-primary:hover { background: var(--white); }
.btn-secondary {
  color: var(--white);
  font-weight: 700; font-size: 13px;
  letter-spacing: 0.15em; text-transform: uppercase;
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 4px;
}
.scroll-cue {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  color: var(--white); opacity: 0.5;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  animation: bounce 2s infinite;
  z-index: 5;
}
@keyframes bounce { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

/* PAGE HERO — variante más corta para sub-páginas */
.page-hero {
  height: 60vh; min-height: 480px;
  position: relative;
  display: flex; align-items: flex-end;
  padding: 80px 48px 64px;
  overflow: hidden;
}
.page-hero .photo { position: absolute; inset: 0; z-index: 0; }
.page-hero-text {
  position: relative; z-index: 5;
  max-width: 1400px; margin: 0 auto; width: 100%;
}
.page-hero-eyebrow {
  color: var(--yellow); font-size: 12px; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase;
  margin-bottom: 20px; display: block;
}
.page-hero h1 {
  font-size: clamp(44px, 7vw, 120px);
  font-style: italic;
  text-transform: uppercase;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
  max-width: 100%;
  word-break: break-word;
}
.page-hero h1 em { color: var(--yellow); font-style: italic; }
.page-hero p {
  font-size: 20px;
  color: rgba(255,255,255,0.9);
  max-width: 60ch;
  margin-top: 24px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* DISCIPLINAS */
.disciplines { display: grid; grid-template-columns: 1fr 1fr; min-height: 80vh; }
@media (max-width: 800px) { .disciplines { grid-template-columns: 1fr; } }
.discipline {
  position: relative; min-height: 600px;
  display: flex; align-items: flex-end;
  padding: 56px 48px;
  overflow: hidden;
  cursor: pointer;
}
.discipline:hover .photo { transform: scale(1.05); }
.discipline .photo {
  position: absolute; inset: 0; z-index: 0;
  transition: transform 0.6s;
}
.discipline-content { position: relative; z-index: 2; }
.discipline-num {
  color: var(--yellow); font-weight: 900;
  font-size: 14px; letter-spacing: 0.2em;
  margin-bottom: 16px;
}
.discipline h2 {
  font-size: clamp(40px, 5.5vw, 84px);
  font-style: italic;
  text-transform: uppercase;
  margin-bottom: 16px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.discipline-link {
  color: var(--yellow); font-weight: 700;
  font-size: 13px; letter-spacing: 0.15em; text-transform: uppercase;
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 4px;
  display: inline-block;
}
.discipline-styles {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin: 16px 0 24px;
  max-width: 480px;
}
.style-chip {
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(245,197,24,0.5);
  color: var(--white);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

/* MANIFESTO */
.manifesto {
  position: relative;
  min-height: 60vh;
  display: flex; align-items: center; justify-content: center;
  padding: 120px 48px;
  overflow: hidden;
}
.manifesto .photo { position: absolute; inset: 0; z-index: 0; }
.manifesto-content { position: relative; z-index: 5; text-align: center; }
.manifesto h2 {
  font-size: clamp(32px, 5vw, 76px);
  font-style: italic;
  text-transform: uppercase;
  max-width: 18ch;
  margin: 0 auto;
  text-shadow: 0 4px 30px rgba(0,0,0,0.6);
  line-height: 1.05;
}
.manifesto h2 em { color: var(--yellow); font-style: italic; }

/* PARA QUIEN */
.para-quien { background: var(--black); padding: 0; }
.pq-header { text-align: center; padding: 100px 48px 60px; }
.pq-eyebrow {
  color: var(--yellow); font-size: 12px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 16px; display: block;
}
.pq-header h2 {
  font-size: clamp(36px, 5vw, 64px);
  font-style: italic; text-transform: uppercase;
}
.pq-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 4px; }
@media (max-width: 900px) { .pq-grid { grid-template-columns: repeat(2, 1fr); } }
.pq-card { aspect-ratio: 4/5; position: relative; cursor: pointer; overflow: hidden; }
.pq-card .photo { position: absolute; inset: 0; transition: transform 0.5s; }
.pq-card:hover .photo { transform: scale(1.08); }
.pq-overlay {
  position: absolute; inset: 0; z-index: 3;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.85) 100%);
}
.pq-card .age {
  color: var(--yellow); font-size: 11px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  margin-bottom: 6px;
}
.pq-card .group {
  font-size: 32px; font-weight: 900;
  font-style: italic; text-transform: uppercase;
}

/* STEPS */
.steps { background: var(--off-black); padding: 140px 48px; text-align: center; }
.steps-eyebrow {
  color: var(--yellow); font-size: 12px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 16px; display: block;
}
.steps h2 {
  font-size: clamp(40px, 6vw, 80px);
  font-style: italic; text-transform: uppercase;
  margin-bottom: 80px;
}
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 64px;
  max-width: 1200px; margin: 0 auto;
}
@media (max-width: 800px) { .steps-grid { grid-template-columns: 1fr; } }
.step { text-align: center; }
.step-num {
  font-size: clamp(80px, 12vw, 140px);
  font-weight: 900; font-style: italic;
  color: var(--yellow);
  line-height: 1; margin-bottom: 16px;
}
.step h3 { font-size: 22px; font-style: italic; text-transform: uppercase; margin-bottom: 12px; }
.step p { color: var(--gray); font-size: 14px; max-width: 22ch; margin: 0 auto; }

/* STATS */
.stats {
  background: var(--black);
  padding: 100px 48px;
  border-top: 1px solid rgba(245,197,24,0.2);
  border-bottom: 1px solid rgba(245,197,24,0.2);
}
.stats-grid {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 32px; text-align: center;
}
@media (max-width: 900px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat-num {
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 900; font-style: italic;
  color: var(--yellow);
  line-height: 1; margin-bottom: 8px;
}
.stat-label {
  color: var(--gray); font-size: 11px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
}

/* PROFES */
.profes-section { background: var(--black); padding: 100px 0 0; }
.profes-header { text-align: center; padding: 0 48px 60px; }
.profes-header h2 {
  font-size: clamp(40px, 6vw, 80px);
  font-style: italic; text-transform: uppercase;
}
.profes-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0; }
@media (max-width: 900px) { .profes-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 500px) { .profes-grid { grid-template-columns: repeat(2, 1fr); } }
.profe { aspect-ratio: 1/1; position: relative; overflow: hidden; cursor: pointer; }
.profe .photo { position: absolute; inset: 0; transition: transform 0.5s; }
.profe:hover .photo { transform: scale(1.05); }
/* Anular el overlay oscuro del .photo global cuando es card de profe (las fotos ya tienen su contraste) */
.profe .photo[style*="background-image"]::after { background: transparent !important; }
.profe-name { display: none; }
.profe-star { display: none; }
.profes-cta { text-align: center; padding: 60px 48px; }
.profes-cta a {
  color: var(--yellow); font-weight: 700;
  font-size: 13px; letter-spacing: 0.15em; text-transform: uppercase;
  border-bottom: 2px solid var(--yellow); padding-bottom: 4px;
}

/* CURSO PRO */
.curso {
  position: relative; min-height: 90vh;
  display: flex; align-items: center;
  padding: 80px 48px;
  overflow: hidden;
}
.curso .photo { position: absolute; inset: 0; z-index: 0; }
.curso-content { position: relative; z-index: 5; max-width: 800px; }
.curso-eyebrow {
  color: var(--yellow); font-size: 12px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 24px; display: block;
}
.curso h2 {
  font-size: clamp(40px, 5.5vw, 84px);
  font-style: italic; text-transform: uppercase;
  margin-bottom: 32px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.curso p {
  font-size: 20px; color: rgba(255,255,255,0.95);
  max-width: 50ch; margin-bottom: 16px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.curso .highlight { color: var(--yellow); font-weight: 700; }

/* VISITA */
.visit { display: grid; grid-template-columns: 1fr 1fr; min-height: 600px; }
@media (max-width: 800px) { .visit { grid-template-columns: 1fr; } }
.visit-photo { position: relative; min-height: 400px; }
.visit-photo .photo { position: absolute; inset: 0; }
.visit-info {
  background: var(--black);
  padding: 80px 64px;
  display: flex; flex-direction: column; justify-content: center;
}
.visit-info h2 {
  font-size: clamp(40px, 5vw, 64px);
  font-style: italic; text-transform: uppercase;
  margin-bottom: 40px;
}
.visit-block { margin-bottom: 28px; }
.visit-block .label {
  color: var(--yellow); font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 6px; display: block;
}
.visit-block .value { font-size: 17px; line-height: 1.5; }
.contact-buttons { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.contact-btn {
  background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 14px 22px;
  font-weight: 700; font-size: 12px;
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: all 0.2s;
}
.contact-btn:hover { background: var(--yellow); color: var(--black); border-color: var(--yellow); }

/* FINAL CTA */
.final-cta {
  position: relative; min-height: 80vh;
  display: flex; align-items: center; justify-content: center;
  padding: 120px 48px; text-align: center;
  overflow: hidden;
}
.final-cta .photo { position: absolute; inset: 0; z-index: 0; }
.final-content { position: relative; z-index: 5; }
.final-cta h2 {
  font-size: clamp(48px, 7vw, 100px);
  font-style: italic; text-transform: uppercase;
  margin-bottom: 24px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.final-cta p {
  color: rgba(255,255,255,0.95); font-size: 18px;
  margin-bottom: 48px;
  letter-spacing: 0.1em;
}
.final-cta .btn-primary { font-size: 14px; padding: 26px 48px; }

/* FOOTER */
footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 80px 48px 40px;
}
.footer-grid {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
.footer-col h4 {
  color: var(--yellow); font-size: 11px; font-weight: 800;
  letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col a, .footer-col p {
  display: block; color: var(--gray); font-size: 13px;
  margin-bottom: 8px; line-height: 1.6;
}
.footer-col a:hover { color: var(--yellow); }
.footer-bottom {
  max-width: 1400px; margin: 0 auto;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  color: var(--gray); font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
}

/* ============================================
   ESTILOS ESPECÍFICOS — CLASES, HORARIOS, TARIFAS
   ============================================ */

/* Sección "elige tu camino" — 2 cards Urbano/Acrobacias en página de Clases */
.path {
  background: var(--black);
  padding: 120px 48px;
}
.path-header { text-align: center; margin-bottom: 60px; }
.path-header h2 {
  font-size: clamp(36px, 5vw, 64px);
  font-style: italic; text-transform: uppercase;
}
.path-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  max-width: 1400px; margin: 0 auto;
}
@media (max-width: 800px) { .path-grid { grid-template-columns: 1fr; } }
.path-card {
  position: relative; min-height: 540px;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 40px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s;
}
.path-card:hover { transform: translateY(-4px); }
.path-card .photo { position: absolute; inset: 0; z-index: 0; transition: transform 0.6s; }
.path-card:hover .photo { transform: scale(1.06); }
.path-card-content { position: relative; z-index: 5; }
.path-card .num {
  color: var(--yellow); font-weight: 900;
  font-size: 14px; letter-spacing: 0.2em;
  margin-bottom: 12px;
}
.path-card h3 {
  font-size: clamp(32px, 4vw, 56px);
  font-style: italic; text-transform: uppercase;
  margin-bottom: 12px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.path-card .description {
  color: rgba(255,255,255,0.9);
  font-size: 16px; line-height: 1.5;
  margin-bottom: 20px;
  max-width: 38ch;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

/* Bloques "info pills" — info clave en línea */
.info-strip {
  background: var(--off-black);
  padding: 48px 48px;
  border-top: 1px solid rgba(245,197,24,0.15);
  border-bottom: 1px solid rgba(245,197,24,0.15);
}
.info-strip-grid {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
}
@media (max-width: 800px) { .info-strip-grid { grid-template-columns: repeat(2, 1fr); } }
.info-pill {
  text-align: center;
}
.info-pill .icon {
  color: var(--yellow); font-size: 28px; margin-bottom: 12px;
}
.info-pill .label {
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 8px; display: block;
}
.info-pill .value {
  color: var(--white); font-size: 16px;
  font-weight: 600;
}

/* TABLA DE HORARIOS */
.schedule-section {
  background: var(--black);
  padding: 100px 48px;
}
.schedule-container {
  max-width: 1400px; margin: 0 auto;
}
.schedule-header {
  text-align: center; margin-bottom: 48px;
}
.schedule-header h2 {
  font-size: clamp(40px, 6vw, 80px);
  font-style: italic; text-transform: uppercase;
  margin-bottom: 16px;
}
.schedule-header p {
  color: var(--gray); font-size: 16px; max-width: 50ch; margin: 0 auto;
}
.schedule-filters {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 12px; margin-bottom: 48px;
}
.filter-btn {
  background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 12px 22px;
  font-weight: 700; font-size: 12px;
  letter-spacing: 0.12em; text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover { border-color: var(--yellow); color: var(--yellow); }
.filter-btn.active {
  background: var(--yellow); color: var(--black); border-color: var(--yellow);
}
.schedule-table-wrap { overflow-x: auto; }
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}
.schedule-table th {
  background: var(--purple-deep);
  color: var(--yellow);
  padding: 18px 14px;
  font-size: 12px; font-weight: 800;
  letter-spacing: 0.15em; text-transform: uppercase;
  text-align: left;
  border-bottom: 2px solid var(--yellow);
  position: sticky; top: 0;
}
.schedule-table th:first-child { width: 140px; }
.schedule-table td {
  padding: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  vertical-align: top;
  font-size: 14px;
}
.schedule-table tr:hover td { background: rgba(91,45,138,0.12); }
.schedule-table .time {
  color: var(--yellow); font-weight: 800;
  font-size: 13px; letter-spacing: 0.05em;
  white-space: nowrap;
}
.schedule-cell {
  display: block;
}
.schedule-cell .class-name {
  display: block;
  font-weight: 800; color: var(--white);
  font-size: 14px;
  margin-bottom: 4px;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.schedule-cell .class-meta {
  display: block;
  color: var(--gray); font-size: 12px;
  letter-spacing: 0.04em;
}
.schedule-cell.urbano { border-left: 3px solid var(--yellow); padding-left: 10px; }
.schedule-cell.acro { border-left: 3px solid var(--purple); padding-left: 10px; }
.schedule-cell.mix { border-left: 3px solid #00C2C7; padding-left: 10px; }
.schedule-cell.empty { color: rgba(255,255,255,0.2); font-style: italic; }
.legend {
  display: flex; flex-wrap: wrap; gap: 24px;
  justify-content: center; margin-top: 32px;
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gray);
}
.legend-item { display: flex; align-items: center; gap: 8px; }
.legend-dot {
  width: 12px; height: 12px; display: inline-block;
}
.legend-dot.urbano { background: var(--yellow); }
.legend-dot.acro { background: var(--purple); }
.legend-dot.mix { background: #00C2C7; }

/* TARIFAS */
.pricing {
  background: var(--off-black);
  padding: 120px 48px;
}
.pricing-container { max-width: 1300px; margin: 0 auto; }
.pricing-header { text-align: center; margin-bottom: 64px; }
.pricing-header h2 {
  font-size: clamp(40px, 6vw, 80px);
  font-style: italic; text-transform: uppercase;
  margin-bottom: 16px;
}
.pricing-header p {
  color: var(--gray); font-size: 17px; max-width: 50ch; margin: 0 auto;
}
.pricing-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
@media (max-width: 1000px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .pricing-grid { grid-template-columns: 1fr; } }
.price-card {
  background: var(--black);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 40px 28px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
}
.price-card:hover {
  border-color: var(--yellow);
  transform: translateY(-4px);
}
.price-card.featured {
  border: 2px solid var(--yellow);
  background: linear-gradient(160deg, rgba(91,45,138,0.25) 0%, var(--black) 60%);
}
.price-card.featured::before {
  content: 'Más popular';
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--yellow); color: var(--black);
  padding: 5px 14px;
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.2em; text-transform: uppercase;
}
.price-card .name {
  font-size: 14px; font-weight: 800;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 12px;
}
.price-card .frequency {
  font-size: 13px; color: var(--gray);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}
.price-card .amount {
  font-size: 64px; font-weight: 900;
  font-style: italic; color: var(--white);
  line-height: 1; margin-bottom: 4px;
}
.price-card .amount .currency {
  font-size: 28px; vertical-align: top; margin-right: 4px;
  color: var(--yellow);
}
.price-card .period {
  color: var(--gray); font-size: 12px;
  letter-spacing: 0.15em; text-transform: uppercase;
  margin-bottom: 32px;
}
.price-card ul {
  list-style: none; text-align: left;
  margin-bottom: 32px;
}
.price-card li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 13px; color: rgba(255,255,255,0.9);
  display: flex; align-items: flex-start; gap: 8px;
}
.price-card li::before {
  content: '✓'; color: var(--yellow); font-weight: 800;
}
.price-card li:last-child { border-bottom: 0; }
.price-card .btn-primary {
  width: 100%; padding: 16px;
  font-size: 12px;
}

/* Notas / fineprint */
.fineprint {
  max-width: 900px; margin: 64px auto 0;
  text-align: center;
  color: var(--gray);
  font-size: 13px; line-height: 1.7;
}
.fineprint a { color: var(--yellow); border-bottom: 1px solid var(--yellow); }

/* FAQ */
.faq {
  background: var(--black);
  padding: 100px 48px;
}
.faq-container { max-width: 880px; margin: 0 auto; }
.faq-header { text-align: center; margin-bottom: 56px; }
.faq-header h2 {
  font-size: clamp(36px, 5vw, 64px);
  font-style: italic; text-transform: uppercase;
}
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
}
.faq-item summary {
  cursor: pointer;
  font-size: 18px; font-weight: 700;
  letter-spacing: 0.02em;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  color: var(--yellow);
  font-size: 28px; font-weight: 300;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  margin-top: 14px;
  color: rgba(255,255,255,0.78); line-height: 1.6;
  font-size: 15px;
}
