.elementor-233 .elementor-element.elementor-element-062e736{--display:flex;}.elementor-233 .elementor-element.elementor-element-44b701c{width:100%;max-width:100%;margin:-64px -64px calc(var(--kit-widget-spacing, 0px) + -64px) -64px;}.elementor-233 .elementor-element.elementor-element-44b701c.elementor-element{--order:-99999 /* order start hack */;--flex-grow:1;--flex-shrink:0;}/* Start custom CSS for html, class: .elementor-element-a6866e9 */.main-header {
    width: 100% !important;
    max-width: 100% !important;
    left: 0;
    right: 0;
    margin: 0 auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Contenedor interno sin límites de ancho */
.header-container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 20px; /* Ajusta según el espacio que quieras a los lados */
    padding-right: 20px;
    box-sizing: border-box;
}

/* Si usas un contenedor padre que limita ancho */
.elementor-section {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
}

/* HEADER */
.main-header {
    background: #000000;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    padding: 12px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.header-container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: flex-start; /* Logo a la izquierda */
    align-items: center;
    gap: 50px; /* Espacio entre logo y menú */
}

/* LOGO */
.logo img {
    height: 60px;
    width: auto;
    transition: 0.3s ease;
}

/* MENÚ */
.nav-menu ul {
    display: flex;
    gap: 40px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-menu a {
    text-decoration: none;
    font-size: 18px;
    color: white;  /* Siempre blanco */
    font-weight: 600;
    transition: 0.3s ease;
}

.nav-menu a:hover {
    color: white;  /* No cambia al pasar el cursor */
}

/* HAMBURGUESA */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: white;
    display: block;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .nav-menu ul {
        position: fixed;
        top: 80px;
        right: -100%;
        background: #000;
        width: 230px;
        height: 100vh;
        flex-direction: column;
        padding-top: 30px;
        transition: 0.4s ease;
        gap: 30px;
    }
    .nav-menu ul.open { right: 0; }
    .menu-toggle { display: flex; }
}/* End custom CSS */