/* Estilos generales de la página */
body {
    margin: 0;
    padding: 0;
    font-family: sans-serif !important;
}

/* Navbar fijo */
.navbar-fixed {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    height: 64px;
}

/* Color Azul Marino */
.nav-azul-marino {
    background-color: #004080;
    color: #ffffff;
    height: 64px;
    line-height: 64px;
    width: 100%;
}

/* Contenedor centrado a 1200px */
.nav-container-centrado {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 100%;
}

/* Logo WebOeba - Segoe UI */
.brand-logo {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif !important;
    font-size: 1.8rem;
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 300;
}

/* Menú desktop */
.menu-desktop {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.menu-desktop li a,
.dropbtn {
    color: #ffffff !important;
    text-decoration: none;
    padding: 0 15px;
    display: block;
    font-size: 1.05rem;
    transition: background-color 0.3s;
}

.menu-desktop li a:hover,
.dropdown:hover .dropbtn {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #004080;
    min-width: 220px;
    top: 64px;
    right: 0;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 2000;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: white !important;
    padding: 12px 16px !important;
    line-height: normal !important;
    text-decoration: none;
    display: block;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dropdown-content a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* --- REGLA PARA MÓVILES (CORREGIDA Y CENTRALIZADA) --- */
@media (max-width: 991px) {

    .navbar-fixed,
    .nav-azul-marino {
        height: auto !important;
        min-height: 64px;
        line-height: normal !important;
        padding-bottom: 10px;
    }

    .nav-container-centrado {
        flex-direction: column !important;
        /* Apila logo sobre menú */
        padding: 10px 15px !important;
        height: auto !important;
        align-items: center !important;
        /* Centra horizontalmente */
        justify-content: center !important;
    }

    .brand-logo {
        margin-bottom: 8px;
        display: block;
        text-align: center;
        width: 100%;
        padding-left: 0;
    }

    .menu-desktop {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        /* Centra los botones Inicio, Barrios, Placa */
        width: 100%;
        gap: 5px;
        /* Un poco más de aire entre botones */
        padding: 0 !important;
    }

    .menu-desktop li {
        display: inline-block;
    }

    .menu-desktop li a {
        padding: 6px 12px !important;
        font-size: 0.95rem !important;
        white-space: nowrap !important;
        text-align: center;
    }

    /* Ocultar Espacios Verdes y Obras Escultóricas en celulares */
    .menu-extra-mobile {
        display: none !important;
        visibility: hidden !important;
    }
}