body.agendar-bg {
    background: #181818 !important;
    min-height: 100vh;
    position: relative;
}

.agendar-bg .bg-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100vh;
    z-index: 1;
    background: url('../img/bg-lavajato.jpg') center center/cover no-repeat;
    opacity: 0.18;
}

.agendar-bg .main-content-flex {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.agendar-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    background: rgba(24,24,24,0.98);
    padding: 22px 0 18px 0;
    box-shadow: 0 2px 12px #0002;
    font-size: 1.13rem;
    font-weight: 600;
}
.agendar-header a {
    color: #fff;
    text-decoration: none;
    padding: 6px 18px;
    border-radius: 6px;
    transition: background 0.18s;
}
.agendar-header a:hover, .agendar-header a.active {
    background: #7c3aed;
    color: #fff;
}
@media (max-width: 700px) {
    .agendar-header {
        flex-direction: column;
        gap: 10px;
        font-size: 1rem;
        padding: 14px 0 10px 0;
    }
}
