/* =========================================================
   STYLES.CSS · NATHALIA VASQUES
   Psicologia Clínica e Neuropsicologia
   Mobile first. Variáveis injetadas por aplicarTema.
   ========================================================= */

/* =======================================================
   1. TOKENS
   ======================================================= */
:root {
  --c-bg: #f2eae3;
  --c-bg-soft: #f8f3ee;
  --c-surface: #fffdfc;
  --c-surface-2: #e9ddd3;

  --c-primary: #0d5e74;
  --c-primary-dark: #173248;
  --c-primary-light: #66949d;

  --c-secondary: #5a295c;
  --c-secondary-dark: #40203f;
  --c-secondary-light: #90708d;

  --c-accent: #b38d6d;
  --c-accent-light: #d2ae91;
  --c-accent-dark: #6b5335;

  --c-text: #173248;
  --c-text-2: #745661;
  --c-text-light: #f8f3ee;
  --c-muted: #8c817a;

  --c-border: rgba(179, 141, 109, 0.35);
  --c-shadow: rgba(64, 32, 63, 0.12);
  --c-overlay: rgba(23, 50, 72, 0.55);
  --c-success: #4f756a;
  --c-whatsapp: #25d366;

  --g-primary: linear-gradient(135deg, #0d5e74 0%, #173248 100%);
  --g-secondary: linear-gradient(135deg, #5a295c 0%, #40203f 100%);
  --g-elegant: linear-gradient(135deg, #f8f3ee 0%, #e9ddd3 50%, #f2eae3 100%);
  --g-accent: linear-gradient(135deg, #b38d6d 0%, #d2ae91 100%);
  --g-hero: linear-gradient(
    90deg,
    rgba(248, 243, 238, 0.98) 0%,
    rgba(248, 243, 238, 0.86) 48%,
    rgba(248, 243, 238, 0.1) 100%
  );

  --f-heading: "Cormorant Garamond", Georgia, serif;
  --f-body: "Hanken Grotesk", "Montserrat", Arial, sans-serif;

  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 30px;
  --r-pill: 999px;

  --sh-soft: 0 2px 10px rgba(64, 32, 63, 0.06);
  --sh-medium: 0 18px 44px rgba(64, 32, 63, 0.12);
  --sh-strong: 0 34px 80px rgba(23, 50, 72, 0.2);

  --wrap: 1200px;
  --pad: clamp(20px, 5.2vw, 44px);
  --sec: clamp(76px, 11vw, 136px);
  --header-h: 68px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* =======================================================
   2. BASE
   ======================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--f-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.68;
  letter-spacing: 0.005em;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--f-heading);
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: -0.012em;
  color: var(--c-primary-dark);
}

p {
  margin: 0;
}

svg {
  flex: none;
}

::selection {
  background: var(--c-primary);
  color: var(--c-text-light);
}

:focus-visible {
  outline: 2px solid var(--c-primary);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap {
  width: 100%;
  min-width: 0;
  max-width: var(--wrap);
  margin: 0 auto;
  padding-inline: var(--pad);
}

.wrap-narrow {
  max-width: 880px;
}

.section {
  position: relative;
  padding-block: var(--sec);
}

.section-soft {
  background: var(--c-bg-soft);
}

/* =======================================================
   3. TIPOGRAFIA DE SEÇÃO
   ======================================================= */
.eyebrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
  margin-bottom: 18px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--c-accent-dark);
}

.eyebrow::before {
  content: "";
  flex: none;
  width: 26px;
  height: 1px;
  background: var(--c-accent);
}

.sec-head .eyebrow {
  justify-content: center;
}

.sec-head-left .eyebrow,
.hero-eyebrow {
  justify-content: flex-start;
}

.eyebrow-light {
  color: var(--c-accent-light);
}

.eyebrow-light::before {
  background: var(--c-accent-light);
}

.sec-head {
  max-width: 720px;
  margin: 0 auto clamp(40px, 6vw, 66px);
  text-align: center;
}

.sec-head-left {
  margin-inline: 0;
  text-align: left;
}

.sec-title {
  font-size: clamp(2.05rem, 6.2vw, 3.25rem);
  line-height: 1.14;
}

.sec-desc {
  margin-top: 20px;
  font-size: 1.02rem;
  color: var(--c-text-2);
}

.section-dark .sec-title,
.section-dark .sec-desc {
  color: var(--c-text-light);
}

.section-dark .sec-desc {
  color: rgba(248, 243, 238, 0.76);
}

.section-dark .eyebrow {
  color: var(--c-accent-light);
}

.section-dark .eyebrow::before {
  background: var(--c-accent-light);
}

.prose p + p {
  margin-top: 18px;
}

.prose p {
  color: var(--c-text-2);
  font-size: 1.02rem;
}

/* =======================================================
   4. BOTÕES E CHIPS
   ======================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  border-radius: var(--r-pill);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.015em;
  cursor: pointer;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    background 0.35s var(--ease),
    color 0.35s var(--ease);
}

.btn-lg {
  padding: 16px 30px;
  font-size: 0.95rem;
}

.btn-primary {
  background: var(--g-primary);
  color: var(--c-text-light);
  box-shadow: 0 12px 30px rgba(13, 94, 116, 0.26);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(13, 94, 116, 0.34);
}

.btn-ghost {
  border: 1px solid var(--c-border);
  background: rgba(255, 253, 252, 0.7);
  color: var(--c-primary-dark);
}

.btn-ghost:hover {
  transform: translateY(-2px);
  border-color: var(--c-primary);
  background: var(--c-surface);
}

.btn-light {
  background: var(--c-surface);
  color: var(--c-primary-dark);
  box-shadow: 0 16px 40px rgba(23, 50, 72, 0.28);
}

.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 52px rgba(23, 50, 72, 0.36);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 26px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px 7px 11px;
  border: 1px solid var(--c-border);
  border-radius: var(--r-pill);
  background: rgba(255, 253, 252, 0.72);
  font-size: 0.79rem;
  font-weight: 500;
  color: var(--c-text-2);
  backdrop-filter: blur(6px);
}

.chip svg {
  color: var(--c-primary);
}

/* =======================================================
   5. BARRA DE PROGRESSO
   ======================================================= */
.progress {
  position: fixed;
  inset: 0 0 auto 0;
  height: 3px;
  z-index: 1100;
  background: transparent;
  pointer-events: none;
}

.progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--g-accent);
}

/* =======================================================
   6. HEADER
   ======================================================= */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  transition:
    background 0.4s var(--ease),
    box-shadow 0.4s var(--ease),
    padding 0.4s var(--ease);
}

.site-header.scrolled {
  background: rgba(248, 243, 238, 0.88);
  box-shadow: 0 1px 0 var(--c-border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.site-header.elevated {
  background: rgba(248, 243, 238, 0.96);
  box-shadow: 0 6px 26px rgba(64, 32, 63, 0.09);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: auto;
  object-fit: contain;
}

.brand-symbol {
  height: 40px;
}

.brand-full {
  display: none;
  height: 50px;
}

.nav-desktop {
  display: none;
}

.nav-cta {
  display: none;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-left: auto;
  padding: 3px;
  border: 1px solid var(--c-border);
  border-radius: var(--r-pill);
  background: rgba(255, 253, 252, 0.72);
  box-shadow: var(--sh-soft);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.language-option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-width: 42px;
  min-height: 34px;
  padding: 4px 7px;
  border-radius: var(--r-pill);
  color: var(--c-text-2);
  transition:
    background 0.25s var(--ease),
    color 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}

.language-option:hover {
  color: var(--c-primary-dark);
  background: rgba(102, 148, 157, 0.1);
}

.language-option.active {
  color: var(--c-primary-dark);
  background: var(--c-surface);
  box-shadow: 0 3px 10px rgba(64, 32, 63, 0.1);
}

.language-flag {
  display: inline-flex;
  overflow: hidden;
  width: 22px;
  height: 16px;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(23, 50, 72, 0.12);
  font-size: 1rem;
  line-height: 1;
}

.language-flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.language-code {
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-right: -8px;
  border-radius: var(--r-pill);
  color: var(--c-primary-dark);
}

.burger-label {
  display: none;
}

.burger-label-close {
  display: none;
}

body.menu-open .burger-label-open {
  display: none;
}

body.menu-open .burger-label-close {
  display: inline;
}

.burger-close {
  display: none;
}

body.menu-open .burger-open {
  display: none;
}

body.menu-open .burger-close {
  display: inline-flex;
}

/* =======================================================
   7. MENU MOBILE
   ======================================================= */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 950;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 24px) var(--pad) 40px;
  background: var(--g-elegant);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition:
    opacity 0.4s var(--ease),
    transform 0.4s var(--ease),
    visibility 0.4s;
}

.menu-overlay.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu-inner {
  width: 100%;
}

.menu-link {
  display: block;
  padding: 15px 0;
  border-bottom: 1px solid var(--c-border);
  font-family: var(--f-heading);
  font-size: 1.85rem;
  color: var(--c-primary-dark);
  opacity: 0;
  transform: translateY(14px);
  transition: color 0.3s var(--ease);
}

.menu-overlay.open .menu-link {
  animation: menuIn 0.5s var(--ease) forwards;
  animation-delay: calc(var(--i) * 60ms + 80ms);
}

.menu-link:hover {
  color: var(--c-primary);
}

.menu-cta {
  width: 100%;
  margin-top: 28px;
}

.menu-foot {
  margin-top: 18px;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  color: var(--c-muted);
}

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

/* =======================================================
   8. HERO
   ======================================================= */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100svh;
  padding-top: calc(var(--header-h) + 40px);
  padding-bottom: 84px;
  overflow: hidden;
}

.hero-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 76% 14%;
}

.hero-bg-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      180deg,
      rgba(248, 243, 238, 0.86) 0%,
      rgba(248, 243, 238, 0.8) 34%,
      rgba(242, 234, 227, 0.94) 72%,
      var(--c-bg) 100%
    ),
    linear-gradient(90deg, rgba(248, 243, 238, 0.5), transparent 70%);
}

.hero-grid {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  color: var(--c-primary);
}

.hero-eyebrow::before {
  background: var(--c-primary);
}

.hero-title {
  font-size: clamp(2.6rem, 10.4vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-title .hl {
  position: relative;
  display: inline;
  font-style: italic;
  font-weight: 500;
  color: var(--c-primary);
  background-image: linear-gradient(
    var(--c-accent-light),
    var(--c-accent-light)
  );
  background-repeat: no-repeat;
  background-position: 0 88%;
  background-size: 100% 0.18em;
  padding-bottom: 0.02em;
}

.hero-subtitle {
  max-width: 30ch;
  margin-top: 22px;
  font-family: var(--f-heading);
  font-size: clamp(1.18rem, 4.4vw, 1.5rem);
  font-style: italic;
  line-height: 1.4;
  color: var(--c-secondary);
}

.hero-desc {
  max-width: 52ch;
  margin-top: 18px;
  font-size: 1rem;
  color: var(--c-text-2);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-actions .btn {
  flex: 1 1 auto;
  min-width: 220px;
}

.hero-line {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid var(--c-border);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--c-muted);
}

.hero-media {
  display: none;
}

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 2;
  display: none;
  width: 24px;
  height: 40px;
  margin-left: -12px;
  border: 1px solid var(--c-border);
  border-radius: var(--r-pill);
}

.scroll-hint span {
  position: absolute;
  left: 50%;
  top: 9px;
  width: 3px;
  height: 7px;
  margin-left: -1.5px;
  border-radius: 2px;
  background: var(--c-primary);
  animation: hint 1.9s var(--ease) infinite;
}

@keyframes hint {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  35% {
    opacity: 1;
  }
  70% {
    opacity: 0;
    transform: translateY(13px);
  }
  100% {
    opacity: 0;
  }
}

/* =======================================================
   9. MARQUEE
   ======================================================= */
.marquee {
  overflow: hidden;
  padding-block: 17px;
  background: var(--g-primary);
  color: var(--c-text-light);
}

.mq-track {
  display: flex;
  width: max-content;
  animation: mq 34s linear infinite;
}

.mq-run {
  display: flex;
  align-items: center;
}

.mq-item {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding-right: 22px;
  font-family: var(--f-heading);
  font-size: 1.22rem;
  font-style: italic;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.mq-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--c-accent-light);
}

@keyframes mq {
  to {
    transform: translateX(-50%);
  }
}

/* =======================================================
   10. SOBRE
   ======================================================= */
.about-grid {
  display: grid;
  gap: clamp(38px, 6vw, 70px);
}

.about-photo {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-medium);
}

.about-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 55%,
    rgba(23, 50, 72, 0.22) 100%
  );
}

.about-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  object-position: center;
}

.about-quote {
  position: relative;
  max-width: 380px;
  margin: -46px 0 0 auto;
  padding: 26px 26px 26px 24px;
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  background: var(--c-surface);
  box-shadow: var(--sh-soft);
}

.quote-ico {
  display: inline-flex;
  color: var(--c-accent);
}

.about-quote blockquote {
  margin: 8px 0 0;
  font-family: var(--f-heading);
  font-size: 1.32rem;
  font-style: italic;
  line-height: 1.34;
  color: var(--c-secondary);
}

.about-hls {
  display: grid;
  gap: 14px;
  margin-top: 32px;
  padding-top: 30px;
  border-top: 1px solid var(--c-border);
}

.about-hl {
  display: flex;
  align-items: center;
  gap: 14px;
}

.about-hl-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--r-pill);
  background: rgba(13, 94, 116, 0.08);
  color: var(--c-primary);
}

.about-hl strong {
  display: block;
  font-family: var(--f-heading);
  font-size: 1.24rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--c-primary-dark);
}

.about-hl em {
  font-size: 0.83rem;
  font-style: normal;
  color: var(--c-muted);
}

.about-text .btn {
  margin-top: 32px;
}

/* =======================================================
   11. DIFERENCIAIS
   ======================================================= */
.diff-grid {
  display: grid;
  gap: 16px;
}

.diff-card {
  padding: 32px 26px;
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  background: var(--c-surface);
  transition:
    transform 0.45s var(--ease),
    box-shadow 0.45s var(--ease);
}

.diff-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-medium);
}

.diff-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  border-radius: var(--r-pill);
  background: var(--g-elegant);
  border: 1px solid var(--c-border);
  color: var(--c-primary);
}

.diff-card h3 {
  font-size: 1.42rem;
}

.diff-card p {
  margin-top: 10px;
  font-size: 0.95rem;
  color: var(--c-text-2);
}

/* =======================================================
   12. ATENDIMENTOS
   ======================================================= */
.svc-grid {
  display: grid;
  gap: 16px;
}

.svc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  background: var(--c-surface);
  overflow: hidden;
  transition:
    transform 0.45s var(--ease),
    box-shadow 0.45s var(--ease),
    border-color 0.45s var(--ease);
}

.svc-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--g-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}

.svc-card:hover {
  transform: translateY(-6px);
  border-color: rgba(13, 94, 116, 0.3);
  box-shadow: var(--sh-medium);
}

.svc-card:hover::before {
  transform: scaleX(1);
}

.svc-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
}

.svc-heading {
  min-width: 0;
}

.svc-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 15px;
  background: var(--g-primary);
  color: var(--c-text-light);
  box-shadow: 0 9px 22px rgba(13, 94, 116, 0.2);
}

.svc-num {
  display: block;
  margin-bottom: 4px;
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.16em;
  color: var(--c-secondary);
}

.svc-card h3 {
  font-size: 1.36rem;
  line-height: 1.12;
}

.svc-body {
  display: grid;
  gap: 16px;
}

.svc-desc {
  font-size: 0.91rem;
  line-height: 1.55;
  color: var(--c-text-2);
}

.svc-list {
  display: grid;
  align-content: start;
  gap: 6px;
  padding-top: 16px;
  border-top: 1px dashed var(--c-border);
}

.svc-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.84rem;
  line-height: 1.42;
  color: var(--c-text-2);
}

.svc-list svg {
  margin-top: 2px;
  color: var(--c-primary);
}

.svc-link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  margin-top: 18px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-primary);
  transition: gap 0.35s var(--ease);
}

.svc-card:hover .svc-link {
  gap: 14px;
}

/* =======================================================
   13. PARA QUEM É
   ======================================================= */
.section-dark {
  background: var(--c-primary-dark);
  color: var(--c-text-light);
  overflow: hidden;
}

.dark-glow {
  position: absolute;
  top: -18%;
  right: -22%;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(13, 94, 116, 0.55) 0%,
    transparent 66%
  );
  pointer-events: none;
}

.aud-grid {
  display: grid;
  gap: 14px;
}

.aud-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 22px 22px;
  border: 1px solid rgba(210, 174, 145, 0.24);
  border-radius: var(--r-md);
  background: rgba(248, 243, 238, 0.05);
  transition:
    background 0.4s var(--ease),
    border-color 0.4s var(--ease),
    transform 0.4s var(--ease);
}

.aud-item:hover {
  transform: translateY(-3px);
  border-color: rgba(210, 174, 145, 0.5);
  background: rgba(248, 243, 238, 0.09);
}

.aud-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--r-pill);
  background: rgba(210, 174, 145, 0.16);
  color: var(--c-accent-light);
}

.aud-item p {
  font-size: 0.96rem;
  color: rgba(248, 243, 238, 0.86);
}

.aud-cta {
  margin-top: 44px;
  text-align: center;
}

/* =======================================================
   14. COMO FUNCIONA
   ======================================================= */
.steps {
  display: grid;
  gap: 16px;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 30px 26px;
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  background: var(--c-surface);
  transition:
    transform 0.45s var(--ease),
    box-shadow 0.45s var(--ease);
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-medium);
}

.step-num {
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: var(--f-heading);
  font-size: 3rem;
  line-height: 1;
  color: rgba(179, 141, 109, 0.5);
}

.step-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: var(--r-pill);
  background: rgba(90, 41, 92, 0.08);
  color: var(--c-secondary);
}

.step h3 {
  font-size: 1.4rem;
}

.step p {
  margin-top: 9px;
  font-size: 0.93rem;
  color: var(--c-text-2);
}

/* =======================================================
   15. MODALIDADES
   ======================================================= */
.mode-grid {
  display: grid;
  gap: 18px;
}

.mode-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 34px 28px;
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  background: var(--g-elegant);
  transition:
    transform 0.45s var(--ease),
    box-shadow 0.45s var(--ease);
}

.mode-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-medium);
}

.mode-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  border-radius: var(--r-pill);
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  color: var(--c-primary);
}

.mode-card h3 {
  font-size: 1.5rem;
}

.mode-card p {
  margin-top: 10px;
  font-size: 0.95rem;
  color: var(--c-text-2);
}

.mode-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 8px 15px;
  border-radius: var(--r-pill);
  background: rgba(13, 94, 116, 0.09);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--c-primary);
}

.mode-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--c-secondary);
  transition: gap 0.35s var(--ease);
}

.mode-card:hover .mode-link {
  gap: 14px;
}

/* =======================================================
   16. FORMAÇÃO
   ======================================================= */
.qual-list {
  display: grid;
  gap: 14px;
  max-width: 900px;
  margin-inline: auto;
}

.qual-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px 24px;
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  background: var(--c-surface);
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}

.qual-item:hover {
  transform: translateX(5px);
  box-shadow: var(--sh-soft);
}

.qual-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--r-pill);
  background: var(--g-accent);
  color: #fffdfc;
}

.qual-body h3 {
  font-size: 1.3rem;
}

.qual-body p {
  margin-top: 7px;
  font-size: 0.93rem;
  color: var(--c-text-2);
}

/* =======================================================
   17. FAQ
   ======================================================= */
.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  background: var(--c-surface);
  overflow: hidden;
  transition:
    border-color 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}

.faq-item.open {
  border-color: rgba(13, 94, 116, 0.34);
  box-shadow: var(--sh-soft);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  padding: 22px 22px;
  text-align: left;
  font-family: var(--f-heading);
  font-size: 1.22rem;
  font-weight: 500;
  line-height: 1.24;
  color: var(--c-primary-dark);
}

.faq-chev {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: var(--r-pill);
  background: var(--c-bg-soft);
  color: var(--c-primary);
  transition: transform 0.4s var(--ease);
}

.faq-item.open .faq-chev {
  transform: rotate(180deg);
  background: var(--c-primary);
  color: var(--c-text-light);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}

.faq-a p {
  padding: 0 22px 24px;
  font-size: 0.95rem;
  color: var(--c-text-2);
}

/* =======================================================
   18. CHAMADA FINAL COM FORMULÁRIO
   ======================================================= */
.cta-final {
  position: relative;
  background: var(--g-secondary);
  color: var(--c-text-light);
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  bottom: -34%;
  left: 50%;
  width: 760px;
  height: 760px;
  margin-left: -380px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(179, 141, 109, 0.3) 0%,
    transparent 64%
  );
  pointer-events: none;
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(34px, 5vw, 60px);
  align-items: start;
}

.cta-final h2 {
  font-size: clamp(2rem, 6.2vw, 2.85rem);
  line-height: 1.15;
  color: var(--c-text-light);
}

.cta-desc {
  max-width: 46ch;
  margin-top: 18px;
  font-size: 0.98rem;
  color: rgba(248, 243, 238, 0.8);
}

.cta-meta {
  display: grid;
  gap: 12px;
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid rgba(210, 174, 145, 0.3);
}

.cta-meta a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(248, 243, 238, 0.86);
  transition: color 0.3s var(--ease);
}

.cta-meta a:hover {
  color: var(--c-accent-light);
}

.cta-meta svg {
  color: var(--c-accent-light);
}

.cta-note {
  margin-top: 24px;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(248, 243, 238, 0.55);
}

/* formulario */
.contact-form {
  padding: clamp(24px, 5vw, 36px);
  border: 1px solid rgba(255, 253, 252, 0.6);
  border-radius: var(--r-lg);
  background: var(--c-surface);
  box-shadow: var(--sh-strong);
}

.contact-form h3 {
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px dashed var(--c-border);
  font-size: 1.45rem;
}

.field {
  margin-bottom: 15px;
}

.field-label {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 7px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--c-text-2);
}

.field-label svg {
  color: var(--c-accent);
}

.field input,
.field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  background: var(--c-bg-soft);
  color: var(--c-text);
  font-family: var(--f-body);
  font-size: 0.95rem;
  line-height: 1.5;
  transition:
    border-color 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    background 0.3s var(--ease);
}

.field textarea {
  min-height: 118px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--c-muted);
  opacity: 0.85;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--c-primary);
  background: var(--c-surface);
  box-shadow: 0 0 0 3px rgba(13, 94, 116, 0.12);
}

.field-error {
  display: none;
  margin-top: 6px;
  font-size: 0.79rem;
  color: #a33a4a;
}

.field.invalid input,
.field.invalid textarea {
  border-color: #c0596a;
  background: rgba(192, 89, 106, 0.05);
}

.field.invalid .field-error {
  display: block;
}

.field-row {
  display: grid;
  gap: 15px;
}

.btn-form {
  width: 100%;
  margin-top: 8px;
  background: var(--g-primary);
  color: var(--c-text-light);
  box-shadow: 0 12px 30px rgba(13, 94, 116, 0.26);
}

.btn-form:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(13, 94, 116, 0.34);
}

.form-status {
  display: none;
  margin-top: 16px;
  padding: 12px 15px;
  border: 1px solid rgba(79, 117, 106, 0.35);
  border-radius: var(--r-sm);
  background: rgba(79, 117, 106, 0.09);
  font-size: 0.88rem;
  color: var(--c-success);
}

.form-status.show {
  display: block;
}

.form-status a {
  font-weight: 600;
  text-decoration: underline;
}

.form-privacy {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.77rem;
  line-height: 1.55;
  color: var(--c-muted);
}

.form-privacy svg {
  margin-top: 2px;
  flex: none;
  color: var(--c-accent);
}

/* =======================================================
   19. RODAPÉ
   ======================================================= */
.site-footer {
  padding-top: clamp(56px, 8vw, 84px);
  padding-bottom: 30px;
  background: var(--c-primary-dark);
  color: rgba(248, 243, 238, 0.72);
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  gap: 38px;
}

.footer-brand img {
  width: auto;
  height: 58px;
  margin-bottom: 16px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.footer-brand p {
  max-width: 42ch;
}

.footer-crp {
  margin-top: 14px;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-accent-light);
}

.footer-col h4 {
  margin-bottom: 16px;
  font-family: var(--f-body);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-text-light);
}

.footer-col ul {
  display: grid;
  gap: 11px;
}

.footer-col a {
  transition: color 0.3s var(--ease);
}

.footer-col a:hover {
  color: var(--c-accent-light);
}

.footer-contact a,
.footer-formats li {
  display: inline-flex;
  align-items: flex-start;
  gap: 9px;
}

.footer-formats svg,
.footer-contact svg {
  margin-top: 3px;
  color: var(--c-accent);
}

.footer-legal {
  margin-top: 44px;
  padding-top: 26px;
  border-top: 1px solid rgba(210, 174, 145, 0.22);
}

.legal-text {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 78ch;
  font-size: 0.8rem;
  line-height: 1.6;
  color: rgba(248, 243, 238, 0.55);
}

.legal-text svg {
  margin-top: 2px;
  color: var(--c-accent);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(210, 174, 145, 0.22);
  font-size: 0.78rem;
  color: rgba(248, 243, 238, 0.5);
}

.footer-bottom a {
  color: var(--c-accent-light);
  transition: color 0.3s var(--ease);
}

.footer-bottom a:hover {
  color: var(--c-text-light);
}

/* =======================================================
   20. FLUTUANTES
   ======================================================= */
.wa-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 900;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  border-radius: var(--r-pill);
  background: var(--g-secondary);
  color: var(--c-text-light);
  box-shadow: 0 14px 34px rgba(90, 41, 92, 0.3);
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}

.wa-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 20px 44px rgba(90, 41, 92, 0.4);
}

.wa-label {
  display: none;
  font-size: 0.88rem;
  font-weight: 700;
}

.wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--c-secondary);
  opacity: 0.55;
  animation: pulse 2.4s var(--ease) infinite;
  z-index: -1;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  70% {
    transform: scale(1.5);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.to-top {
  position: fixed;
  right: 16px;
  bottom: 84px;
  z-index: 899;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--c-border);
  border-radius: var(--r-pill);
  background: var(--c-surface);
  color: var(--c-primary-dark);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  box-shadow: var(--sh-soft);
  transition:
    opacity 0.35s var(--ease),
    transform 0.35s var(--ease),
    visibility 0.35s;
}

.to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.grain {
  position: fixed;
  inset: -120px;
  z-index: 1200;
  pointer-events: none;
  opacity: 0.14;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.42'/%3E%3C/svg%3E");
}

/* =======================================================
   21. REVEAL
   ======================================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.75s var(--ease),
    transform 0.75s var(--ease);
  transition-delay: var(--d, 0ms);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

/* =======================================================
   22. EXPERIÊNCIA MOBILE PREMIUM
   ======================================================= */
@media (max-width: 599px) {
  :root {
    --pad: 18px;
    --sec: 68px;
    --header-h: 64px;
    --r-lg: 24px;
    --mobile-shadow: 0 16px 44px rgba(64, 32, 63, 0.09);
  }

  html {
    scroll-padding-top: calc(var(--header-h) + 14px);
  }

  body {
    font-size: 15px;
    line-height: 1.62;
  }

  h1,
  h2,
  h3,
  h4 {
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .section {
    padding-block: var(--sec);
  }

  .section + .section {
    border-top: 1px solid rgba(179, 141, 109, 0.12);
  }

  /* cabeçalhos editoriais */
  .sec-head {
    max-width: none;
    margin: 0 0 32px;
    text-align: left;
  }

  .sec-head .eyebrow {
    justify-content: flex-start;
  }

  .eyebrow {
    gap: 7px;
    margin-bottom: 13px;
    font-size: 0.64rem;
    letter-spacing: 0.18em;
  }

  .eyebrow::before {
    width: 20px;
  }

  .sec-title {
    max-width: 14.5ch;
    font-size: clamp(2rem, 9.5vw, 2.45rem);
    line-height: 1.06;
    letter-spacing: -0.025em;
  }

  .sec-desc {
    max-width: 35ch;
    margin-top: 15px;
    font-size: 0.92rem;
    line-height: 1.58;
  }

  .btn {
    min-height: 48px;
    padding-inline: 20px;
  }

  .btn-lg {
    min-height: 52px;
    padding: 14px 22px;
    font-size: 0.89rem;
  }

  /* header de vidro com assinatura completa */
  .site-header {
    padding-top: env(safe-area-inset-top, 0px);
  }

  .site-header.scrolled,
  .site-header.elevated {
    background: rgba(248, 243, 238, 0.9);
    border-bottom: 1px solid rgba(179, 141, 109, 0.2);
    box-shadow: 0 8px 30px rgba(64, 32, 63, 0.07);
    backdrop-filter: blur(20px) saturate(1.25);
    -webkit-backdrop-filter: blur(20px) saturate(1.25);
  }

  .header-inner {
    gap: 8px;
  }

  .brand-symbol {
    display: none;
  }

  .brand-full {
    display: block;
    height: 42px;
  }

  .burger {
    gap: 7px;
    width: auto;
    min-width: 76px;
    height: 42px;
    margin-right: 0;
    padding: 0 12px;
    border: 1px solid var(--c-border);
    background: rgba(255, 253, 252, 0.72);
    box-shadow: 0 8px 24px rgba(64, 32, 63, 0.07);
  }

  .burger-label {
    display: inline;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .language-switcher {
    margin-left: auto;
  }

  .language-option {
    min-width: 37px;
    min-height: 34px;
    padding-inline: 5px;
  }

  .language-code {
    display: none;
  }

  .burger svg {
    width: 20px;
    height: 20px;
  }

  /* menu mobile como página editorial */
  .menu-overlay {
    align-items: flex-start;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: calc(var(--header-h) + env(safe-area-inset-top, 0px) + 28px)
      var(--pad) calc(26px + env(safe-area-inset-bottom, 0px));
    background:
      radial-gradient(
        circle at 100% 0%,
        rgba(102, 148, 157, 0.2),
        transparent 38%
      ),
      radial-gradient(
        circle at 0% 100%,
        rgba(210, 174, 145, 0.22),
        transparent 40%
      ),
      var(--c-bg-soft);
  }

  .menu-inner {
    display: flex;
    flex-direction: column;
    min-height: calc(
      100dvh - var(--header-h) - env(safe-area-inset-top, 0px) - 54px
    );
    counter-reset: mobile-nav;
  }

  .menu-link {
    display: grid;
    grid-template-columns: 30px 1fr;
    align-items: center;
    padding: 13px 0;
    font-size: clamp(1.65rem, 8vw, 2rem);
    line-height: 1.1;
    counter-increment: mobile-nav;
  }

  .menu-link::before {
    content: "0" counter(mobile-nav);
    font-family: var(--f-body);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--c-accent-dark);
  }

  .menu-cta {
    margin-top: auto;
    box-shadow: 0 14px 34px rgba(13, 94, 116, 0.22);
  }

  .menu-foot {
    margin-top: 14px;
    font-size: 0.66rem;
  }

  /* hero: primeira dobra mais limpa e intencional */
  .hero {
    display: block;
    min-height: auto;
    padding-top: calc(
      var(--header-h) + env(safe-area-inset-top, 0px) + 34px
    );
    padding-bottom: 42px;
    background:
      radial-gradient(
        circle at 100% 12%,
        rgba(102, 148, 157, 0.12),
        transparent 34%
      ),
      linear-gradient(180deg, var(--c-bg-soft), var(--c-bg));
  }

  .hero::after {
    content: "";
    position: absolute;
    top: 104px;
    right: -156px;
    z-index: 0;
    width: 250px;
    height: 250px;
    border: 1px solid rgba(179, 141, 109, 0.28);
    border-radius: 50%;
    box-shadow: 0 0 0 18px rgba(255, 253, 252, 0.16);
    pointer-events: none;
  }

  .hero-bg-wrap {
    display: none;
  }

  .hero-grid {
    display: grid;
  }

  .hero-content {
    display: contents;
  }

  .hero-eyebrow {
    order: 1;
    margin-bottom: 15px;
  }

  .hero-title {
    order: 2;
    max-width: 11ch;
    font-size: clamp(2.28rem, 10.8vw, 2.7rem);
    line-height: 1.01;
    letter-spacing: -0.03em;
  }

  .hero-media {
    position: relative;
    order: 3;
    display: block;
    margin-top: 24px;
  }

  .hero-photo {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(179, 141, 109, 0.28);
    border-radius: 150px 150px 22px 22px;
    background: var(--c-surface);
    box-shadow: 0 24px 58px rgba(23, 50, 72, 0.17);
  }

  .hero-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      transparent 64%,
      rgba(23, 50, 72, 0.2) 100%
    );
    pointer-events: none;
  }

  .hero-photo img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    object-fit: contain;
    object-position: center;
  }

  .hero-badge {
    position: absolute;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 13px;
    border: 1px solid rgba(255, 253, 252, 0.66);
    border-radius: var(--r-pill);
    background: rgba(255, 253, 252, 0.9);
    box-shadow: 0 12px 30px rgba(23, 50, 72, 0.14);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .hero-badge-ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: var(--r-pill);
    background: rgba(13, 94, 116, 0.1);
    color: var(--c-primary);
  }

  .hero-badge strong {
    display: block;
    font-size: 0.74rem;
    line-height: 1.2;
    letter-spacing: 0.04em;
    color: var(--c-primary-dark);
  }

  .hero-badge em {
    display: block;
    margin-top: 2px;
    font-size: 0.62rem;
    font-style: normal;
    line-height: 1.2;
    color: var(--c-muted);
  }

  .hero-orb {
    display: none;
  }

  .hero-subtitle {
    order: 4;
    max-width: none;
    margin: 18px 4px 0;
    padding-left: 14px;
    border-left: 2px solid var(--c-accent-light);
    font-size: 1.05rem;
    line-height: 1.34;
  }

  .hero-desc,
  .hero .chips,
  .hero-line {
    display: none;
  }

  .hero-actions {
    display: none;
  }

  .hero-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .hero-actions .btn-ghost {
    display: none;
  }

  .marquee {
    padding-block: 13px;
  }

  .mq-item {
    gap: 17px;
    padding-right: 17px;
    font-size: 1.06rem;
  }

  /* sobre */
  .about-grid {
    gap: 32px;
  }

  .about-photo {
    border-radius: 28px 28px 20px 20px;
    box-shadow: var(--mobile-shadow);
  }

  .about-photo img {
    aspect-ratio: 3 / 4;
    object-position: center;
  }

  .about-quote {
    max-width: calc(100% - 24px);
    margin: -42px 12px 0;
    padding: 18px 20px 19px;
    border-radius: 18px;
    box-shadow: 0 16px 38px rgba(64, 32, 63, 0.09);
  }

  .about-quote blockquote {
    margin-top: 5px;
    font-size: 1.12rem;
    line-height: 1.28;
  }

  .about-text .sec-head {
    margin-bottom: 20px;
  }

  .prose p {
    font-size: 0.94rem;
    line-height: 1.68;
  }

  .prose p + p {
    margin-top: 15px;
  }

  .about-hls {
    gap: 0;
    margin-top: 26px;
    padding-top: 8px;
  }

  .about-hl {
    gap: 12px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(179, 141, 109, 0.2);
  }

  .about-hl-ico {
    width: 40px;
    height: 40px;
    background: var(--c-surface);
    border: 1px solid rgba(179, 141, 109, 0.25);
  }

  .about-hl strong {
    font-size: 1.08rem;
  }

  .about-hl em {
    font-size: 0.76rem;
  }

  .about-text .btn {
    width: 100%;
    margin-top: 26px;
  }

  /* diferenciais compactos */
  .diff-grid {
    gap: 11px;
  }

  .diff-card {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    column-gap: 15px;
    padding: 19px;
    border-color: rgba(179, 141, 109, 0.27);
    border-radius: 20px;
    box-shadow: 0 10px 28px rgba(64, 32, 63, 0.05);
  }

  .diff-ico {
    grid-row: 1 / span 2;
    width: 44px;
    height: 44px;
    margin: 0;
  }

  .diff-card h3 {
    align-self: end;
    font-size: 1.2rem;
    line-height: 1.12;
  }

  .diff-card p {
    grid-column: 2;
    margin-top: 6px;
    font-size: 0.85rem;
    line-height: 1.5;
  }

  /* atendimentos: cards informativos sem excesso de altura */
  .svc-grid {
    gap: 13px;
  }

  .svc-card {
    padding: 21px;
    border-color: rgba(179, 141, 109, 0.28);
    border-radius: 22px;
    box-shadow: var(--mobile-shadow);
  }

  .svc-card::before {
    transform: scaleX(0.22);
  }

  .svc-head {
    gap: 13px;
    margin-bottom: 15px;
  }

  .svc-ico {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(13, 94, 116, 0.18);
  }

  .svc-card h3 {
    font-size: 1.24rem;
  }

  .svc-body {
    gap: 14px;
  }

  .svc-desc {
    font-size: 0.85rem;
    line-height: 1.52;
  }

  .svc-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 12px;
    padding-top: 14px;
  }

  .svc-list li {
    gap: 6px;
    font-size: 0.76rem;
    line-height: 1.36;
  }

  .svc-list svg {
    width: 13px;
    height: 13px;
  }

  .svc-link {
    width: 100%;
    justify-content: space-between;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(179, 141, 109, 0.24);
    font-size: 0.74rem;
  }

  /* público: lista refinada em vez de pilha de caixas */
  .dark-glow {
    top: -10%;
    right: -78%;
    width: 520px;
    height: 520px;
  }

  .aud-grid {
    gap: 0;
    border-top: 1px solid rgba(210, 174, 145, 0.22);
  }

  .aud-item {
    gap: 13px;
    padding: 16px 0;
    border: 0;
    border-bottom: 1px solid rgba(210, 174, 145, 0.22);
    border-radius: 0;
    background: transparent;
  }

  .aud-ico {
    width: 40px;
    height: 40px;
    background: rgba(210, 174, 145, 0.13);
  }

  .aud-item p {
    padding-top: 2px;
    font-size: 0.87rem;
    line-height: 1.5;
  }

  .aud-cta {
    margin-top: 28px;
  }

  .aud-cta .btn {
    width: 100%;
  }

  /* processo em linha do tempo */
  .steps {
    gap: 0;
  }

  .step {
    min-height: 112px;
    padding: 0 0 28px 62px;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .step::before {
    content: "";
    position: absolute;
    top: 48px;
    bottom: 0;
    left: 23px;
    width: 1px;
    background: linear-gradient(
      var(--c-accent-light),
      rgba(179, 141, 109, 0.18)
    );
  }

  .step:last-child {
    min-height: 0;
    padding-bottom: 0;
  }

  .step:last-child::before {
    display: none;
  }

  .step-num {
    position: static;
    display: block;
    margin-bottom: 3px;
    font-family: var(--f-body);
    font-size: 0.63rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--c-accent-dark);
  }

  .step-ico {
    position: absolute;
    top: 0;
    left: 0;
    width: 46px;
    height: 46px;
    margin: 0;
    border: 1px solid rgba(90, 41, 92, 0.12);
    background: var(--c-surface);
    box-shadow: 0 9px 24px rgba(64, 32, 63, 0.07);
  }

  .step h3 {
    font-size: 1.23rem;
  }

  .step p {
    margin-top: 5px;
    font-size: 0.84rem;
    line-height: 1.5;
  }

  /* modalidades */
  .mode-grid {
    gap: 13px;
  }

  .mode-card {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    align-items: center;
    gap: 0 14px;
    padding: 21px;
    border-radius: 22px;
    background:
      linear-gradient(
        135deg,
        rgba(255, 253, 252, 0.86),
        rgba(233, 221, 211, 0.62)
      );
    box-shadow: 0 12px 32px rgba(64, 32, 63, 0.06);
  }

  .mode-ico {
    grid-row: 1;
    width: 46px;
    height: 46px;
    margin: 0;
  }

  .mode-card h3 {
    grid-column: 2;
    font-size: 1.28rem;
  }

  .mode-card p,
  .mode-tag,
  .mode-link {
    grid-column: 1 / -1;
  }

  .mode-card p {
    margin-top: 16px;
    font-size: 0.86rem;
    line-height: 1.5;
  }

  .mode-tag {
    justify-self: start;
    margin-top: 15px;
    font-size: 0.73rem;
  }

  .mode-link {
    width: 100%;
    justify-content: space-between;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(179, 141, 109, 0.23);
    font-size: 0.76rem;
  }

  /* formação */
  .qual-list {
    gap: 10px;
  }

  .qual-item {
    gap: 13px;
    padding: 17px;
    border-radius: 18px;
    box-shadow: 0 9px 25px rgba(64, 32, 63, 0.04);
  }

  .qual-ico {
    width: 42px;
    height: 42px;
  }

  .qual-body h3 {
    font-size: 1.14rem;
    line-height: 1.15;
  }

  .qual-body p {
    margin-top: 5px;
    font-size: 0.81rem;
    line-height: 1.48;
  }

  /* dúvidas */
  .faq-list {
    gap: 9px;
  }

  .faq-item {
    border-radius: 17px;
    box-shadow: 0 8px 24px rgba(64, 32, 63, 0.04);
  }

  .faq-q {
    gap: 13px;
    padding: 18px;
    font-size: 1.08rem;
    line-height: 1.2;
  }

  .faq-chev {
    width: 32px;
    height: 32px;
  }

  .faq-a p {
    padding: 0 18px 19px;
    font-size: 0.85rem;
    line-height: 1.58;
  }

  /* contato */
  .cta-final h2 {
    max-width: 14.5ch;
    font-size: 2.15rem;
    line-height: 1.05;
  }

  .cta-desc {
    margin-top: 15px;
    font-size: 0.88rem;
    line-height: 1.58;
  }

  .contact-grid {
    gap: 28px;
  }

  .cta-meta {
    gap: 0;
    margin-top: 22px;
    padding-top: 10px;
  }

  .cta-meta li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(210, 174, 145, 0.18);
  }

  .cta-meta a {
    font-size: 0.82rem;
  }

  .cta-note {
    margin-top: 18px;
    font-size: 0.64rem;
  }

  .contact-form {
    padding: 21px;
    border-radius: 22px;
    box-shadow: 0 24px 58px rgba(23, 50, 72, 0.28);
  }

  .contact-form h3 {
    margin-bottom: 18px;
    padding-bottom: 15px;
    font-size: 1.3rem;
  }

  .field {
    margin-bottom: 13px;
  }

  .field-label {
    font-size: 0.69rem;
  }

  .field input,
  .field textarea {
    min-height: 50px;
    padding: 12px 14px;
    border-radius: 13px;
    font-size: 0.89rem;
  }

  .field textarea {
    min-height: 108px;
  }

  .form-privacy {
    font-size: 0.7rem;
  }

  /* rodapé mais compacto e escaneável */
  .site-footer {
    padding-top: 54px;
    padding-bottom: calc(86px + env(safe-area-inset-bottom, 0px));
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 22px;
  }

  .footer-brand,
  .footer-col:has(.footer-contact) {
    grid-column: 1 / -1;
  }

  .footer-brand img {
    height: 52px;
  }

  .footer-brand p {
    max-width: 34ch;
    font-size: 0.84rem;
  }

  .footer-col h4 {
    margin-bottom: 12px;
    font-size: 0.67rem;
  }

  .footer-col ul {
    gap: 9px;
  }

  .footer-col a,
  .footer-formats li {
    font-size: 0.81rem;
  }

  .footer-legal {
    margin-top: 36px;
    padding-top: 22px;
  }

  .legal-text {
    font-size: 0.72rem;
  }

  .footer-bottom {
    gap: 7px;
    margin-top: 20px;
    padding-top: 18px;
    font-size: 0.71rem;
  }

  /* barra fixa de conversão, respeitando a área segura */
  .wa-float {
    right: 16px;
    bottom: max(12px, env(safe-area-inset-bottom, 0px));
    left: auto;
    justify-content: center;
    width: 52px;
    height: 52px;
    min-height: 52px;
    padding: 0;
    background: var(--g-secondary);
    color: #fff;
    box-shadow: 0 14px 34px rgba(90, 41, 92, 0.32);
  }

  .wa-label {
    display: none;
  }

  .wa-pulse {
    display: none;
  }

  .to-top {
    right: 22px;
    bottom: calc(78px + env(safe-area-inset-bottom, 0px));
    width: 40px;
    height: 40px;
  }

  .grain {
    opacity: 0.09;
  }
}

@media (max-width: 359px) {
  :root {
    --pad: 16px;
  }

  .hero-title {
    font-size: 2.42rem;
  }

  .svc-list {
    grid-template-columns: 1fr;
  }

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

  .footer-brand,
  .footer-col:has(.footer-contact) {
    grid-column: auto;
  }
}

@media (hover: none) {
  .diff-card:hover,
  .svc-card:hover,
  .aud-item:hover,
  .step:hover,
  .mode-card:hover,
  .qual-item:hover {
    transform: none;
  }
}

/* =======================================================
   23. RESPONSIVO
   ======================================================= */
@media (min-width: 600px) {
  .aud-grid,
  .diff-grid,
  .steps,
  .mode-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .svc-card {
    padding: 26px;
  }

  .svc-body {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.9fr);
    gap: clamp(22px, 4vw, 40px);
  }

  .svc-list {
    padding-top: 0;
    padding-left: clamp(20px, 3vw, 30px);
    border-top: 0;
    border-left: 1px solid var(--c-border);
  }

  .wa-label {
    display: inline;
  }

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

  .wa-float {
    padding: 14px 22px 14px 18px;
  }

  .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 900px) {
  :root {
    --header-h: 84px;
  }

  .nav-desktop {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2.2vw, 32px);
    margin-left: auto;
  }

  .nav-link {
    position: relative;
    font-size: 0.86rem;
    font-weight: 500;
    color: var(--c-text-2);
    transition: color 0.3s var(--ease);
  }

  .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 1px;
    background: var(--c-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s var(--ease);
  }

  .nav-link:hover,
  .nav-link.active {
    color: var(--c-primary-dark);
  }

  .nav-link:hover::after,
  .nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .nav-cta {
    display: inline-flex;
    margin-left: 8px;
    padding: 11px 20px;
    font-size: 0.84rem;
  }

  .language-switcher {
    margin-left: 6px;
  }

  .burger,
  .menu-overlay {
    display: none;
  }

  .brand-symbol {
    display: none;
  }

  .brand-full {
    display: block;
  }

  /* hero split */
  .hero {
    min-height: 100vh;
    padding-top: calc(var(--header-h) + 26px);
    padding-bottom: 52px;
  }

  .hero-bg-wrap {
    display: none;
  }

  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--g-elegant);
  }

  .hero-grid {
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    align-items: center;
    gap: clamp(30px, 4vw, 64px);
  }

  .hero-title {
    font-size: clamp(2.7rem, 3.5vw, 3.9rem);
    line-height: 1.06;
  }

  .hero-subtitle {
    font-size: clamp(1.2rem, 1.5vw, 1.45rem);
  }

  .hero-actions .btn {
    flex: 0 1 auto;
    min-width: 0;
  }

  .hero-media {
    position: relative;
    display: block;
  }

  .hero-photo {
    position: relative;
    border-radius: 280px 280px var(--r-lg) var(--r-lg);
    overflow: hidden;
    box-shadow: var(--sh-strong);
  }

  .hero-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      200deg,
      transparent 52%,
      rgba(23, 50, 72, 0.24) 100%
    );
  }

  .hero-photo img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    object-fit: contain;
    object-position: center;
    will-change: transform;
  }

  .hero-orb {
    position: absolute;
    right: -14%;
    bottom: -12%;
    z-index: -1;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(
      circle,
      rgba(102, 148, 157, 0.36) 0%,
      transparent 68%
    );
  }

  .hero-badge {
    position: absolute;
    left: -26px;
    bottom: 42px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 15px 22px 15px 17px;
    border: 1px solid var(--c-border);
    border-radius: var(--r-pill);
    background: rgba(255, 253, 252, 0.94);
    box-shadow: var(--sh-medium);
    backdrop-filter: blur(10px);
  }

  .hero-badge-ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: var(--r-pill);
    background: rgba(13, 94, 116, 0.1);
    color: var(--c-primary);
  }

  .hero-badge strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--c-primary-dark);
  }

  .hero-badge em {
    font-size: 0.74rem;
    font-style: normal;
    color: var(--c-muted);
  }

  .scroll-hint {
    display: block;
  }

  /* seções */
  .about-grid {
    grid-template-columns: 0.92fr 1.08fr;
    align-items: center;
  }

  .about-quote {
    max-width: 306px;
    margin-top: -38px;
    padding: 18px 20px 19px 18px;
  }

  .about-quote blockquote {
    margin-top: 5px;
    font-size: 1.08rem;
    line-height: 1.32;
  }

  .about-quote .quote-ico svg {
    width: 18px;
    height: 18px;
  }

  .diff-grid,
  .steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }

  .aud-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .qual-list {
    gap: 16px;
  }

  .contact-grid {
    grid-template-columns: 1fr 1.02fr;
    align-items: center;
  }

  .contact-intro {
    padding-right: clamp(0px, 3vw, 40px);
  }

  .footer-grid {
    grid-template-columns: 1.7fr 1fr 1fr 1.15fr;
    gap: 40px;
  }

  .to-top {
    right: 22px;
    bottom: 96px;
  }

  .wa-float {
    right: 24px;
    bottom: 24px;
  }
}

@media (min-width: 1240px) {
  .services .wrap {
    max-width: 1330px;
  }

  .svc-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .svc-card {
    padding: 26px 28px;
  }
}

/* =======================================================
   23. MOVIMENTO REDUZIDO
   ======================================================= */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .mq-track {
    animation: none;
  }
}

/* =======================================================
   24. IMPRESSÃO
   ======================================================= */
@media print {
  .site-header,
  .menu-overlay,
  .wa-float,
  .to-top,
  .grain,
  .progress,
  .marquee,
  .scroll-hint {
    display: none !important;
  }

  body {
    background: #fff;
  }
}
