body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}

/* Contenedor */
.barranav-container {
    width: 100%;
    background-color: #143a6d;
    position: relative;
    z-index: 1000;
}

/* Barra */
.barranav {
    max-width: 1200px;
    margin: auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo y nombre */
.barranav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.barranav-brand a {
    text-decoration: none; 
    display: flex; 
    align-items: center;
}

.barranav-logo {
    height: 100px;
}

/*.barranav-name {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: bold;
}*/

/* Menú */
.barranav-menu {
    list-style: none;
    display: flex;
    gap: 30px;
}

.barranav-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    padding-bottom: 6px;
    border-bottom: 3px solid transparent;
    transition: color 0.3s ease, border-bottom 0.3s ease;
}

.barranav-link:hover {
    color: #B8840F;
}

/* Pestaña activa */
.barranav-link.active {
    color: #B8840F;
    border-bottom: 3px solid #B8840F;
}


/* Botón hamburguesa */
.barranav-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.8rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .barranav-toggle {
        display: block;
    }

    .barranav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #143a6d;
        flex-direction: column;
        align-items: center;
        padding: 10px 0;
        gap: 0;
        display: none; 
    }

    .barranav-menu.show {
        display: flex; 
    }

    .barranav-item {
        width: 100%;
        text-align: center;
        padding: 12px 0;
        
    }

    .barranav-link {
        display: block;
        width: 100%;
    }
}

