
/* --- ESTILOS DE LA BARRA FIJA --- */
/*
.sticky-navbar {
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    height: 75px;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    z-index: 1000; 
    display: flex;
    align-items: center;
}
*/

.sticky-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    display: flex;
    align-items: center;

    transform: translateY(-100%);
    transition: transform 0.25s ease;
}

/* cuando aparece */
.sticky-navbar.show {
    transform: translateY(0);
}


#ficha-barra_superior .navbar-container {
    width: 100%;    
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#ficha-barra_superior  .nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

@media (max-width: 1999px) {
    #ficha-barra_superior{
        display:none
    }
}
@media (min-width: 1200px) {

    #ficha-barra_superior{
        display:flex;
    }

    #ficha-barra_superior .navbar-container {
        /* max-width: 1140px; */
        padding: 0 16px;
        max-width: 2000px !important;
    }
}

@media (min-width: 1400px) {
    #ficha-barra_superior .navbar-container {
        max-width: 2000px !important;
        padding: 0 40px;
    }
}

@media (min-width: 1600px) {
    #ficha-barra_superior .navbar-container {
        /* max-width: 1730px; */
        max-width: 2000px !important;
        padding: 0 96px;
    }
}

/* Bloque Izquierdo: Título y subtítulo */
.nav-model h2 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #111111;
    letter-spacing: 0.5px;
    padding-top: 10px;
    padding-bottom: 0;
    margin-bottom: 0;
}

.nav-model p {
    font-size: 0.85rem;
    color: #6c757d;
    margin-top: 2px;
}

/* Bloque Central: Precios */
.nav-prices {
    display: flex;
    align-items: center;
    gap: 20px;
}

.price-block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.price-label {
    font-size: 0.75rem;
    color: #8c96a0;
    margin-bottom: 2px;
}

.price-value {
    font-size: 1.4rem;
    font-weight: normal;
    color: #111111;
}

.price-value.bolder {
    font-weight: 700;
}

/* Resaltado del precio financiado */
.price-block.financed .price-value {
    font-weight: 800;
}

.price-divider {
    width: 1px;
    height: 35px;
    background-color: #e0e0e0;
}

/* Bloque Derecho: Botones y Links */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Estilo base de los botones principales */
.btn {
    
}

.btn-blue.btn-reserva {
    margin: 0 !important;
    /* min-width: 120px;    */
    height: 52px;       

    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;

    display: flex;
    align-items: center;
    justify-content: center;

    white-space: nowrap;

    background-color: #007ecc;
    color: #ffffff;
    border: none;
}

.btn-blue:hover {
    background-color: #0066aa;
}

.btn-outline {

    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;


    background-color: transparent;
    color: #007ecc;
    border: 2px solid #007ecc;
}

.btn-outline:hover {
    background: #2f76c1;
    color: #fff;
}

/* Botones de Iconos (Teléfono, Whatsapp, Campana) */
.icon-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid #dcdcdc;
    border-radius: 6px;
    color: #333333;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.2s ease;
    padding: 12px;
}

.icon-btn:hover {
    background-color: #f1f3f5;
    border-color: #bcbcbc;
}

/* Color específico para el logo de WhatsApp */
.icon-whatsapp {
    color: #25D366;
}

.icon-whatsapp:hover {
    background-color: rgba(37, 211, 102, 0.05);
    border-color: #25D366;
}

.icon-btn.btn-llamadme:hover {
    border-color: rgb(7 135 217 / var(--tw-border-opacity, 1)) !important;
    background-color: rgb(245 251 255 / var(--tw-bg-opacity, 1)) !important;
    filter: unset;
}

.icon-btn.btn-whatsapp:hover {
    background-color: rgb(240 253 244 / var(--tw-bg-opacity, 1)) !important;
    border-color: rgb(37 211 102 / var(--tw-border-opacity, 1)) !important;
    filter: unset;
}

.icon-btn.btn-avisame:hover {
    border-color: rgb(0 0 0 / var(--tw-border-opacity, 1)) !important;
    background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1)) !important;
    filter: unset;
}


/* --- CONTENIDO DE RELLENO (Solo para demostración) --- */
.dummy-content {
    margin-top: 120px; /* Margen para que la barra fija no tape el inicio del contenido */
    padding: 40px;
    text-align: center;
    height: 2000px; /* Altura exagerada para forzar el scroll */
}

.btn-blue.btn-reserva{
margin: 0 !important;


}