/**
 * Estilos adicionales del tema - SIN CONFLICTOS
 * Este archivo solo contiene animaciones y mejoras, NO sobrescribe estilos principales
 */

/* Animaciones */
.local-card {
    animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mejoras de accesibilidad */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Focus visible */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #f00078;
    outline-offset: 2px;
}

/* Responsive adicional */
@media (max-width: 480px) {
    .banner-content h1 {
        font-size: 1.5rem;
    }
    
    .banner-content h2 {
        font-size: 1.1rem;
    }
}
