:root {
    --purple: #2e004f;
    --gold: #d4a017;
    --white: #ffffff;
    --gray: #f4f4f4;
}

body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; margin: 0; color: #333; background: var(--gray); }

/* =========================================
   HEADER PRINCIPAL
   ========================================= */
.main-header { 
    background: var(--purple); 
    padding: 12px 0; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.3); 
    position: sticky; 
    top: 0; 
    z-index: 1000; 
}

.header-container { 
    max-width: 1400px; 
    margin: 0 auto; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 0 30px; 
    gap: 40px; 
}

.main-nav {
    flex: 1;
}

/* =========================================
   MENÚ PRINCIPAL
   ========================================= */
.main-nav ul { 
    list-style: none; 
    display: flex; 
    align-items: center;
    gap: 28px; 
    margin: 0; 
    padding: 0; 
}

.main-nav li { 
    display: inline-block; 
    position: relative; 
}

.main-nav a { 
    color: var(--white); 
    text-decoration: none; 
    font-weight: 700; 
    font-size: 0.85rem; 
    text-transform: uppercase; 
    letter-spacing: 0.5px; 
    transition: color 0.3s; 
    padding: 8px 0;
    white-space: nowrap;
}

.main-nav a:hover { 
    color: var(--gold); 
}

/* =========================================
   SUBMENÚ
   ========================================= */
.main-nav li.dropdown { 
    position: relative; 
}

.main-nav .dropdown-content { 
    display: none; 
    position: absolute; 
    top: 100%; 
    left: 0; 
    background-color: #2e004f; 
    min-width: 220px; 
    box-shadow: 0 8px 16px rgba(0,0,0,0.3); 
    border-radius: 5px; 
    z-index: 1000; 
    padding: 6px 0; 
    list-style: none; 
    margin: 0; 
    border-top: 3px solid #d4a017;
}

.main-nav li.dropdown:hover .dropdown-content { 
    display: block; 
}

.main-nav .dropdown-content li { 
    display: block; 
    width: 100%; 
    white-space: nowrap; 
    margin: 0;
}

.main-nav .dropdown-content a { 
    color: #ffffff; 
    padding: 8px 20px; 
    display: block; 
    font-size: 0.85rem; 
    font-weight: 600; 
    text-transform: none; 
    text-decoration: none; 
    line-height: 1.3; 
}

.main-nav .dropdown-content a:hover { 
    background-color: #d4a017; 
    color: #2e004f; 
}

/* =========================================
   ACCIONES DEL HEADER
   ========================================= */
.header-actions { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
    flex-shrink: 0;
}

.search-form {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.15);
    border-radius: 20px;
    padding: 3px 10px;
    transition: background 0.3s;
}

.search-form:hover {
    background: rgba(255,255,255,0.25);
}

.search-form input {
    background: transparent;
    border: none;
    color: #fff;
    padding: 6px 8px;
    font-size: 0.8rem;
    width: 100px;
    outline: none;
}

.search-form input::placeholder {
    color: rgba(255,255,255,0.7);
}

.search-form button {
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 0.9rem;
    padding: 0 5px;
}

.btn-afiliate {
    background: #d4a017;
    color: #2e004f !important;
    padding: 9px 20px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 0.85rem;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.3s, background 0.3s;
    white-space: nowrap;
}

.btn-afiliate:hover {
    background: #ffffff;
    transform: scale(1.05);
}

.social-header {
    display: flex;
    gap: 12px;
    align-items: center;
}

.social-header a { 
    color: var(--white); 
    font-size: 1rem; 
    transition: color 0.3s; 
}

.social-header a:hover { 
    color: var(--gold); 
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1100px) {
    .main-nav ul { gap: 18px; }
    .main-nav a { font-size: 0.78rem; }
    .search-form input { width: 80px; }
}

@media (max-width: 900px) {
    .header-container { flex-direction: column; gap: 12px; }
    .main-nav ul { flex-wrap: wrap; justify-content: center; gap: 15px; }
    .header-actions { flex-wrap: wrap; justify-content: center; }
}

/* =========================================
   SLIDER
   ========================================= */
.hero-slider {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #2e004f;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.slide.active { opacity: 1; z-index: 2; }

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #d4a017;
    color: #2e004f;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 22px;
    font-weight: bold;
    border-radius: 5px;
    z-index: 20;
    transition: background 0.3s;
}

.prev { left: 20px; }
.next { right: 20px; }
.prev:hover, .next:hover { background: #ffffff; }

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

.dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255,255,255,0.6);
    cursor: pointer;
    border: 2px solid #2e004f;
}

.dot.active { background: #d4a017; border-color: #d4a017; }

/* =========================================
   SECCIONES (Nosotros / Pilares)
   ========================================= */
.three-sections { padding: 40px 20px; background: var(--white); text-align: center; }
.section-intro h2 { color: var(--purple); font-size: 2.5rem; margin-bottom: 10px; }
.section-intro p { color: #666; margin-bottom: 40px; font-size: 1.2rem; }
.sections-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; max-width: 1200px; margin: 0 auto; }
.section-card { background: var(--gray); border-radius: 12px; padding: 30px 20px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); transition: transform 0.3s, box-shadow 0.3s; border-top: 5px solid var(--gold); }
.section-card:hover { transform: translateY(-10px); box-shadow: 0 10px 25px rgba(0,0,0,0.15); }
.section-icon { width: 80px; height: 80px; background: var(--purple); color: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 2rem; border: 3px solid var(--gold); }
.section-card h3 { color: var(--purple); font-size: 1.6rem; margin-bottom: 15px; }
.section-card p { color: #555; line-height: 1.6; }

/* =========================================
   ARTÍCULOS
   ========================================= */
.latest-posts { padding: 50px; max-width: 1200px; margin: auto; }
.posts-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 15px; max-width: 1200px; margin: 0 auto; }

@media (max-width: 1200px) { .posts-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 900px) { .posts-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .posts-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 400px) { .posts-grid { grid-template-columns: repeat(1, 1fr); } }

/* Tarjetas de noticias */
.post-card { 
    background: var(--white); 
    padding: 0;
    border-radius: 8px; 
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); 
    border-top: 5px solid var(--gold); 
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.post-card .date { 
    color: var(--purple); 
    font-weight: bold; 
    margin: 0 20px 10px 20px;
    font-size: 0.85rem;
}
.post-card h3 {
    margin: 15px 20px 5px 20px;
    color: var(--purple);
    font-size: 1.1rem;
    line-height: 1.3;
}
.post-card p {
    margin: 0 20px 10px 20px;
    color: #555;
    font-size: 0.9rem;
    line-height: 1.5;
}
.post-card .btn {
    margin: 0 20px 20px 20px;
    align-self: flex-start;
    background: var(--purple);
    color: var(--white);
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.9rem;
}
.btn { background: var(--purple); color: var(--white); padding: 10px 20px; text-decoration: none; display: inline-block; margin-top: 10px; border-radius: 5px; }

/* =========================================
   FOOTER
   ========================================= */
footer { background: var(--purple); color: var(--white); text-align: center; padding: 20px; margin-top: 50px; }
.social-icons a { color: var(--gold); font-size: 24px; margin: 0 10px; text-decoration: none; }

/* =========================================
   IMÁGENES
   ========================================= */

/* 1. Miniaturas de portada en tarjetas del blog/home */
.post-card img, .post-thumb {
    display: block !important;
    width: 100% !important;
    height: 180px !important;
    max-height: 180px !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* 2. Imágenes dentro del contenido */
.comite-content img,
.post-content img,
.pagina-content img {
    display: inline-block !important;
    max-width: 100% !important;
    height: auto !important;
    margin: 10px auto !important;
    border-radius: 8px !important;
    float: none !important;
}

.comite-content img[style*="float"],
.post-content img[style*="float"],
.pagina-content img[style*="float"] {
    float: none !important;
}

.comite-content img[width="NaN"],
.post-content img[width="NaN"] {
    width: auto !important;
    height: auto !important;
}

/* 3. Videos de YouTube - PROPORCIÓN 16:9 */
.comite-content iframe,
.post-content iframe,
.pagina-content iframe,
iframe[src*="youtube.com"],
iframe[src*="youtu.be"] {
    display: inline-block !important;
    max-width: 100% !important;
    height: auto !important;
    aspect-ratio: 16 / 9 !important;
    margin: 20px auto !important;
    border: none !important;
    border-radius: 8px !important;
}

/* 4. Párrafos del contenido */
.comite-content p,
.post-content p,
.pagina-content p {
    margin-bottom: 15px;
    line-height: 1.7;
    text-align: left;
}

/* 5. Videos y audios locales */
video {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
    margin: 25px auto !important;
    border-radius: 8px !important;
}

audio {
    max-width: 100% !important;
    width: 100% !important;
    height: 50px !important;
    display: block !important;
    margin: 25px auto !important;
}

audio img, video img, audio source, video source { display: none !important; }

/* =========================================
   WHATSAPP FLOTANTE
   ========================================= */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: transform 0.3s;
    text-decoration: none;
}

.whatsapp-float:hover { transform: scale(1.1); color: #ffffff; }

@media (max-width: 768px) {
    .whatsapp-float { width: 50px; height: 50px; font-size: 26px; bottom: 20px; right: 20px; }
}

/* =========================================
   SUSCRIPCIÓN
   ========================================= */
.suscripcion-box {
    background: linear-gradient(135deg, #2e004f, #4a0072);
    color: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    margin: 40px auto;
    max-width: 600px;
}

.suscripcion-box h3 { color: #d4a017; font-size: 1.8rem; margin-bottom: 10px; }
.suscripcion-box p { margin-bottom: 20px; font-size: 1.1rem; }
.suscripcion-form { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.suscripcion-form input { flex: 1; min-width: 200px; padding: 12px 15px; border: none; border-radius: 8px; font-size: 1rem; }
.suscripcion-form button { background: #d4a017; color: #2e004f; border: none; padding: 12px 30px; border-radius: 8px; font-weight: bold; font-size: 1rem; cursor: pointer; }
.suscripcion-msg { background: rgba(255,255,255,0.2); padding: 10px; border-radius: 8px; margin-bottom: 15px; }

/* =========================================
   TESTIMONIOS
   ========================================= */
.testimonios-section { padding: 60px 20px; background: #f9f9f9; text-align: center; }
.testimonios-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; max-width: 1200px; margin: 40px auto 0; }
.testimonio-card { background: #ffffff; padding: 30px 25px; border-radius: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.08); border-top: 4px solid #d4a017; text-align: left; }
.testimonio-card i.fa-quote-left { color: #d4a017; font-size: 2rem; margin-bottom: 15px; display: block; }
.testimonio-mensaje { font-style: italic; color: #555; line-height: 1.6; margin-bottom: 20px; }
.testimonio-autor { display: flex; align-items: center; gap: 12px; }
.testimonio-autor img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.testimonio-autor strong { display: block; color: #2e004f; font-size: 1rem; }
.testimonio-autor span { color: #888; font-size: 0.85rem; }

/* =========================================
   IMAGEN DE PORTADA EN ARTÍCULO INDIVIDUAL
   ========================================= */
.imagen-portada {
    max-width: 100% !important;
    width: auto !important;
    height: auto !important;
    max-height: 500px !important;
    object-fit: contain !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15) !important;
    display: block !important;
    margin: 0 auto !important;
}

/* =========================================
   MEJORAS VISUALES E INTERACTIVAS
   ========================================= */

/* Tarjetas: altura uniforme y hover con elevación */
.post-card {
    display: flex;
    flex-direction: column;
    min-height: 420px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}
.post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(46, 0, 79, 0.25);
}
.post-card:hover .post-thumb {
    transform: scale(1.06);
}

/* Imagen thumbnail con transición */
.post-thumb {
    transition: transform 0.5s ease !important;
    overflow: hidden;
}

/* Placeholder cuando no hay imagen */
.post-thumb-placeholder {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #2e004f, #4a0072);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4a017;
    font-size: 3rem;
    position: relative;
}
.post-thumb-placeholder::after {
    content: '📰';
    filter: grayscale(0.3);
}

/* Badge de fecha */
.post-card .date {
    display: inline-block;
    background: #f0e6f5;
    color: #2e004f;
    padding: 4px 12px;
    border-radius: 14px;
    font-size: 0.72rem;
    font-weight: 700;
    margin: 12px 20px 8px 20px;
    align-self: flex-start;
}

/* Botón "Leer más" con flecha animada */
.post-card .btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s, background 0.3s, color 0.3s;
    margin-top: auto;
}
.post-card .btn::after {
    content: '→';
    transition: transform 0.3s;
}
.post-card:hover .btn {
    background: #d4a017;
    color: #2e004f;
    gap: 12px;
}
.post-card:hover .btn::after {
    transform: translateX(4px);
}

/* Título con subrayado decorativo */
.latest-posts h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}
.latest-posts h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background: #d4a017;
    border-radius: 2px;
}

/* Fondo degradado en la sección de artículos */
.latest-posts {
    background: linear-gradient(to bottom, #fafafa, #ffffff);
}

/* Slider: overlay degradado sutil */
.hero-slider::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(46,0,79,0.15), rgba(46,0,79,0));
    pointer-events: none;
    z-index: 5;
}

/* Botón volver arriba */
.btn-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: #2e004f;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background 0.3s;
}
.btn-top.visible {
    opacity: 1;
    visibility: visible;
}
.btn-top:hover {
    background: #d4a017;
    color: #2e004f;
    transform: translateY(-4px);
}
@media (max-width: 768px) {
    .btn-top {
        bottom: 90px;
        right: 20px;
        width: 42px;
        height: 42px;
    }
}

/* Mejora del slider */
.prev, .next {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.85;
    transition: opacity 0.3s, background 0.3s, transform 0.3s;
}
.prev:hover, .next:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.dot {
    transition: transform 0.3s, background 0.3s;
}
.dot:hover {
    transform: scale(1.2);
}

/* Mejora del footer */
footer {
    padding: 30px 20px;
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}
.social-icons a {
    transition: transform 0.3s, color 0.3s;
    display: inline-block;
}
.social-icons a:hover {
    transform: translateY(-3px);
    color: #ffffff;
}

/* Responsive de las tarjetas en móvil */
@media (max-width: 600px) {
    .post-card {
        min-height: auto;
    }
    .post-card .date {
        font-size: 0.68rem;
    }
}

/* =========================================
   COMPARTIR EN REDES
   ========================================= */
.compartir-redes {
    margin-top: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.compartir-redes strong {
    color: #2e004f;
    margin-right: 8px;
}
.compartir-redes a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: transform 0.3s;
}
.compartir-redes a:hover {
    transform: translateY(-3px) scale(1.05);
}
.share-fb { background: #1877f2; }
.share-tw { background: #1da1f2; }
.share-wa { background: #25d366; }

/* =========================================
   SEPARACIÓN ENTRE IMAGEN Y TEXTO EN PÁGINAS
   ========================================= */

/* Imágenes flotantes con margen */
.post-content img[style*="float"],
.pagina-content img[style*="float"],
.comite-content img[style*="float"] {
    margin-right: 25px !important;
    margin-bottom: 20px !important;
    margin-left: 0 !important;
}

/* Imágenes dentro de párrafos con texto al lado */
.post-content p img,
.pagina-content p img,
.comite-content p img {
    margin-right: 20px !important;
    margin-bottom: 15px !important;
    vertical-align: top;
}

/* Celdas de tabla con padding */
.post-content table td,
.pagina-content table td,
.comite-content table td {
    padding: 15px 20px !important;
    vertical-align: top !important;
}

/* Si hay columnas con flex o grid */
.post-content .row,
.pagina-content .row {
    gap: 25px !important;
}

/* Párrafos con más espacio */
.post-content p,
.pagina-content p {
    margin-bottom: 15px !important;
    line-height: 1.7 !important;
}

/* =========================================
   SEPARACIÓN IMAGEN + TEXTO (ESTRUCTURA TIPO COLUMNA)
   ========================================= */

/* Cuando la imagen y el texto están dentro del mismo bloque sin separación,
   esta regla crea dos columnas automáticamente */
.pagina-content p:has(img),
.post-content p:has(img) {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.pagina-content p:has(img) img,
.post-content p:has(img) img {
    flex-shrink: 0;
    max-width: 45%;
}

/* Si la imagen es la única hija de un <p>, que ocupe todo el ancho */
.pagina-content p:has(img:only-child),
.post-content p:has(img:only-child) {
    display: block;
}

.pagina-content p:has(img:only-child) img,
.post-content p:has(img:only-child) img {
    max-width: 100%;
}

/* Márgenes generales para que el texto no se pegue a la imagen */
.pagina-content,
.post-content,
.comite-content {
    padding: 10px 5px;
}
/* =========================================
   TICKER BAR (ÚLTIMAS NOTICIAS + ACCESOS)
   ========================================= */
.ticker-bar {
    background: #ffffff;
    border-bottom: 3px solid #d4a017;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: relative;
    z-index: 100;
}

.ticker-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 0 30px;
    gap: 20px;
    height: 55px;
}

/* --- Ticker de noticias --- */
.ticker-news {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 15px;
    overflow: hidden;
    min-width: 0; /* permite que flex funcione bien */
}

.ticker-label {
    background: #2e004f;
    color: #d4a017;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.ticker-label i {
    font-size: 0.85rem;
}

.ticker-wrapper {
    flex: 1;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent 0%, #000 5%, #000 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 5%, #000 95%, transparent 100%);
}

.ticker-content {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    white-space: nowrap;
    animation: ticker-scroll 40s linear infinite;
    padding-left: 100%;
}

.ticker-content:hover {
    animation-play-state: paused;
}

.ticker-item {
    color: #2e004f;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.ticker-item:hover {
    color: #d4a017;
}

.ticker-sep {
    color: #d4a017;
    font-weight: bold;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* --- Accesos rápidos --- */
.quick-links {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.quick-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f0e6f5;
    color: #2e004f;
    padding: 7px 14px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.3s, color 0.3s, transform 0.3s;
    white-space: nowrap;
}

.quick-link i {
    font-size: 0.85rem;
}

.quick-link:hover {
    background: #d4a017;
    color: #2e004f;
    transform: translateY(-2px);
}

/* --- Responsive --- */
@media (max-width: 900px) {
    .ticker-container {
        padding: 0 15px;
        gap: 10px;
        height: 50px;
    }
    .ticker-label {
        padding: 5px 10px;
        font-size: 0.65rem;
    }
    .ticker-label span {
        display: none; /* oculta "ÚLTIMAS" en móvil */
    }
    .ticker-item {
        font-size: 0.78rem;
    }
    .quick-link {
        padding: 6px 10px;
        font-size: 0.72rem;
    }
    .quick-link span {
        display: none; /* solo iconos en móvil */
    }
}

@media (max-width: 600px) {
    .quick-links {
        gap: 5px;
    }
    .quick-link {
        padding: 6px 9px;
    }
}