 /* =========================================
           ESTILOS ESPECÍFICOS PLAN COMÚN
           ========================================= */
 .plan-section {
     padding: 80px 0;
     background-color: #fff;
 }
 .news-headline {
     color: var(--u-verde-profundo);
     font-family: 'Merriweather', serif;
     font-weight: 900;
     font-size: 2rem;
     line-height: 1.2;
     margin-bottom: 5px;
 }

 /* Estilos de la Tabla */
 .academic-table-container {
     border-radius: 10px;
     overflow: hidden;
     box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
     border: 1px solid #eee;
 }

 .table-academic {
     width: 100%;
     margin-bottom: 0;
     border-collapse: collapse;
 }

 .table-academic thead {
     background-color: var(--u-verde-profundo);
     color: white;
 }

 .table-academic th {
     padding: 15px;
     font-family: 'Merriweather', serif;
     font-weight: 700;
     text-transform: uppercase;
     font-size: 0.9rem;
     border: none;
 }

 .table-academic td {
     padding: 12px 15px;
     vertical-align: middle;
     border-bottom: 1px solid #eee;
     color: #555;
     font-size: 0.95rem;
 }

 .table-academic tr:nth-child(even) {
     background-color: #f8f9fa;
 }

 .table-academic tr:hover {
     background-color: #f1f3f5;
 }

 .total-row {
     background-color: var(--u-dorado) !important;
     color: #000;
     font-weight: 800;
 }

 .subject-icon {
     width: 30px;
     text-align: center;
     color: var(--u-verde-medio);
     margin-right: 10px;
 }

 /* Sidebar Info */
 .sidebar-box {
     background-color: #f8f9fa;
     padding: 30px;
     border: 1px solid #eee;
     border-radius: 8px;
     border-left: 4px solid var(--u-verde-profundo);
 }

 .divider-left {
     height: 4px;
     width: 50px;
     background-color: var(--u-dorado);
     border-radius: 2px;
     margin-top: 10px;
     margin-bottom: 25px;
 }

 /* Ajustes Móvil */
 @media (max-width: 991px) {
     .hero-slide {
         height: 300px;
     }

     .hero-news-card {
         width: 90%;
         bottom: 20px;
         padding: 20px;
     }

     .specialty-sidebar {
         margin-top: 40px;
     }
 }