/* Configuración de Fuentes */
.font-literata {
    font-family: 'Literata', serif;
    font-style: italic;
}
.font-archivo {
    font-family: 'Archivo', sans-serif;
}
.font-archivo-medium {
    font-family: 'Archivo', sans-serif;
    font-weight: 500;
}

/* Configuración del Fondo Compuesto */
.main-container {
    background-color: #F26522; /* El naranja base */
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

/* Capa de textura de periódico (Fondo2) */
.bg-texture-newspaper {
    background-image: url('img/Fondo2.jpg');
    background-size: cover;
    background-position: center;
    mix-blend-mode: multiply; /* Hace que el blanco se vuelva transparente (naranja) y el negro se mantenga */
    opacity: 0.4; /* Ajustar opacidad para que no sea tan agresivo */
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

/* Capa de textura de puntos (Fondo1) */
.bg-texture-dots {
    background-image: url('img/Fondo1.jpg');
    background-size: cover;
    background-position: center;
    mix-blend-mode: overlay; /* Añade textura sobre el color */
    opacity: 0.3;
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

/* Hover sutil para el logo Atte */
.logo-atte:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Animación de rotación para el sello */
@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.animate-spin-slow {
    animation: spin-slow 15s linear infinite;
}