.elementor-widget-container .eael-protected-content-message{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-widget-container .protected-content-error-msg{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-8 .elementor-element.elementor-element-f571836{--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;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-widget-html .eael-protected-content-message{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-widget-html .protected-content-error-msg{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}@media(max-width:1024px){.elementor-8 .elementor-element.elementor-element-f571836{--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}}/* Start custom CSS for html, class: .elementor-element-3042e27 *//* ======================================= */
/* ESTILOS GENERALES Y DE ESCRITORIO */
/* ======================================= */
.custom-header {
    width: 100%;
    background-color: #ffffff;
    border-bottom: 1px solid #eeeeee;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: relative; /* Necesario para el menú desplegable */
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    box-sizing: border-box;
}

.header-logo img {
    max-height: 55px;
    width: auto;
}

.header-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 35px;
}

.header-nav a {
    font-family: 'Open Sans', sans-serif;
    text-decoration: none;
    color: #333333;
    font-size: 16px;
    font-weight: 500;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.header-nav a.current-menu-item,
.header-nav a:hover {
    color: #E06022;
    border-bottom-color: #E06022;
}

.cta-button {
    font-family: 'Montserrat', sans-serif; 
    background-color: #F37324;
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(243, 115, 36, 0.3);
    white-space: nowrap; /* Evita que el texto se parta */
}

.cta-button:hover {
    background-color: #E96E1F;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(243, 115, 36, 0.4);
}

/* Ocultar la hamburguesa en escritorio */
.hamburger {
    display: none;
}

/* ======================================= */
/* RESPONSIVIDAD PARA TABLETS Y MÓVILES */
/* ======================================= */
@media (max-width: 1024px) {
    .header-container {
        justify-content: space-between;
    }

    /* Ocultamos el menú de navegación normal */
    .header-nav {
        display: none; 
    }
    
    .nav-wrapper.is-active .header-nav {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%; /* Justo debajo del header */
        left: 0;
        width: 100%;
        background-color: #ffffff;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        z-index: 1000;
        padding: 20px 0;
    }
    
    .nav-wrapper.is-active .header-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }
    
    .nav-wrapper.is-active .header-nav li {
        width: 100%;
        text-align: center;
    }

    .nav-wrapper.is-active .header-nav a {
        padding: 15px 20px;
        display: block;
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    /* Mostramos y estilizamos el botón de hamburguesa */
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 30px;
        height: 25px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
    }

    .hamburger-bar {
        width: 100%;
        height: 3px;
        background-color: #333333;
        border-radius: 5px;
        transition: all 0.3s ease;
    }
    
    /* Animación de la hamburguesa a una 'X' */
    .nav-wrapper.is-active .hamburger-bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .nav-wrapper.is-active .hamburger-bar:nth-child(2) {
        opacity: 0;
    }
    .nav-wrapper.is-active .hamburger-bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}/* End custom CSS */