  .section-container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 48px);
  }
  .eyebrow {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 12px;
    display: block;
  }
  .section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 12px;
    color: var(--color-dark);
  }
  .section-body {
    font-size: 16px;
    line-height: 1.75;
    color: var(--color-gray);
    max-width: 640px;
    margin: 0;
  }

  .fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition:
      opacity 0.65s ease,
      transform 0.65s ease;
  }
  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ============ PRENSA ============ */
  .prensa {
    background: var(--color-white);
    padding: var(--section-pad) 0;
  }
  .prensa-intro {
    margin-bottom: 60px;
  }

  .prensa-block {
    margin-top: 64px;
  }
  .prensa-block:first-of-type {
    margin-top: 0;
  }
  .prensa-block-title {
    font-family: var(--font-display);
    font-size: clamp(20px, 2.4vw, 26px);
    font-weight: 700;
    color: var(--color-dark);
    margin: 0 0 24px;
    padding-bottom: 14px;
    border-bottom: 2px solid rgba(75, 63, 228, 0.12);
  }

  /* --- A. Galería fotográfica: colecciones --- */
  .prensa-collections {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--gap);
  }
  .collection-card {
    border: none;
    padding: 0;
    background: transparent;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
  }
  .collection-cover {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--color-placeholder);
    box-shadow: var(--shadow);
    transition:
      transform 0.2s,
      box-shadow 0.2s;
  }
  .collection-card:hover .collection-cover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-card);
  }
  .collection-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .collection-cover-fallback {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 100%;
    color: #7d8492;
  }
  .collection-cover-fallback svg {
    width: 24px;
    height: 24px;
    opacity: 0.7;
  }
  .collection-cover-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      rgba(20, 18, 40, 0) 45%,
      rgba(17, 15, 32, 0.85) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16px;
    gap: 2px;
  }
  .collection-title {
    color: var(--color-white);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
    line-height: 1.3;
  }
  .collection-count {
    color: rgba(255, 255, 255, 0.75);
    font-size: 11.5px;
    font-weight: 600;
  }

  @media (max-width: 900px) {
    .prensa-collections {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  @media (max-width: 560px) {
    .prensa-collections {
      grid-template-columns: 1fr;
    }
    
    .prensa-intro {
      margin-top: 40px;
      margin-bottom: 60px;
    }
  }

  /* --- Álbum (modal con las fotos de una colección) --- */
  .album-modal {
    position: fixed;
    inset: 0;
    background: rgba(17, 15, 32, 0.72);
    z-index: 900;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
  }
  .album-modal.open {
    display: flex;
  }
  .album-modal-inner {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    width: 100%;
    max-width: 960px;
    max-height: 85vh;
    overflow-y: auto;
    padding: 0;
  }
  .album-modal-header {
    position: sticky;
    top: 0;
    background: var(--color-white);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px clamp(20px, 3vw, 32px);
    border-bottom: 1px solid rgba(75, 63, 228, 0.12);
  }
  .album-modal-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 19px;
    color: var(--color-dark);
    margin: 0;
  }
  .album-modal-close {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(75, 63, 228, 0.08);
    color: var(--color-primary);
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
  }
  .album-modal-close:hover {
    background: rgba(75, 63, 228, 0.16);
  }
  .album-modal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 14px;
    padding: clamp(20px, 3vw, 32px);
  }
  .album-photo {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: calc(var(--radius) - 4px);
    overflow: hidden;
    background: var(--color-placeholder);
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
  }
  .album-photo:hover {
    opacity: 0.85;
  }
  .album-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .album-photo-fallback {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    height: 100%;
    color: #7d8492;
  }
  .album-photo-fallback svg {
    width: 20px;
    height: 20px;
    opacity: 0.7;
  }
  .album-photo-fallback span {
    font-size: 10.5px;
    font-weight: 500;
    text-align: center;
    padding: 0 8px;
  }

  /* --- Lightbox (foto ampliada, con navegación dentro del álbum) --- */
  .lightbox {
    position: fixed;
    inset: 0;
    background: rgba(17, 15, 32, 0.92);
    z-index: 999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 32px;
    opacity: 0;
    transition: opacity 0.2s;
  }
  .lightbox.open {
    display: flex;
    opacity: 1;
  }
  .lightbox img {
    max-width: min(920px, 92vw);
    max-height: 88vh;
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
  }
  .lightbox-close {
    position: absolute;
    top: 22px;
    right: 28px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: none;
    color: var(--color-white);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
  }
  .lightbox-close:hover {
    background: rgba(255, 255, 255, 0.22);
  }
  .lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: none;
    color: var(--color-white);
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
  }
  .lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.22);
  }
  .lightbox-prev {
    left: 20px;
  }
  .lightbox-next {
    right: 20px;
  }
  @media (max-width: 640px) {
    .lightbox-prev {
      left: 8px;
    }
    .lightbox-next {
      right: 8px;
    }
    .lightbox-nav {
      width: 38px;
      height: 38px;
      font-size: 22px;
    }
  }

  /* --- B. Videos de YouTube --- */
  .prensa-videos {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--gap);
  }
  .video-embed {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--color-dark);
    box-shadow: var(--shadow);
  }
  .video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
  }
  .video-embed.is-pending {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
  }
  .video-embed.is-pending svg {
    width: 34px;
    height: 34px;
    opacity: 0.85;
  }
  .video-embed.is-pending span {
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    padding: 0 20px;
    line-height: 1.4;
  }

  @media (max-width: 900px) {
    .prensa-videos {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  @media (max-width: 560px) {
    .prensa-videos {
      grid-template-columns: 1fr;
    }
  }

  /* --- C. Notas de prensa --- */
  .prensa-news-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--gap);
  }
  .news-card {
    display: flex;
    gap: 18px;
    padding: 18px;
    border-radius: var(--radius);
    background: var(--color-white);
    box-shadow: var(--shadow);
    text-decoration: none;
    color: inherit;
    transition:
      transform 0.2s,
      box-shadow 0.2s;
  }
  .news-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-card);
  }
  .news-card-thumb {
    flex-shrink: 0;
    width: 104px;
    height: 104px;
    border-radius: calc(var(--radius) - 4px);
    overflow: hidden;
    background: var(--color-placeholder);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7d8492;
  }
  .news-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .news-card-thumb svg {
    width: 22px;
    height: 22px;
    opacity: 0.7;
  }
  .news-card-body {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .news-card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  .news-card-medio {
    color: var(--color-primary);
  }
  .news-card-date {
    color: var(--color-gray);
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
  }
  .news-card-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15.5px;
    line-height: 1.35;
    color: var(--color-dark);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .news-card-link {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--color-primary-dark);
    margin-top: auto;
  }

  @media (max-width: 700px) {
    .prensa-news-grid {
      grid-template-columns: 1fr;
    }
    .prensa-videos {
      grid-template-columns: 1fr;
    }
  }

  /** Estilos de menu en prensa **/
 .nav-link {
    color: var(--color-primary) !important;
    text-decoration: none !important;
}
  
  .nav-hamburger span {
    background: black;
}