  /* =========================================
           ESTILOS GENERALES
           ========================================= */
  .specialty-content {
      padding: 80px 0;
      background-color: #fff;
  }

  .divider-left {
      height: 4px;
      width: 50px;
      background-color: var(--u-dorado);
      border-radius: 2px;
      margin-top: 10px;
      margin-bottom: 25px;
  }

  /* Estilo para Letras de Canciones */
  .lyrics-box {
      background-color: #fff;
      border: 1px solid #e0e0e0;
      border-radius: 12px;
      border-left: 5px solid var(--u-verde-profundo);
      padding: 40px;
      margin-bottom: 25px;
      transition: transform 0.3s;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  }

  .lyrics-box:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }

  .lyrics-text {
      font-family: 'Playfair Display', serif;
      /* Fuente elegante para himnos */
      font-size: 1.1rem;
      line-height: 1.8;
      color: #444;
      font-style: italic;
  }

  .verse-block {
      margin-bottom: 30px;
  }

  .chorus-block {
      font-weight: 700;
      color: var(--u-verde-profundo);
      margin-left: 20px;
      border-left: 3px solid var(--u-dorado);
      padding-left: 15px;
  }

  /* Sidebar Ficha */
  .sidebar-box {
      background-color: #fff;
      padding: 30px;
      border: 1px solid #eee;
      border-top: none;
      border-radius: 0 0 8px 8px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  }

  .specialty-sidebar .img-fluid {
      width: 100%;
      height: 250px;
      object-fit: cover;
      border-radius: 8px 8px 0 0;
  }

  .icon-circle {
      width: 45px;
      height: 45px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      background-color: var(--u-gris-claro);
      color: var(--u-verde-profundo);
      flex-shrink: 0;
      margin-right: 15px;
  }

  /* Sección Himno Nacional (Estilo Infraestructura) */
  .infra-section {
      background-color: #f8f9fa;
      padding: 80px 0;
  }

  .infra-img-wrapper {
      position: relative;
      overflow: hidden;
      border-radius: 8px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      height: 100%;
      min-height: 300px;
  }

  .infra-img-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s;
  }

  .infra-img-wrapper:hover img {
      transform: scale(1.05);
  }

  .infra-badge {
      position: absolute;
      top: 20px;
      left: 20px;
      background-color: #d9534f;
      color: white;
      padding: 5px 15px;
      font-weight: bold;
      text-transform: uppercase;
      font-size: 0.8rem;
      border-radius: 20px;
  }

  /* Protocolo (Estilo Campo Laboral) */
  .laboral-section {
      padding: 80px 0;
      background-color: #fff;
  }

  .laboral-card {
      text-align: center;
      padding: 40px 20px;
      border: 1px solid #eee;
      border-radius: 8px;
      transition: all 0.3s;
      background: white;
      height: 100%;
  }

  .laboral-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
      border-color: var(--u-dorado);
  }

  .laboral-icon {
      font-size: 3rem;
      color: var(--u-verde-medio);
      margin-bottom: 20px;
  }

  .laboral-card h5 {
      font-family: 'Merriweather', serif;
      font-weight: 700;
      color: var(--u-texto);
      margin-bottom: 15px;
  }

  .laboral-card p {
      font-size: 0.9rem;
      color: #666;
      line-height: 1.6;
  }

  /* Audio Player */
  audio {
      width: 100%;
      margin-top: 10px;
      outline: none;
  }

  /* Ajustes Móvil */
  @media (max-width: 991px) {

      .specialty-content,
      .infra-section,
      .laboral-section {
          padding: 50px 20px;
      }

      .specialty-sidebar.sticky-top {
          position: relative !important;
          top: 0 !important;
          margin-top: 40px;
      }
  }