:root {
  --bg: #090909;
  --panel: #151515;
  --panel-strong: #202020;
  --text: #f4f1ea;
  --muted: #aba7a0;
  --line: rgba(255, 255, 255, 0.12);
  --silver: #d9d9d9;
  --red: #b92121;
  --red-deep: #6e1212;
  --gold: #caa76a;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --radius: 18px;
  --radius-sm: 12px;
  color-scheme: dark;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    linear-gradient(90deg, rgba(9, 9, 9, 0.96), rgba(9, 9, 9, 0.84)),
    url("./FUNDO.png") center / cover fixed;
  color: var(--text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 20%, rgba(202, 167, 106, 0.08), transparent 22%),
    radial-gradient(circle at 92% 12%, rgba(185, 33, 33, 0.1), transparent 24%);
  z-index: -1;
  animation: ambientDrift 12s ease-in-out infinite alternate;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.app-shell {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  min-width: 0;
  min-height: 100vh;
}

.sidebar {
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
  height: 100vh;
  padding: 28px 20px;
  border-right: 1px solid var(--line);
  background: rgba(8, 8, 8, 0.78);
  backdrop-filter: blur(18px);
}

.brand {
  display: block;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.36);
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.nav-tabs {
  display: none;
  gap: 8px;
}

.nav-link,
.whatsapp-link {
  min-height: 44px;
  padding: 12px 14px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  color: var(--muted);
  text-decoration: none;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.nav-link:hover,
.nav-link.active,
.whatsapp-link:hover {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
}

.whatsapp-link {
  margin-top: auto;
  border-color: rgba(185, 33, 33, 0.5);
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  color: #fff;
  text-align: center;
}

.content {
  width: min(1180px, 100%);
  min-width: 0;
  margin: 0 auto;
  padding: 30px clamp(18px, 4vw, 52px) 96px;
}

.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(10, 10, 10, 0.62);
}

.app-header strong,
.app-header span {
  display: block;
}

.app-header span,
.client-simulator span {
  color: var(--muted);
  font-size: 0.86rem;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
}

.role-switch,
.client-simulator,
.service-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sound-toggle {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid rgba(202, 167, 106, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.sound-toggle:hover,
.sound-toggle.active {
  border-color: rgba(202, 167, 106, 0.7);
  background: rgba(202, 167, 106, 0.14);
  color: var(--text);
}

.sound-toggle:active {
  transform: scale(0.97);
}

.sound-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--muted);
  box-shadow: 0 0 0 rgba(202, 167, 106, 0);
}

.sound-toggle.active .sound-dot {
  background: var(--gold);
  animation: soundPulse 1.4s ease-in-out infinite;
}

.role,
.client-simulator button,
.service-tab {
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.role {
  padding: 0 10px;
  opacity: 0.72;
}

.role.active,
.service-tab.active,
.client-simulator button:hover {
  border-color: rgba(202, 167, 106, 0.68);
  background: rgba(202, 167, 106, 0.13);
  color: var(--text);
  opacity: 1;
}

.client-simulator {
  align-items: center;
  margin-bottom: 14px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(15, 15, 15, 0.72);
}

.section {
  display: none;
  animation: fadeIn 260ms ease both;
}

.section:not(.active) {
  display: none !important;
}

.section.active {
  display: block;
}

.hero {
  position: relative;
  min-height: clamp(560px, 84vh, 760px);
  overflow: hidden;
  border-radius: 28px;
  border-bottom: 1px solid var(--line);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 48%, rgba(185, 33, 33, 0.22), transparent 34%),
    linear-gradient(90deg, rgba(6, 6, 6, 0.92) 0%, rgba(6, 6, 6, 0.72) 48%, rgba(6, 6, 6, 0.38) 100%),
    url("./FUNDO.png") center / cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  max-width: 650px;
  min-height: clamp(560px, 84vh, 760px);
  padding: clamp(28px, 5vw, 58px) 0;
}

.hero-tattooer {
  position: absolute;
  right: clamp(0px, 3vw, 42px);
  bottom: 0;
  z-index: 1;
  display: grid;
  align-items: end;
  width: min(43vw, 520px);
  height: 100%;
  pointer-events: none;
}

.hero-tattooer::before {
  content: "";
  position: absolute;
  right: 3%;
  bottom: 8%;
  width: 78%;
  aspect-ratio: 1;
  border: 1px solid rgba(202, 167, 106, 0.28);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 64%);
}

.hero-tattooer img {
  position: relative;
  display: block;
  width: 100%;
  max-height: 92%;
  object-fit: contain;
  object-position: bottom right;
  filter: drop-shadow(0 28px 42px rgba(0, 0, 0, 0.72));
  animation: floatArtist 5.8s ease-in-out infinite;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 680px;
  margin-bottom: 22px;
  font-size: clamp(2.55rem, 6vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.ticker {
  overflow: hidden;
  margin: 12px 0 8px;
  padding: 12px 0;
  border-block: 1px solid var(--line);
  color: var(--silver);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  font-size: 1.3rem;
  line-height: 1.15;
}

.hero-copy {
  max-width: 620px;
  color: var(--silver);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.6;
}

.hero-actions,
.field-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.primary-button,
.ghost-button {
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
}

.primary-button {
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  box-shadow: 0 14px 32px rgba(185, 33, 33, 0.28);
}

.ghost-button {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.08);
}

.full {
  width: 100%;
}

.quick-panel {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  padding: 20px 0 42px;
}

.quick-panel article,
.quote-card,
.appointment-card,
.portfolio-card,
.care-item,
.standard-grid article,
.service-board,
.before-after,
.testimonials article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(18, 18, 18, 0.86);
  box-shadow: var(--shadow);
}

.quick-panel article {
  position: relative;
  overflow: hidden;
  padding: 20px;
}

.shortcut-card {
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.shortcut-card:hover {
  transform: translateY(-3px);
  border-color: rgba(202, 167, 106, 0.5);
  background: rgba(25, 25, 25, 0.94);
}

.shortcut-card:hover .tattoo-mark,
.mobile-link:hover .nav-icon {
  animation: iconPulse 680ms ease both;
}

.shortcut-card::after {
  content: "Abrir";
  position: absolute;
  right: 14px;
  bottom: 12px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.tattoo-mark {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  color: rgba(202, 167, 106, 0.78);
  opacity: 0.9;
  filter: drop-shadow(0 0 10px rgba(202, 167, 106, 0.18));
}

.tattoo-mark::before,
.tattoo-mark::after {
  content: "";
  position: absolute;
  border: 2px solid currentColor;
}

.needle-mark::before {
  width: 4px;
  height: 28px;
  left: 14px;
  top: 1px;
  transform: rotate(35deg);
}

.needle-mark::after {
  width: 18px;
  height: 2px;
  left: 3px;
  top: 25px;
  border-width: 2px 0 0;
  transform: rotate(35deg);
}

.crown-mark::before {
  inset: 13px 3px 5px;
}

.crown-mark::after {
  inset: 3px 6px 18px;
  border-width: 2px 2px 0;
  transform: skewX(-16deg);
}

.calendar-mark::before {
  inset: 7px 4px 4px;
  border-radius: 4px;
}

.calendar-mark::after {
  inset: 3px 9px 24px;
  border-width: 0 0 2px;
}

.flash-mark::before {
  width: 13px;
  height: 26px;
  left: 11px;
  top: 2px;
  transform: skewX(-20deg);
}

.flash-mark::after {
  width: 16px;
  height: 12px;
  left: 7px;
  top: 13px;
  border-width: 0 2px 2px 0;
  transform: rotate(32deg);
}

.drop-mark::before {
  inset: 4px 8px 5px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.quick-panel span {
  color: var(--red);
  font-weight: 900;
}

.quick-panel strong {
  display: block;
  margin: 8px 0;
}

.vip-card,
.active-booking {
  background:
    linear-gradient(145deg, rgba(185, 33, 33, 0.22), rgba(18, 18, 18, 0.92)),
    url("./FUNDO.png") center / cover;
}

.vip-card small {
  color: var(--gold);
  font-weight: 900;
}

.quick-panel p,
.portfolio-card p,
.microcopy,
.appointment-card li,
.standard-grid p,
.before-after p,
.testimonials p,
.vip-hero p,
.vip-benefits p,
.ai-result p,
.gift-wall p,
.news-card p,
.booking-copy p,
.booking-result p,
.daily-pill p,
.chat-output p,
.ai-card p {
  color: var(--muted);
  line-height: 1.55;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin: 58px 0 22px;
}

.standard-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.standard-grid article {
  min-height: 220px;
  padding: 20px;
}

.standard-grid span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.client-system-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 16px;
}

.booking-system,
.vip-dashboard,
.subscriber-lab > *,
.vip-exclusive-grid > *,
.artist-dashboard > *,
.owner-dashboard > * {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(18, 18, 18, 0.86);
  box-shadow: var(--shadow);
}

.booking-system {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  min-height: 520px;
  overflow: hidden;
}

.booking-tabs {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 16px;
  border-right: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.22);
}

.booking-tab {
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-weight: 900;
  text-align: left;
}

.booking-tab.active {
  border-color: rgba(202, 167, 106, 0.68);
  background: rgba(202, 167, 106, 0.13);
  color: var(--text);
  box-shadow: inset 0 0 22px rgba(202, 167, 106, 0.08);
}

.booking-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 1fr);
  gap: 16px;
  padding: 22px;
}

.booking-copy {
  display: grid;
  align-content: center;
}

.booking-copy strong {
  color: var(--gold);
  font-size: 1.45rem;
}

.booking-flow {
  display: grid;
  align-content: center;
  gap: 14px;
}

.booking-result,
.daily-pill,
.chat-output {
  min-height: 96px;
  padding: 16px;
  border: 1px solid rgba(202, 167, 106, 0.24);
  border-radius: var(--radius-sm);
  background: rgba(202, 167, 106, 0.08);
  color: var(--silver);
}

.booking-result strong,
.daily-pill strong,
.chat-output strong {
  color: var(--gold);
}

.vip-dashboard {
  padding: 22px;
}

.vip-dashboard .vip-rules {
  display: grid;
  gap: 10px;
  padding-left: 20px;
  color: var(--muted);
}

.subscriber-lab {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 16px;
  margin-top: 16px;
}

.art-consultant {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.compact-news .news-grid {
  grid-template-columns: 1fr;
}

.blog-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(18, 18, 18, 0.76);
}

.blog-status strong {
  color: var(--gold);
}

.blog-status span {
  color: var(--muted);
  font-size: 0.86rem;
}

.blog-stage {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(202, 167, 106, 0.08), rgba(185, 33, 33, 0.08)),
    rgba(10, 10, 10, 0.72);
  box-shadow: var(--shadow);
}

.blog-track {
  display: flex;
  transition: transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.blog-card {
  flex: 0 0 100%;
  min-height: 320px;
  display: grid;
  align-content: center;
  gap: 14px;
  padding: clamp(22px, 5vw, 54px);
  opacity: 0.72;
  transform: scale(0.98);
  transition:
    opacity 400ms ease,
    transform 400ms ease;
}

.blog-card.active {
  opacity: 1;
  transform: scale(1);
}

.blog-card span {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-card p {
  max-width: 720px;
  color: var(--muted);
  line-height: 1.65;
}

.blog-card .ghost-button {
  width: fit-content;
}

.blog-control {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(202, 167, 106, 0.45);
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.72);
  color: var(--gold);
  font-size: 1.4rem;
  transform: translateY(-50%);
  backdrop-filter: blur(12px);
}

.blog-control.prev {
  left: 12px;
}

.blog-control.next {
  right: 12px;
}

.blog-progress {
  height: 4px;
  overflow: hidden;
  margin-top: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.blog-progress span {
  display: block;
  width: 25%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--red), var(--gold));
  transition: width 420ms ease;
}

.article-modal {
  width: min(780px, calc(100vw - 28px));
  max-height: min(820px, calc(100vh - 28px));
  border: 1px solid rgba(202, 167, 106, 0.3);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(22, 22, 22, 0.98), rgba(8, 8, 8, 0.98)),
    url("./FUNDO.png") center / cover;
  color: var(--text);
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.72);
}

.article-modal::backdrop {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
}

.article-modal article {
  position: relative;
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 42px);
}

.article-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-weight: 900;
}

.article-body {
  display: grid;
  gap: 14px;
  color: var(--silver);
  line-height: 1.72;
}

.vip-exclusive-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 16px;
  margin-top: 58px;
  padding: clamp(22px, 5vw, 44px);
  border: 1px solid rgba(202, 167, 106, 0.32);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(185, 33, 33, 0.35), rgba(8, 8, 8, 0.92)),
    url("./FUNDO.png") center / cover;
  box-shadow: var(--shadow);
}

.vip-exclusive-badge {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.34);
}

.vip-exclusive-badge span,
.vip-exclusive-badge small,
.vip-news-list span,
.gallery-item span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vip-exclusive-badge strong {
  color: var(--gold);
  font-size: 1.35rem;
  line-height: 1.1;
}

.vip-exclusive-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 16px;
  margin-top: 16px;
}

.vip-ai-suite,
.mockup-studio,
.vip-news-card,
.vip-gift-showcase,
.owner-ai-command {
  padding: 22px;
}

.vip-ai-suite,
.mockup-studio {
  display: grid;
  gap: 14px;
}

.mockup-dropzone {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 260px;
  padding: 28px;
  border: 1px dashed rgba(202, 167, 106, 0.55);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(202, 167, 106, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(0, 0, 0, 0.24);
  text-align: center;
}

.mockup-dropzone .tattoo-mark {
  position: relative;
  top: auto;
  right: auto;
  margin-bottom: 10px;
}

#mockupOverlay {
  display: inline-grid;
  place-items: center;
  min-height: 40px;
  margin-top: 12px;
  padding: 10px 14px;
  border: 1px solid rgba(202, 167, 106, 0.35);
  border-radius: 999px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.mockup-note {
  color: var(--muted);
}

.vip-news-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.vip-news-list article {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.24);
}

.vip-news-list strong {
  display: block;
  margin-top: 6px;
}

.gallery-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.gallery-stage {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
}

.gallery-stage::before,
.gallery-stage::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 12%;
  pointer-events: none;
}

.gallery-stage::before {
  left: 0;
  background: linear-gradient(90deg, rgba(9, 9, 9, 0.95), transparent);
}

.gallery-stage::after {
  right: 0;
  background: linear-gradient(270deg, rgba(9, 9, 9, 0.95), transparent);
}

.dynamic-gallery {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 8px 0 16px;
}

.dynamic-gallery::-webkit-scrollbar {
  display: none;
}

.gallery-item {
  flex: 0 0 min(380px, 82vw);
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #080808;
  box-shadow: var(--shadow);
  scroll-snap-align: center;
  transform: scale(0.94);
  opacity: 0.72;
  transition:
    transform 360ms ease,
    opacity 360ms ease,
    border-color 360ms ease,
    filter 360ms ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.08);
  transition:
    transform 480ms ease,
    filter 480ms ease;
}

.gallery-item:hover img,
.gallery-item.featured img {
  transform: scale(1.04);
  filter: saturate(1.08) contrast(1.12);
}

.gallery-item.featured {
  border-color: rgba(202, 167, 106, 0.58);
  opacity: 1;
  transform: scale(1);
  filter: drop-shadow(0 26px 40px rgba(0, 0, 0, 0.44));
  animation: featuredBreath 2.6s ease-in-out infinite;
}

.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.12), transparent 58%);
  transform: translateX(-120%);
  transition: transform 700ms ease;
  pointer-events: none;
}

.gallery-item.featured::before,
.gallery-item:hover::before {
  transform: translateX(120%);
}

.gallery-item div {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 18px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.88));
}

.gallery-item strong {
  display: block;
  margin-top: 6px;
}

.gallery-control {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(202, 167, 106, 0.45);
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.74);
  color: var(--gold);
  font-size: 2rem;
  line-height: 1;
  transform: translateY(-50%);
  backdrop-filter: blur(12px);
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.gallery-control:hover {
  background: rgba(185, 33, 33, 0.32);
  transform: translateY(-50%) scale(1.08);
}

.gallery-control.prev {
  left: 12px;
}

.gallery-control.next {
  right: 12px;
}

.gallery-progress {
  height: 4px;
  overflow: hidden;
  margin-top: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.gallery-progress span {
  display: block;
  width: 12.5%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--red), var(--gold));
  transition: width 360ms ease;
}

.planner-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 16px;
}

.quote-form {
  display: grid;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(12, 12, 12, 0.76);
}

label,
fieldset {
  display: grid;
  gap: 9px;
  margin: 0;
  color: var(--silver);
  font-weight: 800;
}

fieldset {
  padding: 0;
  border: 0;
}

legend {
  margin-bottom: 9px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #0f0f0f;
  color: var(--text);
  outline: none;
}

input,
select {
  min-height: 46px;
  padding: 0 12px;
}

textarea {
  resize: vertical;
  padding: 12px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(202, 167, 106, 0.78);
}

.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #101010;
  color: var(--muted);
  font-weight: 800;
}

.chip.selected {
  border-color: rgba(185, 33, 33, 0.9);
  background: rgba(185, 33, 33, 0.22);
  color: #fff;
}

.quote-card {
  position: sticky;
  top: 28px;
  align-self: start;
  padding: 22px;
}

dl {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}

dl div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
}

dt {
  color: var(--muted);
}

dd {
  margin: 0;
  color: var(--text);
  font-weight: 800;
  text-align: right;
}

.schedule-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px 340px;
  gap: 16px;
}

.calendar-strip,
.period-list {
  display: grid;
  gap: 10px;
}

.date-card,
.period {
  min-height: 76px;
  border: 1px solid var(--line);
  background: rgba(16, 16, 16, 0.84);
  color: var(--text);
  text-align: left;
}

.date-card {
  display: grid;
  align-content: center;
  gap: 3px;
  padding: 12px;
}

.date-card strong,
.period {
  font-weight: 900;
}

.date-card span,
.period span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.date-card.selected,
.period.selected {
  border-color: rgba(185, 33, 33, 0.9);
  background: rgba(185, 33, 33, 0.2);
}

.period {
  padding: 14px;
}

.appointment-card {
  padding: 22px;
}

.appointment-card ul {
  padding-left: 20px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.service-board {
  display: grid;
  gap: 14px;
  margin-bottom: 16px;
  padding: 20px;
}

.service-list {
  display: grid;
  gap: 10px;
}

.service-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.22);
}

.service-row span {
  color: var(--silver);
  font-weight: 800;
}

.service-row strong {
  text-align: right;
}

.portfolio-card {
  min-height: 260px;
  padding: 20px;
  display: grid;
  align-content: end;
  overflow: hidden;
}

.portfolio-card.dark {
  background:
    linear-gradient(rgba(10, 10, 10, 0.25), rgba(10, 10, 10, 0.94)),
    url("./5ae18008-8e43-4610-a2d7-a595ed1f8070.png") center / cover;
}

.portfolio-card.line {
  background:
    linear-gradient(rgba(12, 12, 12, 0.2), rgba(12, 12, 12, 0.95)),
    url("./Camada 9-FUNDO.png") center / cover;
}

.portfolio-card.black {
  background:
    linear-gradient(rgba(12, 12, 12, 0.18), rgba(12, 12, 12, 0.95)),
    url("./FUNDO.png") center / cover;
}

.portfolio-card.cover {
  background:
    linear-gradient(rgba(12, 12, 12, 0.25), rgba(12, 12, 12, 0.95)),
    url("./TATUADOR PNG.png") center / cover;
}

.before-after {
  margin-top: 16px;
  padding: 20px;
}

.section-heading.compact {
  margin-top: 0;
}

.compare-box {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #050505;
}

.compare-box img,
.after-layer img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.after-layer {
  position: absolute;
  inset: 0 auto 0 0;
  width: 50%;
  overflow: hidden;
  border-right: 3px solid var(--gold);
}

.after-layer img {
  width: calc(100vw - 320px);
  min-width: 720px;
  max-width: 1180px;
}

.compare-label {
  position: absolute;
  top: 12px;
  padding: 7px 10px;
  background: rgba(0, 0, 0, 0.72);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.compare-label.before {
  left: 12px;
}

.compare-label.after {
  right: 12px;
}

.compare-range {
  margin-top: 14px;
  accent-color: var(--gold);
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.testimonials article {
  padding: 20px;
}

.testimonials strong,
.testimonials span {
  display: block;
}

.testimonials span {
  margin: 8px 0 12px;
  color: var(--gold);
  letter-spacing: 0.08em;
}

.vip-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 16px;
  margin-top: 34px;
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid rgba(202, 167, 106, 0.24);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(185, 33, 33, 0.34), rgba(10, 10, 10, 0.88)),
    url("./FUNDO.png") center / cover;
  box-shadow: var(--shadow);
}

.vip-hero h2 {
  max-width: 720px;
}

.vip-price {
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.32);
}

.vip-price span,
.vip-price small,
.news-status span {
  color: var(--muted);
}

.vip-price strong {
  color: var(--gold);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.vip-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.vip-benefits article,
.ai-panel,
.gift-wall,
.news-shell,
.news-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(18, 18, 18, 0.86);
  box-shadow: var(--shadow);
}

.vip-benefits article {
  min-height: 210px;
  padding: 18px;
}

.vip-benefits span {
  color: var(--red);
  font-weight: 900;
}

.vip-benefits strong {
  display: block;
  margin: 8px 0;
}

.vip-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 16px;
  margin-top: 16px;
}

.ai-panel,
.gift-wall,
.news-shell {
  padding: 22px;
}

.ai-panel {
  display: grid;
  gap: 16px;
}

.ai-result {
  min-height: 132px;
  padding: 16px;
  border: 1px solid rgba(202, 167, 106, 0.28);
  background: rgba(202, 167, 106, 0.08);
  color: var(--silver);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.ai-result strong {
  color: var(--gold);
}

.ai-result.thinking,
.chat-output.thinking {
  border-color: rgba(202, 167, 106, 0.65);
  background:
    linear-gradient(110deg, rgba(202, 167, 106, 0.08), rgba(185, 33, 33, 0.11), rgba(202, 167, 106, 0.08));
  background-size: 220% 100%;
  animation: aiThinking 1.1s ease-in-out infinite;
}

.gift-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 16px 0;
}

.gift-grid span {
  min-height: 76px;
  display: grid;
  place-items: center;
  padding: 12px;
  border: 1px solid rgba(202, 167, 106, 0.24);
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.24);
  color: var(--text);
  font-weight: 900;
  text-align: center;
}

.raffle-card {
  margin-bottom: 16px;
  padding: 16px;
  border: 1px solid rgba(185, 33, 33, 0.44);
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(185, 33, 33, 0.18), rgba(0, 0, 0, 0.2));
  animation: raffleGlow 3.2s ease-in-out infinite;
}

.raffle-card strong {
  color: var(--gold);
}

.news-shell {
  display: grid;
  gap: 16px;
}

.news-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.news-status strong {
  color: var(--gold);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.news-card {
  min-height: 220px;
  padding: 18px;
  display: grid;
  align-content: space-between;
  gap: 14px;
}

.news-card span {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-card h3 {
  margin-bottom: 0;
  font-size: 1.08rem;
}

.news-card a {
  color: var(--gold);
  font-weight: 900;
  text-decoration: none;
}

.artist-dashboard,
.owner-dashboard {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.artist-kpis,
.owner-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  grid-column: 1 / -1;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.occupancy-board {
  grid-column: span 2;
}

.owner-ai-command {
  display: grid;
  gap: 14px;
  grid-column: 1 / -1;
  background:
    linear-gradient(135deg, rgba(202, 167, 106, 0.1), rgba(18, 18, 18, 0.88)),
    rgba(18, 18, 18, 0.86);
}

.artist-kpis article,
.owner-kpis article {
  min-height: 128px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(18, 18, 18, 0.86);
  box-shadow: var(--shadow);
}

.artist-kpis span,
.owner-kpis span {
  color: var(--muted);
  font-weight: 800;
}

.artist-kpis strong,
.owner-kpis strong {
  display: block;
  margin-top: 12px;
  color: var(--gold);
  font-size: 1.45rem;
}

.today-agenda,
.ai-alerts,
.upsell-panel,
.occupancy-board,
.crm-alerts {
  padding: 22px;
}

.dashboard-row,
.occupancy-row {
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.22);
}

.dashboard-row + .dashboard-row,
.occupancy-row + .occupancy-row,
.ai-card + .ai-card {
  margin-top: 10px;
}

.dashboard-row span,
.dashboard-row small,
.occupancy-row span {
  color: var(--muted);
}

.dashboard-row strong {
  color: var(--text);
}

.ai-card {
  padding: 16px;
  border: 1px solid rgba(202, 167, 106, 0.22);
  border-radius: var(--radius-sm);
  background: rgba(202, 167, 106, 0.08);
}

.ai-card strong {
  color: var(--gold);
}

.ai-card textarea {
  min-height: 112px;
  margin-top: 10px;
}

.occupancy-row {
  grid-template-columns: 150px minmax(0, 1fr) 52px;
  align-items: center;
}

.occupancy-row div {
  height: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.09);
}

.occupancy-row i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--red), var(--gold));
}

.care-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.care-item {
  grid-template-columns: 22px 1fr;
  align-items: center;
  min-height: 86px;
  padding: 18px;
}

.care-item input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--red);
}

.mobile-nav {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 10;
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(8, 8, 8, 0.9);
  backdrop-filter: blur(16px);
}

.mobile-link {
  min-height: 52px;
  border: 1px solid transparent;
  border-radius: 16px;
  background: transparent;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
}

.nav-icon {
  position: relative;
  display: block;
  width: 22px;
  height: 22px;
  margin: 0 auto 4px;
}

.nav-icon::before,
.nav-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid currentColor;
}

.nav-icon.needle::before {
  width: 4px;
  left: 9px;
  transform: rotate(35deg);
}

.nav-icon.needle::after {
  inset: 15px 5px 3px 5px;
  border-width: 2px 0 0;
}

.nav-icon.crown::before {
  inset: 7px 2px 4px;
}

.nav-icon.crown::after {
  inset: 1px 4px 12px;
  border-width: 2px 2px 0;
  transform: skewX(-18deg);
}

.nav-icon.frame::before {
  inset: 2px;
}

.nav-icon.frame::after {
  inset: 8px 5px 5px;
  border-width: 0 0 2px 2px;
  transform: rotate(-12deg);
}

.nav-icon.calendar::before {
  inset: 4px 2px 2px;
}

.nav-icon.calendar::after {
  inset: 1px 6px 15px;
  border-width: 0 0 2px;
}

.mobile-link.active {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.reveal {
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ambientDrift {
  from {
    filter: hue-rotate(0deg);
    transform: scale(1);
  }

  to {
    filter: hue-rotate(-12deg);
    transform: scale(1.03);
  }
}

@keyframes soundPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(202, 167, 106, 0.35);
  }

  50% {
    box-shadow: 0 0 0 7px rgba(202, 167, 106, 0);
  }
}

@keyframes floatArtist {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes iconPulse {
  0% {
    transform: scale(1) rotate(0deg);
  }

  50% {
    transform: scale(1.14) rotate(-4deg);
  }

  100% {
    transform: scale(1) rotate(0deg);
  }
}

@keyframes aiThinking {
  0% {
    background-position: 0% 50%;
    transform: translateY(0);
  }

  50% {
    background-position: 100% 50%;
    transform: translateY(-2px);
  }

  100% {
    background-position: 0% 50%;
    transform: translateY(0);
  }
}

@keyframes featuredBreath {
  0%,
  100% {
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  }

  50% {
    box-shadow: 0 28px 90px rgba(202, 167, 106, 0.18);
  }
}

@keyframes raffleGlow {
  0%,
  100% {
    border-color: rgba(185, 33, 33, 0.44);
  }

  50% {
    border-color: rgba(202, 167, 106, 0.68);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 980px) {
  .app-shell {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .sidebar {
    position: relative;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: auto;
    padding: 14px 18px;
    overflow-x: hidden;
  }

  .content {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 0;
  }

  .brand {
    max-width: 220px;
  }

  .nav-tabs,
  .whatsapp-link {
    display: none;
  }

  .quick-panel,
  .planner-grid,
  .schedule-layout,
  .portfolio-grid,
  .care-grid,
  .standard-grid,
  .testimonials,
  .vip-hero,
  .vip-benefits,
  .vip-layout,
  .news-grid,
  .client-system-grid,
  .booking-system,
  .booking-panel,
  .subscriber-lab,
  .vip-exclusive-hero,
  .vip-exclusive-grid,
  .dynamic-gallery,
  .artist-dashboard,
  .owner-dashboard,
  .artist-kpis,
  .owner-kpis {
    grid-template-columns: 1fr;
  }

  .booking-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .occupancy-row {
    grid-template-columns: 1fr;
  }

  .quote-card {
    position: static;
  }

  .mobile-nav {
    display: grid;
  }

  .app-header {
    display: grid;
  }

  .hero {
    min-height: 700px;
  }

  .hero-content {
    max-width: 100%;
    min-height: 700px;
    align-content: start;
    padding-top: 44px;
    padding-right: min(36vw, 210px);
  }

  .hero-tattooer {
    right: -28px;
    width: min(48vw, 300px);
  }
}

@media (max-width: 620px) {
  .content {
    padding-inline: 14px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-media {
    background:
      radial-gradient(circle at 50% 67%, rgba(185, 33, 33, 0.28), transparent 35%),
      linear-gradient(180deg, rgba(6, 6, 6, 0.82), rgba(6, 6, 6, 0.95)),
      url("./FUNDO.png") center / cover;
  }

  .hero-content {
    min-height: 720px;
    align-content: start;
    padding-top: 32px;
    padding-right: 0;
    padding-bottom: 330px;
  }

  .hero-tattooer {
    right: 50%;
    bottom: 0;
    width: min(86vw, 360px);
    height: 390px;
    transform: translateX(50%);
  }

  .hero-tattooer::before {
    right: 9%;
    bottom: 7%;
  }

  .field-row {
    display: grid;
  }

  .section-heading {
    display: grid;
    margin-top: 38px;
  }

  .quote-form,
  .quote-card,
  .appointment-card,
  .service-board,
  .before-after,
  .ai-panel,
  .gift-wall,
  .news-shell,
  .booking-panel,
  .vip-dashboard,
  .art-consultant,
  .today-agenda,
  .ai-alerts,
  .upsell-panel,
  .occupancy-board,
  .crm-alerts {
    padding: 16px;
  }

  .vip-ai-suite,
  .mockup-studio,
  .vip-news-card,
  .vip-gift-showcase,
  .owner-ai-command {
    padding: 16px;
  }

  .news-status {
    display: grid;
  }

  .gift-grid {
    grid-template-columns: 1fr;
  }

  .client-simulator {
    overflow-x: auto;
    flex-wrap: nowrap;
    margin-inline: -14px;
    padding-inline: 14px;
  }

  .client-simulator button {
    flex: 0 0 auto;
  }

  .after-layer img {
    width: calc(100vw - 28px);
    min-width: 0;
  }
}
