/* NC Contact Widget — wrapper con imagen de fondo */

.nc-cf7-wrap {
    position: relative;
}

/* Imagen de fondo — pseudo-elemento independiente del contenido */
.nc-cf7-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--nc-cf7-bg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 1;
    z-index: 0;
    pointer-events: none;
}

/* Overlay de color sobre la imagen */
.nc-cf7-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(255, 255, 255, 0);
    z-index: 1;
    pointer-events: none;
}

/* El formulario siempre por encima de los pseudo-elementos */
.nc-cf7-wrap .wpcf7 {
    position: relative;
    z-index: 2;
}
