:root {
  color-scheme: dark;
  --bg: #07111f;
  --panel: #0d1d30;
  --line: #21344b;
  --ink: #f7f9fc;
  --muted: #9eb0c6;
  --accent: #8b5cf6;
  --mint: #35d5b2;
  --danger: #ff7c75;
  font:
    16px/1.5 Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  min-height: 100vh;
  background-color: var(--bg);
  background-image:
    linear-gradient(160deg, rgba(7, 17, 31, 0.91), rgba(6, 16, 28, 0.96)),
    radial-gradient(circle at 85% 0, rgba(98, 70, 190, 0.34), transparent 30rem);
  background-position: center, center;
  background-size: cover, cover;
  background-attachment: fixed;
  color: var(--ink);
  overflow-x: hidden;
}
.ambient-gallery {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.ambient-gallery::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(
      90deg,
      rgba(5, 13, 23, 0.9),
      rgba(5, 13, 23, 0.68) 48%,
      rgba(5, 13, 23, 0.88)
    ),
    linear-gradient(180deg, rgba(4, 11, 20, 0.3), rgba(4, 11, 20, 0.82));
}
.ambient-slide {
  position: absolute;
  inset: -3%;
  opacity: 0;
  background-position: center;
  background-size: cover;
  filter: saturate(0.88) contrast(1.04);
  animation: ambient-fade 24s infinite ease-in-out;
  will-change: transform, opacity;
}
.ambient-one {
  background-image: url("/barber-bg-1.webp");
}
.ambient-two {
  background-image: url("/barber-bg-2.webp");
  animation-delay: 8s;
}
.ambient-three {
  background-image: url("/barber-bg-3.webp");
  animation-delay: 16s;
}
.beauty-mode {
  --panel: #21122d;
  --line: #4b2757;
  --muted: #d0b8d5;
  background-image:
    linear-gradient(155deg, rgba(24, 8, 31, 0.91), rgba(11, 9, 28, 0.96)),
    radial-gradient(
      circle at 82% 0,
      color-mix(in srgb, var(--accent) 44%, transparent),
      transparent 32rem
    );
}
.beauty-mode .ambient-slide {
  filter: saturate(0.72) contrast(1.06) hue-rotate(315deg);
}

.beauty-portfolio {
  margin-bottom: 14px;
  padding: 20px;
  border: 1px solid color-mix(in srgb, var(--accent) 38%, var(--line));
  border-radius: 24px;
  background: linear-gradient(
    145deg,
    color-mix(in srgb, var(--panel) 92%, var(--accent)),
    rgba(9, 19, 33, 0.94)
  );
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}
.beauty-portfolio > header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}
.beauty-portfolio h2 {
  margin: 4px 0 0;
  font-size: clamp(21px, 4vw, 28px);
}
.beauty-portfolio > header > small {
  color: var(--muted);
}
.beauty-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.beauty-result {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  border-radius: 18px;
  background: #101828;
}
.beauty-result img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.beauty-result:hover img {
  transform: scale(1.035);
}
.beauty-result div {
  position: absolute;
  inset: auto 0 0;
  display: grid;
  padding: 32px 12px 12px;
  background: linear-gradient(transparent, rgba(5, 8, 16, 0.92));
}
.beauty-result small {
  color: #dbcfe0;
}
@keyframes ambient-fade {
  0% {
    opacity: 0;
    transform: scale(1.04) translate3d(-0.5%, 0, 0);
  }
  7%,
  29% {
    opacity: 0.48;
  }
  36%,
  100% {
    opacity: 0;
    transform: scale(1.1) translate3d(0.8%, -0.6%, 0);
  }
}
.top,
.experience-tabs,
main,
footer {
  position: relative;
  z-index: 1;
}
button,
input,
textarea {
  font: inherit;
}
.top {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px clamp(18px, 4vw, 40px);
}
.brand {
  display: flex;
  gap: 12px;
  align-items: center;
  color: inherit;
  text-decoration: none;
}
.mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(
    145deg,
    var(--accent),
    color-mix(in srgb, var(--accent) 72%, white)
  );
  font-size: 24px;
  font-weight: 900;
  box-shadow: 0 12px 35px #7655ff45;
  overflow: hidden;
}
.mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
  padding: 3px;
}
.brand span:last-child {
  display: grid;
}
.brand small {
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--muted);
}
.secure {
  font-size: 12px;
  color: #8de9d3;
  background: #123229;
  border: 1px solid #215746;
  padding: 7px 11px;
  border-radius: 99px;
}
.top-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.install-button {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid #8b5cf680;
  border-radius: 99px;
  background: #8b5cf620;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}
main {
  width: min(100% - 30px, 680px);
  margin: 18px auto 80px;
}
.hero {
  text-align: center;
  padding: 34px 8px 26px;
}
.eyebrow {
  color: #a88dff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.2em;
}
.hero h1 {
  font-size: clamp(36px, 9vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.055em;
  margin: 12px 0;
}
.hero h1::first-line {
  color: var(--ink);
}
.hero h1 em {
  font-style: normal;
  color: var(--mint);
}
.hero > p:last-of-type {
  max-width: 540px;
  margin: auto;
  color: var(--muted);
  font-size: 17px;
}
.contact-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  margin-top: 20px;
}
.contact-links a,
.contact-links span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid #ffffff24;
  border-radius: 99px;
  background: #091827ba;
  color: #dce8f5;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  backdrop-filter: blur(12px);
}
.about-card,
.last-booking {
  width: 100%;
  margin: 0 0 14px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #0b1a2bcf;
  color: var(--ink);
  box-shadow: 0 16px 45px #0004;
  backdrop-filter: blur(16px);
}
.about-card {
  display: flex;
  gap: 13px;
  padding: 17px 19px;
}
.about-card > span,
.last-booking > span,
.state-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex: none;
  border-radius: 13px;
  background: color-mix(in srgb, var(--accent) 22%, #0d1d30);
  color: #d9ceff;
  font-weight: 900;
}
.about-card p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}
.last-booking {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 13px;
  padding: 13px 16px;
  text-align: left;
  cursor: pointer;
}
.last-booking div {
  display: grid;
}
.last-booking small {
  color: var(--muted);
}
.last-booking > strong {
  color: var(--mint);
}
.card {
  background: linear-gradient(180deg, #102137, #0c1a2b);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: clamp(20px, 5vw, 36px);
  box-shadow: 0 30px 80px #0008;
}
.hidden {
  display: none !important;
}
.state {
  display: grid;
  place-items: center;
  gap: 12px;
  min-height: 180px;
  text-align: center;
}
.state p {
  color: var(--muted);
}
.spinner {
  width: 34px;
  height: 34px;
  border: 3px solid #ffffff20;
  border-top-color: var(--mint);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.step {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 29px 0 15px;
}
.step:first-child {
  margin-top: 0;
}
.step > span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: none;
  border-radius: 11px;
  background: var(--accent);
  color: #fff;
  font-weight: 900;
}
.step div {
  display: grid;
}
.step small,
label small {
  color: var(--muted);
  font-weight: 400;
}
.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.choice {
  min-height: 72px;
  text-align: left;
  color: var(--ink);
  background: #0b1828;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 13px;
  cursor: pointer;
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 11px;
}
.choice-icon,
.person-avatar {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: color-mix(in srgb, var(--accent) 20%, #0b1828);
  color: #cfc3ff;
  font-weight: 900;
}
.choice-copy {
  min-width: 0;
}
.choice-arrow {
  font-size: 20px;
  color: #657991;
}
.choice b,
.choice small {
  display: block;
}
.choice small {
  color: var(--muted);
  margin-top: 4px;
}
.choice.active {
  border-color: var(--mint);
  background: #0c2a2a;
  box-shadow: inset 0 0 0 1px var(--mint);
}
.choice.active .choice-arrow {
  font-size: 0;
}
.choice.active .choice-arrow::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--mint);
  color: #05211d;
  font-size: 14px;
  font-weight: 900;
}
.people .choice {
  min-height: 58px;
}
.people .choice small {
  margin-top: 1px;
}
.fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}
label {
  display: grid;
  gap: 7px;
  font-size: 13px;
  font-weight: 800;
  color: #dce5f0;
}
.wide {
  grid-column: 1/-1;
}
input,
textarea {
  width: 100%;
  border: 1px solid #2a405a;
  background: #081522;
  color: #fff;
  border-radius: 14px;
  padding: 14px 15px;
  outline: none;
  min-height: 50px;
}
input:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 24%, transparent);
}
textarea {
  min-height: 88px;
  resize: vertical;
}
.slots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
  margin-top: 12px;
}
.slot {
  min-height: 46px;
  border: 1px solid var(--line);
  background: #081522;
  color: #e9eef5;
  border-radius: 13px;
  font-weight: 800;
}
.slot.active {
  background: var(--mint);
  border-color: var(--mint);
  color: #06251d;
}
.empty {
  grid-column: 1/-1;
  color: var(--muted);
  padding: 14px;
  border: 1px dashed var(--line);
  border-radius: 14px;
  text-align: center;
}
.summary {
  margin-top: 24px;
  background: #071522;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.summary span {
  color: var(--muted);
}
.summary strong {
  color: var(--mint);
}
.primary,
.secondary,
.state button {
  border: 0;
  border-radius: 15px;
  min-height: 54px;
  padding: 0 20px;
  font-weight: 900;
  cursor: pointer;
}
.primary {
  width: 100%;
  margin-top: 14px;
  background: linear-gradient(
    135deg,
    var(--accent),
    color-mix(in srgb, var(--accent) 72%, white)
  );
  color: #fff;
  box-shadow: 0 14px 34px #7653ff36;
}
.primary:disabled {
  opacity: 0.55;
}
.privacy {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
}
.payment-choice {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 18px;
  border: 1px solid #265c50;
  background: #0b2a28;
  padding: 14px;
  border-radius: 16px;
}
.payment-choice input {
  width: 20px;
  min-height: 20px;
  accent-color: var(--mint);
}
.payment-choice span {
  display: grid;
}
.booking-notice {
  margin: 15px 0 0;
  padding: 12px 14px;
  border-left: 3px solid var(--accent);
  border-radius: 0 12px 12px 0;
  background: color-mix(in srgb, var(--accent) 12%, #071522);
  color: #c9d5e4;
  font-size: 12px;
}
.success {
  text-align: center;
}
.success-icon {
  display: grid;
  place-items: center;
  margin: auto;
  width: 64px;
  height: 64px;
  border-radius: 22px;
  background: #103d34;
  color: var(--mint);
  font-size: 34px;
  font-weight: 900;
}
.success h2 {
  font-size: 30px;
  margin: 8px 0 20px;
}
.ticket {
  display: grid;
  gap: 9px;
  text-align: left;
  background: #071522;
  border: 1px solid var(--line);
  border-radius: 17px;
  padding: 18px;
}
.ticket p {
  margin: 0;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
}
.ticket b {
  color: #fff;
  text-align: right;
}
.pix {
  margin-top: 18px;
  padding: 18px;
  border-radius: 18px;
  background: #f5f7fb;
  color: #07111f;
}
.pix img {
  display: block;
  width: min(250px, 100%);
  margin: 12px auto;
  border-radius: 12px;
}
.pix label {
  display: block;
  margin: 14px 0 7px;
  font-size: 0.86rem;
  font-weight: 900;
  color: #142238;
}
.pix textarea {
  height: 72px;
  min-height: 72px;
  background: #fff;
  color: #1a2634;
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.78rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}
.secondary {
  width: 100%;
  margin-top: 8px;
  background: #0b2340;
  color: #fff;
}
.pix p {
  font-weight: 800;
  color: #6e4dd7;
}
.danger-link {
  margin: 18px auto 0;
  background: none;
  border: 0;
  color: var(--danger);
  font-weight: 800;
  cursor: pointer;
}
.link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.success-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 10px;
}
.success-actions .secondary {
  min-height: 48px;
  font-size: 12px;
}
.paused .primary {
  width: auto;
  min-width: 230px;
}
.error {
  color: #ffd2cf;
}
.error button {
  background: #fff;
  color: #111;
}
footer {
  text-align: center;
  color: #71859d;
  font-size: 12px;
  padding: 30px;
}
.install-sheet {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: end center;
  padding: 18px;
}
.install-scrim {
  position: absolute;
  inset: 0;
  border: 0;
  background: #02060db8;
  backdrop-filter: blur(8px);
}
.install-card {
  position: relative;
  width: min(100%, 480px);
  padding: 28px;
  border: 1px solid #334861;
  border-radius: 25px;
  background: linear-gradient(180deg, #13263c, #0b192a);
  box-shadow: 0 28px 80px #000b;
}
.install-card h2 {
  margin: 6px 36px 8px 0;
  font-size: 25px;
  line-height: 1.12;
}
.install-card > p:not(.eyebrow) {
  color: var(--muted);
}
.install-close {
  position: absolute;
  right: 17px;
  top: 14px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}
.install-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 17px;
  background: #2d215c;
  color: #b8a7ff;
  font-size: 28px;
  font-weight: 900;
}

/* Experiência 2026: navegação clara, formulário em etapas e lojinha integrada. */
.secure {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.secure i,
.availability i,
.live-status i {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--mint);
  box-shadow: 0 0 0 4px #35d5b220;
}
.experience-tabs {
  position: sticky;
  top: 12px;
  z-index: 30;
  width: fit-content;
  margin: 4px auto 10px;
  display: flex;
  gap: 6px;
  padding: 6px;
  border: 1px solid #334761;
  border-radius: 999px;
  background: #081522dc;
  box-shadow: 0 16px 45px #0007;
  backdrop-filter: blur(18px);
}
.experience-tabs button {
  min-height: 43px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-weight: 900;
  cursor: pointer;
}
.experience-tabs button.active {
  background: linear-gradient(
    135deg,
    var(--accent),
    color-mix(in srgb, var(--accent) 70%, white)
  );
  color: white;
  box-shadow: 0 8px 24px color-mix(in srgb, var(--accent) 34%, transparent);
}
#booking-view {
  width: min(100% - 38px, 1160px);
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(520px, 1.22fr);
  align-items: start;
  gap: clamp(28px, 5vw, 72px);
}
#booking-view > .hero {
  position: sticky;
  top: 100px;
  padding: 76px 0 30px;
  text-align: left;
}
.availability {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  padding: 8px 12px;
  margin-bottom: 22px;
  border: 1px solid #2c554e;
  border-radius: 999px;
  background: #0b2926b8;
  color: #9cebd9;
  font-size: 12px;
  font-weight: 900;
}
#booking-view .hero h1 {
  font-size: clamp(48px, 5vw, 72px);
  max-width: 660px;
}
#booking-view .hero > p:last-of-type {
  margin: 0;
  max-width: 520px;
}
#booking-view .contact-links {
  justify-content: flex-start;
}
.hero-points {
  display: grid;
  gap: 10px;
  margin-top: 30px;
  color: #cbd7e5;
  font-size: 13px;
}
.hero-points span {
  display: flex;
  align-items: center;
  gap: 9px;
}
.hero-points b {
  display: grid;
  place-items: center;
  width: 23px;
  height: 23px;
  border-radius: 8px;
  background: #123a32;
  color: var(--mint);
}
.booking-shell {
  min-width: 0;
}
.booking-card {
  overflow: hidden;
  padding: 0;
  border-color: #2b4058;
  background: linear-gradient(155deg, #12263f 0%, #0a1829 56%, #0b1726 100%);
}
.booking-heading {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 27px 30px 20px;
  border-bottom: 1px solid #ffffff10;
}
.booking-heading h2,
.section-heading h2,
.cart-card h2 {
  margin: 4px 0 0;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.035em;
}
.live-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  border: 1px solid #285249;
  border-radius: 999px;
  color: #8fe6d3;
  font-size: 11px;
  font-weight: 900;
}
.progress {
  display: flex;
  align-items: center;
  padding: 20px 30px 4px;
}
.progress button {
  display: grid;
  place-items: center;
  gap: 5px;
  min-width: 50px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #71849a;
  cursor: pointer;
}
.progress button span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid #344a63;
  border-radius: 10px;
  background: #0b192a;
  font-size: 12px;
  font-weight: 900;
}
.progress button small {
  font-size: 9px;
  font-weight: 800;
}
.progress button.done,
.progress button[aria-current="step"] {
  color: #fff;
}
.progress button.done span,
.progress button[aria-current="step"] span {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}
.progress > i {
  height: 1px;
  flex: 1;
  margin: 0 5px 18px;
  background: #2b4058;
}
.wizard-panel {
  min-height: 390px;
  padding: 25px 30px 26px;
}
.flow-next {
  margin-top: 22px;
}
.flow-actions {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}
.flow-actions .primary,
.flow-actions .secondary {
  margin-top: 0;
}
.confirm-actions {
  grid-template-columns: 0.65fr 1.35fr;
}
.selection-dock {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 16px 30px;
  border-top: 1px solid #ffffff12;
  background: #071421d6;
}
.selection-dock div {
  display: grid;
  min-width: 0;
}
.selection-dock small {
  color: #758ba3;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.selection-dock b {
  overflow: hidden;
  max-width: 360px;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
}
.selection-dock strong {
  flex: none;
  color: var(--mint);
  font-size: 18px;
}

/* Lojinha independente do agendamento */
.shop-main {
  width: min(100% - 38px, 1160px);
}
.shop-hero {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  min-height: 310px;
  padding: clamp(34px, 6vw, 70px);
  overflow: hidden;
  border: 1px solid #2a4059;
  border-radius: 34px;
  background:
    linear-gradient(120deg, #122942e8, #0b1828ed),
    url("/background.webp") center/cover;
  box-shadow: 0 34px 90px #0007;
}
.shop-hero h1 {
  max-width: 650px;
  margin: 12px 0;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}
.shop-hero p:last-child {
  max-width: 610px;
  color: var(--muted);
  font-size: 17px;
}
.shop-hero-art {
  display: grid;
  place-items: center;
  width: 190px;
  height: 190px;
  border: 1px solid #ffffff24;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    color-mix(in srgb, var(--accent) 58%, transparent),
    transparent 67%
  );
  text-align: center;
  text-transform: uppercase;
}
.shop-hero-art span {
  color: var(--mint);
  font-size: 28px;
}
.shop-hero-art b {
  line-height: 1.1;
  letter-spacing: 0.08em;
}
.shop-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: start;
  gap: 20px;
  margin-top: 20px;
}
.catalog-panel,
.cart-card,
.order-success {
  border: 1px solid #2a4059;
  border-radius: 28px;
  background: linear-gradient(155deg, #11243a, #0a1828);
  box-shadow: 0 26px 70px #0006;
}
.catalog-panel {
  padding: 26px;
}
.section-heading,
.cart-card > header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}
.shop-search {
  position: relative;
  min-width: 230px;
}
.shop-search span {
  position: absolute;
  left: 14px;
  top: 12px;
  z-index: 2;
  color: var(--muted);
  font-size: 20px;
}
.shop-search input {
  padding-left: 42px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
  margin-top: 24px;
}
.product-card {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 13px;
  min-height: 142px;
  padding: 16px;
  border: 1px solid #294159;
  border-radius: 19px;
  background: #091827;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease;
}
.product-card:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--accent) 65%, #294159);
}
.product-art {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 17px;
  background: color-mix(in srgb, var(--accent) 20%, #0b1828);
  color: #d8ccff;
  font-size: 22px;
}

.product-photo {
  display: block;
  object-fit: cover;
}
.product-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
}
.product-copy small {
  overflow: hidden;
  color: var(--muted);
  text-overflow: ellipsis;
  white-space: nowrap;
}
.product-buy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
}
.product-buy strong {
  color: var(--mint);
}
.product-buy button {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 12px;
  background: var(--accent);
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  cursor: pointer;
}
.cart-card {
  position: sticky;
  top: 86px;
  padding: 24px;
}
.cart-count {
  display: grid;
  place-items: center;
  min-width: 33px;
  height: 33px;
  padding: 0 9px;
  border-radius: 11px;
  background: var(--accent);
  font-size: 13px;
  font-weight: 900;
}
.cart-items {
  display: grid;
  gap: 9px;
  margin-top: 18px;
}
.cart-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 9px;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid #ffffff10;
}
.cart-line > div:first-child {
  display: grid;
}
.cart-line small {
  color: var(--muted);
}
.qty-control {
  display: flex;
  align-items: center;
  gap: 7px;
}
.qty-control button {
  width: 29px;
  height: 29px;
  border: 1px solid #344b65;
  border-radius: 9px;
  background: #0b1c2e;
  color: #fff;
  cursor: pointer;
}
.cart-total {
  display: flex;
  justify-content: space-between;
  padding: 17px 0;
  font-size: 17px;
}
.cart-total strong {
  color: var(--mint);
  font-size: 22px;
}
.cart-fields {
  display: grid;
  gap: 11px;
}
.shop-checkout {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.order-success {
  max-width: 760px;
  margin: 26px auto 80px;
  padding: clamp(24px, 5vw, 42px);
}
.order-confirmation {
  text-align: center;
}
.order-confirmation h2 {
  margin-bottom: 7px;
  font-size: 30px;
}
.order-confirmation > p:last-child {
  color: var(--muted);
}
.order-payment {
  display: grid;
  grid-template-columns: 230px 1fr;
  align-items: center;
  gap: 24px;
  margin: 26px 0;
  padding: 20px;
  border-radius: 20px;
  background: #f4f7fb;
  color: #0b1726;
}
.order-payment img {
  width: 100%;
  border-radius: 12px;
}
.order-payment label {
  color: #15243a;
  margin-bottom: 7px;
}
.order-payment textarea {
  min-height: 108px;
  background: #fff;
  color: #142238;
  font:
    11px/1.45 ui-monospace,
    monospace;
}
.proof-card {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 10px;
  padding: 13px 15px;
  border: 1px solid #2a4059;
  border-radius: 16px;
  background: #0a192a;
}
.proof-card > span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--accent);
  font-weight: 900;
}
.proof-card p {
  display: grid;
  margin: 0;
}
.proof-card small {
  color: var(--muted);
}
.whatsapp-proof {
  background: linear-gradient(135deg, #16a877, #34d399);
  color: #041811;
}
@media (prefers-reduced-motion: reduce) {
  .ambient-slide {
    animation: none;
  }
  .ambient-one {
    opacity: 0.42;
    transform: none;
  }
  * {
    scroll-behavior: auto !important;
  }
}
@media (max-width: 900px) {
  #booking-view {
    grid-template-columns: 1fr;
    width: min(100% - 28px, 680px);
    gap: 12px;
  }
  #booking-view > .hero {
    position: static;
    padding: 34px 6px 18px;
    text-align: center;
  }
  #booking-view .hero > p:last-of-type {
    margin: auto;
  }
  #booking-view .contact-links {
    justify-content: center;
  }
  .hero-points {
    grid-template-columns: repeat(3, 1fr);
    text-align: left;
  }
  .shop-layout {
    grid-template-columns: 1fr;
  }
  .cart-card {
    position: static;
  }
}
@media (max-width: 560px) {
  .secure {
    display: none;
  }
  .install-button {
    min-height: 36px;
    padding: 0 12px;
  }
  .choice-grid,
  .fields {
    grid-template-columns: 1fr;
  }
  .slots {
    grid-template-columns: repeat(3, 1fr);
  }
  .wide {
    grid-column: auto;
  }
  .hero {
    padding-top: 18px;
  }
  .experience-tabs {
    top: 7px;
    width: calc(100% - 28px);
  }
  .experience-tabs button {
    flex: 1;
    padding: 0 9px;
    font-size: 12px;
  }
  #booking-view .hero h1 {
    font-size: 42px;
  }
  .hero-points {
    grid-template-columns: 1fr;
    width: fit-content;
    margin: 24px auto 0;
  }
  .booking-heading {
    padding: 22px 20px 16px;
  }
  .live-status {
    display: none;
  }
  .progress {
    padding: 17px 20px 0;
  }
  .progress button small {
    display: none;
  }
  .progress > i {
    margin-bottom: 0;
  }
  .wizard-panel {
    min-height: 0;
    padding: 21px 20px;
  }
  .selection-dock {
    padding: 14px 20px;
  }
  .selection-dock b {
    max-width: 220px;
  }
  .flow-actions,
  .confirm-actions {
    grid-template-columns: 1fr;
  }
  .flow-actions .secondary {
    order: 2;
  }
  .shop-main {
    width: min(100% - 26px, 680px);
  }
  .shop-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 34px 24px;
  }
  .shop-hero h1 {
    font-size: 43px;
  }
  .shop-hero-art {
    display: none;
  }
  .catalog-panel,
  .cart-card {
    padding: 20px;
    border-radius: 23px;
  }
  .section-heading {
    align-items: stretch;
    flex-direction: column;
  }
  .shop-search {
    min-width: 0;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .beauty-portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .beauty-result,
  .beauty-result img {
    min-height: 165px;
  }
  .order-payment {
    grid-template-columns: 1fr;
  }
  .order-payment img {
    max-width: 240px;
    margin: auto;
  }
  .card {
    border-radius: 22px;
  }
  .ticket p {
    font-size: 14px;
  }
  .success-actions {
    grid-template-columns: 1fr;
  }
  .contact-links span {
    width: 100%;
    justify-content: center;
  }
}

/* Salão 360 — identidade exclusiva, clara e feminina. */
:root {
  color-scheme: light;
  --bg: #fff8fb;
  --panel: #ffffff;
  --line: #efdbe6;
  --ink: #382032;
  --muted: #806b7a;
  --accent: #d9468f;
  --mint: #239d83;
  --danger: #d84b66;
}

body,
body.beauty-mode {
  background:
    radial-gradient(circle at 8% 7%, #ffe0ed 0, transparent 28rem),
    radial-gradient(circle at 96% 24%, #eadcff 0, transparent 31rem),
    linear-gradient(180deg, #fffafd 0%, #fff5f9 50%, #fbf7ff 100%);
  color: var(--ink);
}

.ambient-slide {
  display: none;
}

.ambient-gallery::before,
.ambient-gallery::after {
  position: absolute;
  content: "";
  border-radius: 45% 55% 50% 50%;
  filter: blur(2px);
  opacity: 0.42;
}

.ambient-gallery::before {
  width: 330px;
  height: 330px;
  left: -150px;
  top: 36%;
  background: linear-gradient(145deg, #ffc2d9, #f5d9ff);
  transform: rotate(28deg);
}

.ambient-gallery::after {
  inset: auto -120px -120px auto;
  width: 310px;
  height: 310px;
  background: linear-gradient(145deg, #f5c7dc, #d9ceff);
  transform: rotate(-18deg);
}

.top {
  width: 100%;
  padding: 14px max(18px, calc((100vw - 1120px) / 2));
  border-bottom: 1px solid #ecdce5cc;
  background: #fffafde8;
  box-shadow: 0 8px 28px #7e345110;
  backdrop-filter: blur(20px);
}

.mark {
  border-radius: 15px;
  background: linear-gradient(145deg, #bc3278, #f178ad);
  box-shadow: 0 10px 24px #d9468f35;
}

.brand small,
footer {
  color: #947b8e;
}

.secure,
.availability,
.live-status {
  border-color: #bfe7dc;
  background: #effcf8;
  color: #187d69;
}

.install-button,
.secondary,
.experience-tabs button,
.qty-control button {
  border-color: #ead5e1;
  background: #fff;
  color: #563448;
}

.experience-tabs {
  top: 76px;
  border-color: #ead5e1;
  background: #fffafdee;
  box-shadow: 0 14px 36px #7f36551c;
}

#booking-view {
  width: min(100% - 36px, 1120px);
  grid-template-columns: minmax(300px, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(24px, 4vw, 58px);
}

#booking-view > .hero {
  top: 168px;
  margin-top: 26px;
  padding: 48px 38px;
  overflow: hidden;
  border-radius: 32px;
  background:
    radial-gradient(circle at 92% 8%, #ffffff2c 0 4rem, transparent 4.1rem),
    radial-gradient(circle at 5% 92%, #ffffff20 0 6rem, transparent 6.1rem),
    linear-gradient(145deg, #50173f 0%, #a12e6f 58%, #e66d9e 100%);
  box-shadow: 0 28px 70px #862e5332;
  color: #fff;
}

#booking-view .hero h1 {
  max-width: 560px;
  font-size: clamp(43px, 4.8vw, 66px);
  letter-spacing: -0.06em;
}

#booking-view .hero h1::first-line,
#booking-view .hero h1 em,
#booking-view .hero .eyebrow {
  color: #ffd2e4;
}

#booking-view .hero > p:last-of-type,
.hero-points {
  color: #ffeff6;
}

.hero-points b {
  background: #ffffff1c;
  color: #ffe0ec;
}

.contact-links span {
  border-color: #ffffff30;
  background: #ffffff16;
  color: #fff;
}

.booking-card,
.about-card,
.last-booking,
.beauty-portfolio,
.catalog-panel,
.cart-card,
.order-success {
  border-color: var(--line);
  background: #fffffff2;
  box-shadow: 0 26px 70px #74304d16;
}

.booking-card {
  margin-top: 26px;
}

.booking-heading,
.selection-dock {
  border-color: #f0dfe7;
  background: linear-gradient(100deg, #fff, #fff7fb);
}

.booking-heading .eyebrow,
.eyebrow,
.beauty-portfolio .eyebrow {
  color: #bb3575;
}

.progress button {
  color: #a38b9c;
}

.progress button span {
  border-color: #e7d5df;
  background: #fff9fc;
}

.progress button.done,
.progress button[aria-current="step"] {
  color: #a82d69;
}

.progress > i {
  background: #ead8e2;
}

.choice,
.slot,
.summary,
.payment-choice,
.booking-notice,
.ticket,
.proof-card,
.product-card,
.pix,
.install-card {
  border-color: #ecd9e4;
  background: #fff;
  color: var(--ink);
}

.choice:hover,
.choice.active,
.slot.active,
.payment-choice:has(input:checked) {
  border-color: #dc5897;
  background: #fff0f6;
  box-shadow: inset 0 0 0 1px #dc5897;
}

.person-avatar,
.state-icon,
.install-icon,
.product-art {
  background: linear-gradient(145deg, #ffe0ec, #f2dcff);
  color: #b83273;
}

input,
select,
textarea {
  border-color: #e7d5df;
  background: #fff;
  color: var(--ink);
}

input:focus,
select:focus,
textarea:focus {
  border-color: #d9468f;
  box-shadow: 0 0 0 4px #d9468f1f;
}

.primary,
.experience-tabs button.active,
.product-buy button,
.cart-count {
  background: linear-gradient(135deg, #bd3378, #ea609d);
  box-shadow: 0 12px 30px #d9468f32;
  color: #fff;
}

.selection-dock small,
.choice small,
.product-copy small,
.cart-line small,
.order-confirmation > p:last-child,
.install-card > p:not(.eyebrow) {
  color: var(--muted);
}

.selection-dock strong,
.product-buy strong,
.cart-total strong {
  color: #a82d69;
}

.shop-hero {
  border-color: #c96a9738;
  background:
    radial-gradient(circle at 88% 18%, #ffffff25 0 5rem, transparent 5.1rem),
    linear-gradient(120deg, #4d173e 0%, #9c316e 62%, #ed86ae 100%);
  box-shadow: 0 30px 75px #862e5330;
}

.shop-hero p:last-child,
.shop-hero .eyebrow {
  color: #ffe6f0;
}

.shop-hero-art {
  border-color: #ffffff38;
  background: radial-gradient(circle, #ffffff35, transparent 68%);
}

.shop-hero-art span {
  color: #ffe4ef;
}

.product-card:hover {
  border-color: #df70a5;
  box-shadow: 0 16px 30px #8a315418;
}

.cart-line {
  border-color: #f0dfe7;
}

.error {
  background: #fff0f2;
  color: #b5334b;
}

.install-scrim {
  background: #3e1a2a66;
}

.install-close {
  color: #6e425b;
}

@media (max-width: 900px) {
  #booking-view {
    width: min(100% - 28px, 680px);
    grid-template-columns: 1fr;
    gap: 12px;
  }

  #booking-view > .hero {
    position: static;
    margin-top: 12px;
    padding: 42px 30px;
    text-align: left;
  }

  #booking-view .hero > p:last-of-type {
    margin: 0;
  }

  #booking-view .contact-links {
    justify-content: flex-start;
  }

  .hero-points {
    grid-template-columns: repeat(3, 1fr);
  }

  .shop-layout {
    grid-template-columns: 1fr;
  }

  .cart-card {
    position: static;
  }
}

@media (max-width: 700px) {
  .secure {
    display: none;
  }
}

@media (max-width: 560px) {
  .top {
    padding: 11px 14px;
  }

  .experience-tabs {
    top: 67px;
  }

  #booking-view {
    width: min(100% - 22px, 680px);
  }

  #booking-view > .hero {
    padding: 32px 23px;
    border-radius: 26px;
  }

  #booking-view .hero h1 {
    font-size: 40px;
  }

  .hero-points {
    width: 100%;
    margin: 22px 0 0;
  }

  .booking-card {
    margin-top: 10px;
  }
}

/* Refinamento visual do fluxo de agendamento. */
.top {
  min-height: 76px;
}

.brand b,
.booking-heading h2,
.step b {
  letter-spacing: -0.025em;
}

#booking-view > .hero {
  isolation: isolate;
}

#booking-view > .hero::before {
  position: absolute;
  z-index: -1;
  right: -44px;
  bottom: -62px;
  width: 190px;
  height: 190px;
  border: 1px solid #ffffff24;
  border-radius: 48% 52% 62% 38%;
  background: linear-gradient(145deg, #ffffff16, #ffffff05);
  content: "";
  transform: rotate(18deg);
}

.booking-card {
  scroll-margin-top: 96px;
}

.wizard-panel {
  min-height: 330px;
}

[data-step-panel]:not(.hidden) {
  animation: salon-step-in 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.choice {
  box-shadow: 0 8px 22px #6f294c0a;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.choice:hover {
  transform: translateY(-2px);
  box-shadow: 0 13px 28px #84345a17;
}

.choice.active .person-avatar,
.choice.active .choice-icon {
  background: linear-gradient(145deg, #ce3f82, #ef73aa);
  color: #fff;
}

.professional-empty {
  display: grid;
  justify-items: center;
  gap: 5px;
  min-height: 156px;
  place-content: center;
  padding: 28px;
  background: linear-gradient(145deg, #fff, #fff7fb);
}

.professional-empty > span {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 4px;
  place-items: center;
  border-radius: 15px;
  background: linear-gradient(145deg, #ffe0ec, #f1ddff);
  color: #bd3476;
  font-size: 20px;
}

.professional-empty b {
  color: #583347;
}

.professional-empty small {
  max-width: 410px;
  color: var(--muted);
}

.primary {
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.2s ease;
}

.primary:not(:disabled):hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px #d9468f45;
}

.primary:disabled {
  cursor: not-allowed;
  box-shadow: none;
  filter: saturate(0.65);
}

@keyframes salon-step-in {
  from {
    opacity: 0;
    transform: translateY(9px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-step-panel]:not(.hidden) {
    animation: none;
  }

  .choice,
  .primary {
    transition: none;
  }
}

@media (max-width: 560px) {
  .wizard-panel {
    min-height: 0;
  }

  .professional-empty {
    min-height: 138px;
  }
}
