/* Estilos generales */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-color);
    background-color: #fff;
}

.main-nav .col-md-2 img {
    max-height: 80px; /* logo.png */
    margin: 0 auto;
    display: block;
}

/* Header styles */
.top-nav {
    background-color: var(--primary-color);
    color: var(--text-white);
    padding: 8px 0;
    font-size: 14px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.top-nav .container {
    position: relative;
    z-index: 2;
    max-width: 100%;
}

.top-nav .d-flex.justify-content-between {
    align-items: center;
    width: 100%;
}

.top-nav a {
    color: var(--text-white);
    text-decoration: none;
    margin: 0 15px 0 0;
    white-space: nowrap;
}

.top-nav a:last-child {
    margin-right: 0;
}

/* ========================================================================
   ESTILOS PARA PESTAÑAS DEL MENÚ SUPERIOR - DISEÑO PERSONALIZADO
   ======================================================================== */

/* Estilos para pestañas del menú superior */
.top-nav .d-flex.overflow-auto {
    overflow: visible !important;
    flex-wrap: nowrap;
    gap: 3px;
}

.top-nav .d-flex.overflow-auto a {
    position: relative;
    background: white;
    color: var(--text-color);
    padding: 12px 16px 8px 16px;
    margin: 0 2px -2px 0;
    border-radius: 8px 8px 0 0;
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
    border-bottom: none;
    transition: all 0.3s ease;
    transform: translateY(2px);
    z-index: 2;
    white-space: nowrap;
    flex-shrink: 0;
}

.top-nav .d-flex.overflow-auto a:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(0);
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.15);
}

.top-nav .d-flex.overflow-auto a:last-child {
    margin-right: 0;
}

/* Efecto de pestaña activa */
.top-nav .d-flex.overflow-auto a.active {
    background: var(--accent-color);
    color: var(--text-color);
    transform: translateY(0);
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.15);
}

/* ========================================================================
   FIN DE ESTILOS PERSONALIZADOS DE PESTAÑAS
   ======================================================================== */

.main-nav {
    padding: 10px 0;
    background-color: #fff;
    border-bottom: 1px solid #eeeeee;
}

.logo {
    width: 80px;
    height: auto;
}

.nav-link {
    color: var(--text-color);
    margin: 0 15px;
    font-weight: 500;
    font-size: 0.9rem;
    white-space: nowrap;
}

/* Dropdown menu styles */
.dropdown-menu {
    border-radius: 0;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.dropdown-item {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.dropdown-item:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
}

/* Breadcrumb */
.breadcrumb-wrapper {
    background-color: var(--primary-color);
    color: var(--text-white);
    padding: 8px 0;
}

.breadcrumb {
    margin-bottom: 0;
    background-color: transparent;
}

.breadcrumb-item a {
    color: var(--text-white);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.8);
}

/* Hero section with CAROUSEL */
.carousel-item {
    height: 400px;
    background-color: var(--primary-color);
    color: var(--text-white);
    position: relative;
}

.carousel-caption {
    background-color: rgba(var(--primary-color-rgb), 0.7);
    padding: 30px;
    border-radius: 5px;
    text-align: left;
    left: 50px;
    right: auto;
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
    max-width: 450px;
}

.hero-overlay {
    background-color: rgba(var(--primary-color-rgb), 0.7);
    padding: 30px;
    border-radius: 5px;
}

.cta-button {
    background-color: var(--text-white);
    color: var(--primary-color);
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: var(--secondary-color);
    color: var(--text-white);
}

/* Hero banner for internal pages */
.internal-hero {
    background-color: var(--primary-color);
    color: var(--text-white);
    padding: 0;
    position: relative;
    height: 400px;
    overflow: hidden;
}

.internal-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(var(--primary-color-rgb), 0.8) 0%, rgba(var(--primary-color-rgb), 0.6) 50%, rgba(var(--primary-color-rgb), 0.3) 100%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content {
    padding: 2rem;
    z-index: 3;
    max-width: 800px;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    max-width: 600px;
}

/* Program Hero */
.program-hero {
    background-color: var(--primary-color);
    color: var(--text-white);
    position: relative;
    overflow: hidden;
}

.program-hero-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    opacity: 0.8;
}

.program-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
}

.program-tag {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-white);
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.program-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.program-subtitle {
    font-size: 1.2rem;
    max-width: 600px;
}

/* Faculty tag */
.faculty-tag {
    background-color: var(--primary-color);
    color: white;
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    margin-top: -20px;
    position: relative;
    z-index: 10;
}

/* Academic offer section */
.academic-offer {
    padding: 40px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.academic-title {
    display: inline-block;
    margin: 0 auto 30px;
    padding: 10px 30px;
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    color: var(--primary-color);
}

.program-cards-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.program-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
    width: 200px;
}

.program-card:hover {
    transform: translateY(-5px);
}

.program-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.program-label {
    background-color: var(--primary-color);
    color: var(--text-white);
    padding: 10px;
    text-align: center;
    font-weight: bold;
}

/* News and events section */
.news-events {
    padding: 30px 0;
    text-align: center;
}

.section-button {
    background-color: var(--text-white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    padding: 8px 25px;
    margin: 0 10px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.section-button:hover, .section-button.active {
    background-color: var(--primary-color);
    color: var(--text-white);
}

/* Services section */
.services {
    padding: 40px 0;
    background-color: var(--text-white);
}

.service-icon {
    color: var(--primary-color);
    font-size: 40px;
    margin-bottom: 15px;
}

.service-card {
    text-align: center;
    padding: 30px;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

/* Statistics section */
.statistics {
    background-color: var(--primary-color);
    color: var(--text-white);
    padding: 40px 0;
}

.stat-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 18px;
}

/* Partners section */
.partners {
    padding: 40px 0;
    background-color: #f9f9f9;
}

.partner-logo {
    height: 60px;
    max-width: 100%;
    object-fit: contain;
    margin: 10px;
    /*filter: grayscale(100%);*/
    transition: filter 0.3s ease;
}

.partner-logo:hover {
    filter: grayscale(0%);
}

/* Registration form */
.registration-form {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    padding: 1.5rem;
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 350px;
    z-index: 10;
}

.form-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.form-control {
    margin-bottom: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.6rem 1.5rem;
    font-weight: bold;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--text-white);
}

/* Main content styles */
.main-content {
    padding: 3rem 0;
}

.section-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
}

.article-content {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content .first-letter {
    float: left;
    font-size: 4rem;
    line-height: 0.8;
    padding-right: 8px;
    margin-top: 8px;
    color: var(--primary-color);
    font-weight: bold;
}

.content-images {
    margin: 2rem 0;
}

.content-image {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.content-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.content-image img:hover {
    transform: scale(1.02);
}

/* Related content section */
.related-content {
    padding: 3rem 0;
    background-color: var(--bg-light);
}

.related-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
    background-color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.related-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.related-card .card-content {
    padding: 1.5rem;
}

.card-tag {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    font-size: 0.8rem;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    margin-bottom: 0.8rem;
}

.card-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.card-date {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Contact info */
.contact-info {
    padding: 1rem;
    border-radius: 8px;
}

.contact-info h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-item {
    margin-bottom: 0.5rem;
}

.contact-item i {
    color: var(--primary-color);
    width: 20px;
    margin-right: 8px;
    text-align: center;
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: var(--text-color);
    padding: 30px 0;
}

.footer a {
    color: var(--text-color);
    text-decoration: none;
}

.social-icon {
    font-size: 24px;
    margin: 0 10px;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.2);
}

.link-info {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    margin-top: 20px;
}
.legal-info {
    font-size: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    margin-top: 20px;
}

/* Accessibility button */
.accessibility-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: var(--primary-color);
    color: var(--text-white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1000;
}
/* ===============================================
   MEDIA QUERIES REORGANIZADAS Y OPTIMIZADAS
   =============================================== */

/* PANTALLAS EXTRA GRANDES - 1400px+ */
@media (min-width: 1400px) {
    .navbar-nav .nav-link {
        font-size: 0.95rem;
        margin: 0 15px;
        padding: 8px 15px;
    }
}

/* PANTALLAS GRANDES - 1200px a 1399px */
@media (min-width: 1200px) and (max-width: 1399px) {
    .navbar-nav .nav-link {
        font-size: 0.9rem;
        margin: 0 12px;
        padding: 8px 12px;
    }
}

/* ===============================================
   MENÚ EN DOS LÍNEAS - 992px a 1199px
   =============================================== */
/* ===============================================
   MENÚ EN DOS LÍNEAS - ESPACIADO CORREGIDO
   =============================================== */
@media (min-width: 992px) and (max-width: 1199px) {
    
    /* Container del navbar - forzar 2 líneas */
    .navbar-collapse .navbar-nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        width: 100%;
        gap: 8px 15px; /* gap vertical y horizontal */
    }
    
    /* PRIMERA LÍNEA - Elementos 1, 2, 3 */
    .navbar-nav .nav-item:nth-child(1),
    .navbar-nav .nav-item:nth-child(2),
    .navbar-nav .nav-item:nth-child(3) {
        flex: 0 1 auto; /* No crecer, encogerse si es necesario */
        order: 1;
    }
    
    /* FORZAR SALTO DE LÍNEA después del 3er elemento */
    .navbar-nav .nav-item:nth-child(3)::after {
        content: "";
        flex-basis: 100%;
        height: 0;
        order: 2;
    }
    
    /* SEGUNDA LÍNEA - Elementos 4, 5, 6 */
    .navbar-nav .nav-item:nth-child(4),
    .navbar-nav .nav-item:nth-child(5),
    .navbar-nav .nav-item:nth-child(6) {
        flex: 0 1 auto;
        order: 3;
    }
    
    /* Ajustar enlaces - más compactos */
    .navbar-nav .nav-link {
        font-size: 0.82rem !important;
        padding: 6px 12px !important;
        margin: 0 !important;
        white-space: nowrap;
        text-align: center;
    }
    
    /* Top-nav más compacto */
    .top-nav .d-flex.overflow-auto a {
        font-size: 11px;
        padding: 8px 10px 6px 10px;
        margin: 0 1px -2px 0;
    }
    
    /* Dropdowns centrados */
    .navbar-nav .dropdown-menu {
        text-align: left;
        left: 50%;
        transform: translateX(-50%);
    }
    
    /* Flecha dropdown más pequeña */
    .navbar-nav .dropdown-toggle::after {
        font-size: 0.7rem;
    }
    
    /* Reducir padding del navbar */
    .main-nav {
        padding: 8px 0;
    }
    
    /* Ajustar el contenedor principal */
    .main-nav .col-md-10 {
        padding: 0;
    }
}
/* TABLETAS Y LAPTOPS PEQUEÑAS - 768px a 991px */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .article-content {
        font-size: 1rem;
    }
    
    .program-hero-img {
        height: 350px;
    }
    
    .program-title {
        font-size: 2rem;
    }
    
    .registration-form {
        position: relative;
        top: unset;
        right: unset;
        width: 100%;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
}

/* MÓVILES Y TABLETAS PEQUEÑAS - 768px y menos */
@media (max-width: 768px) {
    /* Top-nav con scroll horizontal */
    .top-nav .container .d-flex.overflow-auto {
        overflow-x: auto !important;
        overflow-y: hidden;
        white-space: nowrap;
        padding-bottom: 5px;
    }

    .top-nav .container .d-flex.overflow-auto a {
        flex-shrink: 0;
        font-size: 10px !important;
        padding: 6px 8px 4px 8px !important;
        margin: 0 1px !important;
    }
    
    .top-nav {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding: 8px 0;
    }
    
    /* Logo más grande y centrado */
    .main-nav .col-md-2 img {
        max-height: 100px;
        margin: 0 auto;
        display: block;
    }
    
    /* Estilo de menú móvil mejorado */
    .navbar-nav .nav-link {
        font-size: 1.2rem;
        padding: 12px 15px;
        text-align: center;
        font-weight: 500;
    }
    
    /* Estilo recuadro azul para elementos desplegables */
    .navbar-nav .dropdown .nav-link {
        background-color: #1CA3B7;
        color: white;
        border-radius: 5px;
        margin: 5px 0;
    }
    
    /* Botón hamburguesa centrado */
    .navbar-toggler {
        margin: 0 auto;
        display: block;
    }
    
    /* Estructura de menú centrado */
    .navbar-collapse {
        text-align: center;
    }
    
    /* Estilos para el menú hamburguesa desplegado */
    .navbar-collapse.show .navbar-nav,
    .navbar-collapse.collapsing .navbar-nav {
        background-color: #f9f9f9;
        border-radius: 8px;
        padding: 10px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    
    /* Elementos no desplegables con estilo normal pero texto grande */
    .navbar-nav .nav-item:not(.dropdown) .nav-link {
        color: var(--text-color);
        font-weight: 600;
    }
    
    /* Mejorar el dropdown en móvil */
    .dropdown-menu {
        text-align: center;
        border: none;
        background-color: #f0f9fa;
        box-shadow: inset 0 0 5px rgba(28, 163, 183, 0.2);
    }
    
    .dropdown-item {
        padding: 10px;
        font-size: 1rem;
    }
    
    /* Corregir imágenes que se salen del contenedor */
    img, 
    .img-fluid,
    .article-content img,
    .sidebar-image img {
        max-width: 100%;
        height: auto;
    }
    
    /* Para el título de RESEÑA y otros elementos destacados */
    .title-with-bg {
        display: block;
        text-align: center !important;
        margin-left: auto;
        margin-right: auto;
        width: 80%;
        background-color: #1CA3B7;
        color: white;
        padding: 10px;
        border-radius: 5px;
        margin-bottom: 20px;
    }
    
    /* Ajustar el contenido de texto */
    .article-content p {
        padding: 0 10px;
    }
    
    .internal-hero {
        height: 350px;
    }
    
    .hero-content {
        padding: 1.5rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .carousel-item {
        height: 350px;
    }
    
    .program-hero-img {
        height: 300px;
    }
    
    .program-hero-content {
        padding: 1.5rem;
    }
    
    .program-title {
        font-size: 1.8rem;
    }
    
    .program-subtitle {
        font-size: 1rem;
    }
    
    .highlight-number {
        font-size: 2.5rem;
    }
    
    .highlight-item {
        width: 80px;
        height: 80px;
    }
}

/* MÓVILES PEQUEÑOS - 576px y menos */
@media (max-width: 576px) {
    .internal-hero {
        height: 300px;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .article-content .first-letter {
        font-size: 3rem;
    }
    
    .carousel-item {
        height: 300px;
    }
    
    .carousel-caption {
        left: 20px;
        padding: 20px;
    }
}

/* Estilos para el editor de contenido */

/* Título con fondo - TinyMCE */
.title-with-bg {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 20px;
}

/* Lista con estilo - TinyMCE */
.fancy-list {
    list-style-type: none;
    padding-left: 0;
}

.fancy-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.fancy-list li:before {
    content: "•";
    color: var(--primary-color);
    font-size: 1.5em;
    position: absolute;
    left: 0;
    top: -5px;
}

/* Elemento destacado - TinyMCE */
.highlight {
    background-color: #FFF3E0; /* Color crema claro que combina con naranja */
    border-bottom: 2px solid var(--primary-color);
    padding: 2px 4px;
}

/* Citas destacadas */
.blockquote-custom {
    padding: 20px;
    margin: 30px 0;
    background-color: var(--bg-cream);
    border-left: 5px solid var(--primary-color);
    font-style: italic;
    position: relative;
}

.blockquote-custom:before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: -15px;
    left: 10px;
}

.blockquote-custom .quote-author {
    font-weight: bold;
    display: block;
    text-align: right;
    margin-top: 10px;
    font-style: normal;
    color: var(--primary-color);
}

/* Tablas estilizadas */
.table-custom {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.table-custom thead th {
    background-color: var(--primary-color);
    color: white;
    padding: 12px;
    text-align: left;
}

.table-custom tbody tr:nth-child(even) {
    background-color: var(--bg-cream);
}

.table-custom td {
    padding: 10px 12px;
    border-bottom: 1px solid #e0e0e0;
}

/* Botón dentro del contenido */
.content-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    margin: 15px 0;
    transition: all 0.3s ease;
}

.content-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    color: white;
    text-decoration: none;
}

/* Sección con borde */
.section-bordered {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin: 25px 0;
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* Tarjeta informativa */
.info-card {
    background-color: var(--bg-cream);
    border-radius: 8px;
    padding: 20px;
    margin: 25px 0;
    border-top: 3px solid var(--primary-color);
}

.info-card-title {
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* Enlaces destacados */
.link-highlight {
    color: var(--primary-color);
    font-weight: bold;
    text-decoration: none;
    border-bottom: 2px dotted var(--primary-color);
    transition: all 0.3s ease;
}

.link-highlight:hover {
    background-color: var(--bg-cream);
    text-decoration: none;
}