/* ============================================================
   CARAÍBAS — Design System v1.0
   ============================================================ */

/* ---------- TOKENS ---------- */
:root {
  /* Cores */
  --color-primary:      #183C34;
  --color-primary-dark: #102B26;
  --color-primary-mid:  #2D574E;
  --color-base:         #F4F0E7;
  --color-base-soft:    #FBF8F2;
  --color-accent:       #B59A67;
  --color-text:         #1D2A26;
  --color-text-muted:   #6E716A;
  --color-border:       #D9D2C6;

  /* Tipografia */
  --font-display: "Cormorant Garamond", serif;
  --font-body:    "Manrope", sans-serif;

  /* Border radius */
  --radius-sm:   12px;
  --radius-md:   20px;
  --radius-lg:   28px;
  --radius-pill: 999px;

  /* Sombras */
  --shadow-soft:  0 8px 30px rgba(16, 43, 38, 0.05);
  --shadow-hover: 0 12px 36px rgba(16, 43, 38, 0.08);

  /* Espaçamentos */
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;
  --space-7: 96px;
  --space-8: 128px;

  /* Layout */
  --container: 1200px;
  --container-text: 800px;
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ---------- CONTAINER ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-4);
}

/* ---------- LABEL TAG ---------- */
.label-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-3);
}
.label-tag--light {
  color: rgba(181, 154, 103, 0.85);
}

/* ---------- SECTION BASE ---------- */
.section {
  padding-block: var(--space-8);
}
.section--dark {
  background-color: var(--color-primary);
}
.section--soft {
  background-color: var(--color-base-soft);
}
.section__header {
  text-align: center;
  max-width: var(--container-text);
  margin-inline: auto;
  margin-bottom: var(--space-7);
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.08;
  color: var(--color-primary);
}
.section__title--light {
  color: var(--color-base);
}
.section__lead {
  font-size: 20px;
  line-height: 1.65;
  color: var(--color-text-muted);
  margin-top: var(--space-3);
}
.section__lead--light {
  color: rgba(244, 240, 231, 0.75);
}
.section__lead strong {
  color: var(--color-accent);
  font-weight: 600;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  border-radius: var(--radius-pill);
  height: 52px;
  padding-inline: 28px;
  transition: background-color 220ms ease, box-shadow 220ms ease, color 220ms ease, border-color 220ms ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn--large {
  height: 60px;
  padding-inline: 36px;
  font-size: 16px;
}

/* Primário */
.btn--primary {
  background-color: var(--color-primary);
  color: var(--color-base);
  box-shadow: var(--shadow-soft);
}
.btn--primary:hover {
  background-color: var(--color-primary-dark);
  box-shadow: var(--shadow-hover);
}

/* Secundário */
.btn--secondary {
  background-color: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-accent);
}
.btn--secondary:hover {
  background-color: rgba(181, 154, 103, 0.08);
}

/* Accent (WhatsApp CTA) */
.btn--accent {
  background-color: var(--color-accent);
  color: var(--color-primary-dark);
  box-shadow: var(--shadow-soft);
}
.btn--accent:hover {
  background-color: #a08559;
  box-shadow: var(--shadow-hover);
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: rgba(244, 240, 231, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: background-color 300ms ease, box-shadow 300ms ease;
}
.nav.scrolled {
  background-color: rgba(244, 240, 231, 0.98);
  box-shadow: var(--shadow-soft);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: var(--space-4);
}
.nav__logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-shrink: 0;
}
.nav__logo-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1;
}
.nav__logo-sub {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  line-height: 1;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-5);
}
.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color 200ms ease;
}
.nav__link:hover {
  color: var(--color-primary);
}
.nav__cta {
  height: 44px;
  padding-inline: 22px;
  font-size: 14px;
}

/* Mobile/Tablet toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}
.nav__toggle span {
  display: block;
  height: 2px;
  background-color: var(--color-primary);
  border-radius: 2px;
  transition: transform 300ms ease, opacity 300ms ease;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 72px;
  padding-bottom: var(--space-7);
  background-color: var(--color-base);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at var(--glow-x, 70%) var(--glow-y, 50%), rgba(181, 154, 103, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-7);
  padding-top: var(--space-6);
}
.hero__eyebrow {
  margin-bottom: var(--space-4);
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 600;
  line-height: 1.05;
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}
.hero__title em {
  font-style: italic;
  color: var(--color-accent);
}
.hero__subtitle {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 400;
  font-style: italic;
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}
.hero__body {
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-text-muted);
  max-width: 520px;
  margin-bottom: var(--space-5);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}
.hero__note {
  font-size: 13px;
  color: var(--color-text-muted);
  font-style: italic;
}

/* Hero badge */
.hero__badge {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__badge-inner {
  background-color: var(--color-primary);
  color: var(--color-base);
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-5);
  text-align: center;
  max-width: 340px;
  box-shadow: var(--shadow-hover);
}
.hero__badge-quote {
  font-family: var(--font-display);
  font-size: 24px;
  font-style: italic;
  line-height: 1.4;
  color: var(--color-base);
}
.hero__badge-divider {
  width: 40px;
  height: 1px;
  background-color: var(--color-accent);
  margin: var(--space-4) auto;
}
.hero__badge-brand {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-accent);
  letter-spacing: 0.05em;
}

/* Scroll indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
}
.hero__scroll-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, var(--color-accent), transparent);
  margin-inline: auto;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.15); }
}

/* ============================================================
   PROBLEMA
   ============================================================ */
.problema__intro {
  font-size: 17px;
  color: rgba(244, 240, 231, 0.72);
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: var(--space-6);
}
.problema__list {
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: var(--space-7);
}
.problema__list-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  color: rgba(244, 240, 231, 0.6);
  margin-bottom: var(--space-4);
}
.problem-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.problem-item {
  display: flex;
  gap: var(--space-3);
  font-size: 16px;
  color: rgba(244, 240, 231, 0.82);
  align-items: flex-start;
}
.problem-item__icon {
  color: var(--color-accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.dores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-4);
}
.dor-card {
  background-color: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
}
.dor-card__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--color-base);
  margin-bottom: var(--space-2);
}
.dor-card__text {
  font-size: 15px;
  color: rgba(244, 240, 231, 0.65);
  line-height: 1.65;
}

/* ============================================================
   VIRADA / SOBRE / DIFERENCIAL
   ============================================================ */
.virada__inner {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: var(--space-7);
}
.virada__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.08;
  color: var(--color-primary);
  margin-bottom: var(--space-5);
}
.virada__text {
  font-size: 17px;
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
}
.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}
.diferencial-card {
  background-color: var(--color-base-soft);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  box-shadow: var(--shadow-soft);
  transition: box-shadow 220ms ease;
}
.diferencial-card:hover {
  box-shadow: var(--shadow-hover);
}
.diferencial-card__number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: var(--space-3);
}
.diferencial-card__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}
.diferencial-card__text {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.65;
}
.diferencial-destaque {
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-6);
  text-align: center;
}
.diferencial-destaque__text {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-style: italic;
  line-height: 1.4;
  color: var(--color-text-muted);
}
.diferencial-destaque__text strong {
  font-style: normal;
  color: var(--color-primary);
}

/* ============================================================
   SERVIÇOS
   ============================================================ */
.servicos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}
.servico-card {
  background-color: var(--color-base);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  box-shadow: var(--shadow-soft);
  transition: box-shadow 220ms ease, transform 220ms ease;
}
.servico-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}
.servico-card__num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 400;
  color: var(--color-border);
  line-height: 1;
  margin-bottom: var(--space-3);
}
.servico-card__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-2);
  line-height: 1.2;
}
.servico-card__text {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.65;
}
.servicos-cta {
  text-align: center;
}

/* ============================================================
   PROCESSO / COMO FUNCIONA
   ============================================================ */
.processo-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  overflow-x: auto;
  padding-bottom: var(--space-3);
}
.processo-step {
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: var(--space-4);
}
.processo-step__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: var(--color-base);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  margin-bottom: var(--space-3);
  flex-shrink: 0;
}
.processo-step__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}
.processo-step__text {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
}
.processo-connector {
  flex-shrink: 0;
  width: 40px;
  height: 1px;
  background-color: var(--color-accent);
  margin-top: 28px;
  opacity: 0.5;
}

/* ============================================================
   NÚMEROS
   ============================================================ */
.numeros-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}
.numero-card {
  background-color: rgba(255,255,255,0.04);
  border: 1px solid rgba(181,154,103,0.2);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  text-align: center;
}
.numero-card__value {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 60px);
  font-weight: 600;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: var(--space-3);
}
.numero-card__label {
  font-size: 14px;
  color: rgba(244, 240, 231, 0.6);
  line-height: 1.5;
}
.numeros__note {
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  color: rgba(244, 240, 231, 0.6);
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-4);
}
.depoimento-card {
  background-color: var(--color-base);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.depoimento-card__aspas {
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 1;
  color: var(--color-accent);
  opacity: 0.5;
  margin-bottom: -var(--space-3);
}
.depoimento-card__texto {
  font-family: var(--font-display);
  font-size: 19px;
  font-style: italic;
  line-height: 1.55;
  color: var(--color-text);
  flex: 1;
}
.depoimento-card__autor {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border);
}
.depoimento-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: var(--color-base);
  font-family: var(--font-display);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.depoimento-card__nome {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-primary);
}
.depoimento-card__empresa {
  display: block;
  font-size: 13px;
  color: var(--color-text-muted);
  margin-top: 2px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--color-border);
}
.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-4) 0;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--color-primary);
  text-align: left;
  transition: color 200ms ease;
}
.faq-item__question:hover {
  color: var(--color-primary-mid);
}
.faq-item__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  transition: background-color 220ms ease, border-color 220ms ease;
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  background-color: var(--color-primary);
  border-radius: 2px;
  transition: transform 300ms ease, opacity 300ms ease;
}
.faq-item__icon::before {
  width: 12px;
  height: 1.5px;
}
.faq-item__icon::after {
  width: 1.5px;
  height: 12px;
}
.faq-item__question[aria-expanded="true"] .faq-item__icon {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}
.faq-item__question[aria-expanded="true"] .faq-item__icon::before {
  background-color: var(--color-base);
}
.faq-item__question[aria-expanded="true"] .faq-item__icon::after {
  background-color: var(--color-base);
  transform: rotate(90deg);
  opacity: 0;
}
.faq-item__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 300ms ease;
}
.faq-item__answer.open {
  grid-template-rows: 1fr;
}
.faq-item__answer > p {
  overflow: hidden;
  padding-bottom: var(--space-4);
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final__inner {
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
}
.cta-final__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 600;
  line-height: 1.08;
  color: var(--color-base);
  margin-bottom: var(--space-5);
}
.cta-final__text {
  font-size: 17px;
  color: rgba(244, 240, 231, 0.7);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}
.cta-final__actions {
  margin-bottom: var(--space-5);
}
.cta-final__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  flex-wrap: wrap;
  font-size: 14px;
  color: rgba(181, 154, 103, 0.7);
}
.cta-final__dot {
  opacity: 0.4;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background-color: var(--color-primary-dark);
  color: var(--color-base);
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-6);
  padding-top: var(--space-7);
  padding-bottom: var(--space-7);
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--color-base);
  line-height: 1;
  margin-bottom: 4px;
}
.footer__tagline {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-3);
}
.footer__desc {
  font-size: 14px;
  color: rgba(244, 240, 231, 0.5);
  line-height: 1.65;
  max-width: 320px;
}
.footer__links-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-4);
}
.footer__links nav,
.footer__contato {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.footer__link {
  font-size: 14px;
  color: rgba(244, 240, 231, 0.6);
  transition: color 200ms ease;
}
.footer__link:hover {
  color: var(--color-base);
}
.footer__whatsapp {
  color: var(--color-accent);
}
.footer__whatsapp:hover {
  color: #c9b07f;
}
.footer__location {
  font-size: 14px;
  color: rgba(244, 240, 231, 0.4);
  margin-top: var(--space-1);
}
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: var(--space-4);
  flex-wrap: wrap;
  gap: var(--space-2);
}
.footer__copy {
  font-size: 13px;
  color: rgba(244, 240, 231, 0.35);
}

/* ============================================================
   READING PROGRESS BAR
   ============================================================ */
.reading-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--color-accent);
  transition: width 80ms linear;
  will-change: width;
  z-index: 2;
}
.nav__link--active {
  color: var(--color-accent) !important;
}

/* ============================================================
   CURSOR PERSONALIZADO (desktop only)
   ============================================================ */
@media (pointer: fine) {
  body { cursor: none; }
  a, button { cursor: none; }

  .cursor {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    will-change: transform;
    top: 0;
    left: 0;
  }
  .cursor--dot {
    width: 6px;
    height: 6px;
    background-color: var(--color-primary);
    margin: -3px 0 0 -3px;
  }
  .cursor--ring {
    width: 32px;
    height: 32px;
    border: 1.5px solid var(--color-accent);
    margin: -16px 0 0 -16px;
    transition: width 220ms ease, height 220ms ease, margin 220ms ease,
                background-color 220ms ease, border-color 220ms ease,
                opacity 220ms ease;
    opacity: 0.7;
  }
  .cursor--ring.cursor--hover {
    width: 52px;
    height: 52px;
    margin: -26px 0 0 -26px;
    background-color: rgba(181, 154, 103, 0.12);
    border-color: var(--color-accent);
    opacity: 1;
  }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background-color: var(--color-primary);
  border-top: 1px solid rgba(181, 154, 103, 0.15);
  border-bottom: 1px solid rgba(181, 154, 103, 0.15);
  overflow: hidden;
  padding: 13px 0;
  user-select: none;
}
.trust-bar__track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 28px;
  animation: marquee 32s linear infinite;
}
.trust-bar:hover .trust-bar__track {
  animation-play-state: paused;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.trust-bar__item {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: rgba(244, 240, 231, 0.72);
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.trust-bar__sep {
  color: var(--color-accent);
  font-size: 16px;
  opacity: 0.5;
  flex-shrink: 0;
}

/* ============================================================
   COMPARATIVO
   ============================================================ */
.comparativo__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  margin-bottom: var(--space-6);
}
.comparativo__col {
  padding: var(--space-6);
}
.comparativo__col--sem {
  background-color: var(--color-base);
  border: 1px solid var(--color-border);
  border-right: none;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}
.comparativo__col--com {
  background-color: var(--color-primary);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}
.comparativo__label {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-5);
}
.comparativo__label--com {
  color: rgba(181, 154, 103, 0.8);
}
.comparativo__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.comparativo__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: 16px;
  line-height: 1.5;
}
.comparativo__item--sem {
  color: var(--color-text-muted);
}
.comparativo__item--com {
  color: rgba(244, 240, 231, 0.88);
}
.comparativo__icon {
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================================
   MAPA DE MERCADO (SVG)
   ============================================================ */
.mercado-mapa {
  margin: var(--space-6) auto;
  max-width: 560px;
}
.mercado-mapa__svg {
  width: 100%;
  height: auto;
  display: block;
}
.mapa-highlight {
  animation: mapaGlow 2.4s ease-in-out infinite alternate;
}
.mapa-highlight:nth-child(5)  { animation-delay: 0ms; }
.mapa-highlight:nth-child(8)  { animation-delay: 400ms; }
.mapa-highlight:nth-child(12) { animation-delay: 800ms; }
.mapa-highlight:nth-child(15) { animation-delay: 1200ms; }
.mapa-highlight:nth-child(19) { animation-delay: 600ms; }
.mapa-highlight:nth-child(22) { animation-delay: 1000ms; }
@keyframes mapaGlow {
  from { opacity: 0.45; }
  to   { opacity: 0.9; }
}
.mercado-mapa__legenda {
  display: flex;
  justify-content: center;
  gap: var(--space-5);
  margin-top: var(--space-3);
}
.mercado-mapa__leg {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(244, 240, 231, 0.5);
  font-weight: 500;
}
.mercado-mapa__leg::before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 3px;
  flex-shrink: 0;
}
.mercado-mapa__leg--oculto::before {
  background-color: rgba(244, 240, 231, 0.1);
  border: 1px solid rgba(244, 240, 231, 0.2);
}
.mercado-mapa__leg--oport::before {
  background-color: rgba(181, 154, 103, 0.65);
}

/* ============================================================
   QUIZ / AUTODIAGNÓSTICO
   ============================================================ */
.quiz {
  max-width: 680px;
  margin-inline: auto;
}
.quiz__progress-bar {
  height: 2px;
  background-color: rgba(255,255,255,0.1);
  border-radius: 2px;
  margin-bottom: var(--space-6);
  overflow: hidden;
}
.quiz__progress-fill {
  height: 100%;
  background-color: var(--color-accent);
  border-radius: 2px;
  width: 0%;
  transition: width 400ms cubic-bezier(0.22, 1, 0.36, 1);
}
.quiz__step {
  display: none;
}
.quiz__step.active {
  display: block;
  animation: quizFadeIn 380ms cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes quizFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.quiz__pergunta {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 600;
  color: var(--color-base);
  margin-bottom: var(--space-5);
  line-height: 1.2;
}
.quiz__opcoes {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.quiz__opcao {
  background-color: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: rgba(244, 240, 231, 0.82);
  text-align: left;
  cursor: pointer;
  transition: background-color 200ms ease, border-color 200ms ease, color 200ms ease;
}
.quiz__opcao:hover {
  background-color: rgba(181, 154, 103, 0.12);
  border-color: rgba(181, 154, 103, 0.4);
  color: var(--color-base);
}
/* Resultado */
.quiz__resultado {
  text-align: center;
}
.quiz__resultado-icon {
  margin-bottom: var(--space-4);
  display: flex;
  justify-content: center;
}
.quiz__resultado-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-3);
}
.quiz__resultado-servico {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 600;
  color: var(--color-base);
  margin-bottom: var(--space-3);
  line-height: 1.15;
}
.quiz__resultado-texto {
  font-size: 16px;
  color: rgba(244, 240, 231, 0.65);
  max-width: 480px;
  margin-inline: auto;
  margin-bottom: var(--space-5);
  line-height: 1.65;
}
.quiz__resultado-cta {
  display: inline-flex;
  margin-bottom: var(--space-4);
}
.quiz__reiniciar {
  display: block;
  margin-inline: auto;
  font-size: 13px;
  color: rgba(244, 240, 231, 0.4);
  text-decoration: underline;
  text-underline-offset: 3px;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 200ms ease;
}
.quiz__reiniciar:hover {
  color: rgba(244, 240, 231, 0.7);
}

/* ============================================================
   TILT SHINE (::after nos depoimento-card)
   ============================================================ */
.depoimento-card {
  position: relative;
  overflow: hidden;
}
.depoimento-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  background: radial-gradient(
    circle at var(--shine-x, 50%) var(--shine-y, 50%),
    rgba(181, 154, 103, 0.08) 0%,
    transparent 65%
  );
  pointer-events: none;
  opacity: 0;
  transition: opacity 220ms ease;
}
.depoimento-card:hover::after {
  opacity: 1;
}

/* ============================================================
   RESPONSIVO — novas seções
   ============================================================ */
@media (max-width: 960px) {
  .comparativo__grid {
    grid-template-columns: 1fr;
  }
  .comparativo__col--sem {
    border-right: 1px solid var(--color-border);
    border-bottom: none;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }
  .comparativo__col--com {
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  }
}
@media (max-width: 640px) {
  .mercado-mapa__legenda {
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
  }
  .quiz__opcao {
    padding: var(--space-3) var(--space-4);
    font-size: 15px;
  }
}

/* ============================================================
   WHATSAPP FLUTUANTE
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  background-color: #25D366;
  color: #fff;
  border-radius: var(--radius-pill);
  padding: 14px 22px 14px 18px;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.35);
  font-size: 14px;
  font-weight: 600;
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.45);
}
.whatsapp-float__label {
  white-space: nowrap;
}

/* ============================================================
   SOMBRA ENTRE SEÇÕES
   ============================================================ */
.section--shadowed {
  position: relative;
}
.section--shadowed::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, rgba(16, 43, 38, 0.07), transparent);
  pointer-events: none;
  z-index: 1;
}
.section--shadowed::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, rgba(16, 43, 38, 0.07), transparent);
  pointer-events: none;
  z-index: 1;
}
.section--dark.section--shadowed::before {
  background: linear-gradient(to bottom, rgba(0,0,0,0.18), transparent);
}
.section--dark.section--shadowed::after {
  background: linear-gradient(to top, rgba(0,0,0,0.18), transparent);
}

/* ============================================================
   CTA DE SEÇÃO
   ============================================================ */
.section-cta {
  margin-top: var(--space-7);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-border);
}
.section-cta--light {
  border-top-color: rgba(255,255,255,0.1);
}
.section-cta__hook {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 24px);
  font-style: italic;
  color: var(--color-text-muted);
  max-width: 560px;
  line-height: 1.4;
}
.section--dark .section-cta__hook {
  color: rgba(244, 240, 231, 0.65);
}

/* ============================================================
   ANIMAÇÕES DE SCROLL (reveal system)
   ============================================================ */

/* Base — estado inicial invisível */
.reveal {
  opacity: 0;
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

/* Direções */
.reveal--up    { transform: translateY(40px); }
.reveal--left  { transform: translateX(-48px); }
.reveal--right { transform: translateX(48px); }
.reveal--scale { transform: scale(0.94); }

/* Estado visível */
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Stagger grid — container */
.stagger-grid {
  /* nada aqui, apenas marca os filhos */
}

/* Stagger items — estado inicial */
.stagger-item {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 600ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.stagger-item.is-visible {
  opacity: 1;
  transform: none;
}

/* Delays escalonados para os filhos (aplicados via JS) */
.stagger-item:nth-child(1)  { transition-delay: 0ms; }
.stagger-item:nth-child(2)  { transition-delay: 100ms; }
.stagger-item:nth-child(3)  { transition-delay: 200ms; }
.stagger-item:nth-child(4)  { transition-delay: 300ms; }
.stagger-item:nth-child(5)  { transition-delay: 400ms; }
.stagger-item:nth-child(6)  { transition-delay: 500ms; }

/* Compatibilidade com classe antiga fade-up */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.fade-up.visible,
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up--delay {
  transition-delay: 180ms;
}

/* ============================================================
   RESPONSIVE — TABLET (≤960px)
   ============================================================ */
@media (max-width: 960px) {
  /* Nav: ativar hambúrguer no tablet */
  .nav__toggle {
    display: flex;
  }
  .nav__links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background-color: var(--color-base);
    border-bottom: 1px solid var(--color-border);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: var(--space-3) var(--space-4);
    transform: translateY(-110%);
    opacity: 0;
    transition: transform 300ms ease, opacity 300ms ease;
    pointer-events: none;
  }
  .nav__links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav__link {
    padding: var(--space-3) 0;
    font-size: 16px;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text);
  }
  .nav__link:last-of-type {
    border-bottom: none;
  }
  .nav__cta {
    margin-top: var(--space-3);
    text-align: center;
    justify-content: center;
    height: 52px;
  }

  /* Hero */
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero__body {
    margin-inline: auto;
  }
  .hero__actions {
    justify-content: center;
  }
  .hero__badge {
    display: none;
  }

  /* Processo */
  .processo-steps {
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
  }
  .processo-connector {
    width: 1px;
    height: 32px;
    margin-top: 0;
  }
  .processo-step {
    max-width: 400px;
    width: 100%;
  }

  /* Footer */
  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer__brand {
    grid-column: 1 / -1;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 640px) {
  :root {
    --space-7: 64px;
    --space-8: 80px;
  }
  .section {
    padding-block: var(--space-7);
  }

  /* Hero mobile */
  .hero {
    padding-bottom: var(--space-6);
    text-align: center;
  }
  .hero__actions {
    flex-direction: column;
  }
  .btn--large {
    width: 100%;
    justify-content: center;
    height: 56px;
  }

  /* Sections */
  .section__title {
    font-size: 30px;
  }
  .virada__title {
    font-size: 30px;
  }
  .dores-grid {
    grid-template-columns: 1fr;
  }
  .diferenciais-grid {
    grid-template-columns: 1fr;
  }
  .servicos-grid {
    grid-template-columns: 1fr;
  }
  .numeros-grid {
    grid-template-columns: 1fr;
  }
  .depoimentos-grid {
    grid-template-columns: 1fr;
  }
  .footer__inner {
    grid-template-columns: 1fr;
  }
  .footer__brand {
    grid-column: auto;
  }
  .footer__bottom-inner {
    flex-direction: column;
    text-align: center;
  }
  .whatsapp-float__label {
    display: none;
  }
  .whatsapp-float {
    width: 56px;
    height: 56px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
  .cta-final__trust {
    flex-direction: column;
    gap: var(--space-2);
  }
  .cta-final__dot {
    display: none;
  }
  .faq-item__question {
    font-size: 17px;
  }
}
