:root { --navy:#082b48; --navy-deep:#061d32; --blue:#1769aa; --cyan:#55bde9; --yellow:#f6c843; --ink:#183043; --muted:#6d7f8d; --line:#dce5ea; --paper:#f5f7f8; --white:#fff; --danger:#bb4141; --radius:16px; }
* { box-sizing:border-box; }
html { background:var(--paper); color:var(--ink); font-family:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
body { margin:0; min-width:320px; }
button, input { font:inherit; }
button { cursor:pointer; }
.public-shell { min-height:100vh; display:flex; flex-direction:column; background:linear-gradient(135deg,#f4f8fa 0%,#fff 62%,#eef7fb 100%); }
.public-header, .admin-header { width:min(1180px,calc(100% - 48px)); margin:0 auto; display:flex; align-items:center; justify-content:space-between; padding:28px 0; }
.brand { display:inline-flex; align-items:center; gap:13px; color:var(--navy); text-decoration:none; }
.brand > img:first-child { width:104px; height:auto; display:block; }
.brand-divider { width:1px; height:24px; background:#b7c6d0; }
.product-logo { width:150px; height:68px; display:block; object-fit:contain; object-position:center; mix-blend-mode:multiply; }
.admin-link, .back-link { color:var(--blue); font-size:14px; font-weight:700; text-decoration:none; }
.admin-link:hover, .back-link:hover { color:var(--navy); }
.booking-layout { width:min(1180px,calc(100% - 48px)); margin:auto; padding:42px 0 70px; display:grid; grid-template-columns:minmax(440px,680px); justify-content:center; align-items:center; flex:1; }
.booking-intro { padding-bottom:24px; }
.eyebrow, .step-kicker { margin:0 0 16px; color:var(--blue); text-transform:uppercase; letter-spacing:.16em; font-size:11px; font-weight:800; }
.booking-intro h1 { max-width:510px; margin:0; color:var(--navy); font-size:clamp(38px,4vw,63px); line-height:1.02; letter-spacing:-.055em; }
.intro-subtitle { max-width:440px; margin:26px 0 0; color:#5d707e; font-size:17px; line-height:1.6; }.intro-copy { max-width:400px; margin:10px 0 0; color:#7b8b95; font-size:15px; line-height:1.6; }
.route-note { display:flex; gap:14px; align-items:flex-start; margin-top:48px; color:#657885; font-size:13px; line-height:1.55; }
.route-note strong { color:var(--navy); }
.route-line { width:28px; height:2px; margin-top:8px; background:var(--yellow); flex:none; }
.booking-card { background:rgba(255,255,255,.92); border:1px solid rgba(162,181,193,.4); border-radius:26px; padding:34px; box-shadow:0 24px 75px rgba(20,54,77,.1); }
.stepper { display:flex; align-items:center; margin-bottom:38px; }
.step { display:flex; align-items:center; gap:8px; color:#96a5ae; font-size:12px; font-weight:750; white-space:nowrap; }
.step b { display:grid; place-items:center; width:28px; height:28px; border:1px solid #cdd9de; border-radius:50%; font-size:12px; }
.step.active { color:var(--navy); }.step.active b { color:#fff; border-color:var(--blue); background:var(--blue); }.step.done { color:var(--blue); }.step.done b { border-color:var(--blue); background:#e8f4fb; color:var(--blue); }
.step-line { height:1px; flex:1; margin:0 10px; background:#dce5ea; }
.form-step[hidden], .success-state[hidden] { display:none; }
.step-heading h2, .success-state h2 { margin:0; color:var(--navy); font-size:clamp(25px,3vw,34px); letter-spacing:-.04em; line-height:1.1; }.step-heading p, .success-state>p { margin:9px 0 26px; color:var(--muted); font-size:15px; line-height:1.55; }
.group-grid { display:grid; gap:11px; margin:26px 0 28px; }
.group-choice { display:flex; align-items:center; gap:14px; width:100%; padding:17px 18px; color:var(--ink); border:1px solid var(--line); background:#fff; border-radius:14px; text-align:left; transition:transform .18s,border-color .18s,box-shadow .18s; }
.group-choice:hover { transform:translateY(-2px); border-color:#a9bdc9; box-shadow:0 8px 20px rgba(20,54,77,.07); }.group-choice[aria-pressed="true"] { border-color:var(--blue); box-shadow:0 0 0 3px rgba(23,105,170,.11); }.color-swatch { width:15px; height:15px; border-radius:50%; background:var(--group-color); box-shadow:0 0 0 5px color-mix(in srgb,var(--group-color),transparent 85%); flex:none; }.choice-copy { display:flex; flex-direction:column; gap:4px; }.choice-copy strong { font-size:16px; }.choice-copy small { color:var(--muted); font-size:13px; }.choice-check { margin-left:auto; color:var(--blue); opacity:0; font-size:18px; }.group-choice[aria-pressed="true"] .choice-check { opacity:1; }
.primary-button, .secondary-button { min-height:50px; border-radius:11px; padding:0 20px; font-size:15px; font-weight:800; border:1px solid transparent; transition:transform .18s,background .18s,opacity .18s; }.primary-button { width:100%; color:#fff; background:var(--navy); }.primary-button:hover:not(:disabled) { transform:translateY(-1px); background:#0d3f61; }.primary-button:disabled { cursor:not-allowed; opacity:.4; }.secondary-button { color:var(--navy); background:#fff; border-color:#cbd9e0; }.secondary-button:hover { background:#f4f8fa; }.button-row { display:flex; gap:10px; }.button-row .secondary-button { width:34%; }.button-row .primary-button { flex:1; }.is-loading { opacity:.7; }
.field-label { display:block; margin:20px 0 8px; color:var(--navy); font-size:14px; font-weight:750; }.text-input { width:100%; height:51px; border:1px solid #cbd9e0; border-radius:10px; padding:0 14px; outline:none; color:var(--ink); background:#fff; }.text-input:focus { border-color:var(--blue); box-shadow:0 0 0 3px rgba(23,105,170,.11); }.field-help { margin:8px 0 20px; color:#82919a; font-size:12px; }.inline-error { min-height:20px; margin:7px 0; color:var(--danger); font-size:13px; }.inline-error:not(.has-error) { visibility:hidden; }
.time-section + .time-section { margin-top:24px; }.time-period { margin:0 0 10px; color:#768792; font-size:12px; font-weight:800; text-transform:uppercase; letter-spacing:.14em; }.time-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:9px; }.time-choice { display:flex; justify-content:space-between; align-items:center; padding:13px 14px; border:1px solid var(--line); border-radius:11px; background:#fff; color:var(--navy); text-align:left; }.time-choice:hover:not(:disabled), .time-choice.selected { border-color:var(--blue); background:#eff8fc; }.time-choice strong { font-size:17px; }.time-choice small { color:var(--muted); font-size:11px; }.time-choice:disabled { cursor:not-allowed; opacity:.42; background:#f5f6f6; }
.success-state { text-align:left; }.success-mark { display:grid; place-items:center; width:54px; height:54px; margin-bottom:25px; border-radius:50%; color:#fff; background:#2a9563; font-size:28px; }.confirmation-box { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; margin:25px 0 28px; padding:17px; border:1px solid #d3e1e7; border-radius:13px; background:#f5fafc; }.confirmation-box div { display:flex; flex-direction:column; gap:5px; }.confirmation-box small { color:var(--muted); font-size:11px; text-transform:uppercase; letter-spacing:.08em; }.confirmation-box strong { color:var(--navy); font-size:14px; }
.public-footer { width:min(1180px,calc(100% - 48px)); margin:auto; padding:20px 0 28px; display:flex; justify-content:space-between; gap:20px; color:#8696a0; border-top:1px solid rgba(175,191,200,.45); font-size:12px; }.krase-credit { display:inline-flex; align-items:center; gap:6px; color:#7b8b95; }.krase-credit img { width:42px; height:auto; display:block; }
.admin-auth-shell { min-height:100vh; display:grid; place-items:center; padding:32px 20px; background:var(--paper); }.admin-auth-card { width:min(440px,100%); padding:38px; border:1px solid var(--line); border-radius:22px; background:#fff; box-shadow:0 20px 60px rgba(20,54,77,.08); }.auth-brand { margin-bottom:50px; }.auth-brand img { width:105px; }.auth-heading h1 { margin:0; color:var(--navy); font-size:34px; letter-spacing:-.045em; }.auth-heading p { color:var(--muted); line-height:1.5; margin:10px 0 22px; }.auth-form .primary-button { margin-top:20px; }.auth-error { padding:12px 14px; border-radius:9px; color:#8f3030; background:#fff0f0; font-size:13px; }.back-link { display:block; margin-top:22px; text-align:center; font-size:13px; }
.admin-shell { min-height:100vh; background:#f5f7f8; }.admin-header { max-width:1240px; padding:23px 0; }.admin-user { display:flex; align-items:center; gap:20px; color:#617581; font-size:13px; }.text-button { border:0; background:transparent; color:var(--blue); font-weight:750; }.admin-content { width:min(1240px,calc(100% - 48px)); margin:auto; padding:38px 0 70px; }.admin-title-row { display:flex; align-items:flex-end; justify-content:space-between; gap:25px; }.admin-title-row h1 { margin:0; color:var(--navy); font-size:clamp(32px,4vw,48px); letter-spacing:-.055em; }.admin-subtitle { margin:10px 0 0; color:var(--muted); }.total-card { display:flex; flex-direction:column; min-width:160px; padding:18px 20px; border:1px solid #d6e2e7; border-radius:15px; background:#fff; }.total-card strong { color:var(--navy); font-size:33px; line-height:1; }.total-card span { margin-top:7px; color:var(--muted); font-size:12px; }.admin-note { display:flex; gap:10px; align-items:center; margin:28px 0 34px; padding:14px 17px; border-left:3px solid var(--yellow); color:#687d8a; background:#fff; font-size:13px; }.info-icon { display:grid; place-items:center; width:19px; height:19px; border:1px solid #9baeb9; border-radius:50%; color:#738995; font-size:12px; font-weight:800; }.admin-period + .admin-period { margin-top:42px; }.period-heading { display:flex; align-items:baseline; gap:12px; margin-bottom:16px; }.period-heading h2 { margin:0; color:var(--navy); font-size:24px; }.period-heading span { color:#8898a1; font-size:12px; }.admin-slot-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:13px; }.admin-slot { min-height:175px; overflow:hidden; border:1px solid #dce5e9; border-radius:14px; background:#fff; }.slot-header { display:flex; justify-content:space-between; align-items:flex-start; padding:15px 16px 12px; border-bottom:1px solid #e9eef0; }.slot-header strong { display:block; color:var(--navy); font-size:21px; letter-spacing:-.03em; }.slot-tag { display:inline-block; margin-top:5px; color:#83949e; font-size:11px; }.tag-vermelho { color:#c14a4a; }.tag-verde { color:#258355; }.tag-azul { color:#3874ba; }.slot-capacity { color:#7e909a; font-size:12px; }.booking-list { list-style:none; margin:0; padding:0; }.booking-list li { display:flex; align-items:center; justify-content:space-between; gap:10px; padding:11px 16px; border-bottom:1px solid #edf1f2; }.booking-list li:last-child { border-bottom:0; }.booking-list li div { display:flex; flex-direction:column; gap:2px; min-width:0; }.booking-list strong { overflow:hidden; color:var(--ink); font-size:13px; text-overflow:ellipsis; white-space:nowrap; }.booking-list span { color:#82929b; font-size:12px; }.remove-button { border:0; border-radius:6px; padding:6px 8px; color:#ae4141; background:#fff2f2; font-size:11px; font-weight:750; white-space:nowrap; }.remove-button:hover { background:#ffe1e1; }.empty-slot { display:flex; align-items:center; gap:10px; padding:28px 16px; color:#9aa8ae; }.empty-slot span { font-size:20px; }.empty-slot p { margin:0; font-size:12px; }
@media (max-width:820px) { .booking-layout { grid-template-columns:1fr; gap:30px; padding-top:22px; }.booking-intro { padding-bottom:0; }.booking-intro h1 { max-width:580px; }.route-note { margin-top:26px; }.booking-card { padding:24px; }.admin-slot-grid { grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px) { .public-header,.admin-header,.booking-layout,.public-footer,.admin-content { width:min(100% - 32px,1180px); }.public-header,.admin-header { padding:18px 0; }.brand > img:first-child { width:85px; }.product-logo { width:118px; height:56px; }.admin-link { font-size:12px; }.booking-intro h1 { font-size:39px; }.booking-card { padding:20px 17px; border-radius:19px; }.stepper { margin-bottom:28px; }.step span:not(:first-child) { display:none; }.step-line { margin:0 7px; }.button-row { flex-direction:column-reverse; }.button-row .secondary-button,.button-row .primary-button { width:100%; }.confirmation-box { grid-template-columns:1fr; }.public-footer { flex-direction:column; gap:8px; align-items:flex-start; }.admin-title-row { align-items:flex-start; flex-direction:column; }.total-card { width:100%; }.admin-slot-grid { grid-template-columns:1fr; }.admin-auth-card { padding:28px 22px; } }
