.elementor-37 .elementor-element.elementor-element-0bae359{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-37 .elementor-element.elementor-element-0591d44{width:100%;max-width:100%;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-0591d44 *//* ===================================
HEADER GENERAL
=================================== */
.deltaHeader {
    width: 100%;
    background: rgba(13, 13, 15, 0.60);  /* ⬅ OPACIDAD LIGERA SOBRE FOTO */
    backdrop-filter: blur(6px);
    padding: 18px 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}

/* CONTAINER */
.deltaHeader_container {
    max-width: 1400px;
    width: 90%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.deltaHeader_logo img {
    height: 75px;
    filter: brightness(1.25);
}

/* BUTTONS */
.deltaHeader_buttons {
    display: flex;
    gap: 15px;
}

.btn_call,
.btn_quote {
    padding: 10px 22px;
    border-radius: 10px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 600;
    transition: 0.25s ease;
    text-decoration: none;
}

/* Call Now */
.btn_call {
    background: #B58A43;
    color: white;
}

/* Quote */
.btn_quote {
    border: 2px solid #c88a1d;
    color: #c88a1d;
}

/* Hover */
.btn_call:hover,
.btn_quote:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 14px rgba(200, 138, 29, .6);
}

/* ==============================
   MENU PRINCIPAL
=============================== */
.deltaMenu {
    display: flex;
    gap: 30px;
    list-style: none;
}

.deltaMenu a {
    color: white;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    text-decoration: none;
    transition: 0.2s ease;
}

.deltaMenu a:hover {
    color: #c88a1d;
}

/* ==============================
   DROPDOWNS DESKTOP
============================== */
.deltaDropdown {
    position: relative;
}

.deltaArrow {
    font-size: 12px;
    margin-left: 6px;
}

/* CAJA DE DESPLIEGUE */
.deltaDropdown_menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(17,17,17,0.95);
    padding: 15px 0;
    border-radius: 10px;
    min-width: 240px;
    display: none;
    box-shadow: 0 0 20px rgba(0,0,0,.4);
}

.deltaDropdown:hover > .deltaDropdown_menu {
    display: block;
}

/* ITEMS */
.deltaDropdown_menu li a,
.deltaDropdown_menu a {
    color: #eee;
    padding: 10px 20px;
    display: block;
}

.deltaDropdown_menu li a:hover {
    background: #c88a1d;
    color: #fff;
}

/* ============================
   ÁREAS WE SERVICE — CAJA WIDE
============================ */
.deltaDropdown_menu.wide {
    min-width: 480px;
    padding: 20px;
    display: none;
    flex-direction: row;
    gap: 40px;
}

.deltaDropdown:hover > .wide {
    display: flex;
}

.deltaSubGroup {
    display: flex;
    flex-direction: column;
    min-width: 180px;
}

.deltaGroupTitle {
    font-weight: 700;
    color: #c88a1d !important;
    margin-bottom: 10px;
}

/* ========================
   HAMBURGUER (OFF DESKTOP)
======================== */
.deltaHamburger {
    display: none;
}

/* ========================
   RESPONSIVE (≤1025px)
======================== */
@media (max-width: 1025px) {

    /* SHOW HAMBURGER */
    .deltaHamburger {
        display: flex;
        flex-direction: column;
        gap: 4px;
        cursor: pointer;
    }

    .deltaHamburger span {
        width: 28px;
        height: 3px;
        background: white;
        border-radius: 3px;
    }

    /* HIDE DESKTOP MENU */
    .deltaHeader_nav {
        position: absolute;
        top: 100%;
        left: 0;
        background: rgba(13, 13, 15, 0.85); /* opacidad ligera */
        width: 100%;
        padding: 20px;
        display: none;
        flex-direction: column;
        gap: 20px;
    }

    .deltaHeader_nav.active {
        display: flex;
    }

    /* MENU MOBILE VERTICAL */
    .deltaMenu {
        flex-direction: column;
        gap: 15px;
    }

    /* MOBILE DROPDOWNS */
    .deltaDropdown_menu,
    .deltaDropdown_menu.wide {
        position: static;
        background: #181818;
        box-shadow: none;
        width: 100%;
        padding: 10px;
        display: none !important;
    }

    .deltaDropdown.open > .deltaDropdown_menu,
    .deltaDropdown.open > .wide {
        display: flex !important;
        flex-direction: column;
    }

    .deltaHeader_buttons {
        margin-top: 20px;
        width: 100%;
        justify-content: center;
    }
}

/* ========================
   RESPONSIVE (≤480px)
======================== */
@media (max-width: 480px) {
    .deltaHeader_logo img {
        height: auto !important;
        width: 150px !important; /* AJUSTA A TU GUSTO */
        object-fit: contain;
    }
}


    .btn_call,
    .btn_quote {
        padding: 8px 16px;
        font-size: 13px;
    }

    .deltaMenu a {
        font-size: 14px;
    }

    .deltaHeader_container {
        gap: 10px;
    }
}


/* ===== PERMITIR SCROLL EN MENÚ MOBILE ===== */
@media (max-width: 1025px) {

    .deltaHeader_nav {
        max-height: 85vh;
        overflow-y: auto;
        overscroll-behavior: contain;
    }

    /* Mejor touch control */
    .deltaDropdown_menu,
    .deltaDropdown_menu.wide {
        max-height: 100%;
        overflow-y: auto;
    }

    /* Evita que se escondan elementos */
    .deltaDropdown.open > .deltaDropdown_menu,
    .deltaDropdown.open > .wide {
        display: flex !important;
    }
}
/* ===========================================
   🔧 AJUSTES PARA MÓVIL (≤ 600px)
   Solo 1 botón (Call Now), centrado y bonito
=========================================== */
@media (max-width: 600px) {

    /* ocultar botón de Get Free Quote */
    .btn_quote {
        display: none !important;
    }

    /* centrar el único botón */
    .deltaHeader_buttons {
        width: 100%;
        justify-content: center !important;
        margin-top: 12px;
    }

    .btn_call {
        width: 70%;
        text-align: center;
        font-size: 15px;
        padding: 12px 20px;
    }

    /* corregir alineación del header */
    .deltaHeader_container {
        justify-content: space-between;
        gap: 10px;
    }

    /* mover el menú hamburguesa a la derecha */
    .deltaHamburger {
        margin-left: auto;
        order: 3;
    }

    /* botón debajo, sin romper el menú */
    .deltaHeader_nav.active + .deltaHeader_buttons {
        margin-top: 18px;
    }
}/* End custom CSS */