 /* =========================================
           ESTILOS GENERALES
           ========================================= */
 .specialty-content {
     padding: 80px 0;
     background-color: #fff;
 }

 .divider-center {
     height: 4px;
     width: 70px;
     background-color: var(--u-dorado);
     margin: 15px auto;
     border-radius: 2px;
 }

 .divider-left {
     height: 4px;
     width: 50px;
     background-color: var(--u-dorado);
     border-radius: 2px;
     margin-top: 10px;
     margin-bottom: 25px;
 }


 .news-headline {
     color: var(--u-verde-profundo);
     font-family: 'Merriweather', serif;
     font-weight: 900;
     font-size: 2rem;
     line-height: 1.2;
     margin-bottom: 5px;
 }

 /* Sección Descarga */
 .download-box {
     background-color: #f8f9fa;
     border: 1px solid #e0e0e0;
     border-left: 5px solid var(--u-dorado);
     padding: 30px;
     border-radius: 8px;
     display: flex;
     align-items: center;
     justify-content: space-between;
     transition: all 0.3s;
     flex-wrap: wrap;
     margin-bottom: 40px;
 }

 .download-box:hover {
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
     transform: translateY(-5px);
 }

 .icon-pdf {
     font-size: 3rem;
     color: #d9534f;
     margin-right: 20px;
 }

 /* Acordeón Normativo */
 .academic-accordion .accordion-item {
     border: none;
     margin-bottom: 15px;
     box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
     border-radius: 8px !important;
     overflow: hidden;
 }

 .academic-accordion .accordion-button {
     background-color: white;
     color: var(--u-verde-profundo);
     font-family: 'Merriweather', serif;
     font-weight: 700;
     box-shadow: none;
     padding: 20px;
 }

 .academic-accordion .accordion-button:not(.collapsed) {
     background-color: var(--u-verde-profundo);
     color: white;
 }

 .academic-accordion .accordion-button:focus {
     box-shadow: none;
 }

 .accordion-body {
     font-size: 0.95rem;
     line-height: 1.7;
     color: #555;
     padding: 30px;
     border-top: 1px solid #eee;
 }

 .normas-list li {
     margin-bottom: 10px;
     position: relative;
     padding-left: 25px;
 }

 .normas-list li::before {
     content: '\f00c';
     font-family: 'Font Awesome 5 Free';
     font-weight: 900;
     position: absolute;
     left: 0;
     color: var(--u-verde-medio);
 }

 /* Sidebar Protocolos */
 .sidebar-box {
     background-color: #f8f9fa;
     padding: 30px;
     border: 1px solid #eee;
     border-radius: 8px;
 }

 .btn-academic {
     background-color: var(--u-verde-profundo);
     color: white;
     border-radius: 50px;
     padding: 10px 25px;
     text-transform: uppercase;
     font-weight: 700;
     border: 2px solid var(--u-verde-profundo);
     display: inline-block;
     transition: all 0.3s;
 }

 .btn-academic:hover {
     background-color: white;
     color: var(--u-verde-profundo);
 }

 /* Ajustes Móvil */
 @media (max-width: 991px) {
     .hero-slide {
         height: 350px;
     }

     .hero-news-card {
         width: 90%;
         bottom: 20px;
         padding: 20px;
     }

     .download-box {
         flex-direction: column;
         text-align: center;
     }

     .icon-pdf {
         margin-right: 0;
         margin-bottom: 15px;
     }

     .download-box .btn {
         width: 100%;
         margin-top: 15px;
     }

     .specialty-sidebar.sticky-top {
         position: relative !important;
         top: 0 !important;
         margin-top: 40px;
     }
 }