/*
 * Quark 2 — user customizations
 *
 * This file is safe to edit. It is loaded last so anything here overrides
 * theme.css without having to mark rules !important.
 */
/* Color institucional: Azul Medianoche */
:root {
    --q2-accent: #1a2a6c; 
    --primary: #1a2a6c;
    --border-radius: 4px; /* Bordes más rectos = más seriedad */
}

/* Efecto de elevación en las tarjetas */
article {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
}

article:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Mejora de la tipografía */
h1, h2, h3 {
    font-family: 'Georgia', serif; /* Si podés cargarla, si no, usa una Serif */
    font-weight: 700;
}
/* Creamos una clase personalizada para el fondo */
.fondo-juridico {
    background-image: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), url('/user/pages/01.home/_practica/fondo-textura.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Efecto Parallax */
}