:root {
  color-scheme: light;
  --page: #fffaf8;
  --page-soft: #f9efed;
  --surface: #ffffff;
  --surface-raised: #fffdfc;
  --surface-contrast: #2c1d25;
  --text: #2c1d25;
  --text-soft: #6f6067;
  --text-faint: #95868d;
  --line: rgba(70, 38, 52, 0.12);
  --line-strong: rgba(70, 38, 52, 0.2);
  --primary: #c2185b;
  --primary-strong: #981342;
  --primary-soft: #fadce7;
  --accent: #d1a25f;
  --accent-soft: #f7ead5;
  --plum: #4c2b3b;
  --success: #39745d;
  --shadow-sm: 0 10px 28px rgba(77, 43, 58, 0.08);
  --shadow-md: 0 24px 70px rgba(77, 43, 58, 0.13);
  --shadow-lg: 0 34px 100px rgba(52, 27, 39, 0.18);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --content: min(1220px, calc(100% - 64px));
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --page: #0e0b0d;
  --page-soft: #171115;
  --surface: #1b1518;
  --surface-raised: #21191d;
  --surface-contrast: #fff8f5;
  --text: #fff8f5;
  --text-soft: #cbbdc3;
  --text-faint: #9d8e94;
  --line: rgba(255, 240, 234, 0.11);
  --line-strong: rgba(255, 240, 234, 0.2);
  --primary: #ff5a98;
  --primary-strong: #ff7cac;
  --primary-soft: #451326;
  --accent: #dbb875;
  --accent-soft: #342a1c;
  --plum: #ffd0df;
  --success: #79b89d;
  --shadow-sm: 0 12px 30px rgba(0, 0, 0, 0.24);
  --shadow-md: 0 26px 75px rgba(0, 0, 0, 0.34);
  --shadow-lg: 0 38px 110px rgba(0, 0, 0, 0.46);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 980px; background: var(--page); color: var(--text); transition: background-color .25s ease, color .25s ease; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
img { display: block; max-width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
  min-height: 82px;
  padding: 12px max(32px, calc((100vw - 1220px) / 2));
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--page) 88%, transparent);
  backdrop-filter: blur(20px);
}

.brand { display: inline-flex; align-items: center; gap: 13px; text-decoration: none; white-space: nowrap; }
.brand-symbol { width: 56px; height: 56px; flex: 0 0 56px; }
.brand-symbol img { width: 100%; height: 100%; object-fit: contain; }
.brand-symbol-dark { display: none; }
:root[data-theme="dark"] .brand-symbol-light { display: none; }
:root[data-theme="dark"] .brand-symbol-dark { display: block; }
.brand-name { font-family: Georgia, "Times New Roman", serif; font-size: 1.24rem; font-weight: 700; line-height: 1; letter-spacing: .055em; text-transform: uppercase; }
.brand-name strong { color: var(--primary); font-weight: 700; }
.brand-name small { display: block; margin-top: 5px; color: var(--text-faint); font-family: Inter, ui-sans-serif, system-ui, sans-serif; font-size: .59rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }

.main-nav { display: flex; justify-content: center; align-items: center; gap: 30px; }
.main-nav a { position: relative; color: var(--text-soft); font-size: .9rem; font-weight: 700; text-decoration: none; }
.main-nav a:hover, .main-nav a.is-active { color: var(--text); }
.main-nav a.is-active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -13px; height: 2px; border-radius: 2px; background: var(--primary); }

.header-actions { display: flex; align-items: center; gap: 9px; }
.theme-toggle { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; background: var(--surface); color: var(--text); cursor: pointer; box-shadow: var(--shadow-sm); }
.theme-toggle:hover { border-color: var(--line-strong); transform: translateY(-1px); }

.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 20px; border: 1px solid transparent; border-radius: var(--radius-sm); font-weight: 800; text-decoration: none; cursor: pointer; transition: transform .2s ease, background-color .2s ease, border-color .2s ease, color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 42px; padding: 0 16px; font-size: .86rem; }
.button-primary { background: var(--primary); color: #fff; box-shadow: 0 12px 26px color-mix(in srgb, var(--primary) 24%, transparent); }
.button-primary:hover { background: var(--primary-strong); }
:root[data-theme="dark"] .button-primary { color: #29131b; }
.button-ghost { border-color: var(--line); background: var(--surface); color: var(--text); }

main { overflow: hidden; }
.hero { width: var(--content); min-height: calc(100vh - 82px); margin: 0 auto; display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(470px, .98fr); align-items: center; gap: clamp(56px, 7vw, 104px); padding: 70px 0 88px; }
.hero-copy { position: relative; z-index: 2; }
.eyebrow { display: flex; align-items: center; gap: 9px; margin: 0 0 18px; color: var(--primary); font-size: .76rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.hero h1 { max-width: 700px; margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(4rem, 5.5vw, 6.4rem); font-weight: 500; line-height: .94; letter-spacing: -.055em; }
.hero h1 em { color: var(--primary); font-style: italic; font-weight: 500; }
.hero-lead { max-width: 650px; margin: 27px 0 0; color: var(--text-soft); font-size: 1.1rem; line-height: 1.75; }

.discovery-search { display: grid; grid-template-columns: minmax(175px, 1.15fr) 1px minmax(150px, .85fr) auto; align-items: center; gap: 14px; width: min(760px, 100%); margin-top: 34px; padding: 9px; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); box-shadow: var(--shadow-md); }
.discovery-search label { display: grid; gap: 6px; min-width: 0; padding: 0 10px; }
.discovery-search label span { color: var(--text); font-size: .73rem; font-weight: 900; }
.discovery-search input { width: 100%; min-width: 0; padding: 0; border: 0; outline: 0; background: transparent; color: var(--text); font-size: .9rem; }
.discovery-search input::placeholder { color: var(--text-faint); }
.search-divider { width: 1px; height: 36px; background: var(--line); }
.discovery-search .button { min-height: 58px; white-space: nowrap; }

.hero-proof { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 24px; color: var(--text-soft); font-size: .78rem; font-weight: 700; }
.hero-proof span { display: flex; align-items: center; gap: 7px; }
.hero-proof i { display: grid; place-items: center; width: 18px; height: 18px; border-radius: 50%; background: var(--primary-soft); color: var(--primary); font-size: .67rem; font-style: normal; }

.hero-stage { position: relative; min-height: 660px; }
.hero-stage::before { content: ""; position: absolute; width: 590px; height: 590px; top: 24px; left: -42px; border-radius: 50%; background: radial-gradient(circle, color-mix(in srgb, var(--primary) 18%, transparent), transparent 68%); filter: blur(12px); }
.hero-photo-placeholder { position: absolute; inset: 0 18px 28px 38px; overflow: hidden; border-radius: 48% 48% 34px 34px / 28% 28% 34px 34px; background: linear-gradient(180deg, rgba(63, 30, 43, .02), rgba(63, 30, 43, .18)), url("../assets/images/beauty-hero-desktop.webp") 68% center / cover no-repeat; box-shadow: var(--shadow-lg); }
.hero-photo-placeholder::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255,250,248,.18), transparent 46%, rgba(65,28,43,.08)); }
:root[data-theme="dark"] .hero-photo-placeholder::after { background: linear-gradient(180deg, rgba(12,8,10,.18), rgba(12,8,10,.48)); }
.photo-glow { position: absolute; border-radius: 50%; filter: blur(8px); }
.photo-glow-one { width: 320px; height: 320px; top: -80px; right: -50px; background: rgba(255, 245, 220, .68); }
.photo-glow-two { width: 230px; height: 230px; bottom: 80px; left: -50px; background: rgba(116, 42, 67, .34); }
.mirror-shape { display: none; position: absolute; width: 310px; height: 430px; top: 70px; left: 50%; transform: translateX(-50%); border: 16px solid rgba(82, 40, 54, .32); border-radius: 48% 48% 24px 24px; background: linear-gradient(135deg, rgba(255,255,255,.62), rgba(255,255,255,.08)); box-shadow: inset 0 0 60px rgba(255,255,255,.22); }
.mirror-highlight { position: absolute; width: 8px; height: 220px; top: 62px; left: 44px; border-radius: 10px; background: rgba(255,255,255,.4); transform: rotate(15deg); }
.salon-console { display: none; position: absolute; width: 80%; height: 110px; left: 10%; bottom: 28px; border-radius: 22px 22px 10px 10px; background: linear-gradient(180deg, #6f3f4f, #3f2430); box-shadow: 0 -14px 30px rgba(76, 36, 50, .18); }

.floating-card { position: absolute; z-index: 3; border: 1px solid color-mix(in srgb, var(--surface) 70%, var(--line)); background: color-mix(in srgb, var(--surface) 92%, transparent); backdrop-filter: blur(18px); box-shadow: var(--shadow-md); }
.floating-card-main { width: 380px; right: -38px; bottom: 22px; padding: 20px; border-radius: 24px; }
.floating-card-top { display: grid; grid-template-columns: 42px 1fr auto; align-items: center; gap: 10px; }
.mini-brand { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 13px; background: var(--primary); color: #fff; font-family: Georgia, serif; font-size: 1.3rem; font-weight: 700; }
.floating-card-top strong, .floating-card-top small { display: block; }
.floating-card-top strong { font-size: .91rem; }
.floating-card-top small { margin-top: 3px; color: var(--text-faint); font-size: .67rem; }
.verified { padding: 7px 9px; border-radius: 999px; background: color-mix(in srgb, var(--success) 13%, transparent); color: var(--success); font-size: .65rem; font-weight: 900; }
.floating-card-main > p { margin: 18px 0 14px; color: var(--text-soft); font-family: Georgia, serif; font-size: 1.16rem; }
.appointment-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 14px; border-top: 1px solid var(--line); }
.appointment-row small, .appointment-row strong { display: block; }
.appointment-row small { color: var(--text-faint); font-size: .66rem; }
.appointment-row strong { margin-top: 3px; font-size: .84rem; }
.appointment-row button { padding: 10px 13px; border: 0; border-radius: 11px; background: var(--primary); color: #fff; font-size: .74rem; font-weight: 900; }

.floating-chip { position: absolute; z-index: 4; display: grid; gap: 2px; padding: 14px 17px; border: 1px solid color-mix(in srgb, var(--surface) 72%, var(--line)); border-radius: 18px; background: color-mix(in srgb, var(--surface) 91%, transparent); backdrop-filter: blur(18px); box-shadow: var(--shadow-sm); }
.floating-chip-rating { top: 100px; right: -16px; }
.floating-chip-rating strong { font-family: Georgia, serif; font-size: 1.35rem; }
.floating-chip-rating span { color: var(--accent); font-size: .67rem; font-weight: 800; }
.floating-chip-category { left: -30px; bottom: 185px; grid-template-columns: auto 1fr; align-items: center; }
.floating-chip-category > span { grid-row: 1 / 3; display: grid; place-items: center; width: 34px; height: 34px; margin-right: 5px; border-radius: 12px; background: var(--primary-soft); color: var(--primary); }
.floating-chip-category strong { font-size: .82rem; }
.floating-chip-category small { color: var(--text-faint); font-size: .65rem; }

.category-strip { width: var(--content); margin: 0 auto; padding: 94px 0 110px; border-top: 1px solid var(--line); }
.section-intro { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 34px; }
.section-intro h2, .how-copy h2 { max-width: 720px; margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.5rem, 4vw, 4.2rem); font-weight: 500; line-height: 1.04; letter-spacing: -.04em; }
.text-link { color: var(--primary); font-size: .88rem; font-weight: 900; text-decoration: none; }
.category-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.category-card { position: relative; display: grid; align-content: space-between; min-height: 310px; overflow: hidden; padding: 22px; border: 1px solid var(--line); border-radius: var(--radius-md); background-position: center; background-size: cover; color: #fff; text-decoration: none; box-shadow: var(--shadow-sm); transition: transform .22s ease, box-shadow .22s ease; }
.category-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(33,14,22,.1), rgba(33,14,22,.18) 35%, rgba(33,14,22,.78)); }
.category-card::after { content: ""; position: absolute; width: 150px; height: 150px; right: -72px; top: -70px; border-radius: 50%; background: rgba(255,255,255,.2); backdrop-filter: blur(10px); }
.category-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.category-number { position: relative; z-index: 1; color: #fff; font-size: .72rem; font-weight: 900; }
.category-card > span:nth-child(2) { position: relative; z-index: 1; }
.category-card strong, .category-card small { display: block; }
.category-card strong { font-family: Georgia, serif; font-size: 1.55rem; font-weight: 500; }
.category-card small { max-width: 180px; margin-top: 8px; color: rgba(255,255,255,.78); font-size: .78rem; line-height: 1.5; }
.category-card > i { position: absolute; z-index: 2; right: 20px; bottom: 20px; display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.34); border-radius: 50%; color: #fff; font-style: normal; backdrop-filter: blur(8px); }
.category-hair { background-image: url("../assets/images/category-hair.webp"); }
.category-nails { background-image: url("../assets/images/category-nails.webp"); }
.category-brows { background-image: url("../assets/images/category-brows.webp"); }
.category-makeup { background-image: url("../assets/images/category-makeup.webp"); }

.how-it-works { width: var(--content); margin: 0 auto 100px; display: grid; grid-template-columns: .78fr 1.22fr; gap: 90px; padding: 74px; border-radius: var(--radius-lg); background: var(--surface-contrast); color: var(--page); }
:root[data-theme="dark"] .how-it-works { color: #21151b; background: #f7eae7; }
.how-copy p:last-child { max-width: 440px; color: color-mix(in srgb, currentColor 70%, transparent); line-height: 1.7; }
.steps { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.steps li { display: grid; grid-template-columns: 56px 1fr; gap: 22px; padding: 22px 0; border-bottom: 1px solid color-mix(in srgb, currentColor 16%, transparent); }
.steps li:last-child { border-bottom: 0; }
.steps > li > span { color: var(--primary); font-weight: 900; }
.steps strong { font-family: Georgia, serif; font-size: 1.35rem; font-weight: 500; }
.steps p { margin: 7px 0 0; color: color-mix(in srgb, currentColor 68%, transparent); line-height: 1.55; }

.site-footer { width: var(--content); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 32px 0 44px; border-top: 1px solid var(--line); color: var(--text-faint); font-size: .78rem; }
.footer-brand .brand-symbol { width: 40px; height: 40px; }
.footer-brand .brand-name { color: var(--text); font-size: 1.08rem; }
.site-footer > p { margin: 0; }
.info-footer-links { display: flex; gap: 18px; }
.info-footer-links a { color: var(--text-soft); font-size: .76rem; font-weight: 750; text-decoration: none; }
.info-footer-links a:hover { color: var(--primary); }

/* Autenticação desktop */
.auth-page { min-width: 1080px; min-height: 100vh; overflow: hidden; }
.auth-shell { display: grid; grid-template-columns: minmax(520px, 44%) 1fr; min-height: 100vh; background: var(--page); }
.auth-form-panel { position: relative; z-index: 2; display: grid; grid-template-rows: auto 1fr; padding: 28px clamp(48px, 5vw, 84px) 42px; background: var(--page); }
.auth-header { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.auth-form-wrap { width: min(100%, 460px); margin: auto; padding: 50px 0 28px; }
.auth-form-wrap-register { width: min(100%, 560px); padding-top: 24px; }
.auth-form-wrap-compact { width: min(100%, 470px); }
.auth-form-wrap h1 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.8rem, 4vw, 4.65rem); font-weight: 500; line-height: .98; letter-spacing: -.045em; }
.auth-form-wrap-register h1 { font-size: clamp(2.55rem, 3.3vw, 4rem); }
.auth-lead { margin: 20px 0 0; color: var(--text-soft); line-height: 1.65; }
.auth-form { display: grid; gap: 18px; margin-top: 30px; }
.auth-form-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.field { display: grid; gap: 8px; min-width: 0; }
.field > span:first-child { color: var(--text); font-size: .78rem; font-weight: 900; }
.field input { width: 100%; min-height: 52px; padding: 0 15px; border: 1px solid var(--line); border-radius: 13px; outline: 0; background: var(--surface); color: var(--text); box-shadow: 0 1px 0 rgba(255,255,255,.35) inset; transition: border-color .2s ease, box-shadow .2s ease; }
.field input::placeholder { color: var(--text-faint); }
.field input:focus { border-color: var(--primary); box-shadow: 0 0 0 4px color-mix(in srgb, var(--primary) 13%, transparent); }
.field-full { grid-column: 1 / -1; }
.password-field { position: relative; display: block; }
.password-field input { padding-right: 82px; }
.password-field button { position: absolute; top: 50%; right: 11px; transform: translateY(-50%); padding: 7px 8px; border: 0; background: transparent; color: var(--primary); font-size: .72rem; font-weight: 900; cursor: pointer; }
.form-row { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.form-row > a, .auth-switch a, .auth-legal a, .check-label a, .back-link { color: var(--primary); font-weight: 800; text-decoration: none; }
.form-row > a { font-size: .78rem; }
.form-note { color: var(--text-faint); font-size: .76rem; font-weight: 750; }
.check-label { display: flex; align-items: flex-start; gap: 9px; color: var(--text-soft); font-size: .78rem; line-height: 1.5; cursor: pointer; }
.check-label input { width: 16px; height: 16px; margin: 2px 0 0; accent-color: var(--primary); }
.button-block { width: 100%; min-height: 54px; }
.form-feedback { min-height: 22px; margin: -4px 0 0; color: var(--success); font-size: .78rem; line-height: 1.45; text-align: center; }
.auth-switch { margin: 26px 0 0; color: var(--text-soft); font-size: .86rem; text-align: center; }
.auth-legal { margin: 22px auto 0; max-width: 400px; color: var(--text-faint); font-size: .7rem; line-height: 1.55; text-align: center; }
.back-link { display: inline-flex; margin-bottom: 38px; font-size: .78rem; }

.account-type { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 24px; }
.account-type-card { display: grid; gap: 5px; min-height: 86px; padding: 16px; border: 1px solid var(--line); border-radius: 16px; background: var(--surface); color: var(--text); text-align: left; cursor: pointer; transition: border-color .2s ease, background-color .2s ease, transform .2s ease; }
.account-type-card:hover { transform: translateY(-2px); }
.account-type-card.is-selected { border-color: var(--primary); background: var(--primary-soft); box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 9%, transparent); }
.account-type-card span { font-family: Georgia, serif; font-size: 1.15rem; font-weight: 700; }
.account-type-card small { color: var(--text-soft); font-size: .72rem; line-height: 1.4; }

.auth-visual-panel { position: relative; min-height: 100vh; overflow: hidden; background: #38232d; }
.auth-visual-panel > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.auth-visual-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(31,15,22,.08) 0%, rgba(31,15,22,.2) 46%, rgba(22,11,16,.76) 100%), linear-gradient(90deg, rgba(31,15,22,.14), transparent 38%); }
:root[data-theme="dark"] .auth-visual-overlay { background: linear-gradient(180deg, rgba(7,4,5,.26), rgba(7,4,5,.45) 48%, rgba(7,4,5,.88)); }
.auth-visual-copy { position: absolute; z-index: 2; left: clamp(48px, 6vw, 96px); bottom: clamp(130px, 16vh, 190px); max-width: 640px; color: #fffaf8; }
.auth-visual-badge { display: inline-flex; padding: 8px 12px; border: 1px solid rgba(255,255,255,.28); border-radius: 999px; background: rgba(24,12,17,.22); backdrop-filter: blur(12px); font-size: .7rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.auth-visual-copy blockquote { max-width: 640px; margin: 24px 0 18px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(3rem, 5vw, 5.4rem); font-style: italic; line-height: .98; letter-spacing: -.05em; }
.auth-visual-copy p { max-width: 510px; margin: 0; color: rgba(255,250,248,.8); font-size: 1rem; line-height: 1.65; }
.auth-proof-card { position: absolute; z-index: 3; right: 34px; bottom: 30px; display: flex; align-items: center; gap: 13px; min-width: 320px; padding: 16px 18px; border: 1px solid rgba(255,255,255,.22); border-radius: 18px; background: rgba(24,12,17,.42); color: #fffaf8; backdrop-filter: blur(16px); box-shadow: 0 20px 50px rgba(17,7,11,.28); }
.auth-proof-card > span { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 12px; background: rgba(237,158,178,.22); color: #ffd8e2; }
.auth-proof-card strong, .auth-proof-card small { display: block; }
.auth-proof-card strong { font-size: .83rem; }
.auth-proof-card small { margin-top: 4px; color: rgba(255,250,248,.68); font-size: .68rem; }

/* Explorar */
.explore-page { width: var(--content); margin: 0 auto; overflow: visible; }
.explore-hero { display: grid; grid-template-columns: minmax(0, .78fr) minmax(620px, 1.22fr); align-items: end; gap: 60px; padding: 76px 0 48px; }
.explore-hero h1 { max-width: 650px; margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(3.4rem, 5vw, 5.8rem); font-weight: 500; line-height: .95; letter-spacing: -.05em; }
.explore-hero > div > p:last-child { max-width: 540px; margin: 20px 0 0; color: var(--text-soft); line-height: 1.7; }
.explore-search { display: grid; grid-template-columns: 1.1fr .9fr auto; align-items: end; gap: 10px; padding: 12px; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); box-shadow: var(--shadow-md); }
.explore-search label { display: grid; gap: 6px; min-width: 0; padding: 0 8px; }
.explore-search label span { font-size: .7rem; font-weight: 900; }
.explore-search input { width: 100%; min-width: 0; padding: 0 0 8px; border: 0; border-bottom: 1px solid var(--line); outline: 0; background: transparent; color: var(--text); font-size: .82rem; }
.explore-search input::placeholder { color: var(--text-faint); }
.explore-search .button { min-height: 52px; }

.explore-layout { display: grid; grid-template-columns: 255px minmax(0, 1fr); gap: 34px; padding: 34px 0 100px; border-top: 1px solid var(--line); }
.filters-panel { position: sticky; top: 112px; align-self: start; padding: 22px; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); box-shadow: var(--shadow-sm); }
.filters-heading { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.filters-heading strong { font-family: Georgia, serif; font-size: 1.25rem; }
.filters-heading button { border: 0; background: transparent; color: var(--primary); font-size: .72rem; font-weight: 900; cursor: pointer; }
.filters-panel fieldset { display: grid; gap: 10px; margin: 0; padding: 20px 0; border: 0; border-bottom: 1px solid var(--line); }
.filters-panel fieldset:last-child { padding-bottom: 0; border-bottom: 0; }
.filters-panel legend { margin-bottom: 12px; color: var(--text); font-size: .77rem; font-weight: 900; }
.filters-panel label { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 9px; color: var(--text-soft); font-size: .76rem; cursor: pointer; }
.filters-panel input { width: 15px; height: 15px; margin: 0; accent-color: var(--primary); }
.filters-panel small { color: var(--text-faint); font-size: .67rem; }
.price-pills { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.price-pills button { min-height: 34px; border: 1px solid var(--line); border-radius: 10px; background: var(--page-soft); color: var(--text-soft); cursor: pointer; }
.price-pills button:hover { border-color: var(--primary); color: var(--primary); }

.results-panel { min-width: 0; }
.results-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 18px; color: var(--text-soft); font-size: .78rem; }
.results-toolbar p { margin: 0; }
.results-toolbar strong { color: var(--text); }
.results-toolbar label { display: flex; align-items: center; gap: 8px; }
.results-toolbar select { padding: 9px 34px 9px 11px; border: 1px solid var(--line); border-radius: 10px; background: var(--surface); color: var(--text); font: inherit; }
.salon-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.salon-card { overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: var(--surface); box-shadow: var(--shadow-sm); transition: transform .22s ease, box-shadow .22s ease; }
.salon-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.salon-card[hidden] { display: none; }
.salon-photo { position: relative; display: block; height: 230px; overflow: hidden; background-image: linear-gradient(180deg, transparent 50%, rgba(45,22,32,.32)), url("../assets/images/beauty-salon-cover.webp"); background-size: cover; text-decoration: none; }
.salon-photo-one { background-position: 72% 44%; }
.salon-photo-two { background-image: linear-gradient(180deg, transparent 50%, rgba(45,22,32,.32)), url("../assets/images/category-brows.webp"); background-position: center 34%; }
.salon-photo-three { background-image: linear-gradient(180deg, transparent 50%, rgba(45,22,32,.32)), url("../assets/images/category-nails.webp"); background-position: center 55%; }
.salon-photo-four { background-image: linear-gradient(180deg, transparent 50%, rgba(45,22,32,.32)), url("../assets/images/category-hair.webp"); background-position: center 30%; }
.salon-photo-five { background-image: linear-gradient(180deg, transparent 50%, rgba(45,22,32,.32)), url("../assets/images/category-makeup.webp"); background-position: center 36%; }
.salon-photo-six { background-image: linear-gradient(180deg, transparent 50%, rgba(45,22,32,.32)), url("../assets/images/beauty-auth-panel.webp"); background-position: center 64%; }
.salon-status { position: absolute; left: 14px; top: 14px; padding: 7px 10px; border-radius: 999px; background: rgba(248,255,251,.9); color: #2c6e55; font-size: .64rem; font-weight: 900; backdrop-filter: blur(10px); }
.salon-status-soft { background: rgba(255,250,248,.9); color: var(--primary-strong); }
.favorite-button { position: absolute; right: 14px; top: 14px; display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.48); border-radius: 50%; background: rgba(33,17,24,.32); color: #fff; font-size: 1.25rem; cursor: pointer; backdrop-filter: blur(10px); }
.favorite-button.is-active { background: var(--primary); }
.salon-card-body { padding: 20px; }
.salon-title-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 15px; }
.salon-type { margin: 0 0 5px; color: var(--text-faint); font-size: .65rem; font-weight: 800; text-transform: uppercase; }
.salon-title-row h2 { margin: 0; font-family: Georgia, serif; font-size: 1.45rem; font-weight: 600; }
.salon-title-row h2 a { text-decoration: none; }
.rating { white-space: nowrap; font-size: .78rem; font-weight: 900; }
.rating small { color: var(--accent); }
.salon-description { margin: 12px 0 14px; color: var(--text-soft); font-size: .77rem; line-height: 1.55; }
.salon-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.salon-tags span { padding: 6px 8px; border-radius: 999px; background: var(--page-soft); color: var(--text-soft); font-size: .63rem; font-weight: 700; }
.salon-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 17px; padding-top: 15px; border-top: 1px solid var(--line); color: var(--text-faint); font-size: .68rem; }
.salon-footer strong { color: var(--text); }
.salon-footer a { color: var(--primary); font-weight: 900; text-decoration: none; }
.empty-results { padding: 60px; border: 1px dashed var(--line-strong); border-radius: 20px; color: var(--text-soft); text-align: center; }

/* Perfil público do espaço */
.space-page { width: var(--content); margin: 0 auto; overflow: visible; }
.space-cover { position: relative; height: 510px; margin-top: 28px; overflow: hidden; border-radius: 30px; background: var(--page-soft); box-shadow: var(--shadow-md); }
.space-cover > img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.space-cover-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(32,14,23,.34), transparent 38%, rgba(25,11,17,.72)); }
.space-cover-top { position: absolute; z-index: 2; top: 22px; left: 24px; right: 24px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.space-cover-top > a, .space-cover-top button { padding: 10px 13px; border: 1px solid rgba(255,255,255,.3); border-radius: 999px; background: rgba(29,13,20,.3); color: #fff; font-size: .72rem; font-weight: 800; text-decoration: none; backdrop-filter: blur(12px); }
.space-cover-top > div { display: flex; gap: 8px; }
.space-cover-top button { cursor: pointer; }
.space-cover-copy { position: absolute; z-index: 2; left: 38px; bottom: 36px; color: #fff; }
.verified-badge { display: inline-flex; padding: 7px 10px; border-radius: 999px; background: rgba(234,255,246,.9); color: #2b7157; font-size: .66rem; font-weight: 900; }
.space-cover-copy h1 { margin: 16px 0 7px; font-family: Georgia, serif; font-size: clamp(3.4rem, 5vw, 5.6rem); font-weight: 500; line-height: .95; letter-spacing: -.045em; }
.space-cover-copy p { margin: 0; color: rgba(255,255,255,.8); }
.space-summary { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 24px 8px 26px; border-bottom: 1px solid var(--line); }
.space-summary > div { display: flex; align-items: center; gap: 0; }
.space-summary > div > span { display: grid; gap: 3px; min-width: 150px; padding: 0 24px; border-right: 1px solid var(--line); }
.space-summary > div > span:first-child { padding-left: 0; }
.space-summary > div > span:last-child { border-right: 0; }
.space-summary strong { font-size: .88rem; }
.space-summary small { color: var(--text-faint); font-size: .67rem; }
.space-rating strong { font-family: Georgia, serif; font-size: 1.35rem; }
.space-rating { color: var(--accent); }
.space-rating small { color: var(--text-faint); }
.space-tabs { position: sticky; top: 82px; z-index: 20; display: flex; gap: 28px; padding: 17px 0; border-bottom: 1px solid var(--line); background: color-mix(in srgb, var(--page) 92%, transparent); backdrop-filter: blur(18px); }
.space-tabs a { position: relative; color: var(--text-soft); font-size: .78rem; font-weight: 800; text-decoration: none; }
.space-tabs a.is-active, .space-tabs a:hover { color: var(--text); }
.space-tabs a.is-active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -18px; height: 2px; background: var(--primary); }

.space-layout { display: grid; grid-template-columns: minmax(0, 1fr) 370px; align-items: start; gap: 42px; padding: 30px 0 110px; }
.space-content { min-width: 0; }
.space-section { padding: 44px 0; border-bottom: 1px solid var(--line); scroll-margin-top: 145px; }
.space-section:first-child { padding-top: 12px; }
.space-section-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 25px; }
.space-section-heading h2 { margin: 0; font-family: Georgia, serif; font-size: 2.65rem; font-weight: 500; letter-spacing: -.035em; }
.service-search { display: flex; align-items: center; gap: 8px; width: 250px; min-height: 42px; padding: 0 12px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); }
.service-search input { width: 100%; border: 0; outline: 0; background: transparent; color: var(--text); font-size: .75rem; }
.service-search span { color: var(--text-faint); }
.service-group { margin-top: 22px; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: var(--surface); }
.service-group h3 { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin: 0; padding: 17px 20px; background: var(--page-soft); font-family: Georgia, serif; font-size: 1.25rem; }
.service-group h3 span { color: var(--text-faint); font-family: Inter, sans-serif; font-size: .66rem; font-weight: 700; }
.service-row { display: flex; align-items: center; justify-content: space-between; gap: 26px; padding: 20px; border-top: 1px solid var(--line); transition: background-color .2s ease; }
.service-row:first-of-type { border-top: 0; }
.service-row.is-selected { background: color-mix(in srgb, var(--primary-soft) 52%, transparent); }
.service-row strong { display: block; font-size: .88rem; }
.service-row p { margin: 6px 0; color: var(--text-soft); font-size: .75rem; line-height: 1.45; }
.service-row div > span { color: var(--text-faint); font-size: .68rem; font-weight: 700; }
.service-row button { min-width: 92px; min-height: 38px; border: 1px solid var(--primary); border-radius: 11px; background: transparent; color: var(--primary); font-size: .7rem; font-weight: 900; cursor: pointer; }
.service-row.is-selected button { background: var(--primary); color: #fff; }
.empty-services { padding: 36px; border: 1px dashed var(--line-strong); border-radius: 16px; color: var(--text-soft); text-align: center; }

.portfolio-grid { display: grid; grid-template-columns: 1.25fr .75fr; grid-template-rows: repeat(2, 180px); gap: 12px; }
.portfolio-grid figure { position: relative; margin: 0; overflow: hidden; border-radius: 17px; }
.portfolio-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.portfolio-grid figure:hover img { transform: scale(1.035); }
.portfolio-grid figcaption { position: absolute; left: 13px; bottom: 12px; padding: 6px 9px; border-radius: 999px; background: rgba(31,14,22,.45); color: #fff; font-size: .64rem; font-weight: 800; backdrop-filter: blur(10px); }
.portfolio-one { grid-row: 1 / 3; }
.portfolio-one img { object-position: 72% center; }
.portfolio-two img { object-position: 50% 60%; }
.portfolio-three img { object-position: 48% 68%; }
.text-button { border: 0; background: transparent; color: var(--primary); font-size: .75rem; font-weight: 900; cursor: pointer; }

.team-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.team-grid article { display: grid; justify-items: center; gap: 13px; padding: 22px 16px; border: 1px solid var(--line); border-radius: 17px; background: var(--surface); text-align: center; }
.avatar { display: grid; place-items: center; width: 66px; height: 66px; border-radius: 50%; background: linear-gradient(135deg, var(--primary-soft), #e7c4cf); color: var(--primary-strong); font-family: Georgia, serif; font-weight: 700; }
.avatar-two { background: linear-gradient(135deg, var(--accent-soft), #ecd4ad); color: #805d2f; }
.avatar-three { background: linear-gradient(135deg, #eadff1, #c8a8d9); color: #674379; }
.team-grid strong { font-size: .82rem; }
.team-grid p { margin: 5px 0; color: var(--text-soft); font-size: .7rem; }
.team-grid small { color: var(--accent); font-size: .63rem; }
.review-score { display: grid; gap: 2px; text-align: right; }
.review-score strong { font-family: Georgia, serif; font-size: 2.2rem; }
.review-score small { color: var(--text-faint); font-size: .65rem; }
.reviews-section > article { padding: 20px 0; border-top: 1px solid var(--line); }
.reviews-section > article > div { display: flex; align-items: center; gap: 10px; }
.avatar-small { width: 38px; height: 38px; font-size: .72rem; }
.reviews-section article div > p { flex: 1; margin: 0; }
.reviews-section article div strong, .reviews-section article div small { display: block; }
.reviews-section article div strong { font-size: .78rem; }
.reviews-section article div small { margin-top: 3px; color: var(--text-faint); font-size: .62rem; }
.reviews-section article div > span:last-child { color: var(--accent); font-size: .72rem; }
.reviews-section article > p { margin: 13px 0 0 48px; color: var(--text-soft); font-size: .76rem; line-height: 1.6; }

.booking-card { position: sticky; top: 145px; padding: 22px; border: 1px solid var(--line); border-radius: 22px; background: var(--surface); box-shadow: var(--shadow-md); scroll-margin-top: 145px; }
.booking-heading { display: flex; align-items: start; justify-content: space-between; gap: 14px; padding-bottom: 17px; border-bottom: 1px solid var(--line); }
.booking-heading h2 { margin: 0; font-family: Georgia, serif; font-size: 1.5rem; font-weight: 500; }
.booking-heading > span { padding: 6px 8px; border-radius: 999px; background: var(--page-soft); color: var(--text-soft); font-size: .62rem; font-weight: 800; }
.booking-empty { display: grid; justify-items: center; gap: 10px; padding: 34px 12px; color: var(--text-soft); text-align: center; }
.booking-empty > span { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 16px; background: var(--primary-soft); color: var(--primary); }
.booking-empty p { margin: 0; font-size: .74rem; line-height: 1.55; }
.booking-line { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.booking-line strong, .booking-line small { display: block; }
.booking-line strong { font-size: .72rem; }
.booking-line small { margin-top: 3px; color: var(--text-faint); font-size: .62rem; }
.booking-total { display: flex; justify-content: space-between; gap: 20px; padding: 15px 0; }
.booking-total span:last-child { text-align: right; }
.booking-total small, .booking-total strong { display: block; }
.booking-total small { color: var(--text-faint); font-size: .62rem; }
.booking-total strong { margin-top: 4px; font-size: .78rem; }
.date-picker { padding: 15px 0; border-top: 1px solid var(--line); }
.date-picker h3 { margin: 0 0 10px; font-size: .72rem; }
.date-picker > div { display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; margin-bottom: 16px; }
.date-picker > div > button { display: grid; gap: 4px; justify-items: center; min-height: 55px; padding: 8px 4px; border: 1px solid var(--line); border-radius: 11px; background: var(--page); color: var(--text); cursor: pointer; }
.date-picker > div > button.is-selected { border-color: var(--primary); background: var(--primary-soft); color: var(--primary-strong); }
.date-picker button small { color: var(--text-faint); font-size: .58rem; }
.date-picker button strong { font-size: .76rem; }
.date-picker .time-grid button { min-height: 36px; }
.booking-card .button[disabled] { opacity: .45; cursor: not-allowed; transform: none; }
.booking-note { margin: 10px 0 0; color: var(--text-faint); font-size: .61rem; line-height: 1.45; text-align: center; }

/* Página para profissionais */
.professionals-page { width: var(--content); margin: 0 auto; overflow: visible; }
.professional-hero { display: grid; grid-template-columns: minmax(0, .9fr) minmax(520px, 1.1fr); align-items: center; gap: 70px; min-height: calc(100vh - 82px); padding: 76px 0 94px; }
.professional-hero h1 { max-width: 720px; margin: 0; font-family: Georgia, serif; font-size: clamp(4rem, 5.8vw, 6.6rem); font-weight: 500; line-height: .93; letter-spacing: -.055em; }
.professional-hero-copy > p:nth-of-type(2) { max-width: 630px; margin: 27px 0 0; color: var(--text-soft); font-size: 1.06rem; line-height: 1.75; }
.professional-actions { display: flex; gap: 10px; margin-top: 30px; }
.professional-proof { display: flex; gap: 0; margin-top: 38px; }
.professional-proof > span { display: grid; gap: 5px; min-width: 140px; padding: 0 20px; border-right: 1px solid var(--line); }
.professional-proof > span:first-child { padding-left: 0; }
.professional-proof > span:last-child { border-right: 0; }
.professional-proof strong { font-family: Georgia, serif; font-size: 1.1rem; }
.professional-proof small { max-width: 120px; color: var(--text-faint); font-size: .62rem; line-height: 1.4; }
.professional-hero-visual { position: relative; min-height: 650px; }
.professional-hero-visual > img { position: absolute; inset: 0 28px 44px 0; width: calc(100% - 28px); height: calc(100% - 44px); object-fit: cover; border-radius: 34px; box-shadow: var(--shadow-lg); }
.professional-hero-visual::after { content: ""; position: absolute; inset: 0 28px 44px 0; border-radius: 34px; background: linear-gradient(180deg, transparent 48%, rgba(34,16,24,.46)); }
.dashboard-preview { position: absolute; z-index: 3; right: -26px; bottom: 0; width: 430px; padding: 20px; border: 1px solid color-mix(in srgb, var(--surface) 70%, var(--line)); border-radius: 24px; background: color-mix(in srgb, var(--surface) 93%, transparent); backdrop-filter: blur(20px); box-shadow: var(--shadow-lg); }
.dashboard-preview-top { display: grid; grid-template-columns: 40px 1fr auto; align-items: center; gap: 10px; }
.dashboard-preview-top .mini-brand { width: 40px; height: 40px; border-radius: 12px; }
.dashboard-preview-top strong, .dashboard-preview-top small { display: block; }
.dashboard-preview-top strong { font-size: .78rem; }
.dashboard-preview-top small { margin-top: 3px; color: var(--text-faint); font-size: .61rem; }
.online-dot { color: var(--success); font-size: .6rem; font-weight: 900; }
.dashboard-preview-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin: 16px 0; }
.dashboard-preview-stats span { display: grid; gap: 5px; padding: 11px; border-radius: 12px; background: var(--page-soft); }
.dashboard-preview-stats small { color: var(--text-faint); font-size: .55rem; }
.dashboard-preview-stats strong { font-size: .7rem; }
.dashboard-preview-list { display: grid; gap: 6px; }
.dashboard-preview-list p { display: grid; grid-template-columns: 44px 1fr auto; align-items: center; gap: 9px; margin: 0; padding: 9px 10px; border: 1px solid var(--line); border-radius: 11px; }
.dashboard-preview-list p > span { color: var(--primary); font-size: .62rem; font-weight: 900; }
.dashboard-preview-list p strong { font-size: .65rem; }
.dashboard-preview-list p small { color: var(--success); font-size: .55rem; }

.professional-resources { padding: 104px 0; border-top: 1px solid var(--line); }
.professional-resources .section-intro > p { max-width: 430px; margin: 0; color: var(--text-soft); line-height: 1.65; }
.resource-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.resource-grid article { min-height: 245px; padding: 24px; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); box-shadow: var(--shadow-sm); }
.resource-grid article > span { display: inline-flex; padding: 6px 8px; border-radius: 999px; background: var(--primary-soft); color: var(--primary); font-size: .63rem; font-weight: 900; }
.resource-grid h3 { margin: 38px 0 12px; font-family: Georgia, serif; font-size: 1.35rem; font-weight: 600; }
.resource-grid p { margin: 0; color: var(--text-soft); font-size: .77rem; line-height: 1.65; }
.business-types { display: grid; grid-template-columns: .88fr 1.12fr; align-items: center; gap: 70px; padding: 78px; border-radius: 30px; background: var(--surface-contrast); color: var(--page); }
:root[data-theme="dark"] .business-types { background: #f7eae7; color: #21151b; }
.business-types h2 { margin: 0; font-family: Georgia, serif; font-size: 3.8rem; font-weight: 500; line-height: 1; letter-spacing: -.045em; }
.business-type-list { display: flex; flex-wrap: wrap; gap: 10px; }
.business-type-list span { padding: 14px 17px; border: 1px solid color-mix(in srgb, currentColor 18%, transparent); border-radius: 999px; font-size: .77rem; font-weight: 800; }
.professional-cta { display: flex; align-items: center; justify-content: space-between; gap: 70px; margin: 100px 0; padding: 54px; border: 1px solid var(--line); border-radius: 28px; background: linear-gradient(135deg, var(--primary-soft), var(--surface) 58%); }
.professional-cta h2 { max-width: 780px; margin: 0; font-family: Georgia, serif; font-size: 3.2rem; font-weight: 500; line-height: 1.03; letter-spacing: -.04em; }
.professional-cta p:last-child { max-width: 680px; margin: 15px 0 0; color: var(--text-soft); line-height: 1.6; }
.professional-cta > .button { flex: 0 0 auto; }

/* Área da cliente */
.account-page, .dashboard-page { min-width: 1120px; background: var(--page-soft); }
.account-header { position: sticky; top: 0; z-index: 40; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 40px; min-height: 80px; padding: 12px max(30px, calc((100vw - 1320px) / 2)); border-bottom: 1px solid var(--line); background: color-mix(in srgb, var(--surface) 92%, transparent); backdrop-filter: blur(18px); }
.account-header > nav { display: flex; justify-content: center; gap: 30px; }
.account-header > nav a { position: relative; color: var(--text-soft); font-size: .78rem; font-weight: 800; text-decoration: none; }
.account-header > nav a.is-active { color: var(--text); }
.account-header > nav a.is-active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -27px; height: 2px; background: var(--primary); }
.account-header > div { display: flex; align-items: center; gap: 9px; }
.notification-button { position: relative; display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; background: var(--surface); color: var(--text); cursor: pointer; }
.notification-button > span { position: absolute; top: -3px; right: -2px; display: grid; place-items: center; width: 17px; height: 17px; border: 2px solid var(--surface); border-radius: 50%; background: var(--primary); color: #fff; font-size: .52rem; font-weight: 900; }
.account-avatar { display: grid; place-items: center; width: 42px; height: 42px; border: 0; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--primary-strong)); color: #fff; font-size: .7rem; font-weight: 900; cursor: pointer; }
.account-shell { width: min(1320px, calc(100% - 60px)); margin: 0 auto; display: grid; grid-template-columns: 230px minmax(0, 1fr); gap: 34px; padding: 38px 0 84px; }
.account-sidebar { position: sticky; top: 118px; align-self: start; min-height: calc(100vh - 156px); display: flex; flex-direction: column; padding: 22px; border: 1px solid var(--line); border-radius: 22px; background: var(--surface); box-shadow: var(--shadow-sm); }
.account-profile { display: grid; justify-items: center; padding: 4px 0 22px; border-bottom: 1px solid var(--line); text-align: center; }
.account-avatar-large { width: 68px; height: 68px; font-family: Georgia, serif; font-size: 1rem; }
.account-profile strong { margin-top: 11px; font-size: .82rem; }
.account-profile small { margin-top: 4px; color: var(--text-faint); font-size: .62rem; }
.account-sidebar > nav { display: grid; gap: 5px; padding: 20px 0; }
.account-sidebar > nav a { display: flex; align-items: center; gap: 10px; min-height: 42px; padding: 0 11px; border-radius: 11px; color: var(--text-soft); font-size: .72rem; font-weight: 800; text-decoration: none; }
.account-sidebar > nav a span { width: 18px; color: var(--text-faint); text-align: center; }
.account-sidebar > nav a:hover, .account-sidebar > nav a.is-active { background: var(--primary-soft); color: var(--primary-strong); }
.account-help { display: flex; align-items: center; gap: 10px; margin-top: auto; padding: 13px; border-radius: 13px; background: var(--page-soft); text-decoration: none; }
.account-help > span { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 10px; background: var(--primary-soft); color: var(--primary); font-weight: 900; }
.account-help strong, .account-help small { display: block; }
.account-help strong { font-size: .66rem; }
.account-help small { margin-top: 3px; color: var(--text-faint); font-size: .58rem; }
.account-content { min-width: 0; }
.account-welcome { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-bottom: 28px; }
.account-welcome h1 { margin: 0; font-family: Georgia, serif; font-size: 3.35rem; font-weight: 500; letter-spacing: -.04em; }
.account-welcome > div > p:last-child { margin: 7px 0 0; color: var(--text-soft); }
.next-appointment { display: grid; grid-template-columns: 340px minmax(0, 1fr); overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: var(--surface); box-shadow: var(--shadow-md); }
.next-appointment-image { position: relative; min-height: 300px; }
.next-appointment-image img { width: 100%; height: 100%; object-fit: cover; }
.next-appointment-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(35,16,25,.35)); }
.next-appointment-image span { position: absolute; z-index: 2; left: 16px; top: 16px; padding: 7px 10px; border-radius: 999px; background: rgba(239,255,248,.92); color: #2e7258; font-size: .62rem; font-weight: 900; }
.next-appointment-copy { padding: 28px; }
.next-appointment-copy h2 { margin: 0; font-family: Georgia, serif; font-size: 2rem; font-weight: 500; }
.appointment-place { margin: 8px 0 20px; color: var(--text-soft); font-size: .75rem; }
.appointment-details { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; padding: 15px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.appointment-details span { display: grid; gap: 4px; padding: 0 14px; border-right: 1px solid var(--line); }
.appointment-details span:first-child { padding-left: 0; }
.appointment-details span:last-child { border-right: 0; }
.appointment-details small { color: var(--text-faint); font-size: .58rem; }
.appointment-details strong { font-size: .71rem; }
.appointment-actions { display: flex; align-items: center; gap: 8px; margin-top: 20px; }
.text-danger { margin-left: auto; border: 0; background: transparent; color: #b24c5b; font-size: .68rem; font-weight: 900; cursor: pointer; }
.account-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 18px; margin-top: 18px; }
.account-card, .favorites-section { padding: 22px; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); box-shadow: var(--shadow-sm); }
.account-card-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 16px; }
.account-card-heading h2 { margin: 0; font-family: Georgia, serif; font-size: 1.55rem; font-weight: 500; }
.account-card-heading button, .account-card-heading a { border: 0; background: transparent; color: var(--primary); font-size: .66rem; font-weight: 900; text-decoration: none; cursor: pointer; }
.account-schedule > article { display: grid; grid-template-columns: 48px 1fr auto; align-items: center; gap: 12px; padding: 13px 0; border-top: 1px solid var(--line); }
.schedule-date { display: grid; justify-items: center; padding: 7px; border-radius: 11px; background: var(--primary-soft); }
.schedule-date strong { font-size: .82rem; }
.schedule-date small { color: var(--primary); font-size: .52rem; font-weight: 900; }
.account-schedule article > div strong { font-size: .73rem; }
.account-schedule article > div p { margin: 4px 0 0; color: var(--text-faint); font-size: .61rem; }
.account-schedule article > span:last-child { color: var(--text-soft); font-size: .7rem; font-weight: 800; }
.account-reminder { display: grid; grid-template-columns: 46px 1fr; align-items: start; gap: 14px; background: linear-gradient(145deg, var(--primary-soft), var(--surface)); }
.account-reminder > span { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 14px; background: var(--surface); color: var(--primary); }
.account-reminder h2 { margin: 0; font-family: Georgia, serif; font-size: 1.45rem; font-weight: 500; line-height: 1.1; }
.account-reminder div > p:nth-of-type(2) { color: var(--text-soft); font-size: .7rem; line-height: 1.5; }
.account-reminder a { color: var(--primary); font-size: .66rem; font-weight: 900; text-decoration: none; }
.favorites-section { margin-top: 18px; }
.favorite-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.favorite-grid a { position: relative; display: grid; grid-template-columns: 68px 1fr; align-items: center; gap: 11px; padding: 10px; border: 1px solid var(--line); border-radius: 14px; text-decoration: none; }
.favorite-grid img { width: 68px; height: 68px; object-fit: cover; border-radius: 11px; }
.favorite-grid strong, .favorite-grid small { display: block; }
.favorite-grid strong { font-size: .72rem; }
.favorite-grid small { margin-top: 4px; color: var(--text-faint); font-size: .58rem; }
.favorite-grid i { position: absolute; right: 10px; top: 9px; color: var(--accent); font-size: .58rem; font-style: normal; font-weight: 900; }
.account-feedback, .dashboard-feedback { min-height: 22px; margin: 16px 0 0; color: var(--success); font-size: .72rem; text-align: center; }

/* Painel profissional */
.dashboard-page { display: grid; grid-template-columns: 250px minmax(0, 1fr); min-height: 100vh; }
.dashboard-sidebar { position: sticky; top: 0; height: 100vh; display: flex; flex-direction: column; padding: 24px 18px 18px; border-right: 1px solid var(--line); background: var(--surface); }
.dashboard-sidebar > .brand { padding: 0 8px; }
.dashboard-business { display: grid; grid-template-columns: 38px 1fr auto; align-items: center; gap: 9px; margin: 28px 0 18px; padding: 11px; border: 1px solid var(--line); border-radius: 14px; background: var(--page-soft); }
.dashboard-business > span { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 12px; background: var(--primary); color: #fff; font-family: Georgia, serif; font-size: .76rem; font-weight: 700; }
.dashboard-business strong, .dashboard-business small { display: block; }
.dashboard-business strong { font-size: .68rem; }
.dashboard-business small { margin-top: 3px; color: var(--success); font-size: .55rem; }
.dashboard-business button { border: 0; background: transparent; color: var(--text-faint); cursor: pointer; }
.dashboard-sidebar > nav { display: grid; gap: 4px; }
.dashboard-sidebar > nav a, .dashboard-sidebar-bottom a { display: grid; grid-template-columns: 20px 1fr auto; align-items: center; gap: 9px; min-height: 42px; padding: 0 11px; border-radius: 11px; color: var(--text-soft); font-size: .7rem; font-weight: 800; text-decoration: none; }
.dashboard-sidebar > nav a > span, .dashboard-sidebar-bottom a > span { color: var(--text-faint); text-align: center; }
.dashboard-sidebar > nav a:hover, .dashboard-sidebar > nav a.is-active, .dashboard-sidebar-bottom a:hover { background: var(--primary-soft); color: var(--primary-strong); }
.dashboard-sidebar > nav a.is-active > span { color: var(--primary); }
.dashboard-sidebar > nav i { display: grid; place-items: center; min-width: 18px; height: 18px; padding: 0 5px; border-radius: 999px; background: var(--primary); color: #fff; font-size: .5rem; font-style: normal; }
.dashboard-sidebar-bottom { display: grid; gap: 4px; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line); }
.session-signout { min-height: 36px; padding: 0 12px; border: 1px solid var(--line); border-radius: 11px; background: var(--surface); color: var(--text-soft); font-size: .7rem; font-weight: 850; cursor: pointer; }
.session-signout:hover { border-color: var(--primary); color: var(--primary); }
.dashboard-sidebar-bottom .session-signout { width: 100%; text-align: left; }
.dashboard-shell { min-width: 0; }
.dashboard-header { position: sticky; top: 0; z-index: 30; display: flex; align-items: center; justify-content: space-between; min-height: 74px; padding: 12px 30px; border-bottom: 1px solid var(--line); background: color-mix(in srgb, var(--surface) 93%, transparent); backdrop-filter: blur(18px); }
.dashboard-header > div { display: flex; align-items: center; gap: 8px; }
.dashboard-date { border: 0; background: transparent; color: var(--text-soft); font-size: .72rem; font-weight: 800; cursor: pointer; }
.dashboard-date span { margin-left: 6px; color: var(--text-faint); }
.dashboard-main { width: min(1220px, calc(100% - 56px)); margin: 0 auto; padding: 38px 0 70px; overflow: visible; }
.dashboard-welcome { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.dashboard-welcome h1 { margin: 0; font-family: Georgia, serif; font-size: 3.4rem; font-weight: 500; letter-spacing: -.04em; }
.dashboard-welcome > div > p:last-child { margin: 8px 0 0; color: var(--text-soft); }
.dashboard-welcome > div:last-child { display: flex; gap: 8px; }
.dashboard-stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; margin: 28px 0 18px; }
.dashboard-stats article { display: grid; grid-template-columns: 43px 1fr; align-items: start; gap: 12px; padding: 18px; border: 1px solid var(--line); border-radius: 17px; background: var(--surface); box-shadow: var(--shadow-sm); }
.stat-icon { display: grid; place-items: center; width: 43px; height: 43px; border-radius: 13px; font-size: .7rem; font-weight: 900; }
.stat-rose { background: var(--primary-soft); color: var(--primary); }
.stat-gold { background: var(--accent-soft); color: #8c692f; }
.stat-green { background: #dff1e9; color: #39745d; }
.stat-purple { background: #ece3f1; color: #735186; }
.dashboard-stats small, .dashboard-stats strong, .dashboard-stats p { display: block; }
.dashboard-stats small { color: var(--text-faint); font-size: .58rem; }
.dashboard-stats strong { margin-top: 6px; font-family: Georgia, serif; font-size: 1.35rem; font-weight: 600; }
.dashboard-stats p { margin: 5px 0 0; color: var(--text-faint); font-size: .56rem; }
.dashboard-stats p b { color: var(--success); }
.dashboard-columns { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(310px, .75fr); gap: 18px; }
.dashboard-panel { padding: 20px; border: 1px solid var(--line); border-radius: 18px; background: var(--surface); box-shadow: var(--shadow-sm); }
.dashboard-panel-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; padding-bottom: 15px; border-bottom: 1px solid var(--line); }
.dashboard-panel-heading h2 { margin: 0; font-family: Georgia, serif; font-size: 1.55rem; font-weight: 500; }
.dashboard-panel-heading > a { color: var(--primary); font-size: .62rem; font-weight: 900; text-decoration: none; }
.agenda-timeline { padding-top: 5px; }
.agenda-timeline article { display: grid; grid-template-columns: 46px 1px minmax(0, 1fr); gap: 14px; min-height: 80px; }
.agenda-timeline time { padding-top: 18px; color: var(--text-soft); font-size: .64rem; font-weight: 800; }
.timeline-line { position: relative; width: 1px; background: var(--line); }
.timeline-line::before { content: ""; position: absolute; width: 7px; height: 7px; top: 21px; left: -3px; border-radius: 50%; background: var(--line-strong); }
.agenda-timeline article.is-current .timeline-line::before { width: 10px; height: 10px; top: 19px; left: -5px; background: var(--primary); box-shadow: 0 0 0 4px var(--primary-soft); }
.agenda-timeline article > div { display: grid; grid-template-columns: 38px 1fr auto auto; align-items: center; gap: 10px; height: 64px; padding: 10px; border: 1px solid var(--line); border-radius: 13px; }
.client-avatar { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: var(--primary-soft); color: var(--primary-strong); font-size: .6rem; font-weight: 900; }
.client-avatar-two { background: var(--accent-soft); color: #825f2b; }
.client-avatar-three { background: #ece3f1; color: #735186; }
.client-avatar-four { background: #dff1e9; color: #39745d; }
.agenda-timeline p { margin: 0; }
.agenda-timeline p strong, .agenda-timeline p small { display: block; }
.agenda-timeline p strong { font-size: .68rem; }
.agenda-timeline p small { margin-top: 4px; color: var(--text-faint); font-size: .57rem; }
.appointment-badge { padding: 6px 8px; border-radius: 999px; font-size: .53rem; font-weight: 900; }
.badge-present { background: var(--primary-soft); color: var(--primary-strong); }
.badge-confirmed { background: #dff1e9; color: #39745d; }
.badge-pending { background: var(--accent-soft); color: #825f2b; }
.agenda-timeline article > div > button { border: 0; background: transparent; color: var(--text-faint); cursor: pointer; }
.dashboard-side-column { display: grid; align-content: start; gap: 18px; }
.quick-actions > div:last-child { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; padding-top: 15px; }
.quick-actions > div:last-child button { display: grid; justify-items: center; gap: 7px; min-height: 78px; padding: 11px; border: 1px solid var(--line); border-radius: 12px; background: var(--page-soft); color: var(--text-soft); font-size: .6rem; font-weight: 800; cursor: pointer; }
.quick-actions button span { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 9px; background: var(--surface); color: var(--primary); }
.performance-panel .dashboard-panel-heading > strong { font-family: Georgia, serif; font-size: 1.6rem; }
.performance-chart { height: 145px; display: flex; align-items: end; gap: 10px; padding: 20px 4px 0; }
.performance-chart > span { position: relative; flex: 1; height: var(--value); min-height: 18px; border-radius: 7px 7px 3px 3px; background: linear-gradient(180deg, var(--primary), var(--primary-soft)); }
.performance-chart small { position: absolute; left: 50%; bottom: -20px; transform: translateX(-50%); color: var(--text-faint); font-size: .52rem; }
.performance-panel > p { margin: 28px 0 0; color: var(--text-soft); font-size: .64rem; line-height: 1.5; }
.dashboard-bottom-panel { margin-top: 18px; }
.pending-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding-top: 15px; }
.pending-grid article { display: grid; grid-template-columns: 36px 1fr auto; align-items: center; gap: 10px; padding: 12px; border: 1px solid var(--line); border-radius: 12px; }
.pending-grid article > span { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 11px; background: var(--primary-soft); color: var(--primary); font-family: Georgia, serif; font-weight: 700; }
.pending-grid strong, .pending-grid p { display: block; }
.pending-grid strong { font-size: .63rem; }
.pending-grid p { margin: 4px 0 0; color: var(--text-faint); font-size: .54rem; }
.pending-grid button { border: 0; background: transparent; color: var(--primary); font-size: .57rem; font-weight: 900; cursor: pointer; }

@media (max-width: 1120px) {
  :root { --content: min(1100px, calc(100% - 48px)); }
  .site-header { padding-inline: 24px; }
  .main-nav { gap: 18px; }
  .hero { grid-template-columns: minmax(0, 1fr) 430px; gap: 44px; }
  .hero h1 { font-size: 4.5rem; }
  .hero-stage { min-height: 580px; }
  .floating-card-main { right: -10px; }
  .how-it-works { padding: 56px; gap: 56px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
