
	  
    /* ── TOKENS ── */
    :root {
      --blanco:   #FFFFFF;
      --off:      #FDFDFD;
      --azul:     #89ABD1;
      --azul-esc: #5C87B2;
      --azul-cl:  #C2D6EC;
      --azul-bg:  #EEF4FA;
      --verm:     #BF5A6B;
      --verm-esc: #9E3F50;
      --negro:    #000000;
      --gris-esc: #1A1A1A;
      --gris-med: #555555;
      --gris-cl:  #F2F2F2;
      --liña:     rgba(0,0,0,0.1);
    }
	   /* ── behold widget ── */
[data-behold-id] {
  margin-top: 30px;
}
    /* ── RESET ── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      background: var(--blanco);
      color: var(--negro);
      font-family: 'DM Sans', sans-serif;
      font-size: 1rem;
      line-height: 1.75;
      overflow-x: hidden;
    }
    img { display: block; max-width: 100%; }

    /* ══════════════════════════════════
       NAV UNIFICADO (negro)
    ══════════════════════════════════ */
    nav {
      position: sticky; top: 0; z-index: 900;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 2.5rem;
      height: 68px;
      background: var(--negro);
      transition: box-shadow 0.3s;
    }
    nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.35); }

    /* Logo */
    .nav-logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
    .nav-logo img { height: 40px; width: auto; object-fit: contain; }
    .nav-logo-text {
      font-family: 'Playfair Display', serif; font-size: 0.92rem; font-weight: 900;
      color: #fff; line-height: 1.25;
    }
    .nav-logo-text small {
      display: block; font-family: 'Cinzel', serif; font-size: 0.5rem;
      letter-spacing: 0.18em; text-transform: uppercase;
      color: rgba(255,255,255,0.45); font-weight: 400;
    }

    /* Links */
    .nav-center { display: flex; gap: 2.2rem; list-style: none; }
    .nav-center a {
      font-family: 'Cinzel', serif; font-size: 0.63rem; letter-spacing: 0.18em;
      color: rgba(255,255,255,0.6); text-decoration: none; text-transform: uppercase;
      transition: color 0.2s; position: relative;
    }
    .nav-center a::after {
      content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
      height: 1.5px; background: var(--azul); transform: scaleX(0); transition: transform 0.25s;
    }
    .nav-center a:hover { color: #fff; }
    .nav-center a:hover::after { transform: scaleX(1); }

    /* Dereita: idioma + hamburger */
    .nav-right { display: flex; align-items: center; gap: 1rem; }

    /* Selector de idioma despregable */
    .lang-select-wrap { position: relative; }
    .lang-select-btn {
      display: flex; align-items: center; gap: 0.4rem;
      font-family: 'Cinzel', serif; font-size: 0.62rem; letter-spacing: 0.15em;
      text-transform: uppercase; color: rgba(255,255,255,0.55);
      background: transparent; border: 1px solid rgba(255,255,255,0.15);
      padding: 0.3rem 0.7rem; cursor: pointer; transition: all 0.2s;
      white-space: nowrap;
    }
    .lang-select-btn:hover { color: #fff; border-color: rgba(255,255,255,0.4); }
    .lang-select-btn .arrow {
      font-size: 0.5rem; transition: transform 0.2s; display: inline-block;
    }
    .lang-select-wrap.open .arrow { transform: rotate(180deg); }
    .lang-active-flag { font-size: 0.9rem; line-height: 1; }

    .lang-dropdown {
      display: none; position: absolute; top: calc(100% + 6px); right: 0;
      background: #111; border: 1px solid rgba(255,255,255,0.12);
      min-width: 160px; z-index: 999;
    }
    .lang-select-wrap.open .lang-dropdown { display: block; }
    .lang-option {
      display: flex; align-items: center; gap: 0.65rem;
      padding: 0.6rem 0.9rem; cursor: pointer;
      font-family: 'Cinzel', serif; font-size: 0.62rem; letter-spacing: 0.12em;
      text-transform: uppercase; color: rgba(255,255,255,0.5);
      transition: background 0.15s, color 0.15s;
      border: none; background: transparent; width: 100%; text-align: left;
    }
    .lang-option:hover { background: rgba(255,255,255,0.07); color: #fff; }
    .lang-option.active { color: var(--azul); }
    .lang-flag { font-size: 1rem; line-height: 1; }

    /* Hamburger */
    .hamburger {
      display: none; flex-direction: column; gap: 5px;
      cursor: pointer; background: none; border: none; padding: 4px;
    }
    .hamburger span { display: block; width: 22px; height: 2px; background: rgba(255,255,255,0.7); }

    /* Mobile menu */
    .nav-mobile {
      display: none; position: fixed; top: 68px; left: 0; right: 0;
      background: #0a0a0a; z-index: 850;
      border-top: 1px solid rgba(255,255,255,0.08);
      padding: 1.2rem 2rem 1.5rem;
      flex-direction: column; gap: 1rem;
    }
    .nav-mobile.open { display: flex; }
    .nav-mobile a {
      font-family: 'Cinzel', serif; font-size: 0.7rem; letter-spacing: 0.18em;
      color: rgba(255,255,255,0.6); text-decoration: none; text-transform: uppercase;
      padding: 0.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.06);
      transition: color 0.2s;
    }
    .nav-mobile a:hover { color: #fff; }

    /* ── BOTÓNS ── */
    .btn-primary {
      font-family: 'Cinzel', serif; font-size: 0.68rem; letter-spacing: 0.2em;
      text-transform: uppercase; color: #fff; background: var(--negro);
      border: 2px solid var(--negro); padding: 0.88rem 2rem;
      cursor: pointer; text-decoration: none; display: inline-block; transition: all 0.25s;
    }
    .btn-primary:hover { background: var(--azul-esc); border-color: var(--azul-esc); transform: translateY(-2px); }
    .btn-outline {
      font-family: 'Cinzel', serif; font-size: 0.68rem; letter-spacing: 0.2em;
      text-transform: uppercase; color: var(--negro); background: transparent;
      border: 2px solid rgba(0,0,0,0.22); padding: 0.88rem 2rem;
      cursor: pointer; text-decoration: none; display: inline-block; transition: all 0.25s;
    }
    .btn-outline:hover { border-color: var(--negro); transform: translateY(-2px); }
    .btn-white {
      font-family: 'Cinzel', serif; font-size: 0.65rem; letter-spacing: 0.18em;
      text-transform: uppercase; color: var(--negro); background: #fff;
      border: 2px solid #fff; padding: 0.78rem 1.8rem;
      cursor: pointer; text-decoration: none; display: inline-block;
      transition: all 0.25s; white-space: nowrap;
    }
    .btn-white:hover { background: transparent; color: #fff; }

    /* ── HERO ── */
    .hero {
      min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr;
      overflow: hidden;
    }
    .hero-left {
      display: flex; flex-direction: column; justify-content: center;
      padding: 7rem 4rem 6rem 5rem; position: relative; z-index: 2;
    }
    .hero-right { position: relative; overflow: hidden; min-height: 60vmin; }
    .hero-right img {
      width: 100%; height: 100%; object-fit: cover; object-position: center 35%;
    }
    .hero-right::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(to right, rgba(255,255,255,0.1), transparent 55%),
                  linear-gradient(to top, rgba(0,0,0,0.22), transparent 55%);
    }
    .hero-eyebrow {
      font-family: 'Cinzel', serif; font-size: 0.65rem; letter-spacing: 0.3em;
      text-transform: uppercase; color: var(--azul-esc); margin-bottom: 1.4rem;
      display: flex; align-items: center; gap: 0.8rem;
      animation: fadeUp 0.8s ease both;
    }
    .hero-eyebrow::before { content: ''; width: 26px; height: 1.5px; background: var(--azul); }
    h1.hero-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(3rem, 5.5vw, 5.5rem); font-weight: 900; line-height: 0.92;
      color: var(--negro); margin-bottom: 1.8rem;
      animation: fadeUp 0.8s 0.1s ease both;
    }
    h1.hero-title em { font-style: italic; color: var(--verm); display: block; }
    h1.hero-title small {
      display: block; font-size: 0.55em; font-weight: 400;
      font-style: italic; color: var(--gris-med); margin-top: 0.2em;
    }
    .hero-desc {
      font-size: 1rem; color: var(--gris-med); max-width: 400px;
      margin-bottom: 2.5rem; font-weight: 300; line-height: 1.8;
      animation: fadeUp 0.8s 0.2s ease both;
    }
    .hero-desc strong { color: var(--negro); font-weight: 500; }
    .hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; animation: fadeUp 0.8s 0.3s ease both; }
    .hero-scroll {
      position: absolute; bottom: 2.5rem; left: 5rem;
      font-family: 'Cinzel', serif; font-size: 0.58rem; letter-spacing: 0.2em;
      text-transform: uppercase; color: var(--gris-med);
      display: flex; align-items: center; gap: 0.8rem;
      animation: fadeUp 1s 1.1s ease both;
    }
    .hero-scroll::after {
      content: ''; width: 40px; height: 1px; background: var(--gris-med);
      animation: lineGrow 2s 1.4s infinite;
    }
    @keyframes fadeUp {
      from { opacity:0; transform:translateY(22px); }
      to   { opacity:1; transform:none; }
    }
    @keyframes lineGrow {
      0%   { opacity:0; transform:scaleX(0); transform-origin:left; }
      50%  { opacity:1; transform:scaleX(1); transform-origin:left; }
      100% { opacity:0; transform:scaleX(1); transform-origin:right; }
    }

    /* ── STATS ── */
    .stats-bar {
      background: var(--negro); display: grid; grid-template-columns: repeat(4, 1fr);
    }
    .stat-item {
      padding: 2rem; text-align: center;
      border-right: 1px solid rgba(255,255,255,0.07); transition: background 0.25s;
    }
    .stat-item:last-child { border-right: none; }
    .stat-item:hover { background: rgba(137,171,209,0.12); }
    .stat-num {
      font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 900;
      color: var(--azul); line-height: 1; margin-bottom: 0.3rem;
    }
    .stat-label {
      font-family: 'Cinzel', serif; font-size: 0.58rem; letter-spacing: 0.2em;
      text-transform: uppercase; color: rgba(255,255,255,0.4);
    }

    /* ── SECCIONES ── */
    section { padding: 7rem 2rem; }
    .section-inner { max-width: 1140px; margin: 0 auto; }
    .section-eyebrow {
      font-family: 'Cinzel', serif; font-size: 0.62rem; letter-spacing: 0.35em;
      text-transform: uppercase; color: var(--verm); margin-bottom: 1rem;
      display: flex; align-items: center; gap: 0.8rem;
    }
    .section-eyebrow::before { content: ''; width: 20px; height: 1.5px; background: var(--verm); }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; line-height: 1.1;
      color: var(--negro); margin-bottom: 1.5rem;
    }
    .section-title em { font-style: italic; color: var(--azul); }

    /* ── NÓS ── */
    #nos { background: var(--off); }
    .nos-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
    .nos-text p { color: var(--gris-med); margin-bottom: 1.1rem; font-weight: 300; }
    .nos-text p strong { color: var(--negro); font-weight: 500; }
    .nos-text blockquote {
      border-left: 3px solid var(--azul); padding-left: 1.4rem; margin: 2rem 0;
      font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.1rem;
      color: var(--gris-esc); line-height: 1.55;
    }
    .photo-stack { display: flex; flex-direction: column; gap: 0.8rem; }
    .photo-card { position: relative; overflow: hidden; }
    .photo-card img {
      width: 100%; aspect-ratio: 4/3; object-fit: cover; object-position: center;
      filter: grayscale(10%); transition: transform 0.55s, filter 0.4s;
    }
    .photo-card:hover img { transform: scale(1.04); filter: grayscale(0%); }
    .photo-caption {
      position: absolute; bottom: 0; left: 0; right: 0; padding: 0.8rem 1rem;
      background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
      font-family: 'Cinzel', serif; font-size: 0.58rem; letter-spacing: 0.14em;
      text-transform: uppercase; color: rgba(255,255,255,0.7);
    }
    .instruments-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 1px; background: var(--liña); border: 1px solid var(--liña); margin-top: 2rem;
    }
    .instr-card {
      background: var(--blanco); padding: 1.25rem 1.15rem;
      transition: background 0.2s; display: flex; flex-direction: column; gap: 0.2rem;
    }
    .instr-card:hover { background: var(--azul-bg); }
    .instr-icon { font-size: 1.35rem; margin-bottom: 0.1rem; }
    .instr-name { font-family: 'Playfair Display', serif; font-size: 0.92rem; font-weight: 700; }
    .instr-count { font-family: 'Cinzel', serif; font-size: 0.56rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--azul-esc); }
    .instr-note { font-size: 0.78rem; color: var(--gris-med); font-weight: 300; }

    /* ── FILOSOFÍA ── */
    #filosofia { background: var(--negro); color: #fff; text-align: center; padding: 6rem 2rem; }
    .filosofia-inner { max-width: 760px; margin: 0 auto; }
    .filosofia-eyebrow {
      font-family: 'Cinzel', serif; font-size: 0.62rem; letter-spacing: 0.35em;
      text-transform: uppercase; color: var(--azul); margin-bottom: 1.5rem;
      display: flex; align-items: center; justify-content: center; gap: 1rem;
    }
    .filosofia-eyebrow::before, .filosofia-eyebrow::after {
      content: ''; width: 26px; height: 1px; background: var(--azul); opacity: 0.5;
    }
    .filosofia-deco { width: 34px; height: 2px; background: var(--verm); margin: 0 auto 1.8rem; }
    .filosofia-quote {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.45rem, 3vw, 2.2rem); font-weight: 400; font-style: italic;
      line-height: 1.5; margin-bottom: 2.5rem; color: rgba(255,255,255,0.88);
    }
    .filosofia-author {
      font-family: 'Cinzel', serif; font-size: 0.65rem; letter-spacing: 0.3em;
      text-transform: uppercase; color: var(--azul);
    }

    /* ── CONCERTOS ── */
    #concertos { background: var(--blanco); }
    .calendar-header {
      display: flex; justify-content: space-between; align-items: center;
      margin-bottom: 1.2rem; flex-wrap: wrap; gap: 1rem;
    }
    .calendar-hint {
      font-family: 'Cinzel', serif; font-size: 0.58rem; letter-spacing: 0.15em;
      text-transform: uppercase; color: var(--gris-med);
      display: flex; align-items: center; gap: 0.45rem;
    }
    .calendar-hint::before {
      content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--azul);
    }
    .calendar-wrapper { border: 1px solid var(--liña); overflow: hidden; background: var(--off); }
    .calendar-wrapper iframe { width: 100%; height: 580px; border: none; display: block; }

    /* ── GALERÍA ── */
    #galeria { background: var(--gris-cl); }
    .galeria-header {
      display: flex; justify-content: space-between; align-items: flex-end;
      margin-bottom: 2rem; flex-wrap: wrap; gap: 1rem;
    }
    .galeria-grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      grid-template-rows: 260px 240px;
      gap: 5px;
    }
    .gal-item { overflow: hidden; cursor: pointer; position: relative; }
    .gal-item img {
      width: 100%; height: 100%; object-fit: cover; object-position: center;
      transition: transform 0.55s, filter 0.35s; filter: grayscale(8%);
    }
    .gal-item:hover img { transform: scale(1.07); filter: grayscale(0%); }
    .gal-overlay {
      position: absolute; inset: 0;
      background: rgba(137,171,209,0); transition: background 0.3s;
      display: flex; align-items: center; justify-content: center;
    }
    .gal-item:hover .gal-overlay { background: rgba(137,171,209,0.18); }
    .gal-zoom {
      opacity: 0; transition: opacity 0.3s;
      width: 44px; height: 44px; border-radius: 50%;
      background: rgba(255,255,255,0.9);
      display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
    }
    .gal-item:hover .gal-zoom { opacity: 1; }
    .gal-credit {
      position: absolute; bottom: 0; left: 0; right: 0; padding: 0.5rem 0.75rem;
      background: linear-gradient(to top, rgba(0,0,0,0.55), transparent);
      font-size: 0.62rem; color: rgba(255,255,255,0.7);
      font-family: 'Cinzel', serif; letter-spacing: 0.1em;
    }
    .gal-item:nth-child(1) { grid-column: span 5; }
    .gal-item:nth-child(2) { grid-column: span 4; }
    .gal-item:nth-child(3) { grid-column: span 3; }
    .gal-item:nth-child(4) { grid-column: span 4; }
    .gal-item:nth-child(5) { grid-column: span 5; }

    /* ── CONTACTO ── */
    #contacto { background: var(--off); }
    .contacto-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
    .contacto-info > p { color: var(--gris-med); font-weight: 300; margin-bottom: 1.2rem; }
    .contact-heading { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; margin: 2rem 0 0.35rem; }
    .contact-sub { color: var(--gris-med); font-weight: 300; font-size: 0.88rem; margin-bottom: 1.3rem; }
    .contact-links { display: flex; flex-direction: column; gap: 0.5rem; }
    .contact-link {
      display: grid; grid-template-columns: 46px 1fr; align-items: center;
      text-decoration: none; color: var(--negro); border: 1px solid var(--liña);
      transition: border-color 0.2s, background 0.2s;
    }
    .contact-link:hover { border-color: var(--azul); background: var(--azul-bg); }
    .cl-icon {
      width: 46px; height: 46px; background: var(--gris-cl);
      display: flex; align-items: center; justify-content: center; font-size: 1rem;
      border-right: 1px solid var(--liña); flex-shrink: 0; transition: background 0.2s;
    }
    .contact-link:hover .cl-icon { background: var(--azul-cl); }
    .cl-text { padding: 0.72rem 1rem; font-size: 0.88rem; }

    form { display: flex; flex-direction: column; gap: 1rem; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .form-field { display: flex; flex-direction: column; gap: 0.38rem; }
    label {
      font-family: 'Cinzel', serif; font-size: 0.58rem; letter-spacing: 0.2em;
      text-transform: uppercase; color: var(--gris-med);
    }
    input, textarea, select {
      background: var(--blanco); border: 1px solid var(--liña); padding: 0.82rem 1rem;
      font-family: 'DM Sans', sans-serif; font-size: 0.95rem; color: var(--negro);
      transition: border-color 0.2s; resize: vertical; appearance: none; -webkit-appearance: none;
    }
    input:focus, textarea:focus, select:focus { outline: none; border-color: var(--azul); }
    textarea { min-height: 115px; }
    .form-success {
      display: none; padding: 1rem 1.2rem; background: var(--azul-bg);
      border: 1px solid var(--azul-cl); color: var(--azul-esc);
      font-size: 0.9rem; text-align: center;
    }

    /* ── FOOTER ── */
    footer { background: var(--negro); color: rgba(255,255,255,0.4); padding: 3.5rem 2rem; }
    .footer-inner {
      max-width: 1140px; margin: 0 auto;
      display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem;
      padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .footer-logo-wrap { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 0.8rem; }
    .footer-logo-wrap img { height: 40px; width: auto; object-fit: contain; opacity: 0.85; }
    .footer-logo-name { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 900; color: #fff; }
    .footer-brand p { font-size: 0.84rem; line-height: 1.7; font-weight: 300; }
    .footer-brand a { color: var(--azul-cl); text-decoration: none; }
    .footer-brand a:hover { color: var(--azul); }
    .footer-col-title { font-family: 'Cinzel', serif; font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 1rem; }
    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
    .footer-links a { font-size: 0.86rem; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
    .footer-links a:hover { color: var(--azul); }
    .footer-bottom {
      max-width: 1140px; margin: 0 auto; padding-top: 2rem;
      display: flex; justify-content: space-between; align-items: center; font-size: 0.76rem;
    }
    .footer-dots { display: flex; gap: 0.4rem; }
    .fdot { width: 8px; height: 8px; border-radius: 50%; }

    /* ── LIGHTBOX ── */
    #lightbox {
      position: fixed; inset: 0; z-index: 9999;
      background: rgba(0,0,0,0.94); display: none;
      align-items: center; justify-content: center; padding: 2rem;
    }
    #lightbox.open { display: flex; }
    #lightbox img { max-width: 90vw; max-height: 88vh; object-fit: contain; box-shadow: 0 20px 80px rgba(0,0,0,0.6); }
    #lb-close {
      position: absolute; top: 1.2rem; right: 1.5rem;
      color: #fff; font-size: 2rem; cursor: pointer;
      background: none; border: none; opacity: 0.55; transition: opacity 0.2s; line-height: 1;
    }
    #lb-close:hover { opacity: 1; }
    #lb-prev, #lb-next {
      position: absolute; top: 50%; transform: translateY(-50%);
      color: #fff; font-size: 2rem; cursor: pointer;
      background: rgba(255,255,255,0.08); border: none;
      width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
      transition: background 0.2s;
    }
    #lb-prev { left: 1rem; }
    #lb-next { right: 1rem; }
    #lb-prev:hover, #lb-next:hover { background: rgba(255,255,255,0.18); }

    /* ── REVEAL ── */
    .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s, transform 0.7s; }
    .reveal.visible { opacity: 1; transform: none; }

    /* ── RESPONSIVE ── */
    @media (max-width: 960px) {
      .hero { grid-template-columns: 1fr; }
      .hero-right { height: 55vw; max-height: 440px; }
      .hero-left { padding: 6rem 2rem 4rem; }
      .hero-scroll { display: none; }
      .nos-layout, .contacto-layout { grid-template-columns: 1fr; gap: 3rem; }
      .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
      .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
      .stats-bar { grid-template-columns: 1fr 1fr; }
      .nav-center { display: none; }
      .hamburger { display: flex; }
    }
    @media (max-width: 640px) {
      section { padding: 4.5rem 1.2rem; }
      .galeria-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
      .gal-item { grid-column: span 1 !important; height: 150px; }
      .form-row { grid-template-columns: 1fr; }
      .instruments-grid { grid-template-columns: 1fr; }
      .calendar-wrapper iframe { height: 500px; }
    }
    /* Fondo sombreado azul claro para las actuaciones que ya pasaron */
.venue-card--past {
  background: var(--azul-bg, #EEF4FA) !important;
  border-color: var(--azul-cl, #C2D6EC) !important;
  opacity: 0.85;
}
/* Estilos para la leyenda del mapa */
.map-legend {
  display: flex;
  gap: 1.5rem;
  margin-top: 0.75rem;
  padding: 0.5rem;
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 6px;
  border: 1px solid rgba(0,0,0,0.05);
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.legend-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 0.75rem;
}
/* Reutilizando tus estilos de marcadores para la coherencia visual */
.badge-upcoming {
  background: var(--verm, #BF5A6B);
  box-shadow: 0 0 0 4px rgba(191, 90, 107, 0.2);
}
.badge-past {
  background: var(--azul-esc, #5C87B2);
}
/* Botón de ayuda e info de suscripción */
.calendar-header-wrapper {
  position: relative;
  margin-bottom: 1.5rem;
}
.calendar-legend-title {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  color: var(--negro);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.help-btn {
  background: var(--azul);
  color: white;
  border: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  cursor: pointer;
  font-weight: bold;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.help-btn:hover {
  background: var(--azul-esc);
}
.help-popup-content {
  display: none;
  position: absolute;
  top: 35px;
  left: 0;
  background: #ffffff;
  border: 1px solid var(--azul-cl);
  padding: 1.25rem;
  border-radius: 8px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.12);
  z-index: 10;
  max-width: 320px;
  font-size: 0.88rem;
  line-height: 1.5;
}
.help-popup-content h4 {
  color: var(--azul-esc);
  margin-bottom: 0.5rem;
}
.help-popup-content ul {
  margin-left: 1rem;
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
}
.btn-close-help {
  background: var(--negro);
  color: white;
  border: none;
  padding: 0.3rem 0.7rem;
  font-size: 0.75rem;
  cursor: pointer;
  border-radius: 4px;
}