/* Estilos generales y reseteo */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0e0e10; /* Fondo oscuro estilo Twitch */
    color: #efeff1; /* Texto claro */
    line-height: 1.6;
}

/* Contenedor principal que divide el menú lateral y el contenido */
.app-container {
    display: flex;
    min-height: 100vh;
}

/* --- MENÚ LATERAL (Sidebar) --- */
.sidebar {
    width: 240px;
    background-color: #18181b;
    border-right: 1px solid #2d2d30;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: 100;
}

/* Estilos para los inputs y textarea del formulario de sugerencias */
#sugerencias-form input:focus, 
#sugerencias-form textarea:focus {
    border-color: #9146FF !important;
    box-shadow: 0 0 5px rgba(145, 70, 255, 0.4);

    
}

.sidebar-logo {
    padding: 1.2rem 1rem;
    border-bottom: 1px solid #9146ff;
    display: flex;
    align-items: center;
    gap: 12px; /* Espacio entre el logo pequeño y el texto */
}

/* Estilos para el logo pequeño en la esquina superior izquierda */
.logo-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #9146ff;
    flex-shrink: 0;
}

.sidebar-logo h2 {
    color: #b700ff !important;
    font-size: 1.15rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* --- ILUMINACIÓN AUTOMÁTICA DEL MENÚ AL HACER SCROLL --- */
.sidebar-nav ul li a.active {
    background-color: #9146ff !important;
    color: #9146ff !important;
    border-left: 4px solid #9146ff !important;
}

.sidebar-nav {
    flex: 1;
    padding-top: 1rem;
}

.sidebar-nav ul {
    list-style: none;
}

.sidebar-nav ul li a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0.85rem 1.5rem;
    color: #efeff1;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.sidebar-nav ul li a i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

/* =============================================================
   ESTILOS DE LA BARRA LATERAL Y BOTONES (ACTIVE / HOVER)
   ============================================================= */

.sidebar-nav {
    flex: 1;
    padding-top: 1rem;
}

.sidebar-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-nav ul li {
    margin-bottom: 4px;
}

.sidebar-nav ul li a,
.sidebar-nav ul li a.nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0.85rem 1.5rem;
    color: #efeff1;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.sidebar-nav ul li a i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

/* Efecto Hover */
.sidebar-nav ul li a:hover,
.sidebar-nav ul li a.nav-link:hover {
    color: #ffffff;
    background-color: #7b2cbf;
}

/* Estado Activo unificado (tanto para el LI como para el A) */
.sidebar-nav ul li.active > a,
.sidebar-nav ul li a.active,
.sidebar-nav a.active {
    background-color: #9146FF !important;
    color: #ffffff !important;
    border-radius: 6px;
}

.sidebar-footer {
    padding: 1rem 1.5rem;
    font-size: 0.rem;
    color: hsl(0, 0%, 100%);
    border-top: 1px solid #2d2d30;
    text-align: center;
}

.sidebar-logo .logo-img {
    width: 80px; /* O el tamaño en píxeles que prefieras */
    height: auto;
    object-fit: contain;
}


/* Estilo para cuando la sección está activa en el menú lateral al hacer scroll */
.sidebar-nav a.active {
    background-color: #9146FF !important;
    color: #ffffff !important;
    border-radius: 6px;
}


/* --- CONTENIDO PRINCIPAL --- */
.main-content {
    margin-left: 240px;
    flex: 1;
    padding: 2rem 3rem;
    max-width: calc(100% - 240px);
}

section.about {
    padding-bottom: 60px; /* Da un respiro visual entre secciones */
    margin-bottom: 40px;
    border-bottom: 1px solid #2f2f35; /* Opcional: línea divisoria clara */
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 40px; /* Ajusta esto según el espacio que quieras dejar arriba al saltar */
}

/* Sección Hero / Banner */
.hero {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    padding: 1.5rem 2rem 2rem 2rem;
    min-height: auto;
    box-sizing: border-box;
}

/* Opcional: si el contenedor del banner tiene algún margen que lo desplace, asegúrate de que esté centrado */
.hero .banner-container {
    width: 100%;
    max-width: 900px; /* Ajusta este valor si quieres que el banner sea más ancho o estrecho */
    margin: 0 auto 1.5rem auto;
}

.hero .banner-container img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.banner-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 1.5rem auto;
    overflow: hidden;
    border-radius: 10px;
    border: 2px solid #9146ff;
    box-shadow: 0 4px 15px rgba(145, 70, 255, 0.3);
}

.banner-container img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-content h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.hero-content p {
    color: #ffffff;
    margin-bottom: 1.5rem;
}

/* Botón de Twitch */
.btn-twitch {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #9146ff;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-twitch:hover {
    background-color: #772ce8;
    transform: scale(1.05);
}

/* Sección Sobre Mí */
.about {
    max-width: 800px;
    margin: 3rem auto;
    padding: 2rem;
    background-color: #18181b;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #2d2d30;
}

.about h3 {
    color: #9146ff;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

/* Footer */
footer {
    width: 100%;
    text-align: center;
    padding: 2rem 1rem;
    border-top: 1px solid #2d2d30;
    margin-top: 3rem;
    box-sizing: border-box;
}

footer .social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

footer p {
    color: #adadb8;
    font-size: 0.9rem;
    white-space: nowrap; /* Impide que el texto salte de línea */
    margin: 0;
}
.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
}

.social-icons a {
    color: #efeff1;
    font-size: 1.3rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #9146ff;
}


/* --- Indicador de Estado en Directo --- */
.live-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 204, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #efeff1;
    margin-bottom: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.live-status-badge:hover {
    border-color: #9146FF;
}

.status-dot {
    width: 10px;
    height: 10px;
    background-color: #adadb8;
    border-radius: 50%;
    display: inline-block;
}

.status-dot.is-live {
    background-color: #eb0400;
    box-shadow: 0 0 8px #eb0400;
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% { transform: scale(0.95); opacity: 0.8; }
    50% { transform: scale(1.15); opacity: 1; box-shadow: 0 0 12px #eb0400; }
    100% { transform: scale(0.95); opacity: 0.8; }
}

/* --- Efectos Intermitentes y de Rayo para los Logos/Iconos --- */

/* Efecto de parpadeo suave y constante (intermitente) */
@keyframes intermitente {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.95); }
}

/* Efecto de destello tipo "rayo" o brillo rápido */
@keyframes rayo-destello-hover {
    0%, 100% { 
        filter: drop-shadow(0 0 6px rgba(145, 70, 255, 0.6));
    }
    30% { 
        filter: drop-shadow(0 0 16px #00d2ff) brightness(1.4); /* Destello en azul cielo */
    }
    50% { 
        filter: drop-shadow(0 0 20px #ffffff) brightness(1.8); /* Destello blanco intenso tipo rayo */
    }
    70% { 
        filter: drop-shadow(0 0 12px #00d2ff) brightness(1.3);
    }
}

.animar-intermitente {
    animation: intermitente 5s infinite ease-in-out;
}

.animar-rayo {
    animation: rayo-destello-hover 2s infinite ease-in-out;
}

/* --- Estilos para el Reloj Digital (Efecto 3D, Degradado y Brillo) --- */
.reloj-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(35, 35, 42, 0.9) 0%, rgba(18, 18, 22, 0.98) 100%);
    border: 1px solid rgba(145, 70, 255, 0.5);
    padding: 8px 16px;
    border-radius: 20px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.85rem;
    color: #efeff1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.reloj-badge:hover {
    border-color: #9146FF;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.6), 0 0 14px rgba(145, 70, 255, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.reloj-badge i {
    color: #9146ff;
    filter: drop-shadow(0 0 5px rgba(145, 70, 255, 0.5));
}

@media (max-width: 768px) {
    .reloj-badge {
        font-size: 0.75rem;
        padding: 5px 10px;
    }
}


/* --- BARRA SUPERIOR DE USUARIO (Arriba a la derecha) --- */
.top-user-bar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    width: 100%;
}

.user-auth-btn {
   display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(35, 35, 42, 0.9) 0%, rgba(18, 18, 22, 0.98) 100%);
    border: 1px solid rgba(145, 70, 255, 0.5);
    padding: 8px 16px;
    border-radius: 20px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.85rem;
    color: #efeff1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;

}

.user-auth-btn:hover {
    background-color: #000000;
    border-color: #9146FF;
    color: #ffffff;
}
.user-auth-btn:hover {
    border-color: #9146FF;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.6), 0 0 14px rgba(145, 70, 255, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.user-greeting {
    color: #b197fc;
    font-weight: 600;
    font-size: 0.95rem;
}

.user-badge i {
    color: #9146ff;
    filter: drop-shadow(0 0 5px rgba(145, 70, 255, 0.5));
}

/* --- ESTILOS DE LA ZONA DE USUARIO LOGUEADO (NUEVO) --- */
.user-logged-container {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(35, 35, 42, 0.9) 0%, rgba(18, 18, 22, 0.98) 100%);
    border: 1px solid rgba(145, 70, 255, 0.5);
    padding: 6px 14px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.user-logged-greeting {
    color: #efeff1;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.user-logged-greeting i {
    color: #b197fc;
    filter: drop-shadow(0 0 5px rgba(145, 70, 255, 0.5));
}

.user-logout-btn {
    background: linear-gradient(135deg, rgba(35, 35, 42, 0.9) 0%, rgba(18, 18, 22, 0.98) 100%);
    color: #adadb8;
    border: 1px solid #3f3f46;
    padding: 4px 10px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.2s ease;
    text-decoration: none;
}

.user-logout-btn:hover {
    background-color: #eb0400;
    border-color: #eb0400;
    color: #ffffff;
}

@media (max-width: 768px) {
    .user-logged-container {
        font-size: 0.75rem;
        padding: 5px 10px;
    }
}

/* --- VENTANA MODAL DE LOGIN / REGISTRO --- */
.auth-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.auth-modal {
    background-color: #18181b;
    border: 1px solid #2f2f35;
    padding: 30px;
    border-radius: 12px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    position: relative;
}

.auth-modal h3 {
    color: #efeff1;
    margin-bottom: 20px;
    text-align: center;
}

.auth-modal input {
    width: 100%;
    background: #0e0e10;
    border: 1px solid #2f2f35;
    color: #efeff1;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.auth-modal input:focus {
    border-color: #9146FF;
    outline: none;
}

.auth-modal .close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: #adadb8;
    font-size: 1.2rem;
    cursor: pointer;
}

.auth-modal .close-modal:hover {
    color: #efeff1;
}

.auth-msg {
    font-size: 0.85rem;
    text-align: center;
    margin-bottom: 15px;
    min-height: 20px;
}

/* Contenedor en cuadrícula adaptable */
#contenedor-clips, .clips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); /* Subimos un pelín el mínimo para dar más espacio horizontal a cada tarjeta */
    gap: 20px;
    width: 100%;
    padding: 20px 0;
}

/* Estilo de cada tarjeta individual */
.clip-card {
    background: #18181b;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s ease;
}

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

/* Miniatura del clip al 100% sin bandas negras */
.clip-card img {
    width: 100%;
    height: auto;           /* Permite que la altura se ajuste de forma fluida según el ancho */
    aspect-ratio: 16 / 9;   /* Forzamos la proporción nativa de video de Twitch */
    object-fit: cover;      /* Llena todo el espacio recortando los bordes sobrantes en lugar de dejar bandas */
    display: block;
}

/* Información del clip */
.clip-info {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: #fff;
}

.clip-info h4 {
    font-size: 15px;
    margin: 0;
    font-weight: 600;
    line-height: 1.2;
}

.clip-info p {
    font-size: 13px;
    color: #a1a1aa;
    margin: 0;
}

/* Botón de ver en Twitch */
.clip-btn {
    display: block;
    margin: 0 15px 15px 15px;
    background: #9146FF;
    color: #fff;
    text-align: center;
    padding: 10px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: background 0.2s;
}

.clip-btn:hover {
    background: #772ce8;
}

/* ========================================== */
/* ESTILOS RESPONSIVE UNIVERSALES PARA MÓVILES */
/* ========================================== */
@media screen and (max-width: 768px) {
    
    /* 0. Aplicar box-sizing universal para evitar desbordamientos por paddings */
    *, *::before, *::after {
        box-sizing: border-box !important;
    }

    /* 1. Estructura general y carga correcta del background */
    body, html {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow-x: hidden !important;
        background-image: url('backgroundBruja.jpg') !important;
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
        background-attachment: fixed !important;
        min-height: 100vh;
        display: block !important;
    }

    /* Contenedor principal que rompe las columnas de escritorio */
    .app-container {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        height: auto !important;
        overflow-x: hidden !important;
    }

    /* 2. El menú lateral oculto por defecto en móvil para que no estorbe */
    .sidebar {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 100% !important;
        height: auto !important;
        position: relative !important;
        float: none !important;
        left: 0 !important;
        top: auto !important;
        padding: 15px;
        display: none !important; /* Oculto por defecto con máxima prioridad */
    }

    /* Cuando el script añade la clase .active al pulsar el botón de menú */
    .sidebar.active {
        display: block !important;
    }

    /* 3. Navegación del menú centrada y fluida */
    .sidebar-nav ul {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 8px !important;
        justify-content: center !important;
        padding: 0 !important;
        list-style: none !important;
        width: 100% !important;
    }

    .sidebar-nav li {
        margin: 0 !important;
        width: auto !important;
    }

    .sidebar-nav a {
        padding: 10px 14px !important;
        font-size: 0.95rem !important;
        display: block !important;
        text-align: center !important;
    }

    /* 4. Contenedor principal debajo del menú ocupando todo el ancho */
    .main-content {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        left: 0 !important;
        padding: 15px 10px !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        overflow-x: hidden !important;
    }

    /* 5. Barra superior: Reloj */
    .top-user-bar {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        align-items: stretch !important;
        width: 100% !important;
        margin-bottom: 5px !important;
    }

    .top-user-bar .reloj-badge {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        padding: 12px !important;
        text-align: center !important;
    }

    .top-user-bar .reloj-badge i,
    .top-user-bar .reloj-badge span {
        margin: 0 !important;
        float: none !important;
    }

    /* Botón de inicio de sesión */
    .top-user-bar .user-auth-btn {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        text-align: center !important;
        display: block !important;
        padding: 14px !important;
    }

    /* 6. Banner Hero en el medio */
    .hero, .banner-container {
        width: 100% !important;
        max-width: 100% !important;
        margin: 5px 0 !important;
        padding: 0 !important;
        text-align: center !important;
    }

    .hero img, .banner-container img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
        margin: 0 auto !important;
        border-radius: 8px !important;
    }

    /* 7. Textos de bienvenida */
    .hero-content, .bienvenida-section {
        width: 100% !important;
        max-width: 100% !important;
        margin: 10px 0 20px 0 !important;
        padding: 10px 5px !important;
        text-align: center !important;
    }

    .hero-content h1, .bienvenida-section h1 {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
        margin-bottom: 15px !important;
        word-break: break-word !important;
    }

    .hero-content p, .bienvenida-section p {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
        margin-bottom: 15px !important;
    }

    /* 8. Ajuste de logos y avatares para móvil */
    .logo-container img, .sidebar-logo img, .user-avatar {
        max-width: 110px !important;
        height: auto !important;
        display: block !important;
        margin: 0 auto 12px auto !important;
    }

    /* 9. Contenedores de chat y formularios interactivos */
    #lista-comentarios, .chat-container, .preguntas-container {
        max-height: 250px !important;
        overflow-y: auto !important;
        width: 100% !important;
    }

    /* 10. Botones de acción y formularios generales */
    form button, .btn-twitch, .user-logout-btn {
        width: 100% !important;
        padding: 12px !important;
        font-size: 1rem !important;
        text-align: center !important;
    }

    /* 11. Alertas del sistema */
    .alert-badge, .system-notice, .status-indicator {
        font-size: 0.85rem !important;
        padding: 8px 12px !important;
        text-align: center !important;
        width: 100% !important;
    }

    /* 12. Contenedor e iconos de redes sociales adaptados para móvil */
    .social-icons, .social-links, .redes-sociales {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 8px !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 15px auto !important;
        padding: 5px !important;
    }

    .social-icons a, .social-links a, .redes-sociales a {
        display: inline-flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 36px !important;
        height: 36px !important;
        font-size: 1rem !important;
        border-radius: 50% !important;
        margin: 2px !important;
    }

    /* 13. Centrado y ajuste del footer completo */
    footer, .footer, .site-footer {
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        padding: 20px 10px !important;
        margin: 0 auto !important;
    }

    footer p, .footer p, .site-footer p {
        text-align: center !important;
        margin: 5px 0 !important;
        width: 100% !important;
    }

    /* 14. Estilo compacto y unificado para ClaveCD en móvil */
    .social-icons a[href*="clavecd"], 
    .social-links a[href*="clavecd"], 
    .redes-sociales a[href*="clavecd"],
    .social-icons .clavecd-text,
    .redes-sociales .clavecd-text {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 5px !important;
        background: rgba(255, 255, 255, 0.1) !important;
        color: #ffffff !important;
        padding: 6px 10px !important;
        border-radius: 6px !important;
        font-size: 0.8rem !important;
        font-weight: 500 !important;
        text-decoration: none !important;
        white-space: nowrap !important;
        width: auto !important;
        flex-basis: auto !important;
        max-width: none !important;
        margin: 2px !important;
    }

    .social-icons a[href*="clavecd"] i, 
    .social-links a[href*="clavecd"] i {
        font-size: 0.85rem !important;
        color: #ffffff !important;
    }

} /* <-- FIN DE LA ETIQUETA @MEDIA */