.elementor-299 .elementor-element.elementor-element-55e1c77{--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;}/* Start custom CSS for html, class: .elementor-element-9528445 *//* --- Barra de Navegación Principal --- */
.elementor-299 .elementor-element.elementor-element-9528445 .navbar {
    /* Color de fondo oscuro */
    background-color: #0d0a2c;
    padding: 10px 0;
    width: 100%;
    /* Fija el menú en la parte superior */
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.elementor-299 .elementor-element.elementor-element-9528445 .navbar-container {
    width: 90%;
    max-width: 1200px; /* Ancho máximo del contenido */
    margin: 0 auto; /* Centra el contenido */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --- Logo --- */
.elementor-299 .elementor-element.elementor-element-9528445 .logo-img {
    height: 20px; /* Ajusta la altura de tu logo */
    width: auto;
}
/* Si usas texto para el logo (descomenta el HTML):
.elementor-299 .elementor-element.elementor-element-9528445 .logo-text {
    color: #f39c12; 
    font-size: 28px;
    font-weight: bold;
    text-decoration: none;
}
*/

/* --- Menú de Navegación --- */
.elementor-299 .elementor-element.elementor-element-9528445 .nav-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 25px;
}

.elementor-299 .elementor-element.elementor-element-9528445 .nav-menu a {
    /* Color de enlaces (blanco) */
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    transition: color 0.3s ease;
}

.elementor-299 .elementor-element.elementor-element-9528445 .nav-menu a:hover {
    /* Color de enlaces (hover) */
    color: #f39c12; /* Naranja */
}

/* --- Botón de "Cotizar" --- */
.elementor-299 .elementor-element.elementor-element-9528445 .cta-button {
    /* Color de fondo (naranja) */
    background-color: #f39c12;
    /* Color de texto (oscuro) */
    color: #0d0a2c;
    padding: 10px 22px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    /* Importante para el cambio de posición */
    position: relative; 
    z-index: 1001; /* Asegura que esté sobre el menú si se superpone */
}

.elementor-299 .elementor-element.elementor-element-9528445 .cta-button:hover {
    background-color: #ffffff; /* Blanco al pasar el mouse */
}

/* --- ESTADO "SCROLLED" (La magia del JS) --- */
.elementor-299 .elementor-element.elementor-element-9528445 .cta-button.scrolled {
    /* Se vuelve un botón fijo en la esquina */
    position: fixed;
    bottom: 25px;
    right: 25px;
    /* Más grande y redondo para llamar la atención */
    padding: 15px 25px;
    border-radius: 50px; 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* --- AJUSTE RESPONSIVO (Muy importante) --- */
@media (max-width: 767px) {
    /* Oculta el menú de texto en móviles */
    .elementor-299 .elementor-element.elementor-element-9528445 .nav-menu {
        display: none; 
        /* Aquí iría la lógica para un menú de hamburguesa */
    }
    
    .elementor-299 .elementor-element.elementor-element-9528445 .navbar-container {
        width: 95%; /* Más ancho en móviles */
    }

    /* El botón flotante en móvil */
    .elementor-299 .elementor-element.elementor-element-9528445 .cta-button.scrolled {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
    }
}/* End custom CSS */