/* --- BASE DE LA TIENDA --- */
html, body {
    background-color: #0f172a !important; 
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

body { 
    color: white; 
    font-family: 'Inter', sans-serif; 
    opacity: 0; 
    transition: opacity 0.5s ease-in;
}

/* --- CENTRADO TOTAL --- */
#pantalla-carga {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0f172a;
    z-index: 9999;
	transition: opacity 0.5s ease-in-out;
}

/* --- EFECTOS DE LA IMAGEN --- */
#img-homenaje {
    filter: grayscale(100%) blur(10px);
    transition: filter 1.5s ease-in-out;
}

#img-homenaje.revelada {
    filter: grayscale(0%) blur(0px);
}

/* --- UTILIDADES OBLIGATORIAS --- */
.hidden { 
    display: none !important; 
}

.seccion { 
    transition: opacity 0.5s ease; 
}

.card { 
    background: #1e293b; 
    border: 1px solid #334155; 
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
}

.card:hover { 
    transform: translateY(-8px); 
    border-color: #38bdf8; 
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

/* --- ANIMACIONES --- */
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}
