/* ───────────────────────────────────────────────────────────
   INSTITUTO ELORA — Estética Avançada & Saúde Integrativa
   Design system: luxurious gold/bronze on cream + black
   ─────────────────────────────────────────────────────────── */

:root {
  /* Brand colors */
  --gold-light: #D9C37A;
  --gold:       #C5A364;
  --gold-dark:  #A8884B;
  --bronze:     #7A6347;
  --bronze-deep:#52402A;
  --black:      #0B0907;
  --ink:        #1A1612;
  --gray-light: #DBDCDF;
  --gray:       #B7B1A6;
  --cream:      #F2EEEB;
  --cream-warm: #EAE2D6;
  --white:      #FFFFFF;

  /* Type */
  --f-display: "Cormorant Garamond", "Times New Roman", serif;
  --f-script:  "Italianno", "Cormorant Garamond", cursive;
  --f-body:    "Averia Serif Libre", Georgia, serif;
  --f-ui:      "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Layout */
  --container: 1320px;
  --gutter: clamp(20px, 4vw, 56px);

  /* Gradients */
  --grad-gold: linear-gradient(135deg, #E8D69A 0%, #C5A364 38%, #8E7240 70%, #D9C37A 100%);
  --grad-gold-soft: linear-gradient(135deg, #F4E9C7 0%, #D9C37A 50%, #B89556 100%);
  --grad-dark: linear-gradient(180deg, #0B0907 0%, #1A1612 100%);
  --grad-cream: linear-gradient(180deg, #F8F4EE 0%, #EAE2D6 100%);
}

/* ────────── Reset ────────── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--cream);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, video, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--gold); color: var(--black); }

/* ────────── Type primitives ────────── */
.script {
  font-family: var(--f-script);
  font-weight: 400;
  font-style: italic;
  letter-spacing: .01em;
  line-height: 1;
}
.display { font-family: var(--f-display); font-weight: 300; letter-spacing: -.005em; line-height: 1.02; }
.eyebrow {
  font-family: var(--f-ui);
  font-size: 11px;
  letter-spacing: .32em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--bronze);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: currentColor;
}
.eyebrow.center::after {
  content: "";
  width: 28px; height: 1px;
  background: currentColor;
}

.gold-text {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ────────── Reveal animations ────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s cubic-bezier(.2,.6,.2,1), transform 1s cubic-bezier(.2,.6,.2,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }
.reveal[data-delay="4"] { transition-delay: .4s; }
.reveal[data-delay="5"] { transition-delay: .5s; }
.reveal[data-delay="6"] { transition-delay: .6s; }

/* ────────── Container ────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(80px, 12vw, 160px) 0; position: relative; }

/* ────────── Buttons ────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 17px 32px;
  font-family: var(--f-ui);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: all .4s ease;
  position: relative;
  overflow: hidden;
}
.btn-gold {
  background: var(--grad-gold);
  color: var(--black);
  box-shadow: 0 8px 24px -8px rgba(122, 99, 71, .5), inset 0 1px 0 rgba(255,255,255,.4);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -10px rgba(122, 99, 71, .6), inset 0 1px 0 rgba(255,255,255,.5);
}
.btn-outline {
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
}
.btn-ghost-light {
  border: 1px solid rgba(255,255,255,.4);
  color: var(--cream);
}
.btn-ghost-light:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}
.btn .arrow {
  width: 14px; height: 14px;
  transition: transform .4s ease;
}
.btn:hover .arrow { transform: translateX(4px); }

/* ────────── NAV ────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 80;
  padding: 22px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .4s ease, padding .4s ease, backdrop-filter .4s ease;
}
.nav.scrolled {
  background: rgba(11, 9, 7, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding-top: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(197, 163, 100, .15);
}
.nav-logo {
  display: flex;
  align-items: center;
  height: 48px;
}
.nav-logo img { height: 100%; width: auto; }
.nav-logo .light { display: block; }
.nav-logo .dark { display: none; }
.nav.scrolled .nav-logo .light { display: block; }
.nav.scrolled .nav-logo .dark { display: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
  font-family: var(--f-ui);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--cream);
}
.nav-links a {
  position: relative;
  padding: 4px 0;
  transition: color .3s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold-light);
  transition: width .35s ease;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-family: var(--f-ui);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: 12px 22px;
  border: 1px solid var(--gold-light);
  color: var(--gold-light);
  border-radius: 999px;
  transition: all .3s ease;
}
.nav-cta:hover {
  background: var(--gold-light);
  color: var(--black);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav-chat {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  transition: color .3s ease;
}
.nav-chat svg { width: 20px; height: 20px; }
.nav-chat:hover { color: var(--cream); }

.nav-burger {
  display: none;
  width: 32px; height: 24px;
  position: relative;
  z-index: 200;
}
.nav-mobile-overlay { display: none; }
.nav-burger span {
  position: absolute;
  left: 0; right: 0;
  height: 1.5px;
  background: var(--cream);
  transition: all .4s ease;
}
.nav-burger span:nth-child(1) { top: 4px; }
.nav-burger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-burger span:nth-child(3) { bottom: 4px; }
.nav-burger.open span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* ────────── HERO ────────── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-media .desktop { display: block; }
.hero-media .mobile { display: none; }
.hero-overlay {
  position: absolute; inset: 0;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--cream);
  width: 100%;
  min-height: 100%;
  padding: 0 var(--gutter) clamp(28px, 5vw, 72px);
  max-width: 1100px;
}
.hero-symbol {
  width: 70px;
  margin: 0 auto 28px;
  opacity: 0;
  transform: scale(.7);
  animation: heroSymbol 1.6s cubic-bezier(.2,.6,.2,1) .2s forwards;
  filter: drop-shadow(0 4px 24px rgba(217, 195, 122, .4));
}
@keyframes heroSymbol {
  to { opacity: 1; transform: scale(1); }
}
.hero-eyebrow {
  font-family: var(--f-ui);
  font-size: 12px;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 1.4s cubic-bezier(.2,.6,.2,1) .5s forwards;
}
.hero-title {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(48px, 8vw, 112px);
  line-height: .98;
  letter-spacing: -.01em;
  margin-bottom: 36px;
  color: var(--cream);
}
.hero-title .line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1.4s cubic-bezier(.2,.6,.2,1) forwards;
}
.hero-title .line:nth-child(1) { animation-delay: .7s; }
.hero-title .line:nth-child(2) { animation-delay: .85s; }
.hero-title .line:nth-child(3) { animation-delay: 1s; }
.hero-title .script {
  display: inline-block;
  font-family: var(--f-script);
  font-size: 1.4em;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  font-weight: 400;
  padding: 0 .04em .15em 0;
  margin: 0 .1em;
  line-height: .7;
}
.hero-sub {
  font-size: 18px;
  font-family: var(--f-body);
  font-style: italic;
  color: rgba(242, 238, 235, .88);
  max-width: 580px;
  margin: 0 auto 44px;
  opacity: 0;
  animation: fadeUp 1.4s cubic-bezier(.2,.6,.2,1) 1.2s forwards;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap-reverse;
  margin-top: auto;
  opacity: 0;
  animation: fadeUp 1.4s cubic-bezier(.2,.6,.2,1) 3.7s forwards;
}
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

.hero-meta {
  position: absolute;
  bottom: 36px;
  left: 0; right: 0;
  z-index: 3;
  padding: 0 var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  color: rgba(242, 238, 235, .7);
  font-family: var(--f-ui);
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 1.4s cubic-bezier(.2,.6,.2,1) 1.6s forwards;
}
.scroll-cue {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.scroll-cue .line-down {
  width: 1px; height: 40px;
  background: linear-gradient(180deg, transparent, var(--gold-light));
  position: relative;
  overflow: hidden;
}
.scroll-cue .line-down::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--cream);
  animation: scrollDown 2.4s ease-in-out infinite;
}
@keyframes scrollDown {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* ────────── MARQUEE ────────── */
.marquee {
  background: var(--black);
  color: var(--bronze);
  padding: 1px ;
  overflow: hidden;
  border-block: 1px solid rgba(197, 163, 100, .15);
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 30px;
  animation: marqueeScroll 60s linear infinite;
  width: max-content;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 30px;
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(28px, 4vw, 48px);
  color: var(--gold);
  white-space: nowrap;
}
.marquee-item .dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes marqueeScroll {
  to { transform: translateX(-50%); }
}

/* ────────── FILOSOFIA (about) ────────── */
.filosofia {
  background: var(--cream);
  background-image: url('assets/pattern-gold.png');
  background-size: 480px;
  background-position: right -100px top -80px;
  background-repeat: repeat;
  background-blend-mode: multiply;
  position: relative;
}
.filosofia::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, var(--cream) 35%, rgba(242, 238, 235, .85) 60%, rgba(242, 238, 235, .6) 100%);
  pointer-events: none;
}
.filosofia .container { position: relative; z-index: 2; }
.filo-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 8vw, 120px);
  align-items: center;
}
.filo-art {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  background: var(--bronze);
}
.filo-art img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 8s ease;
}
.filo-art:hover img { transform: scale(1.06); }
.filo-art .frame {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(217, 195, 122, .65);
  pointer-events: none;
  z-index: 2;
}
.filo-art .stamp {
  position: absolute;
  bottom: 28px; left: 28px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(11, 9, 7, .72);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(217, 195, 122, .3);
  padding: 14px 20px;
  border-radius: 999px;
  color: var(--cream);
}
.filo-art .stamp img { width: 22px; }
.filo-art .stamp .lbl {
  font-family: var(--f-ui);
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.filo-art .stamp .num {
  font-family: var(--f-display);
  font-size: 18px;
  color: var(--cream);
}

.filo-copy .eyebrow { margin-bottom: 26px; }
.filo-copy h2 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(38px, 5.4vw, 68px);
  line-height: 1.04;
  letter-spacing: -.01em;
  color: var(--ink);
  margin-bottom: 32px;
}
.filo-copy h2 .script {
  display: block;
  font-family: var(--f-script);
  font-size: 1.5em;
  font-style: italic;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: .8;
  margin-top: -.1em;
}
.filo-copy p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--bronze);
  margin-bottom: 22px;
  max-width: 540px;
}
.filo-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 44px;
  padding-top: 36px;
  border-top: 1px solid rgba(122, 99, 71, .2);
}
.filo-pillar {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.filo-pillar .n {
  font-family: var(--f-display);
  font-size: 44px;
  font-weight: 300;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.filo-pillar .l {
  font-family: var(--f-ui);
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--bronze);
}
.filo-pillar .d {
  font-size: 14px;
  color: var(--bronze-deep);
  line-height: 1.5;
  margin-top: 8px;
}

/* ────────── SECTION HEADER ────────── */
.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 80px;
}
.section-head .eyebrow { margin-bottom: 26px; }
.section-head h2 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(40px, 5.6vw, 74px);
  line-height: 1.04;
  letter-spacing: -.01em;
  margin-bottom: 24px;
}
.section-head h2 .script {
  font-family: var(--f-script);
  font-size: 1.45em;
  font-style: italic;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 400;
  line-height: .7;
  display: inline-block;
  padding: 0 .04em .15em 0;
}
.section-head p {
  color: var(--bronze);
  font-size: 17px;
  line-height: 1.7;
  font-style: italic;
}

/* ────────── SERVIÇOS ────────── */
.servicos {
  background: var(--grad-dark);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.servicos::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('assets/pattern-gold.png');
  background-size: 380px;
  opacity: .04;
  pointer-events: none;
}
.servicos .section-head h2 { color: var(--cream); }
.servicos .section-head p { color: rgba(242, 238, 235, .65); }
.servicos .section-head .eyebrow { color: var(--gold-light); }
.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.serv-card {
  position: relative;
  padding: 38px 32px 36px;
  border: 1px solid rgba(197, 163, 100, .2);
  background: linear-gradient(180deg, rgba(197, 163, 100, .05), rgba(197, 163, 100, .015));
  border-radius: 4px;
  transition: all .5s ease;
  overflow: hidden;
  cursor: pointer;
  text-align: center;
}
.serv-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity .5s ease;
}
.serv-card:hover {
  border-color: rgba(217, 195, 122, .55);
  transform: translateY(-6px);
  background: linear-gradient(180deg, rgba(197, 163, 100, .12), rgba(197, 163, 100, .03));
}
.serv-card:hover::before { opacity: 1; }
.serv-card .num {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: .1em;
}
.serv-card .icon-wrap {
  width: 56px; height: 56px;
  margin: 22px auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
}
.serv-card .icon-wrap svg { width: 100%; height: 100%; }
.serv-card h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.15;
  margin-bottom: 14px;
  color: var(--cream);
}
.serv-card p {
  font-size: 14.5px;
  color: rgba(242, 238, 235, .65);
  line-height: 1.65;
  margin-bottom: 26px;
}
.serv-card .price {
  font-family: var(--f-display);
  font-style: italic;
  color: var(--gold-light);
  font-size: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(197, 163, 100, .2);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.serv-card .price small {
  font-family: var(--f-ui);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--bronze);
  font-style: normal;
}
.serv-card .book-link {
  font-family: var(--f-ui);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
}
.serv-card .book-link::after {
  content: "→";
  transition: transform .3s ease;
}
.serv-card:hover .book-link::after { transform: translateX(4px); }

.serv-extras {
  margin-top: 56px;
  padding: 38px 44px;
  border: 1px solid rgba(197, 163, 100, .2);
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  background: linear-gradient(135deg, rgba(122, 99, 71, .15), rgba(0,0,0,0));
}
.serv-extras .lt {
  display: flex;
  align-items: center;
  gap: 22px;
}
.serv-extras img {
  width: 64px;
  filter: drop-shadow(0 4px 12px rgba(217, 195, 122, .3));
}
.serv-extras .lt-text h4 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 24px;
  color: var(--cream);
  margin-bottom: 6px;
}
.serv-extras .lt-text p {
  color: rgba(242, 238, 235, .65);
  font-size: 14px;
  font-style: italic;
}

/* ────────── EXPERIÊNCIA / IMAGE GRID ────────── */
.experiencia { background: var(--cream); }
.exp-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 320px 320px;
  gap: 16px;
  margin-bottom: 80px;
}
.exp-tile {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: var(--bronze);
}
.exp-tile.big { grid-row: span 2; }
.exp-tile.tall { grid-row: auto; }
.exp-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s ease; }
.exp-tile:hover img { transform: scale(1.05); }
.exp-tile .label {
  position: absolute;
  bottom: 22px; left: 22px; right: 22px;
  z-index: 2;
  color: var(--cream);
  font-family: var(--f-display);
  font-style: italic;
  font-size: 22px;
}
.exp-tile .label small {
  display: block;
  font-family: var(--f-ui);
  font-style: normal;
  font-size: 10px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 4px;
}
.exp-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(11, 9, 7, .65));
  z-index: 1;
}

.exp-quote {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 30px;
  align-items: center;
  padding: 40px;
  background: var(--white);
  border: 1px solid rgba(197, 163, 100, .25);
  border-radius: 4px;
}
.exp-quote .marker {
  font-family: var(--f-display);
  font-size: 88px;
  line-height: .7;
  color: var(--gold);
  font-style: italic;
}
.exp-quote .qbody {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.4;
  color: var(--ink);
}
.exp-quote .qbody footer {
  font-family: var(--f-ui);
  font-style: normal;
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-top: 14px;
}

/* ────────── EQUIPE ────────── */
.equipe {
  background: var(--grad-cream);
  position: relative;
  overflow: hidden;
}
.equipe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.eq-card {
  position: relative;
  background: var(--white);
  border-radius: 6px;
  padding: 36px 28px 32px;
  text-align: center;
  border: 1px solid rgba(197, 163, 100, .2);
  transition: all .5s ease;
}
.eq-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -25px rgba(122, 99, 71, .3);
  border-color: rgba(197, 163, 100, .5);
}
.eq-avatar {
  width: 140px; height: 140px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--grad-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.eq-avatar::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 50%;
}
.eq-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  opacity: .95;
}
.eq-card .role {
  font-family: var(--f-ui);
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 8px;
}
.eq-card h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 26px;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.1;
}
.eq-card .crm {
  font-family: var(--f-ui);
  font-size: 11px;
  color: var(--bronze);
  letter-spacing: .12em;
  margin-bottom: 22px;
}
.eq-card .bio {
  font-size: 14px;
  color: var(--bronze);
  line-height: 1.65;
  margin-bottom: 22px;
  font-style: italic;
}
.eq-card .specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}
.eq-card .specs span {
  font-family: var(--f-ui);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid rgba(122, 99, 71, .25);
  border-radius: 999px;
  color: var(--bronze);
}

/* ────────── DEPOIMENTOS ────────── */
.depoimentos {
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.depoimentos::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(197, 163, 100, .12), transparent 50%);
}
.depoimentos .container { position: relative; z-index: 1; }
.depoimentos .section-head h2 { color: var(--cream); }
.depoimentos .section-head .eyebrow { color: var(--gold-light); }
.depoimentos .section-head p { color: rgba(242, 238, 235, .65); }
.dep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.dep-card {
  padding: 36px 32px;
  border: 1px solid rgba(197, 163, 100, .2);
  border-radius: 4px;
  background: linear-gradient(180deg, rgba(255,255,255,.025), transparent);
  transition: all .4s ease;
}
.dep-card:hover {
  border-color: rgba(217, 195, 122, .5);
  transform: translateY(-4px);
}
.dep-card .stars {
  color: var(--gold-light);
  letter-spacing: .15em;
  margin-bottom: 22px;
  font-size: 13px;
}
.dep-card .qbody {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 19px;
  line-height: 1.55;
  color: var(--cream);
  margin-bottom: 28px;
}
.dep-card .meta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid rgba(197, 163, 100, .15);
}
.dep-card .meta .av {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--grad-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-size: 18px;
  color: var(--black);
  font-style: italic;
}
.dep-card .meta .who {
  font-family: var(--f-display);
  font-size: 17px;
  color: var(--cream);
}
.dep-card .meta .who small {
  display: block;
  font-family: var(--f-ui);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-top: 4px;
}

/* ────────── AGENDAMENTO (booking) ────────── */
.agendamento {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.agendamento::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('assets/pattern-gold.png');
  background-size: 420px;
  opacity: .18;
  pointer-events: none;
}
.agendamento .container { position: relative; z-index: 1; }

.book-shell {
  background: var(--white);
  border-radius: 6px;
  border: 1px solid rgba(197, 163, 100, .2);
  box-shadow: 0 40px 80px -40px rgba(82, 64, 42, .3);
  overflow: hidden;
  display: grid;
  grid-template-columns: 340px 1fr;
  min-height: 620px;
}

.book-side {
  background: var(--ink) url('assets/pattern-gold.png');
  background-size: 220px;
  background-blend-mode: overlay;
  color: var(--cream);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
}
.book-side::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,9,7,.92), rgba(11,9,7,.78));
}
.book-side > * { position: relative; z-index: 1; }
.book-side .brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 44px;
}
.book-side .brand img { width: 38px; }
.book-side .brand .nm {
  font-family: var(--f-display);
  font-size: 18px;
  color: var(--gold-light);
  letter-spacing: .12em;
}
.book-side .brand .nm small {
  display: block;
  font-family: var(--f-ui);
  font-size: 9px;
  letter-spacing: .2em;
  color: var(--bronze);
  margin-top: 2px;
}
.book-side h3 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 30px;
  line-height: 1.15;
  margin-bottom: 14px;
}
.book-side h3 .script {
  font-family: var(--f-script);
  font-size: 1.45em;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  display: inline-block;
  line-height: .7;
}
.book-side .sub {
  font-size: 14px;
  color: rgba(242, 238, 235, .7);
  font-style: italic;
  margin-bottom: 44px;
  line-height: 1.6;
}

.book-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.book-steps li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  padding: 14px 0;
  font-family: var(--f-ui);
  font-size: 13px;
  color: rgba(242, 238, 235, .5);
  transition: color .3s ease;
  position: relative;
}
.book-steps li::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 40px;
  bottom: -4px;
  width: 1px;
  background: rgba(197, 163, 100, .2);
}
.book-steps li:last-child::before { display: none; }
.book-steps .dot {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(197, 163, 100, .4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 14px;
  color: rgba(217, 195, 122, .6);
  background: rgba(11,9,7,.6);
  transition: all .35s ease;
  position: relative;
  z-index: 1;
}
.book-steps .lbl small {
  display: block;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 3px;
}
.book-steps .lbl strong {
  font-weight: 500;
}
.book-steps li.active {
  color: var(--cream);
}
.book-steps li.active .dot {
  background: var(--grad-gold);
  color: var(--black);
  border-color: var(--gold-light);
  box-shadow: 0 0 0 4px rgba(197, 163, 100, .15);
}
.book-steps li.done .dot {
  background: rgba(197, 163, 100, .15);
  color: var(--gold-light);
  border-color: rgba(197, 163, 100, .4);
}
.book-steps li.done .dot::before {
  content: "✓";
}
.book-steps li.done .dot { font-size: 14px; }

.book-side .foot {
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid rgba(197, 163, 100, .15);
  font-size: 12px;
  color: rgba(242, 238, 235, .55);
  line-height: 1.6;
}
.book-side .foot strong { color: var(--gold-light); font-weight: 500; }

/* Booking content area */
.book-main {
  padding: 48px 56px;
  display: flex;
  flex-direction: column;
  min-height: 620px;
}
.book-panel { display: none; flex: 1; flex-direction: column; animation: panelIn .5s ease; }
.book-panel.active { display: flex; }
@keyframes panelIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

.book-panel .ph {
  margin-bottom: 32px;
}
.book-panel .ph .num {
  font-family: var(--f-display);
  font-style: italic;
  color: var(--gold);
  font-size: 14px;
  letter-spacing: .16em;
}
.book-panel .ph h2 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.1;
  margin: 8px 0 10px;
  color: var(--ink);
}
.book-panel .ph p {
  color: var(--bronze);
  font-size: 15px;
  font-style: italic;
}

/* Service select grid */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  flex: 1;
}
.svc-opt {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid rgba(122, 99, 71, .2);
  border-radius: 4px;
  cursor: pointer;
  transition: all .3s ease;
  background: var(--white);
  text-align: left;
  width: 100%;
}
.svc-opt:hover {
  border-color: var(--gold);
  background: rgba(217, 195, 122, .04);
}
.svc-opt.sel {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(217, 195, 122, .15), rgba(217, 195, 122, .04));
  box-shadow: 0 6px 18px -8px rgba(122, 99, 71, .3);
}
.svc-opt .ic {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--cream-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  flex-shrink: 0;
  transition: all .3s ease;
}
.svc-opt.sel .ic {
  background: var(--grad-gold);
  color: var(--black);
}
.svc-opt .ic svg { width: 22px; height: 22px; }
.svc-opt .meta { flex: 1; min-width: 0; }
.svc-opt .meta strong {
  display: block;
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 17px;
  color: var(--ink);
  margin-bottom: 2px;
}
.svc-opt .meta small {
  font-family: var(--f-ui);
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--bronze);
}
.svc-opt .price {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 18px;
  color: var(--gold-dark);
}

/* Pro picker */
.pro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  flex: 1;
}
.pro-opt {
  padding: 22px 18px;
  border: 1px solid rgba(122, 99, 71, .2);
  border-radius: 4px;
  cursor: pointer;
  transition: all .3s ease;
  background: var(--white);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pro-opt:hover { border-color: var(--gold); }
.pro-opt.sel {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(217, 195, 122, .12), rgba(217, 195, 122, .02));
  box-shadow: 0 6px 18px -8px rgba(122, 99, 71, .3);
}
.pro-opt .ava {
  width: 64px; height: 64px;
  border-radius: 50%;
  margin-bottom: 14px;
  overflow: hidden;
  display: block;
}
.pro-opt .ava img { width: 100%; height: 100%; object-fit: cover; }
.pro-opt strong {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 17px;
  color: var(--ink);
  margin-bottom: 4px;
}
.pro-opt .role-mini {
  font-family: var(--f-ui);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 8px;
}
.pro-opt .specs-mini {
  font-size: 12px;
  color: var(--bronze);
  font-style: italic;
}

/* Calendar */
.cal-wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  flex: 1;
}
.cal {
  background: var(--white);
  border: 1px solid rgba(122, 99, 71, .2);
  border-radius: 4px;
  padding: 24px;
}
.cal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.cal-head .lab {
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--ink);
  text-transform: capitalize;
}
.cal-nav {
  display: flex;
  gap: 8px;
}
.cal-nav button {
  width: 32px; height: 32px;
  border: 1px solid rgba(122, 99, 71, .25);
  border-radius: 50%;
  color: var(--bronze);
  transition: all .3s;
}
.cal-nav button:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.cal-dow {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-family: var(--f-ui);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--bronze);
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(122, 99, 71, .15);
  margin-bottom: 8px;
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}
.cal-cell {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-family: var(--f-ui);
  font-size: 14px;
  color: var(--ink);
  transition: all .25s ease;
  position: relative;
}
.cal-cell.empty { color: transparent; pointer-events: none; }
.cal-cell.past { color: rgba(0,0,0,.2); pointer-events: none; text-decoration: line-through; }
.cal-cell.disabled { color: rgba(0,0,0,.2); pointer-events: none; }
.cal-cell:not(.empty):not(.past):not(.disabled) { cursor: pointer; }
.cal-cell:not(.empty):not(.past):not(.disabled):hover {
  background: rgba(217, 195, 122, .25);
}
.cal-cell.today {
  font-weight: 600;
  color: var(--gold-dark);
}
.cal-cell.today::after {
  content: "";
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
}
.cal-cell.sel {
  background: var(--grad-gold);
  color: var(--black);
  font-weight: 500;
  box-shadow: 0 6px 14px -4px rgba(122, 99, 71, .35);
}
.cal-cell.sel::after { background: var(--black); }

.slot-panel {
  background: var(--white);
  border: 1px solid rgba(122, 99, 71, .2);
  border-radius: 4px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}
.slot-panel h4 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 18px;
  margin-bottom: 4px;
  color: var(--ink);
}
.slot-panel .day-sel {
  font-family: var(--f-display);
  font-style: italic;
  color: var(--gold-dark);
  font-size: 14px;
  margin-bottom: 18px;
}
.slot-period {
  font-family: var(--f-ui);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--bronze);
  margin: 14px 0 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.slot-period::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(122, 99, 71, .15);
}
.slot-period:first-of-type { margin-top: 0; }
.slot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.slot {
  padding: 10px 6px;
  border: 1px solid rgba(122, 99, 71, .2);
  border-radius: 4px;
  text-align: center;
  font-family: var(--f-ui);
  font-size: 13px;
  color: var(--ink);
  cursor: pointer;
  transition: all .25s ease;
  background: var(--white);
}
.slot:hover { border-color: var(--gold); color: var(--gold-dark); }
.slot.sel {
  background: var(--grad-gold);
  color: var(--black);
  border-color: var(--gold);
  font-weight: 600;
}
.slot.taken {
  color: rgba(0,0,0,.25);
  text-decoration: line-through;
  pointer-events: none;
  background: rgba(0,0,0,.02);
}
.slot-empty {
  text-align: center;
  font-style: italic;
  color: var(--bronze);
  font-size: 14px;
  padding: 40px 0;
}

/* Form */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 18px;
  flex: 1;
  align-content: start;
}
.form-grid .full { grid-column: 1 / -1; }
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field label {
  font-family: var(--f-ui);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 500;
}
.field input, .field select, .field textarea {
  padding: 13px 16px;
  border: 1px solid rgba(122, 99, 71, .25);
  border-radius: 4px;
  background: var(--white);
  font-family: var(--f-ui);
  font-size: 14px;
  color: var(--ink);
  transition: all .25s ease;
  outline: none;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(217, 195, 122, .15);
}
.field textarea { resize: vertical; min-height: 80px; }
.field.err input, .field.err select { border-color: #C0563E; }
.field .err-msg {
  font-family: var(--f-ui);
  font-size: 11px;
  color: #C0563E;
  display: none;
}
.field.err .err-msg { display: block; }
.field .hint {
  font-family: var(--f-ui);
  font-size: 11px;
  color: var(--bronze);
  font-style: italic;
}
.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--f-ui);
  font-size: 13px;
  color: var(--bronze);
  line-height: 1.5;
  cursor: pointer;
}
.checkbox input {
  appearance: none;
  width: 18px; height: 18px;
  border: 1px solid rgba(122, 99, 71, .35);
  border-radius: 3px;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
  margin-top: 2px;
  transition: all .25s;
}
.checkbox input:checked {
  background: var(--grad-gold);
  border-color: var(--gold);
}
.checkbox input:checked::after {
  content: "✓";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 12px;
  font-weight: 700;
}

/* Review summary */
.review {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.review-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 24px;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(122, 99, 71, .2);
  align-items: center;
}
.review-row .k {
  font-family: var(--f-ui);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--bronze);
}
.review-row .v {
  font-family: var(--f-display);
  font-size: 19px;
  color: var(--ink);
}
.review-row .v small {
  display: block;
  font-family: var(--f-ui);
  font-size: 12px;
  color: var(--bronze);
  margin-top: 4px;
  font-style: italic;
}
.review .total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
  padding: 22px 24px;
  background: linear-gradient(135deg, var(--ink), #2A2218);
  color: var(--cream);
  border-radius: 4px;
}
.review .total .lab {
  font-family: var(--f-ui);
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.review .total .amt {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 32px;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Success */
.success {
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
}
.success .check {
  width: 96px; height: 96px;
  margin: 0 auto 28px;
  border-radius: 50%;
  background: var(--grad-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: pop .6s cubic-bezier(.2,.8,.2,1.2);
}
.success .check::before {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  opacity: .5;
}
.success .check svg { width: 44px; color: var(--ink); }
@keyframes pop { from { transform: scale(0); } }
.success h2 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 38px;
  margin-bottom: 12px;
}
.success h2 .script {
  font-family: var(--f-script);
  font-style: italic;
  font-size: 1.4em;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  line-height: .7;
}
.success p {
  color: var(--bronze);
  font-style: italic;
  margin-bottom: 28px;
  max-width: 440px;
}
.success .conf {
  font-family: var(--f-ui);
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--bronze);
  padding: 14px 28px;
  border: 1px dashed rgba(122, 99, 71, .4);
  border-radius: 999px;
  margin-bottom: 32px;
}
.success .conf strong {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 16px;
  color: var(--gold-dark);
  letter-spacing: .04em;
  text-transform: none;
  margin-left: 10px;
}

/* Book nav */
.book-nav {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(122, 99, 71, .15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
.book-nav .summary {
  font-family: var(--f-ui);
  font-size: 12px;
  color: var(--bronze);
}
.book-nav .summary strong {
  color: var(--ink);
  font-family: var(--f-display);
  font-style: italic;
  font-size: 16px;
  margin-left: 8px;
  font-weight: 400;
}
.book-nav .btns {
  display: flex;
  gap: 10px;
}
.book-nav .btn-back {
  font-family: var(--f-ui);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: 14px 22px;
  border-radius: 999px;
  color: var(--bronze);
  border: 1px solid rgba(122, 99, 71, .25);
}
.book-nav .btn-back:hover { color: var(--ink); border-color: var(--bronze); }
.book-nav .btn-next {
  font-family: var(--f-ui);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 999px;
  background: var(--grad-gold);
  color: var(--black);
  font-weight: 500;
  box-shadow: 0 6px 18px -8px rgba(122, 99, 71, .4);
  transition: all .3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.book-nav .btn-next:hover { transform: translateY(-2px); box-shadow: 0 12px 28px -10px rgba(122, 99, 71, .55); }
.book-nav .btn-next:disabled, .book-nav .btn-next.disabled {
  opacity: .35;
  cursor: not-allowed;
  pointer-events: none;
}

/* ────────── CONTATO ────────── */
.contato { background: var(--cream); }
.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(197, 163, 100, .25);
  background: var(--white);
}
.contato-info {
  padding: clamp(40px, 5vw, 64px);
}
.contato-info h3 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 12px;
  line-height: 1.05;
}
.contato-info h3 .script {
  font-family: var(--f-script);
  font-style: italic;
  font-size: 1.4em;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  line-height: .7;
}
.contato-info > p {
  color: var(--bronze);
  font-style: italic;
  margin-bottom: 32px;
}
.info-rows {
  display: grid;
  gap: 22px;
  margin-bottom: 36px;
}
.info-row {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
}
.info-row .ic {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--cream-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
}
.info-row .ic svg { width: 18px; }
.info-row .lbl small {
  display: block;
  font-family: var(--f-ui);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 4px;
}
.info-row .lbl strong {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 17px;
  color: var(--ink);
  line-height: 1.4;
}
.hours-table {
  border-top: 1px solid rgba(122, 99, 71, .15);
  padding-top: 22px;
}
.hours-table h4 {
  font-family: var(--f-ui);
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 14px;
}
.hours-table .row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-family: var(--f-ui);
  font-size: 13px;
  color: var(--ink);
  border-bottom: 1px dashed rgba(122, 99, 71, .12);
}
.hours-table .row:last-child { border-bottom: 0; }
.hours-table .row.closed { color: var(--bronze); font-style: italic; }

.contato-map {
  background: var(--ink) url('assets/pattern-gold.png');
  background-size: 240px;
  background-blend-mode: overlay;
  min-height: 540px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contato-map::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,9,7,.85), rgba(11,9,7,.7));
}
.contato-map iframe {
  position: relative;
  z-index: 1;
  width: 100%; height: 100%;
  border: 0;
  filter: grayscale(1) invert(.92) contrast(.85);
  mix-blend-mode: luminosity;
  opacity: .8;
}
.map-card {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  z-index: 2;
  background: rgba(11,9,7,.92);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(197, 163, 100, .3);
  border-radius: 6px;
  padding: 22px 24px;
  color: var(--cream);
  display: flex;
  align-items: center;
  gap: 16px;
}
.map-card img { width: 32px; }
.map-card .t {
  font-family: var(--f-display);
  font-size: 17px;
  color: var(--cream);
}
.map-card .t small {
  display: block;
  font-family: var(--f-ui);
  font-size: 11px;
  color: var(--gold-light);
  letter-spacing: .12em;
  margin-top: 2px;
}
.map-card .arrow {
  margin-left: auto;
  color: var(--gold-light);
}

/* ────────── FOOTER ────────── */
.footer {
  background: var(--black);
  color: rgba(242, 238, 235, .6);
  padding: 80px var(--gutter) 32px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('assets/pattern-gold.png');
  background-size: 380px;
  opacity: .04;
  pointer-events: none;
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(197, 163, 100, .15);
  margin-bottom: 32px;
}
.footer-top .col-brand img { height: 56px; margin-bottom: 22px; }
.footer-top .col-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 22px; }
.footer-top .col-brand .socials {
  display: flex;
  gap: 10px;
}
.footer-top .col-brand .socials a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(197, 163, 100, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  transition: all .3s;
}
.footer-top .col-brand .socials a:hover {
  background: var(--gold-light);
  color: var(--black);
  border-color: var(--gold-light);
}
.footer-top .col h5 {
  font-family: var(--f-ui);
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
}
.footer-top .col ul { list-style: none; display: grid; gap: 10px; }
.footer-top .col ul a {
  font-size: 14px;
  color: rgba(242, 238, 235, .6);
  transition: color .3s;
  display: inline-block;
}
.footer-top .col ul a:hover { color: var(--gold-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  font-family: var(--f-ui);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.footer-bottom a { color: var(--gold-light); }

/* WhatsApp floating button */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--grad-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  box-shadow: 0 12px 32px -8px rgba(122, 99, 71, .5);
  transition: transform .3s;
  color: var(--black);
}
.wa-float:hover { transform: scale(1.1) translateY(-2px); }
.wa-float svg { width: 28px; }
.wa-float::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  opacity: .5;
  animation: pulseRing 2.4s ease-out infinite;
}
@keyframes pulseRing {
  0% { transform: scale(.9); opacity: .6; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ────────── RESPONSIVE ────────── */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-burger { display: block; }
  .nav-mobile-overlay {
    display: flex;
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 90;
    padding: 100px var(--gutter) 40px;
    transform: translateX(100%);
    transition: transform .5s cubic-bezier(.2,.6,.2,1);
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .nav-mobile-overlay.open { transform: translateX(0); }
  .nav-mobile-overlay a {
    font-family: var(--f-display);
    font-style: italic;
    font-size: 32px;
    color: var(--cream);
    border-bottom: 1px solid rgba(197, 163, 100, .15);
    padding-bottom: 16px;
    text-align: center;
    width: 100%;
  }
  .nav-mobile-overlay a:last-child {
    border-bottom: 0;
    align-self: center;
    background: var(--grad-gold);
    color: var(--black);
    padding: 16px 32px;
    border-radius: 999px;
    font-style: normal;
    font-size: 14px;
    margin-top: 12px;
  }

  .filo-grid { grid-template-columns: 1fr; gap: 50px; }
  .filo-art { max-width: 500px; }
  .servicos-grid { grid-template-columns: repeat(2, 1fr); }
  .equipe-grid { grid-template-columns: repeat(2, 1fr); }
  .dep-grid { grid-template-columns: 1fr; }
  .exp-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .exp-tile { aspect-ratio: 4/3; height: auto; }
  .exp-tile.big, .exp-tile.tall { grid-row: auto; }

  .book-shell { grid-template-columns: 1fr; }
  .book-side { padding: 32px 28px; }
  .book-side h3 { font-size: 24px; }
  .book-side .sub { margin-bottom: 28px; }
  .book-steps {
    flex-direction: row;
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }
  .book-steps li {
    grid-template-columns: 32px auto;
    gap: 10px;
    padding: 8px 0;
    flex-shrink: 0;
    min-width: max-content;
  }
  .book-steps li::before { display: none; }
  .book-steps .dot { width: 32px; height: 32px; font-size: 12px; }
  .book-steps .lbl { display: none; }
  .book-steps li.active .lbl { display: block; }
  .book-side .foot { display: none; }
  .book-main { padding: 32px 26px; }
  .cal-wrap { grid-template-columns: 1fr; }

  .contato-grid { grid-template-columns: 1fr; }
  .contato-map { min-height: 360px; order: -1; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 720px) {
  .hero-media .desktop { display: none; }
  .hero-media .mobile { display: block; }
  .hero-title { font-size: clamp(40px, 11vw, 64px); }
  .hero-meta .meta-l { display: none; }
  .servicos-grid { grid-template-columns: 1fr; }
  .equipe-grid { grid-template-columns: 1fr; }
  .exp-grid { grid-template-columns: 1fr; gap: 12px; }
  .exp-tile { aspect-ratio: 16/10; }
  .svc-grid, .pro-grid, .form-grid { grid-template-columns: 1fr; }
  .form-grid .full { grid-column: auto; }
  .svc-opt .price { font-size: 15px; }
  .review-row { grid-template-columns: 1fr; gap: 6px; }
  .marquee-item { font-size: 26px; gap: 32px; }
  .marquee-track { gap: 32px; }
  .filo-pillars { grid-template-columns: 1fr; gap: 18px; }
  .serv-extras { padding: 28px 24px; flex-direction: column; align-items: flex-start; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .nav { padding: 16px var(--gutter); }
  .nav-logo { height: 38px; }
  .book-main { padding: 28px 20px; }
  .book-side { padding: 24px 22px; }
  .book-nav { flex-direction: column; align-items: stretch; }
  .book-nav .summary { text-align: center; }
  .book-nav .btns { justify-content: space-between; }
  .wa-float { width: 54px; height: 54px; bottom: 18px; right: 18px; }
  .wa-float svg { width: 24px; }
  .map-card { padding: 16px 18px; }
  .map-card .t { font-size: 15px; }

  /* ── Centralização mobile ── */

  /* Filosofia */
  .filo-copy { text-align: center; }
  .filo-copy .eyebrow { justify-content: center; }
  .filo-copy p { max-width: 100%; }
  .filo-pillar { align-items: center; text-align: center; }

  /* Cards de serviços */
  .serv-card { text-align: center; }
  .serv-card .icon-wrap { margin-left: auto; margin-right: auto; }
  .serv-card .price { justify-content: center; gap: 12px; }
  .serv-card .book-link { justify-content: center; }

  /* Cards de depoimentos */
  .dep-card { text-align: center; }
  .dep-card .meta { justify-content: center; }

  /* Serviços extras */
  .serv-extras { align-items: center; text-align: center; }
  .serv-extras .lt { flex-direction: column; align-items: center; gap: 14px; }
  .serv-extras .lt-text { text-align: center; }
  .serv-extras .btn { align-self: center; }

  /* Contato */
  .contato-info { text-align: center; }
  .contato-info h3 { text-align: center; }
  .contato-info > p { text-align: center; }
  .info-row { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .info-row .ic { margin: 0 auto; }
  .hours-table { text-align: center; }
  .hours-table .row { justify-content: center; gap: 16px; }

  /* Citação experiência */
  .exp-quote { grid-template-columns: 1fr; text-align: center; }
  .exp-quote .marker { display: none; }

  /* Footer */
  .footer-top .col { text-align: center; }
  .footer-top .col-brand { text-align: center; }
  .footer-top .col-brand .socials { justify-content: center; }
  .footer-bottom { text-align: center; justify-content: center; }
}

/* ─── Chat Panel ─────────────────────────────────────────── */
.chat-panel {
  position: fixed;
  top: 76px; right: var(--gutter);
  width: 320px;
  background: var(--ink);
  border: 1px solid rgba(197, 163, 100, .25);
  border-radius: 14px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .6);
  z-index: 79;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(-10px) scale(.97);
  opacity: 0;
  pointer-events: none;
  transition: transform .3s cubic-bezier(.22,.68,0,1.2), opacity .25s ease;
}
.chat-panel.open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: all;
}
.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 18px;
  border-bottom: 1px solid rgba(197, 163, 100, .15);
}
.chat-title {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--f-ui);
  font-size: 13px;
  letter-spacing: .07em;
  color: var(--cream);
  font-weight: 600;
}
.chat-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #5ccf85;
  flex-shrink: 0;
}
.chat-close {
  display: flex;
  align-items: center;
  color: var(--gray);
  transition: color .2s ease;
}
.chat-close:hover { color: var(--cream); }
.chat-close svg { width: 16px; height: 16px; }
.chat-body {
  padding: 22px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.chat-google {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 11px 16px;
  background: #fff;
  border-radius: 8px;
  font-family: var(--f-ui);
  font-size: 13px;
  font-weight: 600;
  color: #3c4043;
  transition: background .2s ease;
}
.chat-google:hover { background: #f5f5f5; }
.chat-or {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0;
  font-family: var(--f-ui);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(242, 238, 235, .3);
}
.chat-or::before, .chat-or::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(197, 163, 100, .15);
}
.chat-login {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.chat-field {
  width: 100%;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(197, 163, 100, .2);
  border-radius: 8px;
  padding: 11px 14px;
  font-family: var(--f-ui);
  font-size: 13px;
  color: var(--cream);
  outline: none;
  transition: border-color .2s ease;
}
.chat-field::placeholder { color: rgba(242, 238, 235, .3); }
.chat-field:focus { border-color: rgba(197, 163, 100, .5); }
.chat-submit {
  width: 100%;
  margin-top: 4px;
  padding: 11px;
  background: var(--grad-gold);
  border-radius: 8px;
  font-family: var(--f-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--black);
  transition: opacity .2s ease;
}
.chat-submit:hover { opacity: .85; }
@media (max-width: 480px) {
  .chat-panel { right: 12px; left: 12px; width: auto; top: 68px; }
}

/* ─── Login Modal ────────────────────────────────────────── */
.login-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(11, 9, 7, .72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.login-modal.open {
  opacity: 1;
  pointer-events: all;
}
.login-modal-box {
  position: relative;
  background: var(--ink);
  border: 1px solid rgba(197, 163, 100, .25);
  border-radius: 16px;
  padding: 40px 36px 36px;
  width: 100%;
  max-width: 380px;
  margin: 16px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  transform: translateY(16px) scale(.97);
  transition: transform .35s cubic-bezier(.22,.68,0,1.2);
}
.login-modal.open .login-modal-box {
  transform: translateY(0) scale(1);
}
.login-modal-close {
  position: absolute;
  top: 14px; right: 16px;
  display: flex;
  align-items: center;
  color: var(--gray);
  transition: color .2s ease;
}
.login-modal-close:hover { color: var(--cream); }
.login-modal-close svg { width: 16px; height: 16px; }
.login-modal-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.login-modal-title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 26px;
  color: var(--cream);
  text-align: center;
  margin-bottom: 6px;
}
.login-modal-sub {
  font-family: var(--f-ui);
  font-size: 13px;
  color: rgba(242, 238, 235, .45);
  text-align: center;
  margin-bottom: 24px;
}
.login-modal-box .chat-or { margin: 16px 0; }
.login-modal-box .chat-login { gap: 10px; }
.login-modal-box .chat-google { margin-bottom: 0; }

/* ─── Chat Tabs (auth panel & login modal) ─────────────── */
.chat-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 18px;
  background: rgba(255, 255, 255, .05);
  border-radius: 8px;
  padding: 3px;
}
.chat-tab {
  flex: 1;
  padding: 8px 10px;
  font-family: var(--f-ui);
  font-size: 12.5px;
  font-weight: 600;
  border-radius: 6px;
  color: rgba(242, 238, 235, .45);
  transition: background .2s, color .2s;
  letter-spacing: .04em;
}
.chat-tab.active {
  background: rgba(197, 163, 100, .18);
  color: var(--gold);
}
.chat-error {
  background: rgba(231, 76, 60, .1);
  border: 1px solid rgba(231, 76, 60, .3);
  border-radius: 6px;
  padding: 9px 13px;
  font-size: 12.5px;
  font-family: var(--f-ui);
  color: #e74c3c;
  margin-bottom: 12px;
}

/* ─── Chat User Bar (logged-in state) ──────────────────── */
.chat-user-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(197, 163, 100, .12);
  background: rgba(255, 255, 255, .03);
}
.chat-user-av {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  font-family: var(--f-ui);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.chat-user-info {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}
.chat-user-name {
  display: block;
  font-family: var(--f-ui);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--cream);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.chat-user-sub {
  display: block;
  font-family: var(--f-ui);
  font-size: 11px;
  color: rgba(242, 238, 235, .35);
}
.chat-logout-btn {
  color: rgba(242, 238, 235, .3);
  padding: 5px;
  border-radius: 5px;
  transition: color .2s, background .2s;
  flex-shrink: 0;
}
.chat-logout-btn:hover {
  color: #e74c3c;
  background: rgba(231, 76, 60, .1);
}

/* ─── Chat Messages (client chat UI) ───────────────────── */
.chat-msgs {
  flex: 1;
  overflow-y: auto;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  min-height: 200px;
  max-height: 280px;
}
.chat-compose {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  padding: 10px 16px 14px;
  border-top: 1px solid rgba(197, 163, 100, .1);
}
.chat-compose textarea {
  flex: 1;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(197, 163, 100, .2);
  border-radius: 8px;
  padding: 9px 12px;
  font-family: var(--f-ui);
  font-size: 13px;
  color: var(--cream);
  outline: none;
  resize: none;
  min-height: 38px;
  max-height: 80px;
  line-height: 1.4;
  transition: border-color .2s;
}
.chat-compose textarea::placeholder { color: rgba(242, 238, 235, .25); }
.chat-compose textarea:focus { border-color: rgba(197, 163, 100, .45); }
.chat-send {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--grad-gold);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: opacity .2s, transform .1s;
}
.chat-send:hover { opacity: .85; }
.chat-send:active { transform: scale(.9); }

/* Chat panel: make body scrollable when showing forms with many fields */
.chat-body { overflow-y: auto; max-height: calc(100vh - 120px); }

/* Login modal: make box scrollable for register form */
.login-modal-box { max-height: 92vh; overflow-y: auto; }
.login-modal-box form { display: flex; flex-direction: column; gap: 10px; }
.login-modal-box .chat-tabs { margin-bottom: 16px; }
