/*
 Theme Name: Brando Child
 Description: Child theme for Brando theme
 License: Themeforest Split Licence
 Author: Themezaa
 Author URI: http://www.themezaa.com
 Template: brando
 Version: 1.1
 Text Domain: brando-child
*/



/* ==========================================================================
   SNIPPET AGRESIVO v3 - FORZAR FULL-WIDTH (ATAQUE DEFINITIVO)
   ========================================================================== */

/*
 * Atacamos la fila que tiene el ID 'evento-inmo' Y
 * el atributo 'data-vc-full-width' que WPBakery le añade.
 * Esto es más específico y anula al tema.
 */
.vc_row[data-vc-full-width="true"]#evento-inmo {
    /* Fuerza el ancho de la ventana */
    width: 100vw !important;
    max-width: 100vw !important; /* Anula cualquier max-width */

    /* Truco para centrar la fila que se "sale" del contenedor */
    position: relative !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;

    /* Doble seguridad para eliminar espacios */
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/*
 * Nos aseguramos de que la columna interna no tenga padding
 */
#evento-inmo .vc_column-inner {
    padding-left: 0 !important;
    padding-right: 0 !important;
}