/* ===============================
   HEADER ISOLADO – BARBEARIA RIZATORE
================================ */

.rz-header {
    background: #000;
    color: #fff;
    height: 64px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 20px;
    position: relative;
    z-index: 1000;
}

/* CENTRO */
.rz-center {
    text-align: center;
}

.rz-center a {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
}

/* ESQUERDA */
.rz-left {
    display: flex;
    align-items: center;
    position: relative;
}

.rz-menu-btn {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
}

/* DROPDOWN (DESKTOP + MOBILE) */
.rz-dropdown {
    display: none;
    position: absolute;
    top: 42px;
    left: 0;
    background: #111;
    min-width: 180px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,.6);
}

.rz-dropdown a {
    display: block;
    padding: 12px 15px;
    color: #fff;
    text-decoration: none;
}

.rz-dropdown a:hover {
    background: #222;
}

.rz-dropdown.open {
    display: block;
}

/* DIREITA */
.rz-right {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.rz-right a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.rz-login {
    background: #111;
    padding: 6px 14px;
    border-radius: 8px;
}

/* RESPONSIVO */
@media (max-width: 768px) {

    .rz-header {
        grid-template-columns: 1fr auto 1fr;
    }

    .rz-right {
        gap: 8px;
    }
}
