:root {
    --bg: #0f172a;
    --bg-card: #111827;
    --text: #e5e7eb;
    --muted: #9ca3af;
    --primary: #2563eb;
    --success: #065f46;
    --error: #7f1d1d;
    --border: #374151;
}

* {
    box-sizing: border-box;
}

img,
svg,
video {
    max-width: 100%;
}

html,
body {
    width: 100%;
    min-height: 100%;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: var(--bg);
    color: var(--text);
}

body.landing-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    background-color: #15110e;
    background-image: linear-gradient(rgba(8, 6, 4, 0.48), rgba(8, 6, 4, 0.38)), var(--landing-bg-image, url('../imagens/barb01.png'));
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

body.landing-page .page-shell {
    flex: 1;
}

body.page-auth {
    min-height: 100dvh;
}

body.page-auth .page-shell {
    flex: 1 0 auto;
    min-height: calc(100dvh - 220px);
}

body.page-auth .auth-card {
    margin: 4rem auto 0;
}

body.page-auth .site-footer {
    margin-top: 4rem;
}

.container {
    width: min(100% - 2rem, 960px);
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 0;
}

.site-header__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    min-height: 84px;
    padding: 0.75rem 1.25rem 0.75rem clamp(13rem, 30vw, 24.5rem);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(10, 10, 10, 0.22);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.22);
}

.site-brand {
    position: absolute;
    left: -28px;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    width: clamp(210px, 30vw, 430px);
    flex-shrink: 0;
}

.site-brand__logo {
    display: block;
    width: auto;
    height: clamp(76px, 7vw, 100px);
    max-width: min(100%, 290px);
    margin-top: -5px;
    margin-left: clamp(1rem, 4vw, 70px);
    margin-bottom: 10px;
    object-fit: contain;
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 2rem;
    flex: 1;
}

.site-nav__links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.site-nav__actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

/* Hamburger button — hidden on desktop */
.site-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    transition: background 0.28s ease, border-color 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
    z-index: 110;
}

.site-menu-toggle:hover {
    background: rgba(201, 169, 110, 0.15);
    border-color: rgba(201, 169, 110, 0.4);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

.site-menu-toggle__bar {
    display: block;
    width: 20px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.24s ease, width 0.24s ease, background 0.24s ease;
    transform-origin: center;
}

/* Animated X when open */
.site-menu-toggle[aria-expanded="true"] .site-menu-toggle__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.site-menu-toggle[aria-expanded="true"] .site-menu-toggle__bar:nth-child(2) {
    opacity: 0;
    width: 0;
}

.site-menu-toggle[aria-expanded="true"] .site-menu-toggle__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.site-menu-toggle.is-active {
    background: rgba(201, 169, 110, 0.18);
    border-color: rgba(201, 169, 110, 0.44);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
    transform: translateY(-1px);
}

a {
    color: #ffffff;
    text-decoration: none;
}

.site-nav a {
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: #ffffff;
    opacity: 0.78;
}

.site-nav__link--active {
    color: #c9a96e !important;
    opacity: 1 !important;
    position: relative;
}

.site-nav__link--active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    border-radius: 2px;
    background: #c9a96e;
}

.site-nav__button,
.inline-form .site-nav__button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    padding: 0.75rem 1.2rem;
    border: 1px solid rgba(201, 169, 110, 0.28);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(44, 34, 24, 0.78) 0%, rgba(25, 19, 14, 0.72) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.42);
    overflow: hidden;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.site-nav__button::before,
.inline-form .site-nav__button::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at top center, rgba(201, 169, 110, 0.14), transparent 60%);
    pointer-events: none;
}

.site-nav__button:hover,
.site-nav__button:focus-visible,
.inline-form .site-nav__button:hover,
.inline-form .site-nav__button:focus-visible {
    border-color: rgba(201, 169, 110, 0.42);
    background: linear-gradient(180deg, rgba(56, 43, 30, 0.86) 0%, rgba(31, 24, 17, 0.8) 100%);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(201, 169, 110, 0.08);
    opacity: 1;
    transform: translateY(-2px);
}

.site-nav__button--gold {
    border-color: #c9a96e;
    background: #c9a96e;
    color: #0f0b07;
    font-weight: 700;
}

.page-shell {
    padding-top: 0.5rem;
    padding-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
}

.card {
    margin-top: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(17, 24, 39, 0.52);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.25);
}

.card-sm {
    max-width: 420px;
}

/* ── Auth Card (Login / Cadastro) ─────────────────────── */
.auth-card {
    width: 100%;
    max-width: 460px;
    margin: 4rem auto;
    border: 1px solid rgba(201, 169, 110, 0.25);
    background: rgba(17, 14, 10, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 22px;
    padding: 0;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
    overflow: hidden;
}

.auth-tabs {
    display: flex;
    border-bottom: 1px solid rgba(201, 169, 110, 0.2);
}

.auth-tab {
    flex: 1;
    padding: 1rem;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: color 0.2s ease, border-color 0.2s ease;
    width: auto;
    border-radius: 0;
}

.auth-tab:hover {
    color: rgba(255, 255, 255, 0.8);
}

.auth-tab--active {
    color: #c9a96e;
    border-bottom-color: #c9a96e;
}

.auth-panel {
    padding: 2rem;
}

.auth-panel--hidden {
    display: none;
}

.auth-panel form {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.auth-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.auth-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.03em;
}

.auth-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    color: #ffffff;
    font-size: 0.95rem;
    transition: border-color 0.2s ease, background 0.2s ease;
    outline: none;
}

.auth-input::placeholder {
    color: rgba(255, 255, 255, 0.28);
}

.auth-input:focus {
    border-color: rgba(201, 169, 110, 0.6);
    background: rgba(255, 255, 255, 0.09);
}

.auth-btn {
    width: 100%;
    padding: 0.85rem;
    border-radius: 999px;
    background: #c9a96e;
    border: none;
    color: #0f0b07;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    margin-top: 0.25rem;
}

.auth-btn:hover {
    background: #d4b87e;
    transform: translateY(-2px);
}

.auth-input--error {
    border-color: rgba(255, 90, 90, 0.7) !important;
    background: rgba(255, 50, 50, 0.06) !important;
}

.field-error {
    font-size: 0.78rem;
    color: #ff8a8a;
    line-height: 1.3;
}

.auth-hint {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.4;
}

.auth-optional {
    font-size: 0.75rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.35);
}

.password-field {
    position: relative;
    display: flex;
    align-items: center;
}

.password-field .auth-input {
    padding-right: 2.5rem;
}

.password-toggle {
    position: absolute;
    right: 0.75rem;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    padding: 0;
    border-radius: 4px;
    transition: color 0.2s ease, background 0.2s ease;
    outline: none;
}

.password-toggle:hover {
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.08);
}

.password-toggle:focus {
    outline: none;
}

.password-icon {
    width: 1rem;
    height: 1rem;
    transition: opacity 0.2s ease;
}

.password-icon--hidden {
    opacity: 1;
}

.password-icon--visible {
    opacity: 0;
    position: absolute;
    pointer-events: none;
}

.password-toggle.is-visible .password-icon--hidden {
    opacity: 0;
}

.password-toggle.is-visible .password-icon--visible {
    opacity: 1;
}

form {
    display: grid;
    gap: 0.75rem;
}

input,
button {
    width: 100%;
    border-radius: 8px;
    border: 1px solid var(--border);
    padding: 0.65rem 0.75rem;
}

button {
    background: var(--primary);
    border-color: transparent;
    color: white;
    font-weight: 600;
    cursor: pointer;
}

.inline-form {
    display: inline;
}

.inline-form button {
    width: auto;
}

.alert {
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: opacity 300ms ease, transform 300ms ease;
    will-change: opacity, transform;
    display: block;
    width: fit-content;
    text-align: center;
    margin: 1rem auto 0;
}

.alert.is-hidden {
    opacity: 0;
    transform: translateY(-4px);
}

.alert.success {
    background: var(--success);
}

.alert.error {
    background: var(--error);
}

/* ── Services Section ───────────────────────────────────── */
.services {
    width: 100%;
    padding: 1rem 0 3rem;
}

.services__header {
    text-align: center;
    position: relative;
    max-width: 760px;
    margin: 0 auto 2.5rem;
    padding: 20px 5px;
    border: 1px solid rgba(201, 169, 110, 0.1);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(28, 21, 15, 0.28) 0%, rgba(17, 14, 10, 0.16) 100%);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.services__header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top center, rgba(201, 169, 110, 0.08), transparent 60%);
    pointer-events: none;
}

.services__eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #c9a96e;
    margin-bottom: 0.6rem;
}

.services__title {
    position: relative;
    margin: 0 0 0.6rem;
    font-size: clamp(1.7rem, 3.5vw, 2.3rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.8), 0 1px 4px rgba(0, 0, 0, 0.9);
}

.services__subtitle {
    position: relative;
    margin: 0;
    font-size: 1.15rem;
    font-weight: 600;
    color: #ffffff;
    max-width: 520px;
    margin-inline: auto;
    line-height: 1.7;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.9), 0 1px 3px rgba(0, 0, 0, 1);
    letter-spacing: 0.01em;
}

/* Carousel */
.services__carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    min-width: 0;
}

.services__track {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex: 1 1 auto;
    min-width: 0;
    padding: 1.2rem 0.25rem 1rem;
}

.services__track::-webkit-scrollbar {
    display: none;
}

.services__nav {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1.5px solid rgba(201, 169, 110, 0.55);
    background: rgba(201, 169, 110, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #c9a96e;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 20px rgba(201, 169, 110, 0.15);
    z-index: 2;
}

.services__nav:hover {
    background: rgba(201, 169, 110, 0.28);
    border-color: #c9a96e;
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(201, 169, 110, 0.35);
}

.services__carousel-wrapper:not(.has-overflow) .services__nav {
    visibility: hidden;
    pointer-events: none;
}

.services__carousel-wrapper.has-overflow .services__nav:disabled {
    opacity: 0.4;
    cursor: default;
    transform: none;
    box-shadow: none;
}

.services__carousel-wrapper.has-overflow .services__nav:not(:disabled) {
    opacity: 1;
}

.services__card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    padding: 2rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    background: rgba(17, 14, 10, 0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    scroll-snap-align: start;
    flex: 0 0 calc(33.333% - 0.85rem);
    min-width: 240px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.services__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.4);
}

.services__card--featured {
    border-color: rgba(201, 169, 110, 0.45);
    background: rgba(30, 22, 12, 0.72);
    box-shadow: 0 0 0 1px rgba(201, 169, 110, 0.2), 0 20px 50px rgba(0, 0, 0, 0.35);
}

.services__card-badge {
    position: absolute;
    top: -0.7rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: #c9a96e;
    color: #0f0b07;
    padding: 0.25rem 0.85rem;
    border-radius: 999px;
    white-space: nowrap;
}

.services__card-icon {
    font-size: 2.2rem;
    line-height: 1;
}

.services__card-name {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.01em;
}

.services__card-desc {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 1);
    line-height: 1.6;
}

.services__card-price {
    font-size: 1.7rem;
    font-weight: 800;
    color: #c9a96e;
    letter-spacing: -0.02em;
}

.services__card-btn {
    margin-top: 0.25rem;
    display: inline-block;
    padding: 0.65rem 1.6rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.07);
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.services__card-btn:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.38);
    opacity: 1;
}

.services__card-btn--featured {
    background: #c9a96e;
    border-color: #c9a96e;
    color: #0f0b07;
}

.services__card-btn--featured:hover {
    background: #d4b87e;
    border-color: #d4b87e;
}

.services__cta {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 0.9rem;
    margin-top: 2rem;
}

.services__cta-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    padding: 0.95rem 2.4rem;
    border: 1px solid rgba(201, 169, 110, 0.42);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(214, 183, 120, 0.98) 0%, rgba(183, 145, 86, 0.96) 100%);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(255, 248, 228, 0.45);
    color: #120d08;
    font-size: 0.98rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
    overflow: hidden;
}

.services__cta-btn::before {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0) 55%);
    pointer-events: none;
}

.services__cta-btn:hover,
.services__cta-btn:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(201, 169, 110, 0.18);
    filter: brightness(1.03);
    opacity: 1;
}

.services__cta-btn--secondary {
    border-color: rgba(255, 255, 255, 0.18);
    background: linear-gradient(180deg, rgba(35, 27, 19, 0.82) 0%, rgba(20, 16, 12, 0.92) 100%);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.services__cta-btn--secondary::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 55%);
}

.services__cta-btn--mobile {
    display: none;
}

/* ── Contato Page ───────────────────────────────────────── */
.contato {
    padding: 2.5rem 0 4rem;
}

.contato__header {
    text-align: center;
    position: relative;
    max-width: 760px;
    margin: 0 auto 2.5rem;
    padding: 1.75rem 1.1rem;
    border: 1px solid rgba(201, 169, 110, 0.1);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(28, 21, 15, 0.28) 0%, rgba(17, 14, 10, 0.16) 100%);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.contato__header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top center, rgba(201, 169, 110, 0.08), transparent 60%);
    pointer-events: none;
}

.contato__eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #c9a96e;
    margin-bottom: 0.75rem;
}

.contato__title {
    position: relative;
    margin: 0 0 0.75rem;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}

.contato__subtitle {
    position: relative;
    margin: 0;
    font-size: 1.15rem;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.9), 0 1px 3px rgba(0, 0, 0, 1);
    max-width: 480px;
    margin-inline: auto;
    line-height: 1.7;
    letter-spacing: 0.01em;
}

.contato__grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 1.5rem;
    align-items: start;
}

/* Info cards */
.contato__info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contato__info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.1rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    background: rgba(17, 14, 10, 0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: transform 0.2s ease;
}

.contato__info-card:hover {
    transform: translateY(-2px);
}

.contato__info-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
    line-height: 1;
    margin-top: 0.1rem;
}

.contato__info-title {
    margin: 0 0 0.25rem;
    font-size: 0.88rem;
    font-weight: 700;
    color: #c9a96e;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.contato__info-text {
    margin: 0;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.contato__info-text a {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.contato__info-text a:hover {
    color: #c9a96e;
    opacity: 1;
}

/* Form */
.contato__social-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(201, 169, 110, 0.25);
    border-radius: 20px;
    background: rgba(17, 14, 10, 0.6);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    height: 100%;
}

.contato__social-label {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.04em;
    text-align: center;
}

.contato__social-links {
    display: flex;
    gap: 1.25rem;
}

.contato__social-btn {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.85rem 1.75rem;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    text-decoration: none;
}

.contato__social-btn:hover {
    transform: translateY(-3px);
    opacity: 1;
}

.contato__social-btn--instagram {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #ffffff;
    box-shadow: 0 6px 24px rgba(220, 39, 67, 0.35);
}

.contato__social-btn--instagram:hover {
    box-shadow: 0 10px 32px rgba(220, 39, 67, 0.5);
}

.contato__social-btn--facebook {
    background: #1877f2;
    color: #ffffff;
    box-shadow: 0 6px 24px rgba(24, 119, 242, 0.35);
}

.contato__social-btn--facebook:hover {
    box-shadow: 0 10px 32px rgba(24, 119, 242, 0.5);
}

@media (max-width: 778px) {
    .contato__grid {
        grid-template-columns: 1fr;
    }

    .contato__social-links {
        flex-direction: column;
        width: 100%;
    }

    .contato__social-btn {
        justify-content: center;
    }
}

/* ── Sobre Page ─────────────────────────────────────────── */
.sobre {
    padding: 2.5rem 0 3rem;
}

.sobre__hero {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.sobre__hero-text {
    flex: 1;
    position: relative;
    padding: 1.75rem 1.1rem;
    border: 1px solid rgba(201, 169, 110, 0.1);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(28, 21, 15, 0.28) 0%, rgba(17, 14, 10, 0.16) 100%);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.sobre__hero-text::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top center, rgba(201, 169, 110, 0.08), transparent 60%);
    pointer-events: none;
}

.sobre__eyebrow {
    position: relative;
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #c9a96e;
    margin-bottom: 0.75rem;
}

.sobre__title {
    position: relative;
    margin: 0 0 1rem;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}

.sobre__lead {
    position: relative;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.7;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.9);
}

.sobre__hero-photo {
    flex-shrink: 0;
}

#galeria .sobre__hero {
    justify-content: center;
}

#galeria .sobre__hero-text {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

#galeria .sobre__eyebrow {
    display: block;
    text-align: center;
}

#galeria .sobre__title,
#galeria .sobre__lead {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

#galeria .sobre__card {
    align-items: center;
    text-align: center;
}

#galeria .sobre__photo-frame {
    margin: 0 auto;
}

#galeria .sobre__card-title,
#galeria .sobre__card-text {
    text-align: center;
}

.sobre__photo-frame {
    position: relative;
    width: 220px;
    height: 260px;
    border-radius: 24px;
    border: 1.5px solid rgba(201, 169, 110, 0.45);
    background: rgba(17, 14, 10, 0.6);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(201, 169, 110, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sobre__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sobre__photo-placeholder {
    font-size: 5rem;
    opacity: 0.4;
}

.sobre__photo + .sobre__photo-placeholder {
    display: none;
}

.sobre__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 0;
}

.sobre__empty {
    max-width: 560px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    background: rgba(17, 14, 10, 0.55);
    text-align: center;
}

.sobre__card {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.75rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    background: rgba(17, 14, 10, 0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sobre__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.4);
}

@media (max-width: 980px) {
    .sobre__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.sobre__card--featured {
    border-color: rgba(201, 169, 110, 0.45);
    background: rgba(30, 22, 12, 0.72);
    box-shadow: 0 0 0 1px rgba(201, 169, 110, 0.2), 0 20px 50px rgba(0, 0, 0, 0.35);
}

.sobre__card-icon {
    font-size: 2rem;
    line-height: 1;
}

.sobre__card-title {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.01em;
}

.sobre__card-text {
    margin: 0;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.sobre__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.sobre__list li {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.85);
    padding-left: 1.2rem;
    position: relative;
    line-height: 1.5;
}

.sobre__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #c9a96e;
}

.sobre__cta {
    text-align: center;
    padding: 2.5rem 1.5rem;
    margin-top: 3rem;
    margin-bottom: 0;
    border: 1px solid rgba(201, 169, 110, 0.3);
    border-radius: 20px;
    background: rgba(17, 14, 10, 0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    display: block;
    width: 100%;
}

.sobre__cta-text {
    margin: 0 0 1.25rem;
    font-size: 1.15rem;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.8);
}

.sobre__cta-btn {
    display: inline-block;
    padding: 0.8rem 2.2rem;
    border-radius: 999px;
    background: #c9a96e;
    color: #0f0b07;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    transition: background 0.2s ease, transform 0.2s ease;
}

.sobre__cta-btn:hover {
    background: #d4b87e;
    transform: translateY(-2px);
    opacity: 1;
}

@media (max-width: 778px) {
    .sobre__hero {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .sobre__photo-frame {
        width: 160px;
        height: 190px;
    }

    .sobre__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    body.menu-open {
        overflow: hidden;
    }

    .page-home .site-nav .site-nav__auth-link {
        display: none;
    }

    .site-header {
        min-height: 80px;
        padding: 0;
        top: 0;
        overflow: visible;
    }

    .site-header .container {
        width: 100%;
        margin-inline: 0;
        padding-inline: 0.75rem;
    }

    .site-header__inner {
        position: relative;
        border-radius: 5px;
        min-height: 80px;
        padding: 0 0.4rem 0 0;
        flex-wrap: wrap;
        justify-content: flex-end;
        align-items: center;
        overflow: visible;
    }

    .site-brand {
        position: absolute;
        left: 0.5rem;
        top: 50%;
        transform: translateY(-50%);
        width: auto;
        flex: none;
        overflow: visible;
        display: flex;
        align-items: center;
        min-height: 0;
        margin-left: 0;
        padding-left: 0;
    }

    .site-brand__logo {
        height: auto;
        width: clamp(160px, 45vw, 240px);
        max-width: 100%;
        margin: 0;
        object-fit: contain;
        object-position: left center;
    }

    .site-menu-toggle {
        display: flex;
        width: 48px;
        height: 48px;
        margin-left: auto;
        align-self: center;
        border-radius: 14px;
    }

    .site-menu-toggle__bar {
        width: 22px;
    }

    .site-nav {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 120;
        flex-direction: column;
        align-items: stretch;
        gap: 0.15rem;
        width: auto;
        margin-top: 0;
        padding: 0.25rem;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 18px;
        background: linear-gradient(180deg, rgba(23, 17, 12, 0.94) 0%, rgba(12, 10, 7, 0.96) 100%);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translate3d(0, -12px, 0);
        transform-origin: top center;
        overflow: hidden;
        will-change: transform, opacity;
        backface-visibility: hidden;
        contain: layout paint;
        transition: opacity 0.28s ease, transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0.34s;
    }

    .site-nav__links {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        flex: none;
    }

    .site-nav__actions {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0.15rem;
        flex: none;
        margin-top: 0.25rem;
        padding-top: 0.25rem;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .site-nav.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translate3d(0, 0, 0);
        transition: opacity 0.28s ease, transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0s;
    }

    .site-nav a {
        padding: 0.9rem 1rem;
        border: 1px solid transparent;
        border-radius: 14px;
        font-size: 1rem;
        text-align: center;
        opacity: 1;
        transform: none;
        transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease;
    }

    .site-nav a:hover,
    .site-nav a:focus-visible {
        background: rgba(201, 169, 110, 0.12);
        border-color: rgba(201, 169, 110, 0.18);
        opacity: 1;
    }

    .site-nav__button,
    .inline-form .site-nav__button {
        margin-top: 0.5rem;
        width: 100%;
        text-align: center;
        padding: 0.9rem 1rem;
        border-radius: 20px;
    }

    .site-nav .inline-form {
        opacity: 1;
        transform: none;
    }

    .inline-form {
        display: block;
    }
}

@media (max-width: 778px) {
    body.landing-page {
        background-position: 65% center;
    }

    .site-brand__logo {
        width: clamp(66px, 22vw, 90px);
    }

    .container {
        width: min(100% - 1rem, 960px);
    }

    .services__card {
        flex: 0 0 78vw;
    }

    .services__nav {
        display: none;
    }

    .services__cta {
        display: flex;
        flex-direction: column;
    }

    .services__cta-btn {
        width: min(100%, 320px);
    }

    .services__cta-btn--mobile {
        display: inline-flex;
    }

    .auth-card {
        margin: 2rem auto 0;
        border-radius: 18px;
    }

    .auth-panel {
        padding: 1.25rem;
    }
}

@media (max-width: 380px) {
    .site-header .container {
        padding-inline: 0.4rem;
    }

    .site-header__inner {
        min-height: 70px;
    }

    .site-brand__logo {
        width: clamp(76px, 26vw, 96px);
    }

    .site-menu-toggle {
        width: 42px;
        height: 42px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .site-menu-toggle,
    .site-menu-toggle__bar,
    .site-nav,
    .site-nav a,
    .site-nav .inline-form {
        transition: none !important;
    }
}

/* ── Footer ─────────────────────────────────────────────── */
.site-footer {
    margin-top: 4rem;
    border-top: 1px solid rgba(201, 169, 110, 0.18);
    background: rgba(10, 8, 5, 0.72);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 1.1rem 0;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.38);
    text-align: center;
}

.site-footer__heart {
    color: #c9a96e;
}

@media (max-width: 778px) {
    .site-footer__bottom {
        justify-content: center;
        text-align: center;
    }
}

/* ── Panel Layout ────────────────────────────────────────── */
.panel-page {
    background: #0f0d0b;
    color: #e8e0d4;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: inherit;
}

.panel-header {
    background: #1a1510;
    border-bottom: 1px solid rgba(201, 169, 110, 0.15);
    position: sticky;
    top: 0;
    z-index: 100;
}

.panel-header__inner {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    min-height: 64px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2rem;
    min-width: 0;
}

.panel-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    min-width: 0;
}

.panel-brand__logo {
    display: block;
    height: 88px;
    width: auto;
    max-width: min(200px, 38vw);
    object-fit: contain;
    object-position: left center;
}

.panel-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(201, 169, 110, 0.35);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.panel-menu-toggle:hover,
.panel-menu-toggle.is-active {
    background: rgba(201, 169, 110, 0.12);
    border-color: rgba(201, 169, 110, 0.55);
}

.panel-menu-toggle__bar {
    display: block;
    width: 21px;
    height: 2px;
    border-radius: 999px;
    background: #c9a96e;
    transition: transform 0.28s ease, opacity 0.2s ease, width 0.2s ease;
}

.panel-menu-toggle[aria-expanded="true"] .panel-menu-toggle__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.panel-menu-toggle[aria-expanded="true"] .panel-menu-toggle__bar:nth-child(2) {
    opacity: 0;
    width: 0;
}

.panel-menu-toggle[aria-expanded="true"] .panel-menu-toggle__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.panel-nav {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    flex-wrap: wrap;
    justify-content: flex-end;
    justify-self: end;
    min-width: 0;
}

.panel-nav__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem 0.9rem;
    border-radius: 8px;
    border: 0;
    background: transparent;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
    white-space: nowrap;
    width: auto;
}

.panel-nav__link:hover {
    background: rgba(201, 169, 110, 0.1);
    color: #ffffff;
}

.panel-nav__link--active {
    background: rgba(201, 169, 110, 0.15);
    color: #ffffff;
}

.panel-nav__logout-form {
    display: inline-flex;
    margin: 0;
    padding: 0;
    width: auto;
}

.panel-nav__logout {
    cursor: pointer;
    font-family: inherit;
}

.panel-main {
    flex: 1;
    padding: 2rem 0;
}

.panel-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.panel-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1.25rem 0;
    font-size: 0.82rem;
    color: rgba(232, 224, 212, 0.35);
    text-align: center;
}

/* ── Dashboard Welcome ───────────────────────────────────── */
.dashboard-welcome {
    padding: 2.5rem 0 1rem;
}

.dashboard-welcome__title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e8e0d4;
    margin-bottom: 0.5rem;
}

.dashboard-welcome__subtitle {
    font-size: 1rem;
    color: rgba(232, 224, 212, 0.55);
    max-width: 520px;
}

.dashboard-services {
    margin-top: 0.75rem;
    background: linear-gradient(180deg, rgba(29, 23, 17, 0.9) 0%, rgba(19, 15, 11, 0.9) 100%);
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: 16px;
    padding: 1.25rem;
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.22);
}

.dashboard-services__header {
    margin-bottom: 1.6rem;
    text-align: center;
}

.dashboard-services__title {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
}

.dashboard-services__subtitle {
    margin: 0.35rem 0 0;
    font-size: 0.92rem;
    color: rgba(232, 224, 212, 0.66);
}

.dashboard-services__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
}

.service-option {
    position: relative;
    display: block;
    cursor: pointer;
}

.service-option__input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.service-option__content {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    min-height: 172px;
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(232, 224, 212, 0.14);
    background: rgba(255, 255, 255, 0.02);
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.service-option__top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.6rem;
}

.service-option__name {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
}

.service-option__price {
    font-size: 0.95rem;
    font-weight: 700;
    color: #d2b074;
}

.service-option__description {
    color: rgba(232, 224, 212, 0.72);
    font-size: 0.9rem;
    line-height: 1.45;
}

.service-option__meta {
    margin-top: auto;
    color: rgba(232, 224, 212, 0.52);
    font-size: 0.82rem;
    letter-spacing: 0.02em;
}

.service-option:hover .service-option__content {
    border-color: rgba(201, 169, 110, 0.35);
    background: rgba(201, 169, 110, 0.05);
    transform: translateY(-1px);
}

.service-option__input:checked + .service-option__content {
    border-color: rgba(201, 169, 110, 0.75);
    background: linear-gradient(180deg, rgba(201, 169, 110, 0.18) 0%, rgba(201, 169, 110, 0.08) 100%);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.24);
}

.service-option__input:focus-visible + .service-option__content {
    outline: 2px solid rgba(201, 169, 110, 0.65);
    outline-offset: 2px;
}

.dashboard-services__actions {
    margin-top: 1rem;
    display: flex;
    justify-content: flex-end;
}

.dashboard-services__button {
    width: auto;
    border: 1px solid rgba(201, 169, 110, 0.45);
    border-radius: 10px;
    padding: 0.58rem 1.15rem;
    background: linear-gradient(180deg, rgba(57, 43, 30, 0.95) 0%, rgba(39, 29, 20, 0.95) 100%);
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.dashboard-services__button:hover {
    transform: translateY(-1px);
    border-color: rgba(201, 169, 110, 0.78);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.profile-page {
    margin-top: 0.75rem;
    background: linear-gradient(180deg, rgba(29, 23, 17, 0.9) 0%, rgba(19, 15, 11, 0.9) 100%);
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: 16px;
    padding: 1.25rem;
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.22);
}

.profile-page__header {
    margin-bottom: 1.1rem;
    text-align: center;
}

.profile-page__eyebrow {
    margin: 0;
    font-size: 0.74rem;
    letter-spacing: 0.14em;
    color: rgba(210, 176, 116, 0.92);
    font-weight: 700;
}

.profile-page__title {
    margin: 0.45rem 0 0;
    font-size: clamp(1.2rem, 2.5vw, 1.65rem);
    font-weight: 800;
    color: #ffffff;
}

.profile-page__subtitle {
    margin: 0.55rem auto 0;
    font-size: 0.9rem;
    line-height: 1.45;
    max-width: 760px;
    color: rgba(232, 224, 212, 0.72);
}

.profile-page__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.8fr) minmax(260px, 1fr);
    gap: 1rem;
    align-items: start;
}

.profile-card,
.profile-summary {
    border: 1px solid rgba(232, 224, 212, 0.14);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.profile-card {
    padding: 1rem;
}

.profile-group {
    margin: 0;
    padding: 0;
    border: 0;
}

.profile-group + .profile-group {
    margin-top: 1rem;
}

.profile-group__legend {
    padding: 0;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: rgba(232, 224, 212, 0.9);
}

.profile-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.profile-avatar-field {
    display: grid;
    gap: 1rem;
    padding: 1rem 0 0;
    border-top: 1px solid rgba(232, 224, 212, 0.08);
}

.profile-avatar-preview {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 160px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
}

.profile-avatar-preview__image,
.profile-summary__avatar {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.profile-avatar-preview__placeholder,
.profile-summary__avatar-placeholder {
    width: 120px;
    height: 120px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(232, 224, 212, 0.08);
    color: rgba(255, 255, 255, 0.88);
    font-size: 2rem;
    font-weight: 700;
}

.profile-field__input--file {
    padding: 0.85rem 0.84rem;
}

.profile-avatar__remove {
    margin-top: 10px;
    justify-self: start;
    border: 1px solid rgba(255, 115, 115, 0.4);
    border-radius: 10px;
    padding: 0.55rem 1rem;
    background: rgba(173, 46, 46, 0.12);
    color: #ffffff;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.profile-avatar__remove:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 115, 115, 0.8);
    background: rgba(173, 46, 46, 0.18);
}

.profile-field + .profile-field {
    margin-top: 0.7rem;
}

.profile-field__label {
    font-size: 0.8rem;
    color: rgba(232, 224, 212, 0.72);
}

.profile-field__input {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    padding: 0.72rem 0.84rem;
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
    font-size: 0.92rem;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.profile-field__input:focus {
    border-color: rgba(201, 169, 110, 0.62);
    background: rgba(255, 255, 255, 0.08);
}

.profile-card__actions {
    margin-top: 1rem;
    display: flex;
    justify-content: flex-end;
}

.profile-card__save {
    width: auto;
    border: 1px solid rgba(201, 169, 110, 0.45);
    border-radius: 10px;
    padding: 0.58rem 1.15rem;
    background: linear-gradient(180deg, rgba(57, 43, 30, 0.95) 0%, rgba(39, 29, 20, 0.95) 100%);
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.profile-card__save:hover {
    transform: translateY(-1px);
    border-color: rgba(201, 169, 110, 0.78);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.profile-summary {
    padding: 1rem;
}

.profile-summary__title {
    margin: 0;
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(210, 176, 116, 0.85);
}

.profile-summary__avatar-card {
    margin: 1rem 0 0;
    display: flex;
    justify-content: center;
}

.profile-summary__name {
    margin: 0.45rem 0 0;
    font-size: 1.1rem;
    font-weight: 800;
    color: #ffffff;
}

.profile-summary__email {
    margin: 0.45rem 0 0;
    font-size: 0.86rem;
    color: rgba(232, 224, 212, 0.74);
}

.profile-summary__meta {
    margin: 0.9rem 0 0;
    padding: 0;
}

.profile-summary__meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(232, 224, 212, 0.1);
}

.profile-summary__meta-row dt {
    font-size: 0.8rem;
    color: rgba(232, 224, 212, 0.56);
}

.profile-summary__meta-row dd {
    margin: 0;
    font-size: 0.86rem;
    font-weight: 700;
    color: #ffffff;
}

.dashboard-appointments {
    margin-top: 1rem;
    background: linear-gradient(180deg, rgba(29, 23, 17, 0.9) 0%, rgba(19, 15, 11, 0.9) 100%);
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: 16px;
    padding: 1.25rem;
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.22);
}

.dashboard-appointments__header {
    margin-bottom: 1rem;
}

.dashboard-appointments__title {
    margin: 0;
    font-size: 1.12rem;
    font-weight: 700;
    color: #ffffff;
}

.dashboard-appointments__subtitle,
.dashboard-appointments__empty {
    margin: 0.35rem 0 0;
    color: rgba(232, 224, 212, 0.66);
    font-size: 0.9rem;
}

.dashboard-appointments__list {
    display: grid;
    gap: 0.85rem;
}

.dashboard-appointments__card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem;
    border-radius: 14px;
    border: 1px solid rgba(232, 224, 212, 0.12);
    background: rgba(255, 255, 255, 0.02);
}

.dashboard-appointments__service {
    margin: 0;
    font-size: 1rem;
    color: #ffffff;
}

.dashboard-appointments__meta,
.dashboard-appointments__details {
    margin: 0.32rem 0 0;
    font-size: 0.88rem;
    color: rgba(232, 224, 212, 0.68);
}

.dashboard-appointments__form {
    flex-shrink: 0;
}

.dashboard-appointments__cancel {
    border: 1px solid rgba(191, 77, 77, 0.45);
    border-radius: 10px;
    padding: 0.58rem 0.95rem;
    background: linear-gradient(180deg, rgba(90, 24, 24, 0.95) 0%, rgba(61, 18, 18, 0.95) 100%);
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.dashboard-appointments__cancel:hover {
    transform: translateY(-1px);
    border-color: rgba(214, 101, 101, 0.78);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}

.barber-step {
    margin-top: 0.75rem;
    background: linear-gradient(180deg, rgba(29, 23, 17, 0.9) 0%, rgba(19, 15, 11, 0.9) 100%);
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: 16px;
    padding: 1.35rem;
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.22);
}

.barber-step__header {
    margin-bottom: 1.2rem;
    text-align: center;
}

.barber-step__eyebrow {
    margin: 0;
    font-size: 0.74rem;
    letter-spacing: 0.14em;
    color: rgba(210, 176, 116, 0.92);
    font-weight: 700;
}

.barber-step__title {
    margin: 0.45rem 0 0;
    font-size: clamp(1.2rem, 2.5vw, 1.65rem);
    font-weight: 800;
    color: #ffffff;
}

.barber-step__subtitle {
    margin: 0.55rem auto 0;
    font-size: 0.92rem;
    line-height: 1.45;
    max-width: 720px;
    color: rgba(232, 224, 212, 0.7);
}

.barber-step__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.9fr) minmax(260px, 1fr);
    gap: 1rem;
    align-items: start;
}

.barber-card,
.barber-summary {
    border: 1px solid rgba(232, 224, 212, 0.14);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.barber-card {
    padding: 1rem;
}

.barber-group {
    margin: 0;
    padding: 0;
    border: 0;
}

.barber-group__legend {
    padding: 0;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: rgba(232, 224, 212, 0.9);
}

.barber-options {
    display: grid;
    gap: 0.75rem;
}

.barber-option {
    position: relative;
    display: block;
    cursor: pointer;
}

.barber-option__input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.barber-option__content {
    border-radius: 12px;
    border: 1px solid rgba(232, 224, 212, 0.14);
    background: rgba(255, 255, 255, 0.01);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.8rem;
    padding: 0.9rem;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.barber-option__avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(180deg, rgba(201, 169, 110, 0.24) 0%, rgba(201, 169, 110, 0.12) 100%);
    border: 1px solid rgba(201, 169, 110, 0.4);
    color: #f0d7a7;
    font-size: 0.95rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.barber-option__avatar img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.barber-option__main {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.barber-option__name {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
}

.barber-option__role {
    font-size: 0.86rem;
    color: rgba(232, 224, 212, 0.66);
}

.barber-option__exp {
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(210, 176, 116, 0.9);
}

.barber-option:hover .barber-option__content {
    border-color: rgba(201, 169, 110, 0.4);
    background: rgba(201, 169, 110, 0.05);
    transform: translateY(-1px);
}

.barber-option__input:checked + .barber-option__content {
    border-color: rgba(201, 169, 110, 0.75);
    background: linear-gradient(180deg, rgba(201, 169, 110, 0.2) 0%, rgba(201, 169, 110, 0.08) 100%);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.24);
}

.barber-option__input:focus-visible + .barber-option__content {
    outline: 2px solid rgba(201, 169, 110, 0.62);
    outline-offset: 2px;
}

.barber-card__actions {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.barber-card__back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    border: 1px solid rgba(232, 224, 212, 0.22);
    border-radius: 10px;
    padding: 0.6rem 1.1rem;
    background: rgba(255, 255, 255, 0.03);
    color: rgba(232, 224, 212, 0.86);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.barber-card__back:hover {
    transform: translateY(-1px);
    border-color: rgba(201, 169, 110, 0.52);
    background: rgba(201, 169, 110, 0.06);
    color: #ffffff;
    opacity: 1;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.barber-card__continue {
    width: auto;
    border: 1px solid rgba(201, 169, 110, 0.45);
    border-radius: 10px;
    padding: 0.6rem 1.1rem;
    background: linear-gradient(180deg, rgba(57, 43, 30, 0.95) 0%, rgba(39, 29, 20, 0.95) 100%);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.barber-card__continue:hover {
    transform: translateY(-1px);
    border-color: rgba(201, 169, 110, 0.78);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.barber-summary {
    padding: 1rem;
}

.barber-summary__title {
    margin: 0;
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(210, 176, 116, 0.85);
}

.barber-summary__service {
    margin: 0.45rem 0 0;
    font-size: 1.1rem;
    font-weight: 800;
    color: #ffffff;
}

.barber-summary__description {
    margin: 0.55rem 0 0;
    font-size: 0.88rem;
    line-height: 1.5;
    color: rgba(232, 224, 212, 0.72);
}

.barber-summary__meta {
    margin: 0.9rem 0 0;
    padding: 0;
}

.barber-summary__meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(232, 224, 212, 0.1);
}

.barber-summary__meta-row dt {
    font-size: 0.8rem;
    color: rgba(232, 224, 212, 0.56);
}

.barber-summary__meta-row dd {
    margin: 0;
    font-size: 0.86rem;
    font-weight: 700;
    color: #ffffff;
}

.schedule-step {
    margin-top: 0.75rem;
    background: linear-gradient(180deg, rgba(29, 23, 17, 0.9) 0%, rgba(19, 15, 11, 0.9) 100%);
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: 16px;
    padding: 1.35rem;
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.22);
}

.schedule-step__header {
    margin-bottom: 1.2rem;
    text-align: center;
}

.schedule-step__eyebrow {
    margin: 0;
    font-size: 0.74rem;
    letter-spacing: 0.14em;
    color: rgba(210, 176, 116, 0.92);
    font-weight: 700;
}

.schedule-step__title {
    margin: 0.45rem 0 0;
    font-size: clamp(1.2rem, 2.5vw, 1.65rem);
    font-weight: 800;
    color: #ffffff;
}

.schedule-step__subtitle {
    margin: 0.55rem auto 0;
    font-size: 0.92rem;
    line-height: 1.45;
    max-width: 720px;
    color: rgba(232, 224, 212, 0.7);
}

.schedule-step__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.9fr) minmax(260px, 1fr);
    gap: 1rem;
    align-items: start;
}

.schedule-card,
.schedule-summary {
    border: 1px solid rgba(232, 224, 212, 0.14);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.schedule-card {
    padding: 1rem;
    position: relative;
}

.schedule-group {
    margin: 0;
    padding: 0;
    border: 0;
}

.schedule-group + .schedule-group {
    margin-top: 1rem;
}

.schedule-group__legend {
    padding: 0;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: rgba(232, 224, 212, 0.9);
}

.schedule-month-nav {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
}

.schedule-month-nav__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 112px;
    padding: 0.42rem 0.72rem;
    border-radius: 10px;
    border: 1px solid rgba(201, 169, 110, 0.35);
    background: rgba(255, 255, 255, 0.02);
    color: rgba(232, 224, 212, 0.85);
    font-size: 0.78rem;
    font-weight: 700;
    text-align: center;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.schedule-month-nav__button:hover {
    border-color: rgba(201, 169, 110, 0.65);
    background: rgba(201, 169, 110, 0.08);
    color: #ffffff;
}

.schedule-month-nav__button.is-disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.schedule-month-nav__label {
    margin: 0;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    color: #ffffff;
    text-transform: uppercase;
}

.schedule-date-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.65rem;
}

.schedule-date-option,
.schedule-slot-option {
    position: relative;
    display: block;
    cursor: pointer;
}

.schedule-date-option__input,
.schedule-slot-option__input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.schedule-date-option__content {
    min-height: 96px;
    border-radius: 12px;
    border: 1px solid rgba(232, 224, 212, 0.14);
    background: rgba(255, 255, 255, 0.01);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.2rem;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.schedule-date-option__weekday {
    font-size: 0.72rem;
    color: rgba(232, 224, 212, 0.62);
}

.schedule-date-option__day {
    font-size: 1.45rem;
    line-height: 1;
    font-weight: 800;
    color: #ffffff;
}

.schedule-date-option__month {
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(210, 176, 116, 0.86);
}

.schedule-date-option.is-unavailable {
    pointer-events: none;
    cursor: not-allowed;
}

.schedule-date-option.is-unavailable .schedule-date-option__content {
    opacity: 0.48;
    border-style: dashed;
    border-color: rgba(232, 224, 212, 0.2);
    background: rgba(255, 255, 255, 0.01);
}

.schedule-date-option.is-day-blocked .schedule-date-option__content::after {
    content: 'Indisponivel';
    display: block;
    margin-top: 0.35rem;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(232, 224, 212, 0.5);
}

.schedule-date-option.is-unavailable:hover .schedule-date-option__content {
    border-color: rgba(232, 224, 212, 0.2);
    background: rgba(255, 255, 255, 0.01);
    transform: none;
}

.schedule-slot-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.65rem;
}

.schedule-slot-option.is-hidden {
    display: none;
}

.schedule-slot-option__content {
    min-height: 44px;
    border-radius: 10px;
    border: 1px solid rgba(232, 224, 212, 0.14);
    background: rgba(255, 255, 255, 0.01);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.88rem;
    font-weight: 700;
    color: #ffffff;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.schedule-date-option:hover .schedule-date-option__content,
.schedule-slot-option:hover .schedule-slot-option__content {
    border-color: rgba(201, 169, 110, 0.4);
    background: rgba(201, 169, 110, 0.05);
    transform: translateY(-1px);
}

.schedule-date-option__input:checked + .schedule-date-option__content,
.schedule-slot-option__input:checked + .schedule-slot-option__content {
    border-color: rgba(201, 169, 110, 0.75);
    background: linear-gradient(180deg, rgba(201, 169, 110, 0.2) 0%, rgba(201, 169, 110, 0.08) 100%);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.24);
}

.schedule-date-option__input:focus-visible + .schedule-date-option__content,
.schedule-slot-option__input:focus-visible + .schedule-slot-option__content {
    outline: 2px solid rgba(201, 169, 110, 0.62);
    outline-offset: 2px;
}

.schedule-card__actions {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.schedule-card__back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    border: 1px solid rgba(232, 224, 212, 0.22);
    border-radius: 10px;
    padding: 0.6rem 1.1rem;
    background: rgba(255, 255, 255, 0.03);
    color: rgba(232, 224, 212, 0.86);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.schedule-card__back:hover {
    transform: translateY(-1px);
    border-color: rgba(201, 169, 110, 0.52);
    background: rgba(201, 169, 110, 0.06);
    color: #ffffff;
    opacity: 1;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.schedule-card__confirm {
    width: auto;
    border: 1px solid rgba(201, 169, 110, 0.45);
    border-radius: 10px;
    padding: 0.6rem 1.1rem;
    background: linear-gradient(180deg, rgba(57, 43, 30, 0.95) 0%, rgba(39, 29, 20, 0.95) 100%);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.schedule-card__confirm:hover {
    transform: translateY(-1px);
    border-color: rgba(201, 169, 110, 0.78);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.schedule-card__confirm:disabled {
    cursor: not-allowed;
    opacity: 0.55;
    transform: none;
    box-shadow: none;
}

.schedule-confirmation {
    position: fixed;
    inset: 0;
    background: rgba(8, 6, 4, 0.74);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    z-index: 1200;
}

.schedule-confirmation.is-hidden {
    display: none;
}

.schedule-confirmation__panel {
    width: min(100%, 520px);
    border-radius: 14px;
    border: 1px solid rgba(201, 169, 110, 0.36);
    background: linear-gradient(180deg, rgba(37, 29, 21, 0.97) 0%, rgba(25, 19, 14, 0.97) 100%);
    box-shadow: 0 24px 44px rgba(0, 0, 0, 0.3);
    padding: 1.1rem;
}

.schedule-confirmation__title {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 800;
    color: #ffffff;
}

.schedule-confirmation__subtitle {
    margin: 0.35rem 0 0;
    font-size: 0.84rem;
    color: rgba(232, 224, 212, 0.74);
}

.schedule-confirmation__meta {
    margin: 0.95rem 0 0;
    padding: 0;
}

.schedule-confirmation__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
    padding: 0.58rem 0;
    border-bottom: 1px solid rgba(232, 224, 212, 0.1);
}

.schedule-confirmation__row dt {
    font-size: 0.8rem;
    color: rgba(232, 224, 212, 0.56);
}

.schedule-confirmation__row dd {
    margin: 0;
    font-size: 0.84rem;
    font-weight: 700;
    color: #ffffff;
    text-align: right;
}

.schedule-confirmation__actions {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
}

.schedule-confirmation__back,
.schedule-confirmation__confirm {
    width: auto;
    border-radius: 10px;
    padding: 0.58rem 1.05rem;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.schedule-confirmation__back {
    border: 1px solid rgba(232, 224, 212, 0.3);
    background: rgba(255, 255, 255, 0.03);
    color: rgba(232, 224, 212, 0.86);
}

.schedule-confirmation__confirm {
    border: 1px solid rgba(201, 169, 110, 0.45);
    background: linear-gradient(180deg, rgba(57, 43, 30, 0.95) 0%, rgba(39, 29, 20, 0.95) 100%);
    color: #ffffff;
}

.schedule-confirmation__back:hover,
.schedule-confirmation__confirm:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}

.schedule-confirmation__confirm:hover {
    border-color: rgba(201, 169, 110, 0.78);
}

.schedule-summary {
    padding: 1rem;
}

.schedule-summary__title {
    margin: 0;
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(210, 176, 116, 0.85);
}

.schedule-summary__service {
    margin: 0.45rem 0 0;
    font-size: 1.1rem;
    font-weight: 800;
    color: #ffffff;
}

.schedule-summary__description {
    margin: 0.55rem 0 0;
    font-size: 0.88rem;
    line-height: 1.5;
    color: rgba(232, 224, 212, 0.72);
}

.schedule-summary__meta {
    margin: 0.9rem 0 0;
    padding: 0;
}

.schedule-summary__meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(232, 224, 212, 0.1);
}

.schedule-summary__meta-row dt {
    font-size: 0.8rem;
    color: rgba(232, 224, 212, 0.56);
}

.schedule-summary__meta-row dd {
    margin: 0;
    font-size: 0.86rem;
    font-weight: 700;
    color: #ffffff;
}

.schedule-summary__hint {
    margin: 0.95rem 0 0;
    font-size: 0.8rem;
    line-height: 1.4;
    color: rgba(232, 224, 212, 0.52);
}

.schedule-group__hint,
.schedule-group__empty {
    margin: 0.85rem 0 0;
    font-size: 0.82rem;
    line-height: 1.45;
    color: rgba(232, 224, 212, 0.58);
}

.schedule-group__empty.is-hidden {
    display: none;
}

@media (max-width: 900px) {
    .panel-header__inner {
        display: flex;
        align-items: center;
        padding: 0.65rem 1rem;
        gap: 0.75rem;
    }

    .panel-brand__logo {
        height: auto;
        max-height: 76px;
        width: clamp(118px, 28vw, 170px);
        max-width: min(170px, 34vw);
    }

    .panel-menu-toggle {
        display: flex;
        margin-left: auto;
        flex: 0 0 auto;
    }

    .panel-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 120;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        justify-self: stretch;
        gap: 0.15rem;
        width: auto;
        margin-top: 0;
        padding: 0.25rem;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 18px;
        background: linear-gradient(180deg, rgba(23, 17, 12, 0.94) 0%, rgba(12, 10, 7, 0.96) 100%);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translate3d(0, -12px, 0);
        transform-origin: top center;
        overflow: hidden;
        transition: opacity 0.28s ease, transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0.34s;
    }

    .panel-nav.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translate3d(0, 0, 0);
        transition: opacity 0.28s ease, transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0s;
    }

    .panel-nav__link {
        width: 100%;
        padding: 0.9rem 1rem;
        text-align: center;
        border: 1px solid transparent;
        border-radius: 14px;
        font-size: 1rem;
    }

    .panel-nav__link:hover,
    .panel-nav__link:focus-visible {
        background: rgba(201, 169, 110, 0.12);
        border-color: rgba(201, 169, 110, 0.18);
    }

    .panel-nav__logout-form {
        display: block;
        width: 100%;
        margin-top: 0.25rem;
        padding-top: 0.25rem;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
}

@media (max-width: 420px) {
    .panel-brand__logo {
        width: clamp(92px, 30vw, 130px);
        max-width: min(130px, 34vw);
    }

    .panel-menu-toggle {
        width: 40px;
        height: 40px;
    }

    .panel-nav {
        left: 0;
        right: 0;
    }
}

@media (max-width: 600px) {
    .panel-header__inner {
        padding: 0.6rem 0.85rem;
        gap: 0.6rem;
    }

    .panel-brand__logo {
        height: auto;
        max-height: 72px;
        width: clamp(100px, 32vw, 160px);
        max-width: min(160px, 42vw);
        object-fit: contain;
        object-position: left center;
    }

    .panel-container {
        padding: 0 1rem;
    }

    .dashboard-welcome__title {
        font-size: 1.4rem;
    }

    .dashboard-services {
        padding: 1rem;
    }

    .dashboard-appointments {
        padding: 1rem;
    }

    .profile-page {
        padding: 1rem;
    }

    .profile-page__layout {
        grid-template-columns: 1fr;
    }

    .profile-card__actions {
        justify-content: stretch;
    }

    .profile-card__save {
        width: 100%;
    }

    .dashboard-appointments__card {
        flex-direction: column;
        align-items: stretch;
    }

    .dashboard-appointments__cancel {
        width: 100%;
    }

    .dashboard-services__grid {
        grid-template-columns: 1fr;
    }

    .dashboard-services__actions {
        justify-content: stretch;
    }

    .dashboard-services__button {
        width: 100%;
    }

    .schedule-step {
        padding: 1rem;
    }

    .barber-step {
        padding: 1rem;
    }

    .barber-step__layout {
        grid-template-columns: 1fr;
    }

    .barber-card__actions {
        flex-direction: column-reverse;
        align-items: stretch;
    }

    .barber-card__continue {
        width: 100%;
    }

    .barber-card__back {
        width: 100%;
    }

    .schedule-step__layout {
        grid-template-columns: 1fr;
    }

    .schedule-date-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .schedule-month-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .schedule-month-nav__label {
        width: 100%;
        text-align: center;
        order: -1;
    }

    .schedule-slot-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .schedule-card__actions {
        flex-direction: column-reverse;
        align-items: stretch;
    }

    .schedule-card__confirm {
        width: 100%;
    }

    .schedule-card__back {
        width: 100%;
    }

    .schedule-confirmation__actions {
        flex-direction: column-reverse;
        align-items: stretch;
    }

    .schedule-confirmation__back,
    .schedule-confirmation__confirm {
        width: 100%;
    }
}

/* Admin dashboard styles */
.admin-page {
    background: #0f1218;
    color: #eef1f5;
    min-height: 100vh;
}

.admin-shell {
    display: grid;
    grid-template-columns: 280px 1fr;
    min-height: 100vh;
    min-width: 0;
}

.admin-sidebar {
    background: linear-gradient(180deg, #11161f 0%, #171f2b 100%);
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    padding: 2rem 1.5rem;
    position: sticky;
    top: 0;
    align-self: start;
}

.admin-sidebar__brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 2rem;
}

.admin-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    margin-left: auto;
    padding: 0;
    border: 1px solid rgba(212, 169, 106, 0.28);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.admin-menu-toggle:hover,
.admin-menu-toggle.is-active {
    background: rgba(212, 169, 106, 0.12);
    border-color: rgba(212, 169, 106, 0.55);
}

.admin-menu-toggle__bar {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: #d4a96a;
    transition: transform 0.28s ease, opacity 0.2s ease, width 0.2s ease;
}

.admin-menu-toggle[aria-expanded="true"] .admin-menu-toggle__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.admin-menu-toggle[aria-expanded="true"] .admin-menu-toggle__bar:nth-child(2) {
    opacity: 0;
    width: 0;
}

.admin-menu-toggle[aria-expanded="true"] .admin-menu-toggle__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.admin-sidebar__brand-mark {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: #d4a96a;
    color: #11161f;
    font-weight: 900;
}

.admin-sidebar__brand-title,
.admin-sidebar__brand-subtitle {
    margin: 0;
}

.admin-sidebar__brand-title {
    font-size: 1rem;
    font-weight: 800;
}

.admin-sidebar__brand-subtitle {
    font-size: 0.8rem;
    color: rgba(238, 241, 245, 0.7);
}

.admin-nav {
    display: grid;
    gap: 0.5rem;
}

.admin-nav__link {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.95rem 1rem;
    border-radius: 14px;
    color: rgba(238, 241, 245, 0.8);
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.admin-nav__link:hover,
.admin-nav__link--active {
    background: rgba(212, 169, 106, 0.12);
    color: #ffffff;
}

.admin-nav__icon {
    display: inline-flex;
    width: 1.8rem;
    height: 1.8rem;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
}

.admin-sidebar__footer {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.admin-sidebar__footer-label,
.admin-sidebar__footer-text {
    margin: 0;
    color: rgba(238, 241, 245, 0.64);
    font-size: 0.85rem;
}

.admin-main {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    min-width: 0;
}

.admin-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 1.75rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.admin-topbar__eyebrow {
    margin: 0 0 0.35rem;
    letter-spacing: 0.18em;
    color: rgba(212, 169, 106, 0.9);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
}

.admin-topbar__title {
    margin: 0;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    color: #d4a96a;
}

.admin-topbar__profile {
    display: grid;
    grid-template-columns: 52px auto;
    align-items: center;
    gap: 0.9rem;
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-topbar__avatar {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: #d4a96a;
    color: #11161f;
    font-weight: 800;
}

.admin-topbar__name,
.admin-topbar__role {
    margin: 0;
}

.admin-topbar__name {
    font-weight: 700;
    color: #ffffff;
}

.admin-topbar__role {
    font-size: 0.85rem;
    color: rgba(238, 241, 245, 0.72);
}

.admin-topbar__logout {
    width: auto;
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(238, 241, 245, 0.72);
    font: inherit;
}

.admin-content {
    display: grid;
    gap: 1.5rem;
}

.admin-alert {
    border-radius: 16px;
    padding: 1rem 1.15rem;
    font-weight: 700;
    line-height: 1.45;
    transition: opacity 300ms ease, transform 300ms ease;
}

.admin-alert.is-hidden {
    opacity: 0;
    transform: translateY(-4px);
}

.admin-alert--success {
    border: 1px solid rgba(74, 222, 128, 0.35);
    background: rgba(22, 101, 52, 0.22);
    color: #bbf7d0;
}

.admin-alert--error {
    border: 1px solid rgba(248, 113, 113, 0.35);
    background: rgba(127, 29, 29, 0.22);
    color: #fecaca;
}

.admin-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr 1fr;
}

.admin-card {
    padding: 1.5rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.16);
}

.admin-card--highlight {
    grid-column: span 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.admin-card__eyebrow {
    margin: 0;
    font-size: 0.78rem;
    color: rgba(212, 169, 106, 0.9);
    font-weight: 700;
    text-transform: uppercase;
}

.admin-card__title {
    margin: 0.45rem 0 0;
    font-size: 1.75rem;
    line-height: 1.1;
}

.admin-card__title-sm {
    margin: 0.2rem 0 0;
    font-size: 1.1rem;
}

.admin-card__text {
    margin: 1rem 0 0;
    color: rgba(238, 241, 245, 0.75);
    line-height: 1.7;
}

.admin-card__pill {
    padding: 0.8rem 1rem;
    border-radius: 999px;
    background: rgba(212, 169, 106, 0.18);
    color: #d4a96a;
    font-weight: 700;
}

.admin-stat-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.admin-stat-card {
    padding: 1.25rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-stat-card__label {
    margin: 0 0 0.85rem;
    color: rgba(238, 241, 245, 0.72);
    font-size: 0.92rem;
}

.admin-stat-card h3 {
    margin: 0;
    font-size: 2rem;
    color: #ffffff;
}

.admin-welcome-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1.5rem;
    padding: 1.75rem;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(212, 169, 106, 0.18), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(212, 169, 106, 0.14);
}

.admin-button {
    border: 0;
    border-radius: 14px;
    padding: 0.95rem 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.admin-button:hover {
    transform: translateY(-1px);
}

.admin-button--primary {
    background: #d4a96a;
    color: #11161f;
}

.admin-button--secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.admin-button--ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.admin-button--danger {
    background: rgba(153, 27, 27, 0.88);
    color: #ffffff;
}

.admin-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.admin-tables {
    display: grid;
    gap: 1rem;
}

.admin-table-card {
    padding: 1.5rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    min-width: 0;
}

.admin-table-card--compact {
    max-width: 100%;
}

.admin-table-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.admin-table-wrapper {
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 640px;
}

.admin-table th,
.admin-table td {
    text-align: left;
    padding: 1rem 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.admin-table th {
    color: rgba(238, 241, 245, 0.75);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.admin-table td {
    color: #ffffff;
}

.admin-table--striped tbody tr:nth-child(2n) {
    background: rgba(255, 255, 255, 0.02);
}

.badge {
    display: inline-flex;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
}

.badge--success {
    background: rgba(92, 192, 120, 0.18);
    color: #8be08d;
}

.badge--warning {
    background: rgba(255, 186, 76, 0.18);
    color: #ffd16c;
}

.admin-forms {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.admin-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.admin-dashboard-hero {
    align-items: center;
}

.admin-dashboard-stats {
    display: grid;
    grid-template-columns: repeat(5, minmax(140px, 1fr));
    gap: 1rem;
}

.admin-stat-card--animated {
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.admin-stat-card--animated:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 169, 106, 0.32);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
}

.admin-stat-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    margin-bottom: 0.85rem;
    background: rgba(212, 169, 106, 0.16);
    font-size: 1.25rem;
}

.admin-dashboard-charts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.admin-chart-card {
    min-width: 0;
}

.admin-chart {
    width: 100%;
    max-width: 100%;
    display: block;
}

.admin-ranking-list,
.admin-activity-list {
    list-style: none;
    display: grid;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.admin-ranking-list li,
.admin-activity-list li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.78);
}

.admin-ranking-list strong {
    color: #d4a96a;
}

.admin-activity-list li {
    flex-direction: column;
}

.admin-activity-list small {
    color: rgba(255, 255, 255, 0.5);
}

.admin-search-form {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.admin-search-form input {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
}

.admin-photo-upload {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.admin-photo-upload__preview,
.admin-person-cell__avatar {
    background: rgba(212, 169, 106, 0.16);
    background-position: center;
    background-size: cover;
    border: 1px solid rgba(212, 169, 106, 0.22);
}

.admin-photo-upload__preview {
    width: 96px;
    height: 96px;
    flex: 0 0 96px;
    border-radius: 24px;
    display: grid;
    place-items: center;
    font-size: 2rem;
}

.admin-photo-upload__preview--wide {
    width: 140px;
    height: 104px;
    flex-basis: 140px;
}

.admin-site-tabs {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin: 1rem 0;
}

.admin-site-tabs__link {
    display: inline-flex;
    width: auto;
    padding: 0.8rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(212, 169, 106, 0.22);
    background: rgba(212, 169, 106, 0.12);
    color: #d4a96a;
    font-weight: 800;
    text-decoration: none;
}

.admin-site-tabs__link.is-active {
    background: #d4a96a;
    color: #11161f;
}

.admin-site-empty {
    display: grid;
    min-height: 180px;
    place-items: center;
    text-align: center;
    margin-bottom: 1rem;
}

.admin-site-empty.is-hidden,
.admin-site-section {
    display: none;
}

.admin-site-section.is-active {
    display: grid;
}

.admin-gallery-cell {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    min-width: 260px;
}

.admin-gallery-cell__thumb {
    width: 72px;
    height: 58px;
    flex: 0 0 72px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    border: 1px solid rgba(212, 169, 106, 0.22);
    background: rgba(212, 169, 106, 0.16);
    background-position: center;
    background-size: cover;
}

.admin-person-cell {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.admin-person-cell__avatar {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    border-radius: 16px;
    display: grid;
    place-items: center;
}

.admin-schedule-manager {
    display: grid;
    gap: 1rem;
}

.admin-schedule-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.72);
}

.admin-schedule-legend span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.admin-schedule-legend strong {
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.65);
}

.admin-schedule-legend .is-day-blocked {
    background: rgba(248, 113, 113, 0.75);
}

.admin-schedule-legend .is-slot-blocked {
    background: rgba(245, 158, 11, 0.78);
}

.admin-schedule-calendar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.admin-schedule-day {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    transition: border-color 180ms ease, transform 180ms ease;
}

.admin-schedule-day:hover {
    transform: translateY(-2px);
    border-color: rgba(212, 169, 106, 0.26);
}

.admin-schedule-day.is-blocked {
    border-color: rgba(248, 113, 113, 0.38);
    background: rgba(127, 29, 29, 0.13);
}

.admin-schedule-day__header,
.admin-schedule-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.admin-schedule-day__header strong {
    color: #ffffff;
    font-size: 1.35rem;
}

.admin-schedule-day__header span,
.admin-schedule-toggle span {
    color: rgba(255, 255, 255, 0.68);
}

.admin-schedule-toggle {
    justify-content: flex-start;
}

.admin-schedule-reason {
    margin-top: 0.85rem;
}

.admin-schedule-slots {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.45rem;
    margin-top: 0.85rem;
}

.admin-schedule-slot {
    cursor: pointer;
}

.admin-schedule-slot input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.admin-schedule-slot span {
    display: grid;
    place-items: center;
    min-height: 36px;
    border-radius: 10px;
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.2);
    color: rgba(255, 255, 255, 0.82);
    font-weight: 700;
}

.admin-schedule-slot input:checked + span {
    background: rgba(245, 158, 11, 0.18);
    border-color: rgba(245, 158, 11, 0.42);
    color: #fde68a;
    text-decoration: line-through;
}

.admin-schedule-slot input:disabled + span {
    opacity: 0.45;
}

.admin-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.35rem 0.7rem;
    font-size: 0.78rem;
    font-weight: 800;
    white-space: nowrap;
}

.admin-status--scheduled {
    background: rgba(59, 130, 246, 0.16);
    color: #bfdbfe;
}

.admin-status--completed {
    background: rgba(34, 197, 94, 0.16);
    color: #bbf7d0;
}

.admin-status--cancelled {
    background: rgba(248, 113, 113, 0.16);
    color: #fecaca;
}

.admin-form-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.admin-form {
    display: grid;
    gap: 1rem;
}

.admin-form__field {
    display: grid;
    gap: 0.5rem;
}

.admin-form__field span {
    color: rgba(238, 241, 245, 0.75);
    font-size: 0.9rem;
}

.admin-form__field input,
.admin-form__field select,
.admin-form__field textarea {
    width: 100%;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
}

.admin-form__field input:focus,
.admin-form__field select:focus,
.admin-form__field textarea:focus {
    outline: none;
    border-color: rgba(212, 169, 106, 0.9);
}

.admin-form__field textarea {
    resize: vertical;
    min-height: 120px;
}

.admin-form__field--checkbox {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.admin-form__field--checkbox input {
    width: auto;
}

.admin-checklist {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.75rem;
}

.admin-checklist li {
    padding: 1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 1100px) {
    .admin-shell {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        position: relative;
        width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        padding: 1.25rem;
    }

    .admin-sidebar__brand {
        margin-bottom: 1rem;
    }

    .admin-nav {
        display: flex;
        gap: 0.5rem;
        overflow-x: auto;
        padding-bottom: 0.25rem;
        -webkit-overflow-scrolling: touch;
    }

    .admin-nav__link {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .admin-main {
        padding: 1.5rem;
    }

    .admin-grid,
    .admin-tables,
    .admin-stats-grid,
    .admin-dashboard-charts,
    .admin-forms {
        grid-template-columns: 1fr;
    }

    .admin-dashboard-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .admin-sidebar {
        position: sticky;
        top: 0;
        z-index: 180;
        padding: 1rem;
    }

    .admin-sidebar__brand {
        margin-bottom: 0;
    }

    .admin-menu-toggle {
        display: flex;
        flex: 0 0 auto;
    }

    .admin-nav {
        display: grid;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        padding-bottom: 0;
        transition: max-height 0.28s ease, opacity 0.22s ease, margin-top 0.22s ease;
    }

    .admin-nav.is-open {
        max-height: min(70vh, 520px);
        opacity: 1;
        overflow-y: auto;
        margin-top: 1rem;
        padding-bottom: 0.25rem;
    }

    .admin-nav__link {
        width: 100%;
        white-space: normal;
    }

    .admin-topbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.1rem;
    }

    .admin-main {
        padding: 1rem;
    }

    .admin-card--highlight,
    .admin-welcome-card,
    .admin-table-card__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .admin-card--highlight {
        grid-column: auto;
    }

    .admin-card,
    .admin-table-card {
        padding: 1rem;
        border-radius: 18px;
    }

    .admin-dashboard-stats {
        grid-template-columns: 1fr;
    }

    .admin-schedule-calendar {
        grid-template-columns: 1fr;
    }

    .admin-schedule-slots {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .admin-search-form,
    .admin-photo-upload {
        flex-direction: column;
        align-items: stretch;
    }

    .admin-table {
        min-width: 560px;
    }

    .admin-site-tabs {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-site-tabs__link {
        justify-content: center;
        text-align: center;
    }

    .admin-gallery-cell,
    .admin-person-cell {
        min-width: 0;
        align-items: flex-start;
    }

    .admin-topbar__profile {
        width: 100%;
        grid-template-columns: 52px auto;
        min-width: 0;
    }

    .admin-actions {
        align-items: stretch;
    }

    .admin-actions .admin-button,
    .admin-actions form {
        width: 100%;
    }
}

@media (max-width: 420px) {
    .admin-main {
        padding: 0.75rem;
    }

    .admin-topbar__profile {
        grid-template-columns: 44px minmax(0, 1fr);
        padding: 0.75rem;
    }

    .admin-topbar__avatar {
        width: 44px;
        height: 44px;
        border-radius: 15px;
    }

    .admin-table {
        min-width: 500px;
    }

    .admin-site-tabs {
        grid-template-columns: 1fr;
    }

    .admin-schedule-slots {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
