/* ============================================================
   TONIMAR DA ABA | LUXURY WELLNESS — Design System
   Paleta: Forest Green + Warm Gold + Ivory Cream
============================================================ */

/* --- Tokens --- */
:root {
  --g-deep:    #1C3829;
  --g-mid:     #2E5A45;
  --g-soft:    #4A7C63;
  --g-mist:    #E8F0EB;
  --gold:      #C8A45C;
  --gold-pale: #F5EDD6;
  --ivory:     #FAF8F4;
  --sand:      #EDE8DE;
  --ink:       #191917;
  --ink-2:     #4A4A46;
  --ink-3:     #8A8A84;
  --white:     #FFFFFF;
  --border:    #E0DBD1;

  --r-sm:  10px;
  --r-md:  18px;
  --r-lg:  28px;
  --r-xl:  40px;

  --shadow-sm:  0 2px 12px rgba(28,56,41,.06);
  --shadow-md:  0 8px 32px rgba(28,56,41,.10);
  --shadow-lg:  0 20px 60px rgba(28,56,41,.14);
  --shadow-gold: 0 8px 28px rgba(200,164,92,.30);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --dur: 0.45s;

  --font-sans: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-display: Georgia, 'Times New Roman', serif;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-sans); color: var(--ink); background: var(--ivory); overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

.wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
}

.hidden { display: none !important; }

/* ============================================================
   CURSOR
============================================================ */
.cursor,
.cursor-follower {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity .3s;
}
.cursor {
  width: 8px; height: 8px;
  background: var(--gold);
  top: -10px; left: -10px;
}
.cursor-follower {
  width: 36px; height: 36px;
  border: 1.5px solid var(--gold);
  top: -10px; left: -10px;
  transition: top .12s var(--ease), left .12s var(--ease), width .25s var(--ease), height .25s var(--ease), opacity .3s;
  opacity: 0.5;
}
body.cursor-hover .cursor-follower {
  width: 56px; height: 56px;
  opacity: 0.3;
}
@media (pointer: coarse) { .cursor, .cursor-follower { display: none; } }

/* ============================================================
   LOADER
============================================================ */
.loader {
  position: fixed; inset: 0;
  background: var(--g-deep);
  display: flex; align-items: center; justify-content: center;
  z-index: 10000;
  transition: opacity .6s var(--ease), visibility .6s;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.loader-leaf { width: 48px; animation: loaderGrow .8s var(--ease-out) both; }
.loader-inner span { color: white; font-size: 1.1rem; font-weight: 600; letter-spacing: .04em; animation: fadeUp .6s .4s both; }

@keyframes loaderGrow { from { transform: scale(0) rotate(-20deg); } to { transform: scale(1) rotate(0); } }

/* ============================================================
   ANIMATIONS
============================================================ */
@keyframes fadeUp   { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeLeft { from { opacity: 0; transform: translateX(28px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeRight{ from { opacity: 0; transform: translateX(-28px); } to { opacity: 1; transform: translateX(0); } }
@keyframes float    { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes spinAnim { to { transform: rotate(360deg); } }
@keyframes lineGrow { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes pulseDot {
  0%,100% { box-shadow: 0 0 0 0 rgba(200,164,92,.5); }
  70% { box-shadow: 0 0 0 8px rgba(200,164,92,0); }
}
@keyframes progressBar { from { width: 0; } to { width: 100%; } }

[data-reveal] { opacity: 0; transform: translateY(32px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal][data-delay="1"] { transition-delay: .12s; }
[data-reveal][data-delay="2"] { transition-delay: .24s; }
[data-reveal][data-delay="3"] { transition-delay: .36s; }
[data-reveal].visible { opacity: 1; transform: none; }

.spin-icon { animation: spinAnim .9s linear infinite; }

/* ============================================================
   TYPOGRAPHY HELPERS
============================================================ */
.label-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.label-tag::before {
  content: '';
  display: block;
  width: 24px; height: 1.5px;
  background: var(--gold);
  flex-shrink: 0;
}
.label-tag-light { color: rgba(255,255,255,.6); }
.label-tag-light::before { background: rgba(255,255,255,.4); }

/* ============================================================
   BUTTONS
============================================================ */
.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold);
  color: var(--g-deep);
  font-size: .93rem; font-weight: 800;
  padding: 15px 30px; border-radius: 100px;
  letter-spacing: .02em;
  box-shadow: var(--shadow-gold);
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.btn-gold:hover { background: #d9b870; transform: translateY(-2px); box-shadow: 0 12px 36px rgba(200,164,92,.40); }

.btn-ghost-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: rgba(255,255,255,.85);
  font-size: .93rem; font-weight: 600;
  padding: 15px 30px; border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,.3);
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.btn-ghost-white:hover { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.08); transform: translateY(-2px); }

.btn-green {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--g-deep);
  color: white;
  font-size: .93rem; font-weight: 700;
  padding: 15px 30px; border-radius: 100px;
  box-shadow: var(--shadow-md);
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.btn-green:hover { background: var(--g-mid); transform: translateY(-2px); }

/* ============================================================
   NAVBAR
============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 22px 0;
  transition: padding var(--dur) var(--ease), background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.navbar.stuck {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
  padding: 14px 0;
}
.nav-inner {
  max-width: 1140px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 1rem; font-weight: 800;
  color: white;
  transition: color var(--dur) var(--ease);
}
.navbar.stuck .nav-logo { color: var(--ink); }
.nav-logo em { font-style: normal; font-weight: 400; }
.logo-leaf { width: 22px; height: 28px; color: var(--gold); flex-shrink: 0; }
.nav-logo-light { color: rgba(255,255,255,.7); }

.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 9px 18px; border-radius: 100px;
  font-size: .88rem; font-weight: 500;
  color: rgba(255,255,255,.8);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.navbar.stuck .nav-link { color: var(--ink-2); }
.nav-link:hover { background: var(--g-mist); color: var(--g-deep); }
.navbar.stuck .nav-link:hover { background: var(--g-mist); }

.nav-cta {
  display: inline-flex; align-items: center;
  background: var(--gold);
  color: var(--g-deep) !important;
  font-size: .88rem; font-weight: 800;
  padding: 10px 22px; border-radius: 100px;
  margin-left: 6px;
  box-shadow: var(--shadow-gold);
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.nav-cta:hover { background: #d9b870; transform: translateY(-1px); }

.burger {
  display: none; flex-direction: column; gap: 6px;
  background: none; border: none; padding: 6px;
}
.burger span {
  display: block; width: 24px; height: 1.5px;
  background: white; border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
  transform-origin: center;
}
.navbar.stuck .burger span { background: var(--ink); }
.burger.open .b1 { transform: translateY(7.5px) rotate(45deg); }
.burger.open .b2 { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================================
   HERO
============================================================ */
.hero { min-height: 100vh; display: flex; flex-direction: column; }

.hero-split {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

.hero-panel { position: relative; overflow: hidden; display: flex; align-items: center; }

.hero-panel-dark {
  background: var(--g-deep);
  padding: 140px 64px 80px;
}
.hero-panel-light {
  background: var(--ivory);
  padding: 140px 64px 80px;
  display: flex; align-items: center; justify-content: center;
}

.panel-texture {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.06) 1px, transparent 0);
  background-size: 28px 28px;
  pointer-events: none;
}

.panel-content { position: relative; z-index: 2; max-width: 520px; }

.eyebrow {
  font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold);
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 28px;
}
.eyebrow::before {
  content: '';
  display: block; width: 32px; height: 1.5px;
  background: var(--gold);
}

.hero-panel-dark h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 4.5vw, 4rem);
  line-height: 1.08;
  color: white;
  margin-bottom: 40px;
  font-weight: 400;
}
.hero-panel-dark h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-panel-dark h1 strong {
  font-family: var(--font-sans);
  font-weight: 900;
  font-style: normal;
  color: white;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.blob-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(200,164,92,.07) 0%, transparent 70%);
  bottom: -150px; right: -150px;
}
.blob-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(28,56,41,.05) 0%, transparent 70%);
  top: -100px; right: -100px;
}

/* Hero card */
.hero-card-wrap { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 16px; width: 100%; max-width: 360px; }

.hero-profile-card {
  background: white;
  border-radius: var(--r-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  animation: float 6s ease-in-out infinite;
}
.profile-avatar {
  width: 88px; height: 88px; border-radius: 50%;
  background: var(--g-mist);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  overflow: hidden;
}
.profile-avatar svg { width: 88px; height: 88px; }
.profile-info { margin-bottom: 16px; }
.profile-info h3 { font-size: 1.05rem; font-weight: 800; color: var(--ink); line-height: 1.2; }
.crp-badge { font-size: .76rem; color: var(--gold); font-weight: 700; margin-top: 3px; display: block; }

.profile-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.profile-tags span {
  font-size: .72rem; font-weight: 700;
  background: var(--g-mist); color: var(--g-deep);
  padding: 5px 12px; border-radius: 100px;
}

.hero-stat-stack {
  background: var(--g-deep);
  border-radius: var(--r-md);
  padding: 22px 26px;
  display: flex; align-items: center; justify-content: space-between;
}
.hero-stat { text-align: center; }
.hero-stat strong { display: block; font-size: 1.5rem; font-weight: 900; color: var(--gold); line-height: 1; }
.hero-stat span { font-size: .72rem; color: rgba(255,255,255,.6); margin-top: 3px; display: block; }
.stat-sep { width: 1px; height: 36px; background: rgba(255,255,255,.12); }

.availability-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: white;
  border: 1px solid var(--border);
  padding: 12px 20px; border-radius: 100px;
  font-size: .82rem; font-weight: 700; color: var(--g-deep);
  box-shadow: var(--shadow-sm);
  align-self: flex-start;
}
.dot-pulse {
  width: 9px; height: 9px; border-radius: 50%;
  background: #22c55e; flex-shrink: 0;
  animation: pulseDot 2s infinite;
}

/* Scroll hint */
.scroll-hint {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,.4); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  animation: fadeUp 1s 2s both;
  z-index: 10;
}
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent); }

/* ============================================================
   SOBRE
============================================================ */
.sobre {
  padding: 120px 0;
  background: var(--white);
}

.sobre-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sobre-quote-card {
  background: var(--g-deep);
  border-radius: var(--r-lg);
  padding: 52px 44px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.sobre-quote-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.qmark {
  font-family: var(--font-display);
  font-size: 6rem; line-height: .6;
  color: var(--gold); opacity: .25;
  margin-bottom: 8px;
}
.sobre-quote-card blockquote {
  font-family: var(--font-display);
  font-size: 1.1rem; line-height: 1.75;
  color: rgba(255,255,255,.88);
  font-style: italic;
  margin-bottom: 20px;
}
.sobre-quote-card cite {
  font-size: .82rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--gold); font-style: normal;
}

.sobre-pill-row { display: flex; flex-wrap: wrap; gap: 10px; }
.tag-pill {
  font-size: .78rem; font-weight: 700;
  background: var(--g-mist); color: var(--g-deep);
  padding: 7px 16px; border-radius: 100px;
  border: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.tag-pill:hover { border-color: var(--g-deep); background: white; }

.sobre-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 22px;
}
.sobre-copy p { font-size: 1rem; line-height: 1.8; color: var(--ink-2); margin-bottom: 18px; }
.sobre-copy .btn-green { margin-top: 10px; }

/* ============================================================
   MANIFESTO
============================================================ */
.manifesto {
  padding: 80px 0;
  background: var(--gold-pale);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.manifesto-inner { text-align: center; }
.manifesto-text {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.7;
  color: var(--g-deep);
  font-weight: 400;
}
.manifesto-text em { font-style: italic; color: var(--g-soft); }

/* ============================================================
   SERVIÇOS
============================================================ */
.servicos { padding: 120px 0; background: var(--ivory); }

.sec-header { margin-bottom: 64px; }
.sec-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
}
.sec-header-light h2 { color: white; }

.servicos-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.svc-item {
  background: white;
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition: background var(--dur) var(--ease);
}
.svc-item:hover { background: var(--g-mist); }
.svc-item.svc-featured { background: var(--g-deep); }
.svc-item.svc-featured:hover { background: var(--g-mid); }

.svc-badge {
  position: absolute;
  top: 24px; right: 24px;
  background: var(--gold);
  color: var(--g-deep);
  font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 100px;
}

.svc-num {
  font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}

.svc-body { flex: 1; }

.svc-icon {
  width: 52px; height: 52px;
  margin-bottom: 20px;
  color: var(--g-deep);
}
.svc-item.svc-featured .svc-icon { color: rgba(255,255,255,.6); }
.svc-icon svg { width: 52px; height: 52px; }

.svc-body h3 {
  font-size: 1.2rem; font-weight: 800;
  color: var(--ink); margin-bottom: 14px; line-height: 1.2;
}
.svc-item.svc-featured .svc-body h3 { color: white; }

.svc-body p { font-size: .92rem; line-height: 1.7; color: var(--ink-2); margin-bottom: 20px; }
.svc-item.svc-featured .svc-body p { color: rgba(255,255,255,.7); }

.svc-body ul { display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }
.svc-body li {
  font-size: .86rem; color: var(--ink-3); padding-left: 18px; position: relative; line-height: 1.4;
}
.svc-body li::before {
  content: '';
  position: absolute; left: 0; top: 7px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}
.svc-item.svc-featured .svc-body li { color: rgba(255,255,255,.6); }
.svc-item.svc-featured .svc-body li::before { background: var(--gold); }

.svc-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .85rem; font-weight: 700;
  color: var(--g-deep);
  border-bottom: 1.5px solid var(--g-mist);
  padding-bottom: 2px;
  transition: gap var(--dur) var(--ease), border-color var(--dur) var(--ease);
  align-self: flex-start; margin-top: auto;
}
.svc-link:hover { gap: 14px; border-color: var(--g-deep); }
.svc-item.svc-featured .svc-link { color: var(--gold); border-color: rgba(200,164,92,.3); }
.svc-item.svc-featured .svc-link:hover { border-color: var(--gold); }

/* ============================================================
   PROCESSO
============================================================ */
.processo {
  padding: 100px 0;
  background: var(--g-deep);
  position: relative;
  overflow: hidden;
}
.processo::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.04) 1px, transparent 0);
  background-size: 32px 32px;
}

.processo-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}

.proc-step {
  padding: 40px 32px;
  border-right: 1px solid rgba(255,255,255,.08);
  position: relative;
}
.proc-step:last-child { border-right: none; }

.proc-circle {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--g-deep);
  font-size: .8rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.proc-line {
  display: none;
}

.proc-step h4 {
  font-size: 1rem; font-weight: 800;
  color: white; margin-bottom: 10px;
}
.proc-step p { font-size: .86rem; line-height: 1.65; color: rgba(255,255,255,.55); }

/* ============================================================
   DEPOIMENTOS
============================================================ */
.depoimentos { padding: 120px 0; background: var(--sand); overflow: hidden; }

.dep-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 48px; flex-wrap: wrap; gap: 20px;
}
.dep-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 400; line-height: 1.25;
  color: var(--ink);
}
.dep-header h2 em { font-style: italic; color: var(--g-soft); }

.dep-nav { display: flex; gap: 10px; }
.dep-arrow {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1.5px solid var(--border);
  background: white; color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), color var(--dur) var(--ease), transform var(--dur) var(--ease);
  box-shadow: var(--shadow-sm);
}
.dep-arrow:hover { background: var(--g-deep); border-color: var(--g-deep); color: white; transform: scale(1.05); }

.dep-viewport { overflow: hidden; border-radius: var(--r-lg); }
.dep-track {
  display: flex; gap: 20px;
  transition: transform .55s var(--ease);
  cursor: grab; user-select: none;
}
.dep-track:active { cursor: grabbing; }

.dep-card {
  flex: 0 0 calc(33.333% - 14px);
  background: white;
  border-radius: var(--r-md);
  padding: 38px 34px;
  border: 1px solid var(--border);
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.dep-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.dep-stars { color: var(--gold); font-size: .95rem; letter-spacing: 3px; margin-bottom: 18px; }

.dep-card > p {
  font-family: var(--font-display);
  font-size: 1rem; line-height: 1.8;
  color: var(--ink-2);
  font-style: italic;
  margin-bottom: 28px;
}

.dep-card footer {
  display: flex; align-items: center; gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.dep-av {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--g-deep), var(--g-soft));
  color: white; font-weight: 800; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.dep-card footer strong { display: block; font-size: .9rem; color: var(--ink); font-weight: 800; }
.dep-card footer span { font-size: .78rem; color: var(--gold); font-weight: 700; }

.dep-progress {
  height: 2px; background: var(--border);
  margin-top: 32px; border-radius: 2px; overflow: hidden;
}
.dep-progress-fill {
  height: 100%; width: 33.333%;
  background: var(--g-deep); border-radius: 2px;
  transition: width .4s var(--ease);
}

/* ============================================================
   CONTATO
============================================================ */
.contato { padding: 120px 0; background: var(--ivory); }

.contato-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 80px; align-items: start;
}

.contato-left h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 400; line-height: 1.2;
  color: var(--ink); margin-bottom: 18px;
}
.contato-left > p { font-size: 1rem; line-height: 1.8; color: var(--ink-2); margin-bottom: 44px; }

.info-list { display: flex; flex-direction: column; gap: 22px; margin-bottom: 40px; }
.info-item { display: flex; align-items: center; gap: 16px; }
.info-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  background: var(--g-mist);
  display: flex; align-items: center; justify-content: center;
  color: var(--g-deep); flex-shrink: 0;
}
.info-item strong { display: block; font-size: .85rem; font-weight: 800; color: var(--ink); margin-bottom: 2px; }
.info-item span { font-size: .87rem; color: var(--ink-2); }

.horarios {
  background: var(--g-deep);
  border-radius: var(--r-md); padding: 28px 30px;
}
.horarios h4 { font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.horario-row {
  display: flex; justify-content: space-between;
  font-size: .9rem; color: rgba(255,255,255,.7);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.horario-row:last-child { border-bottom: none; }

/* Form */
.contato-right {
  background: white;
  border-radius: var(--r-xl);
  padding: 52px 48px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.form h3 {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 400;
  color: var(--ink); margin-bottom: 32px;
}

.form-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.field { position: relative; margin-bottom: 18px; }

.field input,
.field select,
.field textarea {
  width: 100%; padding: 22px 18px 10px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-family: var(--font-sans); font-size: .93rem;
  color: var(--ink); background: var(--ivory);
  outline: none;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  appearance: none;
}

.field label {
  position: absolute; left: 18px; top: 16px;
  font-size: .87rem; color: var(--ink-3); font-weight: 500;
  transition: transform var(--dur) var(--ease), font-size var(--dur) var(--ease), color var(--dur) var(--ease);
  pointer-events: none;
  transform-origin: left top;
}

/* Float label up */
.field input:focus ~ label,
.field input:not(:placeholder-shown) ~ label,
.field textarea:focus ~ label,
.field textarea:not(:placeholder-shown) ~ label,
.field select:focus ~ label,
.field select:valid ~ label {
  transform: translateY(-9px) scale(.78);
  color: var(--g-deep);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--g-deep);
  background: white;
  box-shadow: 0 0 0 4px rgba(28,56,41,.07);
}

.field input.err, .field select.err { border-color: #dc2626; box-shadow: 0 0 0 4px rgba(220,38,38,.08); }
.ferr { display: block; font-size: .78rem; color: #dc2626; font-weight: 600; margin-top: 5px; padding-left: 4px; }

.field textarea { resize: vertical; min-height: 110px; padding-top: 22px; }

.field-select::after {
  content: '';
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  width: 0; height: 0;
  border-left: 5px solid transparent; border-right: 5px solid transparent;
  border-top: 5px solid var(--ink-3);
  pointer-events: none;
}

.btn-submit {
  width: 100%; padding: 18px;
  background: var(--g-deep); color: white;
  border: none; border-radius: var(--r-sm);
  font-size: 1rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  box-shadow: var(--shadow-md);
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.btn-submit:hover { background: var(--g-mid); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-submit:disabled { opacity: .7; cursor: not-allowed; transform: none; }

.form-ok {
  display: flex; align-items: center; gap: 10px;
  background: #f0fdf4; border: 1px solid #bbf7d0;
  color: #15803d; padding: 14px 18px;
  border-radius: var(--r-sm); font-size: .9rem; font-weight: 600;
  margin-top: 14px;
}

.form-send-error {
  display: flex; align-items: flex-start; gap: 10px;
  background: #fef2f2; border: 1px solid #fecaca;
  color: #991b1b; padding: 14px 18px;
  border-radius: var(--r-sm); font-size: .88rem; line-height: 1.55;
  margin-top: 14px; flex-wrap: wrap;
}
.form-send-error span { flex: 1; min-width: 0; }

.err-retry {
  display: inline-block; margin-top: 8px; width: 100%;
  background: none; border: 1.5px solid #dc2626;
  color: #dc2626; font-size: .82rem; font-weight: 700;
  padding: 8px 14px; border-radius: 8px; cursor: pointer;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.err-retry:hover { background: #dc2626; color: white; }

/* ============================================================
   FOOTER
============================================================ */
.footer { background: #111810; padding: 80px 0 0; }

.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 56px; padding-bottom: 60px;
}

.footer-brand .nav-logo { color: rgba(255,255,255,.7); margin-bottom: 18px; }
.footer-brand p { font-size: .9rem; line-height: 1.75; color: rgba(255,255,255,.4); max-width: 280px; margin-bottom: 16px; }
.crp-footer { font-size: .75rem; color: var(--gold); font-weight: 700; letter-spacing: .06em; }

.footer-col h5 {
  font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.35); margin-bottom: 22px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: .9rem; color: rgba(255,255,255,.5); transition: color .3s; }
.footer-col a:hover { color: white; }

.footer-bar {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 22px 0;
}
.footer-bar .wrap {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .8rem; color: rgba(255,255,255,.25);
  flex-wrap: wrap; gap: 8px;
}

/* ============================================================
   WHATSAPP FLOAT
============================================================ */
.wa-float {
  position: fixed; bottom: 30px; right: 30px;
  width: 60px; height: 60px;
  background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 28px rgba(37,211,102,.45);
  z-index: 400;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.wa-float::before {
  content: '';
  position: absolute; width: 100%; height: 100%; border-radius: 50%;
  background: #25D366; animation: pulseDot 2s infinite;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 10px 40px rgba(37,211,102,.55); }

.wa-tooltip {
  position: absolute; right: 70px; top: 50%; transform: translateY(-50%);
  background: #1a1a1a; color: white;
  font-size: .78rem; font-weight: 700; white-space: nowrap;
  padding: 7px 14px; border-radius: 8px;
  opacity: 0; pointer-events: none;
  transition: opacity .25s;
}
.wa-float:hover .wa-tooltip { opacity: 1; }

/* ============================================================
   AGENDAMENTO ONLINE
============================================================ */
.agendamento {
  padding: 120px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.agendamento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.agendamento-info h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 18px;
}
.agendamento-info h2 em { font-style: italic; color: var(--g-soft); }

.agendamento-info > p {
  font-size: 1rem; line-height: 1.8;
  color: var(--ink-2); margin-bottom: 36px;
}
.agendamento-info > p strong { color: var(--g-deep); }

/* Steps */
.agenda-steps {
  list-style: none;
  display: flex; flex-direction: column; gap: 18px;
  margin-bottom: 40px;
}
.agenda-step { display: flex; align-items: flex-start; gap: 16px; }

.astep-circle {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--g-mist); color: var(--g-deep);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border: 1.5px solid rgba(28,56,41,.12);
  transition: background var(--dur) var(--ease);
}
.agenda-step:hover .astep-circle { background: var(--gold-pale); }

.astep-text strong { display: block; font-size: .95rem; font-weight: 800; color: var(--ink); margin-bottom: 2px; }
.astep-text span   { font-size: .85rem; color: var(--ink-3); line-height: 1.5; }

/* Actions */
.agenda-actions { display: flex; flex-direction: column; gap: 18px; align-items: flex-start; }

.gcal-badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .82rem; font-weight: 600; color: var(--ink-3);
  background: var(--ivory); border: 1px solid var(--border);
  padding: 9px 16px; border-radius: 100px;
}

/* ── Calendar Mock ── */
.agendamento-visual { position: relative; }

.cal-mock {
  background: white;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  padding: 28px 24px;
  position: relative; overflow: hidden;
  transition: box-shadow var(--dur) var(--ease);
}
.cal-mock:hover { box-shadow: 0 28px 72px rgba(28,56,41,.18); }

.cal-mock-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px;
}
.cal-month-name { font-size: .95rem; font-weight: 800; color: var(--ink); text-transform: capitalize; }

.cal-mock-btns { display: flex; gap: 4px; }
.cal-arrow-btn {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid var(--border);
  background: none; font-size: 1rem; color: var(--ink-3);
  cursor: default;
  display: flex; align-items: center; justify-content: center;
}

.cal-week-row {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: 2px; margin-bottom: 6px; text-align: center;
}
.cal-week-row b { font-size: .68rem; font-weight: 700; letter-spacing: .04em; color: var(--ink-3); }

.cal-days-grid {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: 3px; margin-bottom: 20px;
}
.cd {
  aspect-ratio: 1; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 500; color: var(--ink-3);
  transition: background .15s;
}
.cd.avail    { color: var(--g-deep); font-weight: 700; }
.cd.today    { background: var(--g-deep); color: white; font-weight: 800; }
.cd.selected { background: var(--gold); color: var(--g-deep); font-weight: 900; }
.cd.past, .cd.weekend { opacity: .28; }

/* Time slots */
.cal-slots-wrap { border-top: 1px solid var(--border); padding-top: 16px; margin-bottom: 14px; }
.cal-slots-title {
  font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 10px;
}
.cal-time-slots { display: flex; flex-wrap: wrap; gap: 7px; }
.ct-slot {
  padding: 6px 12px; border-radius: 7px;
  border: 1.5px solid var(--border);
  font-size: .78rem; font-weight: 700;
  color: var(--g-deep); background: var(--g-mist);
  cursor: default;
}
.ct-slot-on { background: var(--gold); border-color: var(--gold); color: var(--g-deep); }

.cal-powered {
  display: flex; align-items: center; gap: 7px;
  font-size: .72rem; color: var(--ink-3);
}

/* Hover overlay */
.cal-hover-overlay {
  position: absolute; inset: 0;
  background: rgba(28,56,41,.78);
  backdrop-filter: blur(3px);
  color: white; border: none; border-radius: var(--r-lg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  font-size: .95rem; font-weight: 700;
  opacity: 0;
  transition: opacity .3s var(--ease);
  cursor: pointer;
}
.cal-mock:hover .cal-hover-overlay,
.cal-mock:focus-within .cal-hover-overlay { opacity: 1; }
.cal-hover-overlay:focus-visible { opacity: 1; outline: 2px solid var(--gold); outline-offset: -4px; }

@media (max-width: 900px) {
  .agendamento-grid { grid-template-columns: 1fr; gap: 40px; }
  .agendamento-visual { max-width: 420px; }
}

/* ============================================================
   ACCESSIBILITY & INTERACTION (SKILL RULES)
============================================================ */

/* Skip link */
.skip-link {
  position: absolute;
  top: -100px; left: 16px;
  background: var(--g-deep); color: white;
  padding: 10px 20px; border-radius: 0 0 8px 8px;
  font-weight: 700; font-size: .9rem;
  z-index: 9999;
  transition: top .25s;
}
.skip-link:focus { top: 0; }

/* Focus rings — visible 2px offset ring on all interactive elements */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}
button:focus-visible, a:focus-visible { border-radius: 6px; }

/* Cursor pointer on all interactive elements */
a, button, [role="button"], select, label[for] { cursor: pointer; }

/* Touch action: remove 300ms delay */
a, button, [role="button"] { touch-action: manipulation; }

/* Minimum touch target 44×44px */
.dep-arrow, .dep-dot, .burger, .nav-toggle, .wa-float { min-width: 44px; min-height: 44px; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-profile-card { animation: none; }
  .wa-float::before { animation: none; }
  .dot-pulse { animation: none; }
  .scroll-line { animation: none; }
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .hero-split { grid-template-columns: 1fr; }
  .hero-panel-dark { padding: 140px 32px 60px; }
  .hero-panel-light { padding: 40px 32px 80px; justify-content: flex-start; }
  .hero-panel-dark h1 { font-size: clamp(2.4rem, 5vw, 3.2rem); }
  .sobre-layout { grid-template-columns: 1fr; gap: 48px; }
  .servicos-list { grid-template-columns: 1fr; }
  .contato-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
  .processo-track { grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,.08); }
  .proc-step { border-right: none; }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: 280px;
    background: white;
    flex-direction: column; justify-content: center;
    padding: 32px;
    box-shadow: -8px 0 40px rgba(0,0,0,.12);
    transform: translateX(100%);
    transition: transform .4s var(--ease);
    z-index: 490;
    gap: 6px;
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-link { color: var(--ink-2) !important; font-size: 1rem; padding: 12px 18px; }
  .nav-cta { margin-left: 0; margin-top: 12px; justify-content: center; }
  .burger { display: flex; z-index: 510; position: relative; }
  .navbar.stuck .burger span { background: var(--ink); }
  .navbar:not(.stuck) .burger span { background: white; }

  .dep-card { flex: 0 0 85vw; }
  .form-duo { grid-template-columns: 1fr; }
  .contato-right { padding: 32px 24px; }
  .dep-header { flex-direction: column; align-items: flex-start; }
  .processo-track { grid-template-columns: 1fr; }
  .proc-step { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .proc-step:last-child { border-bottom: none; }
}

@media (max-width: 560px) {
  .wrap { padding: 0 20px; }
  .hero-panel-dark, .hero-panel-light { padding-left: 24px; padding-right: 24px; }
  .hero-stat-stack { padding: 18px 16px; gap: 10px; }
  .hero-stat strong { font-size: 1.2rem; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .svc-item { padding: 36px 28px; }
  .sobre-quote-card { padding: 36px 28px; }
  .sobre-layout { gap: 36px; }
}
