﻿/* Page-specific styles: estudios-tatuagens */

.hero {
  min-height: 80vh
}

.hero-left {
  padding: 6rem 3.5rem 5rem;
  padding-left: max(3.5rem, calc((100vw - 1400px) / 2 + 3.5rem))
}

.hero-right {
  min-height: 80vh;
  position: relative
}

/* ── HERO SESSION HUD ──────────────────────────────── */


.session-hud {
  position: absolute;
  bottom: 3rem;
  right: max(3rem, calc((100vw - 1400px) / 2 + 3rem));
  background: var(--s1);
  border: 1px solid rgba(238, 234, 222, .1);
  border-radius: 12px;
  padding: 1.2rem;
  width: 276px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .5), 0 0 40px rgba(232, 83, 10, .06);
  opacity: 0;
  z-index: 2;
}

[data-theme="light"] .session-hud {
  background: var(--s1);
  border-color: rgba(26, 23, 19, .15);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .1)
}

.shud-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .9rem;
  padding-bottom: .8rem;
  border-bottom: 1px solid var(--border)
}

.shud-title {
  font-size: .62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted)
}

.shud-count {
  font-size: .6rem;
  color: var(--muted)
}

.shud-rows {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  margin-bottom: .8rem
}

.shud-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: .6rem;
  padding: .6rem .7rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--s2)
}

.shud-row.confirmed {
  border-color: rgba(63, 221, 187, .25);
  background: rgba(63, 221, 187, .04)
}

.shud-row.pending {
  border-color: rgba(196, 163, 90, .2);
  background: rgba(196, 163, 90, .04)
}

.shud-name {
  font-size: .74rem;
  color: var(--text);
  margin-bottom: .1rem
}

.shud-detail {
  font-size: .6rem;
  color: var(--muted)
}

.shud-badge {
  font-size: .56rem;
  padding: .2rem .55rem;
  border-radius: 100px;
  white-space: nowrap
}

.shud-badge.ok {
  background: rgba(63, 221, 187, .12);
  color: var(--accent);
  border: 1px solid rgba(63, 221, 187, .3)
}

.shud-badge.pend {
  background: rgba(196, 163, 90, .12);
  color: var(--warm);
  border: 1px solid rgba(196, 163, 90, .3)
}

.shud-footer {
  display: flex;
  justify-content: space-between;
  padding-top: .7rem;
  border-top: 1px solid var(--border);
  font-size: .62rem;
  color: var(--muted)
}

/* ── FEATURE MOCKUP — SESSION BOOK ──────────────── */
.mock-sessionbook {
  background: var(--s1);
  border: 1px solid rgba(238, 234, 222, .1);
  border-radius: 12px;
  padding: 1.4rem;
  width: 330px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, .5), 0 0 60px rgba(63, 221, 187, .06);
}

[data-theme="light"] .mock-sessionbook {
  background: var(--s1);
  border-color: rgba(26, 23, 19, .15);
  box-shadow: 0 16px 50px rgba(0, 0, 0, .1)
}

.msess-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .9rem;
  padding-bottom: .8rem;
  border-bottom: 1px solid var(--border)
}

.msess-title {
  font-size: .62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted)
}

.msess-date {
  font-size: .62rem;
  color: var(--muted)
}

.msess-cards {
  display: flex;
  flex-direction: column;
  gap: .4rem
}

.msess-card {
  padding: .7rem .8rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--s2)
}

.msess-card.active {
  border-color: rgba(63, 221, 187, .25)
}

.msess-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: .35rem
}

.msess-client {
  font-size: .76rem;
  color: var(--text)
}

.msess-status {
  font-size: .56rem;
  padding: .18rem .5rem;
  border-radius: 100px
}

.msess-status.on {
  background: rgba(63, 221, 187, .12);
  color: var(--accent);
  border: 1px solid rgba(63, 221, 187, .25)
}

.msess-status.dep {
  background: rgba(196, 163, 90, .12);
  color: var(--warm);
  border: 1px solid rgba(196, 163, 90, .3)
}

.msess-status.wait {
  background: rgba(238, 234, 222, .06);
  color: var(--muted);
  border: 1px solid var(--border)
}

.msess-work {
  font-size: .68rem;
  color: var(--muted);
  margin-bottom: .2rem
}

.msess-meta {
  display: flex;
  gap: 1rem
}

.msess-meta-item {
  font-size: .6rem;
  color: var(--dim)
}

/* ── FEATURE MOCKUP — ARTIST PORTFOLIO ──────────────── */
.mock-artist {
  background: var(--s1);
  border: 1px solid rgba(238, 234, 222, .1);
  border-radius: 12px;
  padding: 1.4rem;
  width: 310px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, .5);
}

[data-theme="light"] .mock-artist {
  background: var(--s1);
  border-color: rgba(26, 23, 19, .15);
  box-shadow: 0 16px 50px rgba(0, 0, 0, .1)
}

.mart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .9rem;
  padding-bottom: .8rem;
  border-bottom: 1px solid var(--border)
}

.mart-title {
  font-size: .62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted)
}

.mart-period {
  font-size: .62rem;
  color: var(--muted)
}

.mart-rows {
  display: flex;
  flex-direction: column;
  gap: 0
}

.mart-row {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  align-items: center;
  gap: .5rem;
  padding: .65rem 0;
  border-bottom: 1px solid var(--border)
}

.mart-row:last-child {
  border-bottom: none
}

.mart-artist {
  display: flex;
  flex-direction: column
}

.mart-name {
  font-size: .76rem;
  color: var(--text)
}

.mart-styles {
  font-size: .58rem;
  color: var(--dim)
}

.mart-sess {
  font-size: .62rem;
  color: var(--muted)
}

.mart-rev {
  font-family: var(--Fd);
  font-size: .9rem;
  font-weight: 300;
  color: var(--text)
}

.mart-rating {
  font-size: .72rem;
  color: var(--warm)
}

/* ── FEATURE MOCKUP — BILLING ──────────────── */
.mock-tatbill {
  background: var(--s1);
  border: 1px solid rgba(238, 234, 222, .1);
  border-radius: 12px;
  padding: 1.4rem;
  width: 300px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, .5), 0 0 60px rgba(63, 221, 187, .06);
}

[data-theme="light"] .mock-tatbill {
  background: var(--s1);
  border-color: rgba(26, 23, 19, .15);
  box-shadow: 0 16px 50px rgba(0, 0, 0, .1)
}

.mtb-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .9rem;
  padding-bottom: .8rem;
  border-bottom: 1px solid var(--border)
}

.mtb-title {
  font-size: .62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted)
}

.mtb-badge {
  font-size: .6rem;
  color: var(--accent);
  border: 1px solid rgba(63, 221, 187, .3);
  padding: .15rem .55rem;
  border-radius: 100px
}

.mtb-client {
  font-family: var(--Fd);
  font-size: .95rem;
  color: var(--text);
  margin-bottom: .15rem
}

.mtb-date {
  font-size: .62rem;
  color: var(--muted);
  margin-bottom: .8rem
}

.mtb-lines {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  margin-bottom: .5rem
}

.mtb-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .45rem .6rem;
  border-radius: 5px
}

.mtb-line.deposit {
  background: rgba(63, 221, 187, .05);
  border: 1px solid rgba(63, 221, 187, .15)
}

.mtb-line.service {
  background: var(--s2);
  border: 1px solid var(--border)
}

.mtb-line-name {
  font-size: .7rem;
  color: var(--text)
}

.mtb-line-note {
  font-size: .58rem;
  color: var(--muted)
}

.mtb-line-price {
  font-family: var(--Fd);
  font-size: .82rem;
  font-weight: 300
}

.mtb-line.deposit .mtb-line-price {
  color: var(--accent)
}

.mtb-line.service .mtb-line-price {
  color: var(--text)
}

.mtb-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .65rem .6rem;
  background: rgba(63, 221, 187, .06);
  border: 1px solid rgba(63, 221, 187, .2);
  border-radius: 6px
}

.mtb-total-label {
  font-size: .68rem;
  color: var(--accent)
}

.mtb-total-value {
  font-family: var(--Fd);
  font-size: 1.1rem;
  color: var(--text);
  font-weight: 300
}

.estudios-tatuagens-inline-1 {
  color: inherit;
  text-decoration: none;
  opacity: .6;
}

.estudios-tatuagens-inline-2 {
  opacity: .35;
  margin: 0 .2em;
}

.estudios-tatuagens-inline-3 {
  color: var(--accent);
}

.estudios-tatuagens-inline-4 {
  opacity: .65;
}

.estudios-tatuagens-inline-5 {
  color: var(--warm);
}
