    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      /* Paleta de marca */
      --c-deep-rgb:    0, 47, 135;
      --c-blue-rgb:    42, 163, 220;   /* Azul más claro para mejor contraste */
      --c-sky-rgb:     116, 206, 228;
      --c-orange-rgb:  240, 133, 36;
      --c-magenta-rgb: 195, 1, 126;
      --c-purple-rgb:  0, 168, 96;     /* Verde en lugar de morado */
      --c-deep:    rgb(var(--c-deep-rgb));
      --c-blue:    rgb(var(--c-blue-rgb));
      --c-sky:     rgb(var(--c-sky-rgb));
      --c-orange:  rgb(var(--c-orange-rgb));
      --c-magenta: rgb(var(--c-magenta-rgb));
      --c-purple:  rgb(var(--c-purple-rgb));

      /* Acento por defecto (marca = azul vivo) */
      --accent-rgb: var(--c-blue-rgb);
      --accent: var(--c-blue);
      --accent2: var(--c-deep);
      --accent-light: var(--c-sky);

      --bg: #080c12;
      --bg2: #0d1420;
      --bg3: #111827;
      --card: #141e2e;
      --border: rgba(255,255,255,0.07);
      --text: #f0f4f8;
      --muted: #8a9ab5;
      --success: #22c55e;
      --gold: #f59e0b;
    }

    /* Tema por sección — cada servicio tiene su color */
    #escuela      { --accent-rgb: var(--c-blue-rgb);    --accent: var(--c-blue);    --accent2: var(--c-deep);    --accent-light: var(--c-sky); }
    #locales      { --accent-rgb: var(--c-sky-rgb);     --accent: var(--c-sky);     --accent2: var(--c-blue);    --accent-light: var(--c-sky); }
    #estudio      { --accent-rgb: var(--c-deep-rgb);    --accent: var(--c-blue);    --accent2: var(--c-deep);    --accent-light: var(--c-sky); }
    #conciertos   { --accent-rgb: var(--c-orange-rgb);  --accent: var(--c-orange);  --accent2: #c46300;          --accent-light: #ffa658; }
    #agrupaciones { --accent-rgb: var(--c-magenta-rgb); --accent: var(--c-magenta); --accent2: var(--c-purple);  --accent-light: #ff52b0; }
    #artistas     { --accent-rgb: var(--c-purple-rgb);  --accent: var(--c-purple);  --accent2: #007a45;          --accent-light: #4ade80; }
    #galeria      { --accent-rgb: var(--c-magenta-rgb); --accent: var(--c-magenta); --accent2: var(--c-magenta);  --accent-light: #ff52b0; }
    #faq          { --accent-rgb: var(--c-sky-rgb);     --accent: var(--c-sky);     --accent2: var(--c-blue);    --accent-light: var(--c-sky); }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
      overflow-x: hidden;
    }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }

    /* ── NAVBAR ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      background: rgba(8,12,18,0.92);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
      padding: 0 2rem;
      display: flex; align-items: center; justify-content: space-between;
      height: 64px;
    }
    .nav-logo {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 1.4rem; font-weight: 700; letter-spacing: -0.02em;
    }
    .nav-logo span { color: var(--accent); }
    .nav-links { display: flex; gap: 1.6rem; align-items: center; }
    .nav-links > .nav-item, .nav-links > a {
      font-size: 0.85rem; font-weight: 500; color: var(--muted);
      transition: color 0.2s;
      position: relative;
      display: flex; align-items: center; gap: 0.3rem;
      cursor: pointer;
      padding: 0.3rem 0;
    }
    .nav-links > .nav-item:hover, .nav-links > a:hover { color: var(--text); }
    .nav-item .caret {
      width: 8px; height: 8px;
      border-right: 1.5px solid currentColor;
      border-bottom: 1.5px solid currentColor;
      transform: rotate(45deg);
      margin-top: -3px; margin-left: 2px;
      transition: transform 0.2s;
    }
    .nav-item:hover .caret { transform: rotate(225deg); margin-top: 2px; }

    /* Dropdown */
    .nav-dropdown {
      position: absolute; top: calc(100% + 12px); left: 50%;
      transform: translateX(-50%) translateY(8px);
      min-width: 260px;
      background: rgba(15,22,34,0.98);
      backdrop-filter: blur(20px);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 0.6rem;
      opacity: 0; visibility: hidden;
      transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
      box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    }
    .nav-item:hover .nav-dropdown {
      opacity: 1; visibility: visible;
      transform: translateX(-50%) translateY(0);
    }
    .nav-dropdown::before {
      content: ''; position: absolute; top: -10px; left: 0; right: 0; height: 14px;
    }
    .nav-dropdown a {
      display: block; padding: 0.6rem 0.9rem;
      font-size: 0.85rem; font-weight: 500;
      color: var(--muted); border-radius: 6px;
      transition: background 0.15s, color 0.15s;
    }
    .nav-dropdown a:hover { background: rgba(var(--accent-rgb),0.12); color: var(--text); }
    .nav-dropdown a small {
      display: block; font-size: 0.72rem; color: #7a8aa3;
      margin-top: 0.1rem; font-weight: 400;
    }
    .nav-divider {
      height: 1px; background: var(--border);
      margin: 0.4rem 0.5rem;
    }

    .nav-cta {
      background: var(--accent); color: #000 !important;
      padding: 0.5rem 1.2rem; border-radius: 6px;
      font-weight: 600 !important; font-size: 0.85rem !important;
      transition: background 0.2s !important;
    }
    .nav-cta:hover { background: var(--accent-light) !important; color: #000 !important; }

    /* Mobile menu */
    .nav-toggle {
      display: none;
      background: none; border: none; color: var(--text);
      cursor: pointer; padding: 0.5rem;
    }
    .nav-toggle svg { width: 24px; height: 24px; }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      display: flex; flex-direction: column; justify-content: center;
      padding: 7rem 2rem 4rem;
      position: relative;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute; inset: 0; z-index: 0;
      background:
        url('./fotos/taf-es/c67ab112-7277-411b-a608-d7d14cc89d6e.jpg') center 30% / cover no-repeat,
        #080c12;
      filter: saturate(1.15);
      transform: scale(1.05);
      animation: heroKenBurns 18s ease-in-out infinite alternate;
    }
    @keyframes heroKenBurns {
      from { transform: scale(1.05) translateY(0); }
      to   { transform: scale(1.12) translateY(-1%); }
    }
    .hero-overlay {
      position: absolute; inset: 0; z-index: 0;
      background:
        radial-gradient(ellipse 100% 80% at 30% 40%, rgba(var(--accent-rgb),0.18) 0%, transparent 60%),
        linear-gradient(180deg, rgba(8,12,18,0.55) 0%, rgba(8,12,18,0.75) 60%, rgba(8,12,18,0.98) 100%),
        linear-gradient(90deg, rgba(8,12,18,0.85) 0%, rgba(8,12,18,0.35) 50%, rgba(8,12,18,0.5) 100%);
    }
    .hero-grid {
      position: absolute; inset: 0; z-index: 0; opacity: 0.06; mix-blend-mode: overlay;
      background-image:
        linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
      background-size: 60px 60px;
    }
    .hero-inner {
      position: relative; z-index: 1;
      max-width: 1200px; margin: 0 auto; width: 100%;
    }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: rgba(var(--accent-rgb),0.1); border: 1px solid rgba(var(--accent-rgb),0.25);
      color: var(--accent); padding: 0.35rem 0.9rem; border-radius: 99px;
      font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em;
      text-transform: uppercase; margin-bottom: 1.8rem;
    }
    .hero-badge::before { content: '●'; font-size: 0.5rem; animation: pulse 2s infinite; }
    @keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

    .hero h1 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: clamp(3.4rem, 10vw, 8rem);
      font-weight: 900; line-height: 0.92;
      letter-spacing: -0.04em; margin-bottom: 1.8rem;
      text-shadow: 0 4px 40px rgba(0,0,0,0.6);
      text-transform: uppercase;
    }
    .hero h1 em {
      font-style: normal;
      background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 50%, var(--accent2) 100%);
      -webkit-background-clip: text; background-clip: text;
      -webkit-text-fill-color: transparent;
      filter: drop-shadow(0 0 30px rgba(var(--accent-rgb),0.4));
    }
    .hero-sub {
      font-size: clamp(1.05rem, 2.5vw, 1.35rem);
      color: #cdd6e3; max-width: 620px;
      margin-bottom: 2.5rem; line-height: 1.65;
      text-shadow: 0 2px 20px rgba(0,0,0,0.6);
      font-weight: 400;
    }
    .hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 4rem; }
    .btn {
      display: inline-flex; align-items: center; gap: 0.5rem;
      padding: 0.85rem 1.8rem; border-radius: 8px;
      font-size: 0.95rem; font-weight: 600; cursor: pointer;
      border: none; transition: all 0.2s;
    }
    .btn-primary { background: var(--accent); color: #000; }
    .btn-primary:hover { background: var(--accent-light); transform: translateY(-1px); }
    .btn-outline {
      background: transparent; color: var(--text);
      border: 1px solid rgba(255,255,255,0.2);
    }
    .btn-outline:hover { border-color: var(--accent); color: var(--accent); }

    .hero-stats {
      display: flex; gap: 3rem; flex-wrap: wrap;
      padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.15);
      backdrop-filter: blur(6px);
    }
    .hero-stat-n {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 2.4rem; font-weight: 800; color: var(--accent); line-height: 1;
      text-shadow: 0 0 30px rgba(var(--accent-rgb),0.4);
    }
    .hero-stat-l { font-size: 0.8rem; color: #cdd6e3; margin-top: 0.3rem; font-weight: 500; }

    /* ── MARQUEE ── */
    .marquee-wrap {
      background: var(--accent); padding: 0.85rem 0; overflow: hidden;
      border-top: none;
    }
    .marquee-track {
      display: flex; gap: 0; white-space: nowrap;
      animation: marquee 28s linear infinite;
    }
    @keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }
    .marquee-item {
      display: inline-flex; align-items: center; gap: 1rem;
      padding: 0 2rem;
      font-size: 0.82rem; font-weight: 700; letter-spacing: 0.1em;
      text-transform: uppercase; color: #000;
    }
    .marquee-dot { width: 5px; height: 5px; background: rgba(0,0,0,0.4); border-radius: 50%; }

    /* ── SECTIONS ── */
    section { padding: 6rem 2rem; }
    .section-inner { max-width: 1200px; margin: 0 auto; }
    .section-label {
      font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em;
      text-transform: uppercase; color: var(--accent); margin-bottom: 1rem;
      display: inline-flex; align-items: center; gap: 0.7rem;
      padding-left: 0.9rem; position: relative;
    }
    .section-label::before {
      content: ''; position: absolute; left: 0; top: 50%;
      width: 3px; height: 18px; transform: translateY(-50%);
      background: linear-gradient(180deg, var(--accent) 0%, transparent 100%);
      border-radius: 2px;
    }

    /* Section transition gradient */
    section { position: relative; }
    section + section::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08) 30%, rgba(var(--accent-rgb),0.3) 50%, rgba(255,255,255,0.08) 70%, transparent);
      z-index: 2;
    }

    /* IDENTIDAD VISUAL POR SECCIÓN — fondo tintado + glow superior */
    section[id="escuela"],
    section[id="locales"],
    section[id="estudio"],
    section[id="conciertos"],
    section[id="agrupaciones"],
    section[id="artistas"],
    section[id="galeria"],
    section[id="faq"],
    section[id="contacto"] {
      background:
        radial-gradient(ellipse 70% 35% at 50% 0%, rgba(var(--accent-rgb), 0.10), transparent 70%),
        radial-gradient(ellipse 50% 30% at 50% 100%, rgba(var(--accent-rgb), 0.05), transparent 70%),
        var(--bg);
    }
    section[id="locales"], section[id="artistas"], section[id="faq"], section[id="conciertos"] {
      background:
        radial-gradient(ellipse 70% 35% at 50% 0%, rgba(var(--accent-rgb), 0.12), transparent 70%),
        radial-gradient(ellipse 50% 30% at 50% 100%, rgba(var(--accent-rgb), 0.06), transparent 70%),
        var(--bg2);
    }

    /* Línea glow en la parte superior de cada sección temática */
    section[id]::after {
      content: '';
      position: absolute; top: 0; left: 15%; right: 15%; height: 2px;
      background: linear-gradient(90deg,
        transparent 0%,
        rgba(var(--accent-rgb), 0.4) 30%,
        rgba(var(--accent-rgb), 0.9) 50%,
        rgba(var(--accent-rgb), 0.4) 70%,
        transparent 100%);
      box-shadow: 0 0 20px rgba(var(--accent-rgb), 0.6);
      pointer-events: none;
      z-index: 1;
    }

    /* SPOTLIGHTS — beams estilo escenario, decorativos */
    .spotlights {
      position: absolute; top: 0; left: 0; right: 0; height: 60%;
      pointer-events: none; overflow: hidden; opacity: 0.5;
      z-index: 0;
    }
    .spotlights::before, .spotlights::after {
      content: ''; position: absolute; top: -10%; height: 130%;
      width: 30%; opacity: 0.4;
      transform-origin: top center;
      filter: blur(40px);
    }
    .spotlights::before {
      left: 15%;
      background: linear-gradient(180deg, rgba(var(--c-blue-rgb), 0.5) 0%, transparent 80%);
      transform: skewX(-12deg);
    }
    .spotlights::after {
      right: 15%;
      background: linear-gradient(180deg, rgba(var(--c-magenta-rgb), 0.4) 0%, transparent 80%);
      transform: skewX(12deg);
    }
    .spotlights .beam-3 {
      position: absolute; top: -10%; left: 50%; height: 130%;
      width: 25%; opacity: 0.35;
      background: linear-gradient(180deg, rgba(var(--c-orange-rgb), 0.4) 0%, transparent 80%);
      transform: translateX(-50%);
      filter: blur(40px);
    }

    /* Stronger card shadows for depth */
    .prog-card, .group-card, .phil-card, .award-card, .price-card {
      box-shadow: 0 1px 0 rgba(255,255,255,0.03) inset;
    }
    .section-title {
      font-family: 'Space Grotesk', sans-serif;
      font-size: clamp(2.2rem, 5.5vw, 3.8rem);
      font-weight: 800; line-height: 1.0;
      letter-spacing: -0.03em; margin-bottom: 1.2rem;
    }
    .section-title em {
      font-style: normal;
      background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent2) 100%);
      -webkit-background-clip: text; background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .section-desc {
      color: var(--muted); max-width: 620px; font-size: 1.05rem; line-height: 1.7;
      margin-bottom: 3rem;
    }

    /* Theme text helper — gradiente automático por sección */
    .theme-text, .prog-card h3, .group-card h4,
    .award-title, .phil-card h4 {
      background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
      -webkit-background-clip: text; background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    /* En secciones sin tema (premios, cómo llegar) sigue blanco */
    section:not([id]) .award-title,
    section:not([id]) .phil-card h4 {
      background: none; -webkit-text-fill-color: initial; color: var(--text);
    }

    /* Links en sección heredan color de sección */
    section[id] p a, section[id] li a, section[id] .faq-answer a {
      color: var(--accent);
      text-decoration: underline;
      text-decoration-color: rgba(var(--accent-rgb), 0.4);
      text-underline-offset: 3px;
      transition: text-decoration-color 0.2s;
    }
    section[id] p a:hover, section[id] li a:hover, section[id] .faq-answer a:hover {
      text-decoration-color: var(--accent);
    }

    /* Checks en local-option-features tomarán el color de la sección */
    .local-option-features span {
      position: relative; padding-left: 1.5rem;
    }
    .local-option-features span::before {
      content: '✓'; position: absolute; left: 0; top: 0;
      color: var(--accent); font-weight: 800; font-size: 1rem;
    }
    .local-option-features span:first-child::before { content: '✓'; }

    /* ── PROGRAMA CARDS ── */
    .programs-grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
    }
    .prog-card {
      background: var(--card); border: 1px solid var(--border);
      border-radius: 16px; padding: 2rem;
      transition: all 0.3s; position: relative; overflow: hidden;
    }
    .prog-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(90deg, var(--accent), transparent);
      opacity: 0; transition: opacity 0.3s;
    }
    .prog-card:hover {
      border-color: rgba(var(--accent-rgb),0.4);
      transform: translateY(-6px);
      box-shadow: 0 20px 50px -20px rgba(var(--accent-rgb),0.25);
    }
    .prog-card:hover::before { opacity: 1; }
    .prog-icon { font-size: 2.2rem; margin-bottom: 1rem; }
    .prog-img {
      height: 180px;
      margin: -2rem -2rem 1.5rem -2rem;
      overflow: hidden;
      position: relative;
      background: linear-gradient(135deg, #0d1420, #141e2e);
    }
    .prog-img img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
      display: block;
    }
    .prog-card:hover .prog-img img { transform: scale(1.06); }
    .prog-img::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(180deg, transparent 55%, rgba(8,12,18,0.7) 100%);
      pointer-events: none;
    }
    .group-img {
      height: 150px;
      margin: -1.5rem -1.5rem 1rem -1.5rem;
      overflow: hidden;
      position: relative;
      background: linear-gradient(135deg, #0d1420, #141e2e);
    }
    .group-img img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
      display: block;
    }
    .group-card:hover .group-img img { transform: scale(1.06); }
    .group-img::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(180deg, transparent 55%, rgba(8,12,18,0.7) 100%);
      pointer-events: none;
    }
    /* SVG icons */
    .svg-icon {
      width: 22px; height: 22px;
      stroke: currentColor; stroke-width: 1.8;
      fill: none; stroke-linecap: round; stroke-linejoin: round;
      flex-shrink: 0;
    }
    .svg-icon.lg { width: 28px; height: 28px; }
    .svg-icon.sm { width: 18px; height: 18px; }
    .prog-card h3 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 1.15rem; font-weight: 600; margin-bottom: 0.5rem;
    }
    .prog-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }
    .prog-tag {
      display: inline-block; margin-top: 1rem;
      background: rgba(var(--accent-rgb),0.1); color: var(--accent);
      border: 1px solid rgba(var(--accent-rgb),0.2);
      padding: 0.25rem 0.7rem; border-radius: 99px; font-size: 0.75rem; font-weight: 600;
    }

    /* ── LOCALES: 3 OPCIONES ── */
    .locales-options {
      display: grid; grid-template-columns: 1fr 1fr 1fr;
      gap: 1.5rem; margin-bottom: 3rem;
    }
    .local-option {
      background: var(--card); border: 1px solid var(--border);
      border-radius: 20px; overflow: hidden;
      display: flex; flex-direction: column;
      transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
      position: relative;
    }
    .local-option:hover {
      transform: translateY(-8px);
      border-color: rgba(var(--accent-rgb),0.4);
      box-shadow: 0 30px 60px -25px rgba(var(--accent-rgb),0.3);
    }
    .local-option.featured {
      border-color: rgba(var(--accent-rgb),0.5);
      background: linear-gradient(180deg, rgba(var(--accent-rgb),0.04) 0%, var(--card) 100%);
      box-shadow: 0 0 40px -15px rgba(var(--accent-rgb),0.3);
    }
    .local-option.featured::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, transparent, var(--accent), transparent);
    }
    .local-option-img {
      position: relative;
      height: 220px; overflow: hidden;
      background: #0a0e16;
    }
    .local-option-img img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform 0.6s ease;
    }
    .local-option:hover .local-option-img img { transform: scale(1.06); }
    .local-option-img::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(180deg, rgba(8,12,18,0.3) 0%, transparent 30%, rgba(8,12,18,0.5) 100%);
    }
    .local-option-num {
      position: absolute; top: 1rem; left: 1.2rem;
      font-family: 'Space Grotesk', sans-serif;
      font-size: 2.4rem; font-weight: 800;
      color: rgba(255,255,255,0.9);
      text-shadow: 0 4px 20px rgba(0,0,0,0.6);
      letter-spacing: -0.04em; line-height: 1;
      z-index: 1;
    }
    .local-option-tag {
      position: absolute; top: 1.2rem; right: 1.2rem; z-index: 1;
      font-size: 0.7rem; font-weight: 700;
      text-transform: uppercase; letter-spacing: 0.08em;
      background: rgba(8,12,18,0.7);
      backdrop-filter: blur(10px);
      color: #cdd6e3;
      padding: 0.35rem 0.8rem; border-radius: 99px;
      border: 1px solid rgba(255,255,255,0.15);
    }
    .local-option-tag.tag-accent {
      background: var(--accent);
      color: #000;
      border-color: var(--accent);
      box-shadow: 0 4px 16px rgba(var(--accent-rgb),0.4);
    }
    .local-option-body {
      padding: 1.8rem;
      display: flex; flex-direction: column; flex: 1;
      gap: 1.2rem;
    }
    .local-option-body h3 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 1.5rem; font-weight: 700; line-height: 1.1;
      letter-spacing: -0.02em;
    }
    .local-option-body h3 em {
      font-style: normal;
      background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent2) 100%);
      -webkit-background-clip: text; background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .local-option-body p { color: var(--muted); font-size: 0.9rem; line-height: 1.6; }

    .local-option-price {
      background: rgba(var(--accent-rgb),0.05);
      border: 1px solid rgba(var(--accent-rgb),0.15);
      border-radius: 12px;
      padding: 1rem 1.2rem;
    }
    .local-option.featured .local-option-price {
      background: rgba(var(--accent-rgb),0.1);
      border-color: rgba(var(--accent-rgb),0.3);
    }
    .price-from {
      font-size: 0.7rem; font-weight: 700;
      text-transform: uppercase; letter-spacing: 0.08em;
      color: var(--muted); margin-bottom: 0.2rem;
    }
    .price-amount {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 2rem; font-weight: 800;
      color: var(--accent); line-height: 1;
    }
    .price-amount small {
      font-size: 0.9rem; font-weight: 600;
      color: var(--muted); margin-left: 0.2rem;
    }
    .price-detail {
      font-size: 0.78rem; color: var(--muted);
      margin-top: 0.4rem;
    }

    .local-option-features {
      display: flex; flex-direction: column; gap: 0.4rem;
      flex: 1;
    }
    .local-option-features span {
      font-size: 0.85rem; color: #cdd6e3;
    }

    /* Espacio extra (danza) */
    .local-extra {
      display: flex; gap: 1.2rem; align-items: center;
      background: var(--card); border: 1px solid var(--border);
      border-radius: 14px; padding: 1.5rem 1.8rem;
      margin-bottom: 3rem;
    }
    .local-extra-icon {
      flex-shrink: 0;
      width: 56px; height: 56px;
      background: rgba(var(--accent-rgb),0.1);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
    }
    .local-extra > div:nth-child(2) { flex: 1; }
    @media (max-width: 900px) {
      .locales-options { grid-template-columns: 1fr; }
      .local-extra { flex-direction: column; text-align: center; }
    }

    /* ── ESPACIOS / LOCALES ── */
    .spaces-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 2rem; margin-bottom: 3rem;
    }
    .space-main {
      background: var(--card); border: 1px solid var(--border);
      border-radius: 20px; overflow: hidden;
      display: flex; flex-direction: column;
    }
    .space-img-wrap {
      height: 260px; overflow: hidden;
      background: linear-gradient(135deg, #0d1420, #141e2e);
      display: flex; align-items: center; justify-content: center;
      font-size: 5rem;
    }
    .space-body { padding: 1.8rem; flex: 1; }
    .space-body h3 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 1.3rem; font-weight: 600; margin-bottom: 0.5rem;
    }
    .space-body p { color: var(--muted); font-size: 0.9rem; margin-bottom: 1.2rem; }
    .space-features { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.5rem; }
    .space-feat {
      display: flex; align-items: center; gap: 0.5rem;
      font-size: 0.85rem; color: var(--muted);
    }
    .space-feat::before { content: '✓'; color: var(--accent); font-weight: 700; }

    /* ── PRICING TABLE ── */
    .pricing-section { background: var(--bg2); }
    .pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
    .price-card {
      background: var(--card); border: 1px solid var(--border);
      border-radius: 20px; padding: 2rem; overflow: hidden;
    }
    .price-card.premium { border-color: rgba(var(--accent-rgb),0.4); }
    .price-badge {
      display: inline-block; padding: 0.3rem 0.8rem; border-radius: 99px;
      font-size: 0.75rem; font-weight: 700; letter-spacing: 0.06em;
      text-transform: uppercase; margin-bottom: 1.2rem;
    }
    .price-badge.std { background: rgba(255,255,255,0.07); color: var(--muted); }
    .price-badge.prem { background: rgba(var(--accent-rgb),0.15); color: var(--accent); }
    .price-card h3 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 1.4rem; font-weight: 700; margin-bottom: 0.3rem;
    }
    .price-card .desc { color: var(--muted); font-size: 0.9rem; margin-bottom: 1.5rem; }
    .price-rows { display: flex; flex-direction: column; gap: 0; }
    .price-row {
      display: flex; justify-content: space-between; align-items: center;
      padding: 0.9rem 0; border-bottom: 1px solid var(--border);
    }
    .price-row:last-child { border-bottom: none; }
    .price-hours { font-weight: 600; font-size: 0.95rem; }
    .price-total {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 1.3rem; font-weight: 700; color: var(--accent);
    }
    .price-ph { font-size: 0.78rem; color: var(--muted); }
    .price-note {
      margin-top: 1.2rem; padding: 0.8rem 1rem;
      background: rgba(255,255,255,0.04); border-radius: 8px;
      font-size: 0.82rem; color: var(--muted);
    }

    /* ── HORARIOS ── */
    .horarios-bar {
      display: flex; gap: 1rem; margin-bottom: 2rem; flex-wrap: wrap;
    }
    .horario-pill {
      display: flex; align-items: center; gap: 0.75rem;
      background: var(--card); border: 1px solid var(--border);
      border-radius: 10px; padding: 1rem 1.5rem;
    }
    .horario-pill .icon { font-size: 1.5rem; }
    .horario-pill .info .days { font-weight: 600; font-size: 0.9rem; }
    .horario-pill .info .time { color: var(--accent); font-size: 0.85rem; font-weight: 500; }

    /* ── AGRUPACIONES ── */
    .groups-grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 1rem;
    }
    .group-card {
      background: var(--card); border: 1px solid var(--border);
      border-radius: 14px; padding: 1.5rem;
      transition: all 0.25s;
    }
    .group-card:hover { border-color: rgba(var(--accent-rgb),0.3); }
    .group-card .icon { font-size: 2rem; margin-bottom: 0.8rem; }
    .group-card h4 { font-weight: 600; margin-bottom: 0.4rem; font-size: 1rem; }
    .group-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.5; }
    .group-open {
      margin-top: 0.8rem; font-size: 0.75rem; font-weight: 600;
      color: var(--accent); letter-spacing: 0.04em;
    }

    /* ── FILOSOFIA ── */
    .philosophy-grid {
      display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.5rem;
    }
    .phil-card {
      background: var(--card); border: 1px solid var(--border);
      border-radius: 16px; padding: 2rem; text-align: center;
    }
    .phil-card .num {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 3rem; font-weight: 700; color: var(--accent);
      opacity: 0.3; line-height: 1; margin-bottom: 1rem;
    }
    .phil-card h4 { font-weight: 600; margin-bottom: 0.5rem; }
    .phil-card p { font-size: 0.875rem; color: var(--muted); }

    /* ── ARTISTAS ── */
    .artists-section { background: var(--bg); overflow: hidden; padding: 6rem 0; }
    .artists-section .section-inner { padding: 0 2rem; }
    .artists-rows { display: flex; flex-direction: column; gap: 1.2rem; margin-top: 3rem; }
    .artists-row { display: flex; gap: 1rem; white-space: nowrap; }
    .artists-row-1 { animation: artists-scroll-r 60s linear infinite; }
    .artists-row-2 { animation: artists-scroll-l 65s linear infinite; }
    @keyframes artists-scroll-r { from{transform:translateX(0)} to{transform:translateX(-50%)} }
    @keyframes artists-scroll-l { from{transform:translateX(-50%)} to{transform:translateX(0)} }
    .artists-row:hover { animation-play-state: paused; }
    .artist-card {
      position: relative; width: 230px; height: 290px; flex-shrink: 0;
      border-radius: 14px; overflow: hidden;
      border: 1px solid var(--border); background: #000;
      cursor: pointer; transition: transform 0.3s, border-color 0.3s;
    }
    .artist-card:hover { transform: translateY(-6px); border-color: rgba(var(--accent-rgb),0.5); }
    .artist-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
    .artist-card:hover img { transform: scale(1.06); }
    .artist-card::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,0.92) 100%);
    }
    .artist-name {
      position: absolute; bottom: 0; left: 0; right: 0;
      padding: 1rem 1.1rem;
      font-family: 'Space Grotesk', sans-serif;
      font-size: 1rem; font-weight: 700; color: #fff;
      z-index: 1; letter-spacing: -0.01em;
      text-shadow: 0 2px 14px rgba(0,0,0,0.7);
    }
    .artists-count {
      display: inline-flex; align-items: center; gap: 0.6rem;
      margin-top: 1.5rem;
      background: rgba(var(--accent-rgb),0.08); border: 1px solid rgba(var(--accent-rgb),0.25);
      color: var(--accent); padding: 0.55rem 1.1rem; border-radius: 99px;
      font-size: 0.85rem; font-weight: 600;
    }
    .artists-count strong { color: #fff; font-weight: 800; }

    /* ── GALLERY ── */
    .gallery-section { background: var(--bg2); overflow: hidden; }
    .strips-wrap { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
    .strip { display: flex; gap: 0.75rem; white-space: nowrap; }
    .strip-1 { animation: scroll-r 35s linear infinite; }
    .strip-2 { animation: scroll-l 40s linear infinite; }
    .strip-3 { animation: scroll-r 30s linear infinite; }
    @keyframes scroll-r { from{transform:translateX(0)} to{transform:translateX(-50%)} }
    @keyframes scroll-l { from{transform:translateX(-50%)} to{transform:translateX(0)} }
    .strip-photo {
      width: 200px; height: 150px; flex-shrink: 0;
      border-radius: 10px; overflow: hidden;
      border: 1px solid var(--border);
    }
    .strip-photo img { width: 100%; height: 100%; object-fit: cover; }

    /* Lightbox gallery */
    .gallery-grid-wrap { margin-top: 2.5rem; }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
      gap: 0.6rem;
    }
    .gallery-thumb {
      aspect-ratio: 1; border-radius: 8px; overflow: hidden;
      cursor: pointer; border: 1px solid var(--border);
      transition: transform 0.2s, border-color 0.2s;
    }
    .gallery-thumb:hover { transform: scale(1.04); border-color: var(--accent); }
    .gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

    /* Lightbox */
    #lightbox {
      display: none; position: fixed; inset: 0; z-index: 2000;
      background: rgba(0,0,0,0.95); align-items: center; justify-content: center;
    }
    #lightbox.open { display: flex; }
    #lightbox img { max-height: 90vh; max-width: 90vw; border-radius: 8px; }
    #lightbox-close {
      position: fixed; top: 1.5rem; right: 1.5rem;
      background: rgba(255,255,255,0.1); border: none; color: #fff;
      width: 44px; height: 44px; border-radius: 50%; font-size: 1.4rem;
      cursor: pointer; display: flex; align-items: center; justify-content: center;
    }
    #lb-prev, #lb-next {
      position: fixed; top: 50%; transform: translateY(-50%);
      background: rgba(255,255,255,0.1); border: none; color: #fff;
      width: 50px; height: 50px; border-radius: 50%; font-size: 1.4rem;
      cursor: pointer; display: flex; align-items: center; justify-content: center;
    }
    #lb-prev { left: 1.5rem; }
    #lb-next { right: 1.5rem; }

    /* ── PREMIOS ── */
    .award-bar {
      display: flex; gap: 1rem; align-items: stretch; flex-wrap: wrap;
    }
    .award-card {
      flex: 1; min-width: 220px;
      background: var(--card); border: 1px solid var(--border);
      border-radius: 16px; padding: 1.8rem;
      display: flex; gap: 1.2rem; align-items: flex-start;
    }
    .award-icon { font-size: 2.5rem; flex-shrink: 0; }
    .award-title { font-weight: 600; margin-bottom: 0.3rem; }
    .award-desc { font-size: 0.85rem; color: var(--muted); }

    /* ── CÓMO LLEGAR ── */
    .transport-grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 1.5rem; margin-bottom: 2rem;
    }
    .transport-card {
      background: var(--card); border: 1px solid var(--border);
      border-radius: 16px; padding: 1.8rem;
    }
    .transport-card .icon { font-size: 2rem; margin-bottom: 0.8rem; }
    .transport-card h4 { font-weight: 600; margin-bottom: 0.8rem; }
    .transport-card p, .transport-card li {
      font-size: 0.875rem; color: var(--muted); line-height: 1.7;
    }
    .transport-card ul { padding-left: 1.2rem; }
    .transport-card li { margin-bottom: 0.3rem; }
    .map-embed {
      border-radius: 16px; overflow: hidden;
      border: 1px solid var(--border); height: 380px; background: var(--card);
      display: flex; align-items: center; justify-content: center;
      flex-direction: column; gap: 1rem;
    }
    .map-embed .addr {
      font-size: 1rem; text-align: center; color: var(--muted);
    }

    /* ── CONTACT ── */
    .contact-section { background: var(--bg2); }
    .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
    .contact-info-list { display: flex; flex-direction: column; gap: 1.2rem; margin-bottom: 2rem; }
    .contact-item {
      display: flex; align-items: flex-start; gap: 1rem;
      padding: 1.2rem 1.5rem;
      background: var(--card); border: 1px solid var(--border); border-radius: 12px;
    }
    .contact-item .icon { font-size: 1.4rem; flex-shrink: 0; }
    .contact-item .label { font-size: 0.75rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
    .contact-item .value { font-size: 0.95rem; font-weight: 500; margin-top: 0.1rem; }
    .contact-item .value a { color: var(--accent); }
    .social-row { display: flex; gap: 0.75rem; flex-wrap: wrap; }
    .social-btn {
      display: flex; align-items: center; gap: 0.5rem;
      padding: 0.6rem 1rem; border-radius: 8px;
      background: var(--card); border: 1px solid var(--border);
      font-size: 0.85rem; font-weight: 500; transition: all 0.2s;
    }
    .social-btn:hover { border-color: var(--accent); color: var(--accent); }

    /* Contact form */
    .contact-form {
      background: var(--card); border: 1px solid var(--border);
      border-radius: 20px; padding: 2rem;
    }
    .contact-form h3 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 1.3rem; font-weight: 600; margin-bottom: 1.5rem;
    }
    .form-row { margin-bottom: 1rem; }
    .form-row label {
      display: block; font-size: 0.8rem; font-weight: 600;
      color: var(--muted); margin-bottom: 0.4rem; text-transform: uppercase; letter-spacing: 0.05em;
    }
    .form-row input, .form-row textarea, .form-row select {
      width: 100%; background: var(--bg);
      border: 1px solid var(--border); border-radius: 8px;
      padding: 0.75rem 1rem; color: var(--text); font-family: inherit; font-size: 0.9rem;
      transition: border-color 0.2s; outline: none;
    }
    .form-row input:focus, .form-row textarea:focus, .form-row select:focus { border-color: var(--accent); }
    .form-row textarea { resize: vertical; min-height: 110px; }
    .form-submit {
      width: 100%; padding: 0.9rem; background: var(--accent); color: #000;
      border: none; border-radius: 8px; font-size: 0.95rem; font-weight: 700;
      cursor: pointer; transition: background 0.2s;
    }
    .form-submit:hover { background: var(--accent-light); }

    /* ── CTA FINAL ── */
    .cta-section {
      text-align: center; padding: 8rem 2rem;
      background:
        radial-gradient(ellipse 70% 60% at 50% 50%, rgba(var(--accent-rgb),0.1) 0%, transparent 70%),
        var(--bg);
    }
    .cta-section h2 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: clamp(2.2rem, 6vw, 4rem); font-weight: 700; line-height: 1.1;
      letter-spacing: -0.02em; margin-bottom: 1.2rem;
    }
    .cta-section p { color: var(--muted); font-size: 1.1rem; margin-bottom: 2.5rem; }
    .cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

    /* ── FOOTER ── */
    footer {
      background: var(--bg2); border-top: 1px solid var(--border);
      padding: 3rem 2rem 2rem;
    }
    .footer-inner {
      max-width: 1200px; margin: 0 auto;
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 3rem; margin-bottom: 2.5rem;
    }
    .footer-brand .logo {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 1.4rem; font-weight: 700; margin-bottom: 0.8rem;
    }
    .footer-brand .logo span { color: var(--accent); }
    .footer-brand p { font-size: 0.875rem; color: var(--muted); line-height: 1.6; margin-bottom: 1rem; }
    .footer-col h5 { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 1rem; }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
    .footer-col ul li a { font-size: 0.875rem; color: var(--muted); transition: color 0.2s; }
    .footer-col ul li a:hover { color: var(--text); }
    .footer-bottom {
      max-width: 1200px; margin: 0 auto;
      display: flex; justify-content: space-between; align-items: center;
      border-top: 1px solid var(--border); padding-top: 1.5rem;
      font-size: 0.8rem; color: var(--muted); flex-wrap: wrap; gap: 0.5rem;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 1100px) {
      .nav-links { gap: 1rem; }
      .nav-links > .nav-item, .nav-links > a { font-size: 0.8rem; }
    }
    @media (max-width: 900px) {
      .nav-toggle { display: block; }
      .nav-links {
        display: none;
        position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
        background: rgba(8,12,18,0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: stretch;
        padding: 1.5rem;
        gap: 0.5rem;
        overflow-y: auto;
        border-top: 1px solid var(--border);
      }
      .nav-links.open { display: flex; }
      .nav-links > .nav-item, .nav-links > a {
        font-size: 1rem; padding: 0.85rem 0.5rem;
        border-bottom: 1px solid var(--border);
      }
      .nav-item .caret { margin-left: auto; }
      .nav-dropdown {
        position: static; transform: none; opacity: 1; visibility: visible;
        background: rgba(0,0,0,0.25); border: none; padding: 0.3rem 0.5rem;
        margin-top: 0.5rem; box-shadow: none; min-width: 0;
        max-height: 0; overflow: hidden;
        transition: max-height 0.3s ease;
      }
      .nav-item.open-mobile .nav-dropdown { max-height: 800px; }
      .nav-item:hover .nav-dropdown { transform: none; }
      .nav-dropdown a { font-size: 0.9rem; padding: 0.5rem 0.7rem; }
      .nav-cta { text-align: center; margin-top: 0.5rem; }
      .spaces-grid, .pricing-grid, .contact-grid { grid-template-columns: 1fr; }
      .philosophy-grid { grid-template-columns: 1fr 1fr; }
      .footer-inner { grid-template-columns: 1fr 1fr; }
      .hero-stats { gap: 1.5rem; }
    }
    @media (max-width: 600px) {
      .philosophy-grid { grid-template-columns: 1fr; }
      .footer-inner { grid-template-columns: 1fr; }
      .hero h1 { font-size: 2.8rem; }
    }
    /* Stack image-driven blocks on mobile */
    @media (max-width: 900px) {
      #estudio .section-inner > div[style*="grid-template-columns:1fr 1fr"],
      #agrupaciones .section-inner > div[style*="grid-template-columns:1fr 1.1fr"],
      section[style*="background:var(--bg2)"] div[style*="grid-template-columns:1.4fr 1fr"] {
        grid-template-columns: 1fr !important;
      }
      #locales div[style*="grid-template-columns:1fr 1fr"][style*="margin-bottom:3rem"] {
        grid-template-columns: 1fr !important;
      }
    }

    /* divider */
    .divider { height: 1px; background: var(--border); max-width: 1200px; margin: 0 auto; }

    /* Reveal on scroll */
    .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    @media (prefers-reduced-motion: reduce) {
      .reveal { opacity: 1; transform: none; transition: none; }
      .hero-bg { animation: none !important; }
    }

    /* ── SCROLL PROGRESS BAR ── */
    .scroll-progress {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1001;
      height: 3px; background: transparent;
      pointer-events: none;
    }
    .scroll-progress-bar {
      height: 100%; width: 0%;
      background: linear-gradient(90deg, var(--accent), var(--accent-light));
      box-shadow: 0 0 12px rgba(var(--accent-rgb),0.5);
      transition: width 0.1s ease-out;
    }

    /* ── NAV ACTIVE STATE ── */
    .nav-links > .nav-item.active > span,
    .nav-links > a.active { color: var(--text); }
    .nav-links > .nav-item.active > span::after,
    .nav-links > a.active::after {
      content: ''; position: absolute; left: 0; right: 0; bottom: -6px;
      height: 2px; background: var(--accent); border-radius: 2px;
    }

    /* ── FLOATING WHATSAPP ── */
    .wa-float {
      position: fixed; bottom: 24px; right: 24px; z-index: 999;
      width: 60px; height: 60px; border-radius: 50%;
      background: #25D366;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 8px 30px rgba(37,211,102,0.4);
      transition: transform 0.2s;
      cursor: pointer;
    }
    .wa-float:hover { transform: scale(1.08); }
    .wa-float svg { width: 32px; height: 32px; fill: #fff; }
    .wa-float::before {
      content: ''; position: absolute; inset: 0;
      border-radius: 50%; background: #25D366;
      opacity: 0.6; z-index: -1;
      animation: wa-pulse 2.4s ease-out infinite;
    }
    @keyframes wa-pulse {
      0% { transform: scale(1); opacity: 0.6; }
      100% { transform: scale(1.8); opacity: 0; }
    }
    .wa-tooltip {
      position: absolute; right: calc(100% + 12px); top: 50%;
      transform: translateY(-50%);
      background: var(--card); color: var(--text);
      padding: 0.5rem 0.9rem; border-radius: 8px;
      font-size: 0.85rem; font-weight: 500; white-space: nowrap;
      border: 1px solid var(--border);
      opacity: 0; visibility: hidden;
      transition: opacity 0.2s;
      pointer-events: none;
    }
    .wa-float:hover .wa-tooltip { opacity: 1; visibility: visible; }

    /* ── FAQ ── */
    .faq-section { padding: 5rem 2rem; }
    .faq-list { display: flex; flex-direction: column; gap: 0.8rem; margin-top: 2.5rem; }
    .faq-item {
      background: var(--card); border: 1px solid var(--border);
      border-radius: 12px; overflow: hidden;
      transition: border-color 0.2s;
    }
    .faq-item:hover { border-color: rgba(var(--accent-rgb),0.3); }
    .faq-question {
      width: 100%; text-align: left; padding: 1.2rem 1.5rem;
      background: none; border: none; color: var(--text);
      font-family: inherit; font-size: 1rem; font-weight: 600;
      cursor: pointer;
      display: flex; align-items: center; justify-content: space-between;
      gap: 1rem;
    }
    .faq-question .faq-icon {
      width: 22px; height: 22px; flex-shrink: 0;
      border-radius: 50%; background: rgba(var(--accent-rgb),0.15);
      color: var(--accent);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem; font-weight: 700; line-height: 1;
      transition: transform 0.3s;
    }
    .faq-item.open .faq-icon { transform: rotate(45deg); }
    .faq-answer {
      max-height: 0; overflow: hidden;
      transition: max-height 0.3s ease;
      color: var(--muted);
    }
    .faq-item.open .faq-answer { max-height: 300px; }
    .faq-answer-inner { padding: 0 1.5rem 1.2rem 1.5rem; font-size: 0.95rem; line-height: 1.7; }

    /* ── COOKIE BANNER ── */
    .cookie-banner {
      position: fixed; bottom: 24px; left: 24px; z-index: 998;
      max-width: 380px;
      background: rgba(15,22,34,0.98);
      backdrop-filter: blur(20px);
      border: 1px solid var(--border);
      border-radius: 14px; padding: 1.2rem 1.4rem;
      box-shadow: 0 20px 50px rgba(0,0,0,0.5);
      transform: translateY(120%);
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .cookie-banner.show { transform: translateY(0); }
    .cookie-banner p { font-size: 0.85rem; color: var(--muted); margin-bottom: 1rem; line-height: 1.5; }
    .cookie-banner p a { color: var(--accent); text-decoration: underline; }
    .cookie-actions { display: flex; gap: 0.5rem; }
    .cookie-actions button {
      flex: 1; padding: 0.55rem; border-radius: 6px;
      font-family: inherit; font-size: 0.82rem; font-weight: 600;
      cursor: pointer; border: 1px solid var(--border);
      transition: all 0.2s;
    }
    .cookie-actions .accept {
      background: var(--accent); color: #000; border-color: var(--accent);
    }
    .cookie-actions .decline {
      background: transparent; color: var(--muted);
    }
    .cookie-actions .accept:hover { background: var(--accent-light); }
    .cookie-actions .decline:hover { color: var(--text); border-color: var(--text); }
    @media (max-width: 600px) {
      .cookie-banner { left: 12px; right: 12px; bottom: 90px; max-width: none; }
      .wa-float { bottom: 16px; right: 16px; width: 54px; height: 54px; }
      .wa-float svg { width: 28px; height: 28px; }
    }
