/* ==========================================================================
   Daniela Magalhães — Acupuntura
   Design: clean, claro, moderno. Lexend + cartões com micro-interações.
   ========================================================================== */

:root {
  /* Marca */
  --violet: #5b34c7;
  --violet-strong: #3d29d4;
  --violet-deep: #391672;
  --violet-soft: #f1edfd;
  --violet-softer: #f8f6fe;
  --plum: #442a3f;
  --sand: #d6a08c;
  --sand-deep: #a86c58;
  --sand-soft: #fdf3ef;

  /* Neutros */
  --white: #ffffff;
  --paper: #f4f0fb;
  --paper-warm: #faf4f1;
  --ink: #1c1526;
  --muted: #6c6480;
  --line: #e6e0f3;
  --line-strong: #d8cfeb;

  /* Papéis */
  --bg: #fbf9ff;
  --bg-alt: var(--paper);

  --font: "Lexend", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1200px;
  --r-sm: 14px;
  --r-md: 20px;
  --r-lg: 28px;
  --r-xl: 40px;

  --shadow-xs: 0 1px 2px rgba(28, 21, 38, .04);
  --shadow-sm: 0 4px 16px -6px rgba(57, 22, 114, .10);
  --shadow-md: 0 18px 40px -18px rgba(57, 22, 114, .20);
  --shadow-lg: 0 34px 70px -30px rgba(57, 22, 114, .30);

  --ease: cubic-bezier(.22, 1, .36, 1);
  --dur: .5s;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
:focus-visible { outline: 2px solid var(--violet-strong); outline-offset: 3px; border-radius: 6px; }
section { position: relative; }

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

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

/* ---------- Tipografia ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -.025em;
  color: var(--ink);
}
h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
h3 { font-size: 1.18rem; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  padding: .42em 1em .42em .8em;
  border-radius: 999px;
  background: var(--violet-soft);
  color: var(--violet);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.kicker::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
}
.kicker.eyebrow-on-dark { background: rgba(255,255,255,.12); color: #fff; }

.section-head { max-width: 620px; margin-bottom: clamp(2.5rem, 5vw, 3.75rem); }
.section-head h2 { margin-top: 1.1rem; }
.section-head p { margin-top: .9rem; color: var(--muted); font-size: 1.03rem; }
.section-head.center { margin-inline: auto; text-align: center; }

.pad-section { padding: clamp(4.5rem, 9vw, 7.5rem) 0; }

/* ---------- Botões ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  padding: .92em 1.7em;
  border-radius: 999px;
  font-size: .94rem;
  font-weight: 600;
  letter-spacing: -.01em;
  white-space: nowrap;
  background: var(--violet-strong);
  color: #fff;
  box-shadow: 0 10px 24px -12px rgba(61, 41, 212, .6);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background-color .3s ease, color .3s ease, border-color .3s ease;
  overflow: hidden;
  isolation: isolate;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, var(--violet-strong), #7a52ea);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 32px -12px rgba(61, 41, 212, .55); }
.btn:hover::before { opacity: 1; }
.btn:active { transform: translateY(0); }
.btn svg { width: 17px; height: 17px; flex: none; transition: transform var(--dur) var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn-accent { background: var(--sand); color: #3b2118; box-shadow: 0 10px 24px -12px rgba(168, 108, 88, .55); }
.btn-accent::before { background: linear-gradient(120deg, var(--sand), #e5b6a4); }
.btn-accent:hover { box-shadow: 0 16px 32px -12px rgba(168, 108, 88, .5); }

.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line-strong); box-shadow: none; }
.btn-ghost::before { display: none; }
.btn-ghost:hover { border-color: var(--violet-strong); color: var(--violet-strong); background: var(--violet-softer); box-shadow: none; }

.btn-ghost-dark { background: rgba(255,255,255,.08); color: #fff; border: 1.5px solid rgba(255,255,255,.22); box-shadow: none; }
.btn-ghost-dark::before { display: none; }
.btn-ghost-dark:hover { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.5); box-shadow: none; }

.btn-sm { padding: .68em 1.3em; font-size: .86rem; }
.btn-block { width: 100%; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .45em;
  font-size: .9rem;
  font-weight: 600;
  color: var(--violet-strong);
}
.link-arrow svg { width: 16px; height: 16px; transition: transform var(--dur) var(--ease); }
.link-arrow:hover { color: #128c4a; }
.link-arrow:hover svg { transform: scale(1.12); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 18px 0;
  transition: padding .35s var(--ease), background-color .35s var(--ease), box-shadow .35s var(--ease);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.site-header.is-scrolled {
  padding: 7px 0;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  box-shadow: 0 1px 0 var(--line), 0 16px 30px -28px rgba(28,21,38,.4);
}

.brand { position: relative; display: block; }
.brand img { height: clamp(48px, 6vw, 66px); width: auto; }
.brand .logo-dark { position: absolute; inset: 0; opacity: 0; transition: opacity .35s var(--ease); }
.site-header.is-scrolled .brand .logo-light { opacity: 0; }
.site-header.is-scrolled .brand .logo-dark { opacity: 1; }
.brand .logo-light { transition: opacity .35s var(--ease); }

.nav-desktop { display: none; }
.nav-desktop ul { display: flex; align-items: center; gap: .35rem; }
.nav-desktop a {
  position: relative;
  display: block;
  padding: .5rem .95rem;
  border-radius: 999px;
  font-size: .92rem;
  font-weight: 500;
  color: rgba(255,255,255,.82);
  transition: color .3s ease, background-color .3s ease;
}
.nav-desktop a:hover { background: rgba(255,255,255,.14); color: #fff; }
.nav-desktop a.is-active { background: rgba(255,255,255,.16); color: #fff; }
.site-header.is-scrolled .nav-desktop a { color: var(--ink); }
.site-header.is-scrolled .nav-desktop a:hover,
.site-header.is-scrolled .nav-desktop a.is-active { background: var(--violet-soft); color: var(--violet-strong); }

.header-actions { display: flex; align-items: center; gap: .75rem; }
.header-cta { display: none; }

.nav-toggle {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.12);
  color: #fff;
  transition: background-color .3s ease, border-color .3s ease, color .3s ease;
}
.nav-toggle:hover { background: rgba(255,255,255,.2); }
.site-header.is-scrolled .nav-toggle { border-color: var(--line); background: rgba(255,255,255,.7); color: var(--ink); }
.site-header.is-scrolled .nav-toggle:hover { background: var(--violet-soft); border-color: var(--line-strong); }
.nav-toggle.is-open { border-color: var(--line); background: var(--white); color: var(--ink); }
.nav-toggle svg { width: 21px; height: 21px; }
.nav-toggle .icon-x { display: none; }
.nav-toggle.is-open .icon-menu { display: none; }
.nav-toggle.is-open .icon-x { display: block; }

.mobile-panel {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--white);
  padding: 96px 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s;
}
.mobile-panel.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-panel ul { display: flex; flex-direction: column; }
.mobile-panel a {
  display: block;
  padding: 1rem .25rem;
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -.02em;
  border-bottom: 1px solid var(--line);
  transition: color .3s ease, padding-left .3s var(--ease);
}
.mobile-panel a:hover { color: var(--violet-strong); padding-left: .6rem; }
.mobile-foot { margin-top: auto; display: flex; flex-direction: column; gap: .9rem; }
.mobile-contact { color: var(--muted); font-size: .92rem; text-align: center; }
body.nav-open { overflow: hidden; }
body.nav-open .site-header .logo-light { opacity: 0; }
body.nav-open .site-header .logo-dark { opacity: 1; }

@media (min-width: 980px) {
  .nav-desktop { display: block; }
  .header-cta { display: inline-flex; }
  .nav-toggle { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: min(94svh, 900px);
  padding: clamp(9rem, 18vw, 12rem) 0 clamp(2.5rem, 5vw, 3.5rem);
  background: var(--violet-deep);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: -3; }
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 38% 40%;
  transform: scaleX(-1) scale(1.04);
  animation: hero-drift 22s ease-in-out infinite alternate;
}
@keyframes hero-drift {
  from { transform: scaleX(-1) scale(1.04) translate3d(0, 0, 0); }
  to { transform: scaleX(-1) scale(1.11) translate3d(-1.5%, -1%, 0); }
}
.hero-veil {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(100deg, rgba(28,10,62,.94) 0%, rgba(38,15,84,.86) 38%, rgba(57,22,114,.55) 66%, rgba(57,22,114,.28) 100%),
    linear-gradient(0deg, rgba(20,8,44,.85) 0%, transparent 46%);
}
.hero-orb {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}
.hero-orb-a {
  width: 40vw; height: 40vw;
  max-width: 520px; max-height: 520px;
  top: -8%; right: -6%;
  background: radial-gradient(circle, rgba(214,160,140,.5), transparent 70%);
}
.hero-orb-b {
  width: 34vw; height: 34vw;
  max-width: 440px; max-height: 440px;
  bottom: -14%; left: -8%;
  background: radial-gradient(circle, rgba(122,82,234,.55), transparent 70%);
}

.hero .container { position: relative; z-index: 1; }
.hero-copy { max-width: 780px; }
.hero .kicker { backdrop-filter: blur(8px); }
.hero-title {
  margin-top: 1.5rem;
  font-size: clamp(2.5rem, 6.4vw, 4.6rem);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: 1.03;
  color: #fff;
  text-wrap: balance;
}
.hero-title em {
  font-style: normal;
  font-weight: 600;
  background: linear-gradient(96deg, #efdcd3 0%, var(--sand) 45%, #c9a5ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lede {
  margin-top: 1.5rem;
  max-width: 54ch;
  font-size: clamp(1rem, 1.5vw, 1.14rem);
  color: rgba(255,255,255,.78);
}
.hero-actions { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: .85rem; }

.hero-trust {
  margin-top: 1.9rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .6rem;
  font-size: .87rem;
  color: rgba(255,255,255,.7);
}
.hero-stars { display: inline-flex; gap: 2px; color: #ffc75a; }
.hero-stars svg { width: 15px; height: 15px; fill: currentColor; }

.hero-stats {
  margin-top: clamp(3rem, 7vw, 4.5rem);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  border-radius: var(--r-md);
  overflow: hidden;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(14px);
}
.stat {
  padding: 1.35rem 1.25rem;
  background: rgba(30,12,64,.42);
  transition: background-color var(--dur) var(--ease);
}
.stat:hover { background: rgba(30,12,64,.15); }
.stat strong {
  display: block;
  font-size: clamp(1.4rem, 2.6vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -.035em;
  color: #fff;
}
.stat span { display: block; margin-top: .15rem; font-size: .79rem; line-height: 1.35; color: rgba(255,255,255,.62); }

.hero-glow, .meridian-svg, .dot-field, .scroll-cue,
.hero-visual, .hero-visual-ring { display: none; }

@media (min-width: 760px) {
  .hero-stats { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 759px) {
  .hero-veil {
    background:
      linear-gradient(180deg, rgba(28,10,62,.86) 0%, rgba(38,15,84,.78) 45%, rgba(24,9,52,.92) 100%);
  }
  .hero-bg img { object-position: 50% 32%; }
}

/* ---------- Reveals ---------- */
[data-reveal], [data-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
[data-reveal].is-visible, [data-reveal-stagger].is-visible > * { opacity: 1; transform: none; }
[data-reveal-stagger].is-visible > *:nth-child(2) { transition-delay: .08s; }
[data-reveal-stagger].is-visible > *:nth-child(3) { transition-delay: .16s; }
[data-reveal-stagger].is-visible > *:nth-child(4) { transition-delay: .24s; }
[data-reveal-stagger].is-visible > *:nth-child(5) { transition-delay: .32s; }
[data-reveal-stagger].is-visible > *:nth-child(6) { transition-delay: .40s; }
html:not(.js-ready) [data-reveal],
html:not(.js-ready) [data-reveal-stagger] > * { opacity: 1; transform: none; }

/* ---------- Serviços ---------- */
.services { padding: clamp(4.5rem, 9vw, 7rem) 0 0; background: var(--bg-alt); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.4rem;
}
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--r-lg);
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.service-card::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--violet-strong), var(--sand));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .6s var(--ease);
  z-index: 3;
}
.service-card:hover { transform: translateY(-8px); border-color: transparent; box-shadow: var(--shadow-lg); }
.service-card:hover::after { transform: scaleX(1); }

.service-card .card-media { position: relative; aspect-ratio: 16/11; overflow: hidden; }
.service-card .card-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease), filter .6s var(--ease);
}
.service-card:hover .card-media img { transform: scale(1.06); }
.service-card .card-num {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 2;
  display: grid; place-items: center;
  width: 34px; height: 34px;
  border-radius: 11px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  color: var(--violet-strong);
  font-size: .82rem;
  font-weight: 600;
}
.service-card .card-body { display: flex; flex-direction: column; gap: .65rem; padding: 1.5rem 1.45rem 1.6rem; flex: 1; }
.service-card h3 { letter-spacing: -.02em; }
.service-card p { flex: 1; font-size: .93rem; color: var(--muted); }
.service-card .link-arrow { margin-top: .3rem; }

/* ---------- Técnicas ---------- */
.techniques {
  margin-top: clamp(4rem, 8vw, 6rem);
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  background: linear-gradient(160deg, #3a1a7c 0%, #2c1160 55%, #241052 100%);
  color: #fff;
  overflow: hidden;
}
.techniques h2, .techniques h3 { color: #fff; }
.techniques-top { max-width: 640px; }
.techniques-top h2 { margin-top: 1.1rem; }
.techniques-top p { margin-top: .9rem; color: rgba(255,255,255,.72); }
/* Técnica em destaque */
.technique-feature {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(214,160,140,.28);
  box-shadow: 0 30px 60px -34px rgba(0,0,0,.6);
}
.tf-media { position: relative; min-height: 240px; }
.tf-media img { width: 100%; height: 100%; object-fit: cover; }
.tf-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(57,22,114,.5) 100%);
}
.tf-body { padding: clamp(1.75rem, 3.5vw, 2.75rem); }
.tf-badge {
  display: inline-flex;
  align-items: center;
  gap: .45em;
  padding: .4em .95em;
  border-radius: 999px;
  background: rgba(214,160,140,.18);
  color: var(--sand);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.tf-badge svg { width: 13px; height: 13px; }
.technique-feature h3 { margin-top: 1.1rem; font-size: clamp(1.5rem, 2.6vw, 2rem); }
.technique-feature > .tf-body > p {
  margin-top: .85rem;
  max-width: 56ch;
  font-size: .97rem;
  color: rgba(255,255,255,.74);
}
.tf-points { margin-top: 1.35rem; display: flex; flex-direction: column; gap: .6rem; }
.tf-points li {
  position: relative;
  padding-left: 1.6rem;
  font-size: .91rem;
  color: rgba(255,255,255,.8);
}
.tf-points li::before {
  content: "";
  position: absolute;
  left: 0; top: .55em;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--sand);
}
.technique-feature .btn { margin-top: 1.85rem; }

@media (min-width: 860px) {
  .technique-feature { grid-template-columns: .95fr 1.05fr; align-items: stretch; }
  .tf-media::after { background: linear-gradient(90deg, transparent 55%, rgba(57,22,114,.45) 100%); }
}

.techniques-grid {
  margin-top: 1.1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.1rem;
}
.technique-card {
  position: relative;
  padding: 1.9rem 1.5rem;
  border-radius: var(--r-md);
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.12);
  overflow: hidden;
  transition: transform var(--dur) var(--ease), background-color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.technique-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 100% at 0% 0%, rgba(214,160,140,.22), transparent 60%);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}
.technique-card:hover { transform: translateY(-6px); background: rgba(255,255,255,.09); border-color: rgba(214,160,140,.45); }
.technique-card:hover::before { opacity: 1; }
.technique-card > * { position: relative; }
.technique-card .t-icon {
  display: grid; place-items: center;
  width: 46px; height: 46px;
  margin-bottom: 1.15rem;
  border-radius: 14px;
  background: rgba(214,160,140,.16);
  color: var(--sand);
  transition: transform var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
.technique-card:hover .t-icon { transform: translateY(-2px) rotate(-4deg); background: rgba(214,160,140,.26); }
.technique-card .t-icon svg { width: 22px; height: 22px; }
.technique-card h3 { font-size: 1.05rem; margin-bottom: .45rem; }
.technique-card p { font-size: .89rem; color: rgba(255,255,255,.7); }

.techniques-note {
  margin-top: 2.75rem;
  padding-top: 2.25rem;
  border-top: 1px solid rgba(255,255,255,.14);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
}
.techniques-note p { max-width: 48ch; font-size: .93rem; color: rgba(255,255,255,.7); }

/* ---------- Sobre ---------- */
.about {
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
  background:
    radial-gradient(50% 60% at 88% 18%, rgba(214,160,140,.16), transparent 62%),
    radial-gradient(55% 55% at 4% 92%, rgba(108,56,202,.10), transparent 60%),
    var(--paper-warm);
}
.about .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.75rem, 6vw, 4.5rem);
  align-items: center;
}
.about-visual { position: relative; justify-self: center; width: min(100%, 420px); }
.about-photo-frame {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}
.about-photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.about-credential-float {
  position: absolute;
  right: -4%;
  bottom: -6%;
  max-width: 210px;
  padding: 1.15rem 1.3rem;
  border-radius: var(--r-md);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.about-credential-float strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: -.03em;
  color: var(--violet-strong);
}
.about-credential-float span { font-size: .78rem; line-height: 1.4; color: var(--muted); }

.about-copy h2 { margin-top: 1.1rem; }
.about-lede {
  margin-top: 1.3rem;
  padding-left: 1.1rem;
  border-left: 3px solid var(--sand);
  font-size: 1.08rem;
  font-weight: 500;
  color: var(--ink);
}
.about-copy p.body-text { margin-top: 1rem; font-size: .97rem; color: var(--muted); }

.credentials { margin-top: 1.9rem; display: flex; flex-direction: column; gap: .65rem; }
.credentials li {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .8rem 1rem;
  border-radius: var(--r-sm);
  background: var(--violet-softer);
  border: 1px solid var(--line);
  font-size: .93rem;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
.credentials li:hover { transform: translateX(5px); background: var(--white); border-color: var(--line-strong); }
.credentials .c-icon {
  display: grid; place-items: center;
  width: 24px; height: 24px;
  flex: none;
  border-radius: 50%;
  background: var(--violet-strong);
  color: #fff;
}
.credentials .c-icon svg { width: 12px; height: 12px; }
.about-copy .btn { margin-top: 2rem; }

@media (min-width: 920px) {
  .about .container { grid-template-columns: .8fr 1.2fr; }
}

/* ---------- Depoimentos ---------- */
.testimonials { padding: clamp(4.5rem, 9vw, 7.5rem) 0; background: var(--bg-alt); }
.testimonials-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.75rem;
}
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .6rem 1.05rem;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xs);
  font-size: .85rem;
  font-weight: 600;
}
.google-badge img { width: 19px; height: 19px; }
.google-badge .stars { display: inline-flex; gap: 1px; color: #f5a623; }
.google-badge .stars svg { width: 13px; height: 13px; fill: currentColor; }
.google-badge .muted { color: var(--muted); font-weight: 400; }

.testimonial-viewport { overflow: hidden; padding: .25rem; margin: -.25rem; }
.testimonial-track { display: flex; gap: 1.25rem; transition: transform .65s var(--ease); }
.testimonial-card {
  flex: 0 0 auto;
  width: min(85vw, 370px);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding: 2rem 1.75rem;
  border-radius: var(--r-lg);
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.testimonial-card:hover { transform: translateY(-6px); border-color: transparent; box-shadow: var(--shadow-md); }
.testimonial-card .quote-icon { width: 28px; height: 28px; color: var(--line-strong); }
.testimonial-card .quote-icon svg { width: 100%; height: 100%; }
.quote-text { flex: 1; font-size: .96rem; color: var(--ink); }
.testimonial-foot { display: flex; align-items: center; gap: .75rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.testimonial-avatar {
  display: grid; place-items: center;
  width: 42px; height: 42px;
  flex: none;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--violet-strong), #8a5cf0);
  color: #fff;
  font-weight: 600;
}
.t-name { font-size: .89rem; font-weight: 600; }
.t-stars { display: flex; gap: 1px; color: #f5a623; }
.t-stars svg { width: 11px; height: 11px; fill: currentColor; }

.testimonials-disclaimer { margin-top: 1.75rem; font-size: .8rem; color: var(--muted); max-width: 70ch; }

.testimonial-controls { margin-top: 1.75rem; display: flex; align-items: center; justify-content: center; gap: 1rem; }
.tc-btn {
  display: grid; place-items: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform var(--dur) var(--ease), border-color .3s ease, color .3s ease;
}
.tc-btn:hover { transform: translateY(-2px); border-color: var(--violet-strong); color: var(--violet-strong); }
.tc-btn:disabled { opacity: .4; cursor: default; transform: none; }
.tc-btn svg { width: 17px; height: 17px; }
.tc-dots { display: flex; gap: .4rem; }
.tc-dots button {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--line-strong);
  transition: width .4s var(--ease), background-color .3s ease;
}
.tc-dots button.is-active { width: 24px; background: var(--violet-strong); }

/* ---------- FAQ ---------- */
.faq { padding: clamp(4.5rem, 9vw, 7.5rem) 0; background: var(--bg); }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  max-width: 860px;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--white);
  box-shadow: var(--shadow-xs);
  transition: border-color .3s ease, box-shadow var(--dur) var(--ease);
}
.faq-item:hover { border-color: var(--line-strong); }
.faq-item[open] { border-color: var(--violet-strong); box-shadow: var(--shadow-sm); }

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.35rem;
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:focus-visible { outline: 2px solid var(--violet-strong); outline-offset: -2px; border-radius: var(--r-md); }
.faq-item summary h3 {
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -.015em;
}
.faq-item[open] summary h3 { color: var(--violet-strong); }

.faq-chevron {
  display: grid; place-items: center;
  flex: 0 0 auto;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--violet-soft);
  color: var(--violet);
  transition: transform var(--dur) var(--ease), background-color .3s ease, color .3s ease;
}
.faq-chevron svg { width: 15px; height: 15px; }
.faq-item[open] .faq-chevron { transform: rotate(180deg); background: var(--violet-strong); color: #fff; }

.faq-answer { padding: 0 1.35rem 1.3rem; }
.faq-answer p { max-width: 68ch; font-size: .95rem; line-height: 1.7; color: var(--muted); }
.faq-answer a { color: var(--violet-strong); text-decoration: underline; text-underline-offset: 2px; }

/* ---------- Contato ---------- */
.contact { padding: clamp(4.5rem, 9vw, 7.5rem) 0; background: var(--bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}
.contact-card {
  padding: 2rem;
  border-radius: var(--r-lg);
  background: var(--violet-softer);
  border: 1px solid var(--line);
}
.contact-info-list { display: flex; flex-direction: column; gap: 1.4rem; }
.contact-info-item { display: flex; gap: .95rem; }
.contact-info-item .ci-icon {
  display: grid; place-items: center;
  width: 42px; height: 42px;
  flex: none;
  border-radius: 13px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--violet-strong);
  transition: transform var(--dur) var(--ease), background-color .3s ease, color .3s ease;
}
.contact-info-item:hover .ci-icon { transform: translateY(-3px); background: var(--violet-strong); color: #fff; }
.contact-info-item .ci-icon svg { width: 19px; height: 19px; }
.contact-info-item h4 {
  margin-bottom: .3rem;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-info-item p { font-size: .95rem; line-height: 1.55; }
.ci-grow { width: 100%; }
.contact-info-item a { transition: color .3s ease; }
.contact-info-item a:hover { color: var(--violet-strong); }

.hours-list { display: flex; flex-direction: column; gap: .55rem; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: .55rem;
  border-bottom: 1px dashed var(--line-strong);
  font-size: .9rem;
  color: var(--muted);
}
.hours-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.hours-list li span:last-child { color: var(--ink); font-weight: 500; }

.contact-social { margin-top: 1.7rem; padding-top: 1.5rem; border-top: 1px solid var(--line-strong); }
.contact-social h4 {
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}

.social-row { display: flex; gap: .6rem; margin-top: .9rem; }
.social-row a {
  display: grid; place-items: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform var(--dur) var(--ease), background-color .3s ease, color .3s ease, border-color .3s ease;
}
.social-row a svg { width: 16px; height: 16px; }
.social-row a:hover { transform: translateY(-3px); background: var(--violet-strong); color: #fff; border-color: var(--violet-strong); }

.map-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.map-preview { position: relative; }
.map-preview img { width: 100%; height: 100%; min-height: 260px; object-fit: cover; }
.map-preview-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .85rem;
  padding: 1.5rem;
  text-align: center;
  background: rgba(28,21,38,.42);
  backdrop-filter: blur(2px);
  color: #fff;
  font-size: .85rem;
}
.map-card iframe { width: 100%; height: 320px; border: 0; }
.map-card-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 1.6rem;
  border-top: 1px solid var(--line);
  background: var(--white);
}
.map-card-foot strong { display: block; font-size: .98rem; font-weight: 600; }
.map-card-foot p { font-size: .87rem; color: var(--muted); }
.map-card-foot .btn-ghost-dark {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.map-card-foot .btn-ghost-dark:hover { background: var(--violet-softer); border-color: var(--violet-strong); color: var(--violet-strong); }

@media (min-width: 920px) {
  .contact-grid { grid-template-columns: 1fr 1.05fr; }
}

/* ---------- CTA band ---------- */
.cta-band { padding: 0 0 clamp(3rem, 6vw, 4.5rem); background: var(--bg); }
.cta-band .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.75rem;
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
  border-radius: var(--r-xl);
  background:
    radial-gradient(80% 120% at 100% 0%, rgba(214,160,140,.28), transparent 60%),
    linear-gradient(120deg, #3d29d4, #6c38ca);
  color: #fff;
  padding-inline: clamp(1.75rem, 5vw, 3.5rem);
  max-width: calc(var(--container) - 2rem);
}
.cta-band h3 { max-width: 26ch; font-size: clamp(1.4rem, 2.8vw, 2rem); color: #fff; letter-spacing: -.03em; }
.cta-band .btn { background: #fff; color: var(--violet-strong); box-shadow: 0 14px 30px -14px rgba(0,0,0,.5); }
.cta-band .btn::before { background: #fff; }

/* ---------- Footer ---------- */
.site-footer { padding-top: clamp(3.5rem, 7vw, 5rem); background: #1c1526; color: rgba(255,255,255,.66); }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.4rem;
  padding-bottom: 2.75rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .brand img { height: 58px; width: auto; }
.footer-brand p { margin-top: 1rem; max-width: 34ch; font-size: .89rem; }
.footer-brand address { margin-top: .6rem; max-width: 34ch; font-size: .84rem; font-style: normal; opacity: .78; }
.footer-brand .social-row a { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.14); color: #fff; }
.footer-brand .social-row a:hover { background: var(--sand); color: #3b2118; border-color: var(--sand); }
.footer-col h5 {
  margin-bottom: 1rem;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
}
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col a { font-size: .9rem; transition: color .3s ease, padding-left .3s var(--ease); }
.footer-col a:hover { color: var(--sand); padding-left: .3rem; }
.footer-contact { margin-bottom: 1.1rem; font-size: .89rem; }
.foot-hours li { display: flex; justify-content: space-between; gap: 1rem; font-size: .86rem; }
.foot-hours li span:last-child { color: #fff; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .9rem;
  padding: 1.5rem 0 2rem;
  font-size: .81rem;
}
.footer-link { font: inherit; color: inherit; text-decoration: underline; text-underline-offset: 3px; transition: color .3s ease; }
.footer-link:hover { color: var(--sand); }
.made-by span { color: var(--sand); font-weight: 600; }

@media (min-width: 660px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
@media (min-width: 1000px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; } }

/* ---------- WhatsApp flutuante ---------- */
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 12px 26px -10px rgba(37,211,102,.7);
  transition: transform var(--dur) var(--ease);
}
.whatsapp-float::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,.5);
  animation: wa-ring 2.6s var(--ease) infinite;
}
.whatsapp-float:hover { transform: scale(1.07); }
.whatsapp-float svg { width: 26px; height: 26px; }
@keyframes wa-ring {
  0% { transform: scale(1); opacity: .8; }
  70%, 100% { transform: scale(1.5); opacity: 0; }
}

/* ---------- Privacidade e consentimento ---------- */
.privacy-modal {
  width: min(680px, 92vw);
  padding: 0;
  border: 0;
  border-radius: var(--r-lg);
  background: var(--white);
  box-shadow: var(--shadow-lg);
  color: var(--ink);
}
.privacy-modal::backdrop { background: rgba(28,21,38,.55); backdrop-filter: blur(4px); }
.privacy-dialog { display: flex; flex-direction: column; max-height: 85vh; }
.privacy-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.75rem 1.75rem 1.25rem;
  border-bottom: 1px solid var(--line);
}
.privacy-head h2 { margin-top: .7rem; font-size: 1.4rem; }
.privacy-close {
  display: grid; place-items: center;
  width: 36px; height: 36px;
  flex: none;
  border-radius: 50%;
  background: var(--violet-softer);
  font-size: 1.3rem;
  line-height: 1;
  transition: background-color .3s ease;
}
.privacy-close:hover { background: var(--line); }
.privacy-body { padding: 1.5rem 1.75rem; overflow-y: auto; font-size: .93rem; color: var(--muted); }
.privacy-body h3 { margin: 1.4rem 0 .5rem; font-size: 1rem; color: var(--ink); }
.privacy-body p + p { margin-top: .7rem; }
.privacy-body ul { display: flex; flex-direction: column; gap: .4rem; padding-left: 1.1rem; list-style: disc; }
.privacy-body a { color: var(--violet-strong); text-decoration: underline; }
.privacy-note { margin-top: 1.4rem; padding: .9rem 1rem; border-radius: var(--r-sm); background: var(--sand-soft); font-size: .87rem; }
.privacy-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: .7rem;
  padding: 1.25rem 1.75rem 1.75rem;
  border-top: 1px solid var(--line);
}

.consent-banner {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 95;
  width: min(880px, calc(100vw - 24px));
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.1rem;
  padding: 1.15rem 1.35rem;
  border-radius: var(--r-md);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}
.consent-banner[hidden] { display: none; }
.consent-copy { display: flex; gap: .9rem; align-items: flex-start; }
.consent-mark {
  display: grid; place-items: center;
  width: 34px; height: 34px;
  flex: none;
  border-radius: 11px;
  background: var(--violet-soft);
  color: var(--violet-strong);
}
.consent-copy h2 { font-size: 1rem; margin-bottom: .2rem; }
.consent-copy p { font-size: .85rem; color: var(--muted); max-width: 52ch; }
.text-button {
  margin-top: .35rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--violet-strong);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.consent-actions { display: flex; flex-wrap: wrap; gap: .6rem; }

/* ---------- Utilidades ---------- */
.skip-link {
  position: fixed;
  top: -60px; left: 12px;
  z-index: 200;
  padding: .75rem 1.15rem;
  border-radius: 10px;
  background: var(--violet-strong);
  color: #fff;
  font-weight: 600;
  transition: top .3s ease;
}
.skip-link:focus { top: 12px; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
