.elementor-87 .elementor-element.elementor-element-4cd54adc{--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-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-4a7d8453 *//* Cabecera Sticky */
.header-sticky {
    position: fixed; /* O 'sticky' si prefieres que ocupe espacio inicial */
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95); /* Blanco con ligera transparencia */
    backdrop-filter: blur(5px); /* Efecto desenfoque del fondo */
    padding: 12px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    z-index: 9999; /* Asegura que esté por encima de todo */
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
}

/* Logo */
.brand-logo img {
    height: 45px;
    display: block;
    transition: height 0.3s ease;
}

/* Botón CTA Contactar */
.btn-cta-sticky {
    background-color: #ffc82e; /* Tu amarillo */
    color: #333333 !important;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

/* Efecto Hover del Botón */
.btn-cta-sticky:hover {
    background-color: #ffc82e; /* Tu rojo */
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(191, 3, 17, 0.3);
}

/* Espaciado para el resto de la web */
body {
    padding-top: 80px; /* Evita que el contenido se meta debajo del menú fijo */
}

/* Ajustes para Móvil */
@media (max-width: 767px) {
    .header-sticky {
        padding: 10px 0;
    }
    .nav-container {
        padding: 0 15px;
    }
    .brand-logo img {
        height: 35px;
    }
    .btn-cta-sticky {
        padding: 8px 18px;
        font-size: 12px;
    }
    body {
        padding-top: 65px;
    }
}/* End custom CSS */