
.footer-links a:hover {
    color: var(--naranja-suave);
    /* Cambia de color al pasar el ratón */
    text-decoration: underline;
    /* Subrayado al pasar el ratón */
}

.footer-links .icon {
    /* Estilos básicos para iconos si usas Font Awesome o SVGs */
    font-size: 1.1em;
}

/* Responsividad para móviles */
@media (max-width: 768px) {
    main {
        margin: 1em auto;
        padding: 1em;
        border-radius: 0;
        /* Sin bordes redondeados en móvil */
        box-shadow: none;
        /* Sin sombra en móvil */
    }

   footer h2 {
        font-size: 1.5em;
        margin-bottom: 1em;
    }


    footer {
        padding: 1em;
        /* Reducir padding del footer en móvil */
        font-size: 0.8em;
        gap: 0.5em;
    }

    .footer-links {
        flex-direction: column;
        /* Apilar los enlaces en móvil */
        gap: 0.8em;
    }
}


.img-btn {
    width: 24px;
    height: 24px;
    cursor: pointer;
    transition: transform 0.2s ease;
    margin: 0 0.1em;
    vertical-align: middle;
    display: inline-block;
}
.img-btn:hover {
    transform: scale(1.1);
}


.text-warning{
    color: var(--alerta-texto);
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    font-size: 12px;

}



/* --- ESTILOS DEL FOOTER (Delgado) --- */
footer {
    background: var(--footer-background-rgb-base); 
    color: white;
    text-align: center;
    padding: 0.2em .2em; 
    font-size: 0.8em; 
    width: 100%;
    box-sizing: border-box;
    margin-top: auto; 
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4em; 
    z-index: 1; 
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2); 
}

footer p {
    margin: 0; 
}

.footer-links {
    display: flex;
    gap: 1em; 
    flex-wrap: wrap; 
    justify-content: center;
    margin-top: 0.2em; 
    font-size: 1em; 
}

.footer-links div {
    display: flex;
    align-items: center;
    gap: 0.3em;
    font-weight: 400;
}

.footer-links a {
    color: var(--arena-claro); 
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}
