.elementor-21 .elementor-element.elementor-element-9ceb971{--display:flex;}/* Start custom CSS for html, class: .elementor-element-91f7da0 *//* ==========================================================================
   ESTRUCTURA CSS GRID PRINCIPAL (ESCRITORIO)
   ========================================================================== */
.fuxxion-header-grid {
    display: grid;
    /* Define 3 columnas: 15% para logo, el menú toma el centro, 150px para el buscador */
    grid-template-columns: 15% 1fr 150px; 
    align-items: center; /* Alineación vertical perfecta */
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
    background-color: #ffffff;
    box-sizing: border-box;
}

.fuxxion-grid-item {
    display: flex;
    align-items: center;
}

/* --- 1. Estilos del Logo --- */
.fuxxion-logo-block {
    justify-content: flex-start;
}
.fuxxion-logo-img {
    max-height: 100px;
    width: auto;
    display: block;
}

/* --- 2. Estilos del Menú --- */
.fuxxion-nav-block {
    justify-content: center;
}
.fuxxion-menu-list {
    display: flex;
    justify-content: center;
    width: 120%;
    max-width: 750px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.fuxxion-menu-list li {
    flex: 1;
    text-align: center;
    border-right: 2px solid #f0f0f0;
}
.fuxxion-menu-list li:last-child {
    border-right: none;
}
.fuxxion-menu-link {
    display: block;
    text-decoration: none;
    color: #0c0c0c;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px; 
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 14px 10px;
    white-space: nowrap;
    transition: color 0.3s ease, transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.fuxxion-menu-link:hover {
    color: #7acadd;
    transform: scale(1.05);
}

/* --- 3. Estilos del Buscador (Alineado a la derecha, abre a la izquierda) --- */
.fuxxion-search-block {
    justify-content: flex-end;
}
.fuxxion-search-container {
    position: relative;
    display: flex;
    align-items: center;
    height: 40px;
}
.fuxxion-search-btn {
    position: absolute;
    right: 0;
    width: 40px;
    height: 40px;
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
}
.fuxxion-search-input {
    width: 0;
    height: 38px;
    outline: none;
    border: none;
    background: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: #0c0c0c;
    padding: 0;
    border-radius: 50px;
    transition: all 0.4s ease;
    opacity: 0;
}
.fuxxion-search-container:hover .fuxxion-search-input,
.fuxxion-search-input:focus {
    width: 170px;
    opacity: 1;
    border: 1px solid #7acadd;
    padding-left: 15px;
    padding-right: 45px;
}

/* ==========================================================================
   RESPONSIVE PERFECTO CON GRID
   ========================================================================== */
@media (max-width: 1024px) {
    .fuxxion-menu-link {
        font-size: 11px;
        padding: 10px 5px;
    }
}

/* En celulares, reestructuramos el Grid por completo */
@media (max-width: 768px) {
    .fuxxion-header-grid {
        /* Convierte el diseño en dos filas automáticas */
        grid-template-columns: 1fr 1fr; 
        row-gap: 15px;
    }
    
    .fuxxion-logo-block { grid-column: 1; }
    .fuxxion-search-block { grid-column: 2; }
    
    /* El menú ocupa todo el ancho abajo ocupando las 2 columnas */
    .fuxxion-nav-block {
        grid-column: 1 / span 2;
        justify-content: center;
    }
    
    .fuxxion-menu-list {
        flex-wrap: wrap;
        gap: 8px;
    }
    .fuxxion-menu-list li {
        flex: initial;
        border-right: none;
    }
    .fuxxion-menu-link {
        font-size: 11px;
        padding: 6px 12px;
        background-color: #fcfcfc;
        border: 1px solid #f0f0f0;
        border-radius: 50px;
    }
}/* End custom CSS */