/* --- Ticker: Diseño Optimizado para Iguazú Ahora --- */
.ahora-ticker-wrapper {
    background: #E11C24;
    color: #ffffff;
    display: flex;
    align-items: center;
    overflow: hidden;
    height: 40px;
    font-family: Arial, sans-serif;
    position: relative;
    border-radius: 6px;
    width: auto !important; /* Permite que el margen lateral funcione */
    max-width: 100vw !important;
    box-sizing: border-box;
    margin: 10px 12px; /* Este es el margen que le da aire en el celu */
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* --- Etiqueta AHORA: Fija y con Sombra --- */
.ahora-label {
    background: #a3141a;
    padding: 0 15px;
    height: 100%;
    display: flex;
    align-items: center;
    font-weight: bold;
    color: #ffffff !important;
    z-index: 10;
    position: relative;
    box-shadow: 4px 0 8px rgba(0,0,0,0.3); /* Sombra para que el texto pase por debajo */
}

/* --- Animación de Noticias --- */
.ahora-track {
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.ahora-move {
    display: inline-block;
    padding-left: 30px; 
    animation: ahora-scroll 28s linear infinite; /* Velocidad ajustada */
}

@keyframes ahora-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* --- Links de Noticias con Separadores --- */
.ahora-noticia-link, 
.ahora-noticia-link:visited, 
.ahora-noticia-link:hover {
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: 600;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    font-size: 14px;
}

/* El punto separador entre noticias */
.ahora-noticia-link::after {
    content: "•";
    margin-left: 30px;
    margin-right: 10px;
    opacity: 0.7;
    font-size: 18px;
    color: #ffffff;
}

/* --- SOLUCIÓN PARA LOGO Y ZOOM (NO TOCAR - Mantiene la estabilidad) --- */
@media (max-width: 768px) {
    /* Forzamos el logo a ser siempre visible y no deformarse */
    header img, 
    .elementor-widget-image img,
    img[src*="logo"] {
        max-width: 180px !important;
        width: 180px !important;
        height: auto !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        margin: 10px auto !important;
    }

    /* BLOQUEO MECÁNICO DE ZOOM OUT: Evita que el diseño se achique solo */
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        position: relative !important;
        max-width: 100vw !important;
    }

    .ahora-ticker-wrapper {
        border-radius: 4px;
        margin: 8px 10px; /* Margen un poquito más chico en móviles */
        height: 38px;
    }

    .ahora-label {
        font-size: 12px;
        padding: 0 10px;
    }
}