/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 17 2025 | 22:56:04 */
/* Fondo con efecto blur y opacidad */
body.custom-background {
    position: relative;
    overflow: hidden;
}

body.custom-background::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://arquitectura.mauryarte.com/wp-content/uploads/Render-CoLife-Feeling-Torre-A1.1_POST_Sin-Logo-scaled.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(10px);
    opacity: 0.8;
    z-index: -2; /* Debajo del overlay */
}

/* Capa de color (overlay) */
.color-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 0, 0, 0.82); /* Color negro con 82% de opacidad */
    z-index: -1; /* Encima del fondo pero debajo del contenido */
    pointer-events: none; /* Permite interactuar con el contenido */
}

/* Contenido */
.content {
    position: relative;
    z-index: 1; /* Por encima del overlay y del fondo */
}