/* Poppins — self-hosted (brand fonts fornecidos pelo cliente) */
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 300; font-display: swap; src: url("fonts/Poppins-Light.ttf") format("truetype"); }
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 400; font-display: swap; src: url("fonts/Poppins-Regular.ttf") format("truetype"); }
@font-face { font-family: 'Poppins'; font-style: italic; font-weight: 400; font-display: swap; src: url("fonts/Poppins-Italic.ttf") format("truetype"); }
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 500; font-display: swap; src: url("fonts/Poppins-Medium.ttf") format("truetype"); }
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 600; font-display: swap; src: url("fonts/Poppins-SemiBold.ttf") format("truetype"); }
@font-face { font-family: 'Poppins'; font-style: italic; font-weight: 600; font-display: swap; src: url("fonts/Poppins-SemiBoldItalic.ttf") format("truetype"); }
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 700; font-display: swap; src: url("fonts/Poppins-Bold.ttf") format("truetype"); }
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 800; font-display: swap; src: url("fonts/Poppins-ExtraBold.ttf") format("truetype"); }
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 900; font-display: swap; src: url("fonts/Poppins-Black.ttf") format("truetype"); }

/* ============== NEO JOINVILLE — DESIGN TOKENS ============== */
:root {
  --white: #FFFFFF;
  --gray-50: #F5F5F5;
  --gray-200: #C3C6CC;
  --gray-500: #646C75;
  --gray-900: #3F454B;
  --lime: #B7C72C;
  --lime-hover: #A3B324;
  --wa: #25D366;
  --wa-hover: #1FB955;

  --shadow-sm: 0 2px 8px rgba(63, 69, 75, 0.05);
  --shadow: 0 4px 20px rgba(63, 69, 75, 0.08);
  --shadow-lg: 0 12px 40px rgba(63, 69, 75, 0.12);

  --radius-card: 12px;
  --radius-pill: 50px;

  --container: 1200px;
  --section-pad: 80px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body { width: 100%; overflow-x: hidden; }
html { scroll-behavior: smooth; }

/* Easing token used in every transition */
:root { --ease: cubic-bezier(0.4, 0, 0.2, 1); }

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

/* ============== TYPOGRAPHY ============== */
h1, h2, h3, h4 { font-weight: 600; line-height: 1.2; color: var(--gray-900); letter-spacing: -0.01em; }
h1 { font-size: clamp(34px, 5vw, 51px); }
h2 { font-size: clamp(26px, 3.4vw, 32px); }
h3 { font-size: clamp(20px, 2.2vw, 24px); }

.lime { color: var(--lime); }
.muted { color: var(--gray-500); }

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--lime);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-cta { text-align: center; margin-top: 48px; }
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-head p { color: var(--gray-500); margin-top: 14px; font-size: 17px; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: var(--section-pad) 0; }

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 15px;
  min-height: 52px;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--lime);
  color: var(--white);
  box-shadow: 0 6px 16px rgba(183, 199, 44, 0.35);
}
.btn-primary:hover { background: var(--lime-hover); color: var(--white); transform: translateY(-1px); box-shadow: 0 10px 24px rgba(183, 199, 44, 0.45); }
.btn-primary svg { color: var(--white); fill: currentColor; }
.btn-outline {
  background: transparent;
  color: var(--gray-900);
  border: 1.5px solid var(--gray-200);
}
.btn-outline:hover { border-color: var(--gray-900); }
.btn-lg { padding: 20px 40px; min-height: 64px; font-size: 17px; }

/* ============== TOPBAR ============== */
.topbar {
  background: var(--gray-900);
  color: var(--white);
  font-size: 13px;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar a { color: var(--white); opacity: .85; transition: opacity .2s; }
.topbar a:hover { opacity: 1; }
.topbar .right { display: flex; gap: 20px; }

/* ============== HEADER ============== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--container);
  margin: 0 auto;
  gap: 24px;
}
.logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: var(--gray-900);
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.logo .city { color: var(--lime); }

.nav { display: flex; gap: 28px; }
.nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-900);
  position: relative;
  padding: 6px 0;
  transition: color .15s;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--lime);
  transition: width .25s ease;
}
.nav a:hover { color: var(--lime); }
.nav a:hover::after { width: 100%; }

.menu-btn { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; border-radius: 8px; }
.menu-btn svg { width: 24px; height: 24px; stroke: var(--gray-900); }
.menu-btn:hover { background: var(--gray-50); }

/* ============== AUTHORITY BAR ============== */
.authority {
  background: linear-gradient(135deg, var(--lime) 0%, #C5D63A 50%, var(--lime-hover) 100%);
  border-bottom: none;
  padding: 36px 0;
  position: relative;
  overflow: hidden;
}
.authority::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.18) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(0,0,0,0.08) 0%, transparent 40%);
  pointer-events: none;
}
.authority .container { position: relative; z-index: 1; }
.authority .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.authority .item {
  text-align: center;
  position: relative;
}
.authority .item + .item::before {
  content: '';
  position: absolute;
  left: 0; top: 12%;
  height: 76%;
  width: 1px;
  background: rgba(255,255,255,0.25);
}
.authority .num {
  font-size: clamp(26px, 2.8vw, 32px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.authority .label {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* ============== HERO ============== */
.hero {
  background: var(--white);
  position: relative;
  min-height: 660px;
  display: flex;
  align-items: stretch;
  padding: 0;
  overflow-x: clip;
  overflow-y: visible;
}
.hero .container { position: relative; z-index: 2; width: 100%; display: flex; flex-direction: column; }
.hero .grid {
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: 0;
  align-items: stretch;
  flex: 1;
  min-height: 600px;
}
.hero-content {
  align-self: center;
  padding: 80px 0;
  padding-right: 32px;
  overflow: visible;
  max-width: 100%;
}
.hero-visual-col {
  position: static;
}
.hero-couple-img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: -320px;
  height: 100%;
  width: auto;
  max-width: none;
  object-fit: contain;
  object-position: right bottom;
  z-index: 3;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(183, 199, 44, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.badge-lime {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(183, 199, 44, 0.15);
  color: var(--lime);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 { margin-bottom: 12px; white-space: nowrap; }
.hero-line { display: block; }
.hero .sub { font-size: 18px; color: var(--gray-500); max-width: 540px; margin-bottom: 20px; text-wrap: pretty; }
.bullets { list-style: none; margin-bottom: 24px; display: flex; flex-direction: column; gap: 10px; }
.bullets li { display: flex; align-items: flex-start; gap: 12px; font-size: 16px; color: var(--gray-900); }
.bullets .check {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--lime);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 13px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.google-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-pill);
  font-size: 13px;
  color: var(--gray-500);
}
.google-pill .stars { color: #F5A623; font-size: 14px; letter-spacing: 1px; }
.google-pill .g-mark {
  font-weight: 700; font-size: 16px;
  background: linear-gradient(45deg,#4285f4,#ea4335,#fbbc05,#34a853);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* Hero form */
.form-card {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-lg);
  padding: 32px;
  border: 1px solid rgba(195, 198, 204, 0.4);
  position: relative;
  z-index: 1;
}
.form-card h3 { font-size: 22px; margin-bottom: 6px; }
.form-card .form-sub { color: var(--gray-500); font-size: 14px; margin-bottom: 22px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--gray-900); margin-bottom: 6px; }
.field input, .field select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1.5px solid var(--gray-200);
  font-family: inherit;
  font-size: 15px;
  color: var(--gray-900);
  background: var(--white);
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus {
  outline: none;
  border-color: var(--lime);
  box-shadow: 0 0 0 3px rgba(183, 199, 44, 0.15);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-card .btn { width: 100%; margin-top: 8px; }
.form-foot { text-align: center; font-size: 12px; color: var(--gray-500); margin-top: 14px; }

/* ============== PAIN CARDS ============== */
.bg-light { background: var(--gray-50); }
.bg-dark { background: var(--gray-900); color: var(--white); }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.pain-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.pain-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.pain-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: rgba(183, 199, 44, 0.12);
  color: var(--lime);
  margin-bottom: 18px;
  transition: background .25s var(--ease), transform .25s var(--ease), color .25s var(--ease);
}
.pain-icon svg { width: 44px; height: 44px; }
.pain-card:hover .pain-icon {
  background: var(--lime);
  color: var(--white);
  transform: scale(1.05) rotate(-3deg);
}
.pain-card h3 { font-size: 19px; margin-bottom: 8px; }
.pain-card p { color: var(--gray-500); font-size: 15px; }

/* Mask-based pain icons (sad, jaw, robotic-surgery, depression, dish) inherit currentColor */
.pain-mask {
  display: block;
  width: 44px;
  height: 44px;
  background-color: currentColor;
  -webkit-mask: var(--icon-url) center / contain no-repeat;
  mask: var(--icon-url) center / contain no-repeat;
}

/* ============== TREATMENT CARDS ============== */
.treatment-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
}
.treatment-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--lime); }
.treatment-media {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--gray-50);
  overflow: hidden;
}
.treatment-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s var(--ease);
}
.treatment-card:hover .treatment-media img { transform: scale(1.04); }
.treatment-num {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--lime);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  box-shadow: 0 8px 20px rgba(31, 34, 38, 0.18);
}
.treatment-body { padding: 28px 28px 32px; display: flex; flex-direction: column; flex: 1; }
.treatment-card h3 { font-size: 20px; margin-bottom: 12px; }
.treatment-card p { color: var(--gray-500); font-size: 15px; margin-bottom: 22px; min-height: 92px; }
.treatment-card .btn { margin-top: auto; align-self: flex-start; }

/* ============== DOCTOR ============== */
.doctor .grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: center; }
.doctor-photo {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-card);
  background: var(--gray-100);
  box-shadow: var(--shadow);
}
.doctor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: var(--radius-card);
}
.doctor-photo .placeholder-tag {
  position: absolute; top: 18px; left: 18px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  background: rgba(63, 69, 75, 0.7);
  color: var(--white);
  padding: 4px 8px;
  border-radius: 4px;
}
.doctor-seal {
  position: absolute;
  bottom: -22px; left: -22px;
  background: var(--white);
  padding: 18px 22px;
  border-radius: 16px;
  box-shadow: 0 20px 48px rgba(31, 34, 38, 0.18), 0 2px 6px rgba(31, 34, 38, 0.06);
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 230px;
  border: 1px solid rgba(195, 198, 204, 0.4);
}
.doctor-seal::before {
  content: '';
  position: absolute;
  left: 0; top: 14px; bottom: 14px;
  width: 3px;
  background: var(--lime);
  border-radius: 0 3px 3px 0;
}
.doctor-seal .seal-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(183, 199, 44, 0.16);
  display: flex; align-items: center; justify-content: center;
  color: var(--lime);
  flex-shrink: 0;
}
.doctor-seal .seal-icon svg { width: 22px; height: 22px; }
.doctor-seal .seal-content { display: flex; flex-direction: column; gap: 2px; }
.doctor-seal .seal-num {
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  color: var(--gray-900);
  letter-spacing: -0.02em;
}
.doctor-seal .seal-lbl {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@keyframes sealFloat {
  0%, 100% { transform: translateY(0); box-shadow: 0 20px 48px rgba(31, 34, 38, 0.18), 0 2px 6px rgba(31, 34, 38, 0.06); }
  50%      { transform: translateY(-6px); box-shadow: 0 28px 56px rgba(31, 34, 38, 0.22), 0 2px 6px rgba(31, 34, 38, 0.06); }
}
.doctor-seal {
  animation: sealFloat 4.2s ease-in-out infinite;
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  .doctor-seal { animation: none !important; }
}

.creds { list-style: none; display: flex; flex-direction: column; gap: 14px; margin: 24px 0; }
.creds li { display: flex; align-items: center; gap: 14px; }
.cred-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gray-50);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.doctor h2 { margin-bottom: 18px; }
.doctor p { color: var(--gray-500); margin-bottom: 14px; }

/* ============== PROCESS TIMELINE ============== */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  margin-top: 24px;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12%;
  right: 12%;
  height: 0;
  border-top: 2px dashed var(--gray-200);
  z-index: 0;
}
.step { text-align: center; position: relative; z-index: 1; }
.step-circle {
  width: 72px; height: 72px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(183, 199, 44, 0.4);
  border: 4px solid var(--white);
}
.step h3 { font-size: 18px; margin-bottom: 8px; }
.step p { color: var(--gray-500); font-size: 14px; padding: 0 6px; }

/* ============== BEFORE/AFTER ============== */
.ba-card {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.ba-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.ba-images { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--gray-200); }
.ba-img {
  aspect-ratio: 1/1;
  background:
    repeating-linear-gradient(45deg, #E5E7EA 0 8px, #DDE0E5 8px 16px);
  display: flex; align-items: center; justify-content: center;
  font-size: 56px;
  position: relative;
}
.ba-img .lbl {
  position: absolute; bottom: 10px; left: 10px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  padding: 4px 8px;
  background: rgba(63, 69, 75, 0.7);
  color: var(--white);
  border-radius: 4px;
}
.ba-body { padding: 22px 24px 26px; }
.ba-body h3 { font-size: 17px; margin-bottom: 8px; }
.ba-body p { color: var(--gray-500); font-size: 14px; margin-bottom: 14px; }
.ba-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700;
  color: var(--gray-900);
  background: rgba(183, 199, 44, 0.18);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
}

/* ============== TESTIMONIALS (Trustindex override) ============== */
.trustindex-wrap {
  margin-top: 8px;
}
@media (min-width: 961px) {
  .trustindex-wrap {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
  }
}

/* Remove bordas/sombras do widget e dos cards internos do Trust */
.ti-widget,
.ti-widget .ti-widget-container,
.ti-widget .ti-reviews-container,
.ti-widget .ti-review-item,
.ti-widget .ti-review-item > div {
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
}

/* Aplica estilo NEO só no card */
.ti-widget .ti-review-item {
  font-family: 'Poppins', sans-serif !important;
  background: var(--white) !important;
  border: 1px solid var(--gray-200) !important;
  border-radius: var(--radius-card) !important;
  box-shadow: var(--shadow-sm) !important;
  margin: 0 12px !important;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease) !important;
}
.ti-widget .ti-review-item:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 4px 20px rgba(63, 69, 75, 0.08) !important;
}

/* Tipografia */
.ti-widget,
.ti-widget * {
  font-family: 'Poppins', sans-serif !important;
}
.ti-widget .ti-review-content .ti-review-text {
  color: var(--gray-900) !important;
  font-size: 15px !important;
  line-height: 1.65 !important;
}
.ti-widget .ti-review-content .ti-name {
  font-weight: 600 !important;
  color: var(--gray-900) !important;
}
.ti-widget .ti-review-content .ti-date {
  color: var(--gray-500) !important;
}

/* Estrelas na cor lime */
.ti-widget .ti-stars .ti-star.f,
.ti-widget .ti-stars .ti-star {
  color: var(--lime) !important;
}

/* Esconde controles originais do Trustindex */
.ti-controls,
.ti-controls-line {
  display: none !important;
}

/* Forçar texto completo inline (sem popup "leia mais") */
.ti-widget .ti-read-more-text { display: none !important; }
.ti-widget .ti-review-content {
  -webkit-line-clamp: unset !important;
  max-height: none !important;
  overflow: visible !important;
}
.ti-widget .ti-modal,
.ti-widget .ti-popup,
.ti-widget .ti-overlay { display: none !important; }

/* Navegação customizada — setas embaixo centralizadas */
.ti-custom-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
}

/* ============== STRUCTURE MOSAIC ============== */
.mosaic {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  height: 620px;
}
.mosaic .tile {
  background: var(--gray-100);
  border-radius: var(--radius-card);
  position: relative;
  overflow: hidden;
  transition: transform .3s ease;
}
.mosaic .tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .5s var(--ease);
}
.mosaic .tile:hover { transform: scale(1.02); }
.mosaic .tile:hover img { transform: scale(1.06); }
.mosaic .tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(31, 34, 38, 0.45) 100%);
  pointer-events: none;
}
.mosaic .tile .lbl {
  position: absolute; bottom: 14px; left: 14px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--gray-900);
  border-radius: 8px;
  z-index: 1;
}
.mosaic .tile-1 { grid-row: 1 / 3; }
.mosaic .tile-4 img { object-position: left center; }

/* ============== FAQ ============== */
.faq-wrap {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
}
.faq-item:hover {
  border-color: #C3C6CC;
  box-shadow: 0 6px 20px rgba(31, 34, 38, 0.06);
}
.faq-q {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  font-size: 17px;
  font-weight: 600;
  color: var(--gray-900);
  background: transparent;
  border: none;
  gap: 24px;
  cursor: pointer;
}
.faq-q-text { flex: 1; }
.faq-q:hover { color: var(--lime); }
.faq-arrow {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(183, 199, 44, 0.15);
  color: var(--lime);
  display: flex; align-items: center; justify-content: center;
  transition: transform .3s ease;
}
.faq-arrow svg { width: 18px; height: 18px; display: block; }
.faq-q.open .faq-arrow {
  transform: rotate(180deg);
  background: var(--lime);
  color: var(--white);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-a.open { max-height: 480px; }
.faq-a p {
  margin: 0 24px;
  padding: 18px 0 24px;
  color: var(--gray-500);
  font-size: 15px;
  line-height: 1.7;
  border-top: 1px solid var(--gray-200);
}

/* ============== FINAL CTA ============== */
.final-cta { text-align: center; padding: 96px 0; }
.final-cta h2 { font-size: clamp(28px, 3.6vw, 40px); color: var(--white); max-width: 820px; margin: 0 auto 18px; }
.final-cta .sub { color: rgba(255,255,255,0.75); max-width: 620px; margin: 0 auto 32px; font-size: 17px; }
.trust-badges {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: center; margin-bottom: 36px;
}
.trust-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-pill);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
}
.final-cta .phone { color: rgba(255,255,255,0.8); margin-top: 20px; font-size: 15px; }

/* ============== FOOTER ============== */
.footer {
  background: #2A2E33;
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
  font-size: 14px;
}
.footer .grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer h4 {
  color: var(--white);
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 700;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer a:hover { color: var(--lime); }
.footer .logo-foot { font-family: 'Poppins'; font-weight: 700; font-size: 24px; color: var(--white); margin-bottom: 16px; }
.footer .logo-foot .city { color: var(--lime); }
.footer .logo-foot-img { height: 64px; width: auto; margin-bottom: 18px; display: block; }
.footer .desc { margin-bottom: 20px; line-height: 1.7; }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.socials a:hover { background: var(--lime); color: var(--gray-900); }
.socials svg { width: 18px; height: 18px; }
.contact-line { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.contact-line svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; opacity: .8; color: var(--lime); }

.footer-bot {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}
.footer-bot a { margin-left: 18px; }

.footer-dev {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 18px;
  text-decoration: none;
  color: rgba(255,255,255,0.5);
  transition: color .2s;
}
.footer-dev:hover { color: var(--lime); }
.footer-dev .acronn-logo { height: 14px; width: auto; opacity: 0.5; transition: opacity .2s; }
.footer-dev:hover .acronn-logo { opacity: 1; filter: brightness(1.5) saturate(1.2); }

/* ============== WHATSAPP FLOAT ============== */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 100;
  display: flex; align-items: center; gap: 12px;
}
.wa-float .wa-btn { order: 2; }
.wa-bubble {
  order: 1;
  background: var(--white);
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow);
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-900);
  white-space: nowrap;
  position: relative;
  opacity: 0; transform: translateX(10px); pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
}
.wa-bubble::after {
  content: '';
  position: absolute;
  right: -6px; top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 12px; height: 12px;
  background: var(--white);
}
.wa-btn:hover + .wa-bubble { opacity: 1; transform: translateX(0); pointer-events: auto; }
.wa-btn {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--wa);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  transition: transform .2s, background .2s;
  animation: bounce 2.5s ease-in-out infinite;
}
.wa-btn { color: var(--white); }
.wa-btn:hover { background: var(--wa-hover); transform: scale(1.05); }
.wa-btn svg { width: 32px; height: 32px; fill: currentColor; display: block; }

@keyframes bounce {
  0%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-8px); }
  45% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
  55% { transform: translateY(0); }
}
@keyframes bubbleIn {
  from { opacity: 0; transform: translateX(10px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes bubbleOut {
  from { opacity: 1; transform: translateX(0); }
  to { opacity: 0; transform: translateX(10px); }
}

/* ============== MOBILE NAV ============== */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 200;
  padding: 24px;
  transform: translateX(100%);
  transition: transform .3s ease;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  overflow-y: auto;
  box-sizing: border-box;
  width: 100%;
  max-width: 100vw;
}
.mobile-menu .btn { width: 100%; box-sizing: border-box; }
.mobile-menu.open { transform: translateX(0); }
.mobile-menu .top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 32px;
}
.mobile-menu nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu nav a {
  padding: 16px 8px;
  font-size: 18px;
  font-weight: 600;
  border-bottom: 1px solid var(--gray-200);
  color: var(--gray-900);
}
.mobile-menu .btn { margin-top: 24px; }

/* ============== RESPONSIVE ============== */
@media (max-width: 960px) {
  :root { --section-pad: 64px; }
  .nav, .header .btn { display: none; }
  .menu-btn { display: flex; }
  .hero { min-height: 0; padding: 24px 0 0; overflow: visible; }
  .hero .container { display: block; }
  .hero .grid { grid-template-columns: 1fr; gap: 0; min-height: 0; flex: none; }
  .hero h1 { white-space: normal; font-size: clamp(28px, 7vw, 42px); }
  .hero-content { padding: 24px 0 32px; padding-right: 0; max-width: 100%; }
  .hero-visual-col { position: relative; }
  .hero-couple-img { position: relative; bottom: auto; right: auto; width: 115%; max-width: none; height: auto; object-fit: contain; object-position: center bottom; margin-left: 12px; }
  .hero-visual { max-width: 460px; margin: 0 auto; width: 100%; }
  .hero-photo { aspect-ratio: 5/4; }
  .hero-photo-chip.chip-1 { left: 8px; }
  .hero-photo-chip.chip-2 { right: 8px; }
  .avaliacao-grid { grid-template-columns: 1fr !important; gap: 36px; }
  .avaliacao-section { padding: 56px 0; overflow-x: hidden; }
  .avaliacao-form-wrap { transform: none !important; }
  .avaliacao-form-wrap .form-card { max-width: 100%; }
  .avaliacao-sub { margin-bottom: 0 !important; }
  .doctor .grid { grid-template-columns: 1fr; gap: 56px; }
  .doctor-photo { max-width: 100%; margin: 0 auto; aspect-ratio: 3/4; }
  .authority .grid { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .grid-3 { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; row-gap: 36px; }
  .timeline::before { display: none; }
  .mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    height: auto;
    gap: 12px;
  }
  .mosaic .tile { height: 320px; }
  .mosaic .tile-1 { grid-row: auto; grid-column: auto; height: 320px; }
  .footer .grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .topbar .container { font-size: 12px; }
  .topbar .right { gap: 12px; }
  .footer-bot { flex-direction: column; align-items: flex-start; }
  .footer-bot .right a { margin: 0 18px 0 0; }
}
@media (max-width: 560px) {
  :root { --section-pad: 56px; }
  .footer .grid { grid-template-columns: 1fr; gap: 32px; }
  .field-row { grid-template-columns: 1fr; }
  .form-card { padding: 24px; }
  .topbar .container { justify-content: center; text-align: center; }
  .topbar .left, .topbar .right { width: 100%; justify-content: center; }
  .doctor-seal { left: 12px; bottom: 12px; padding: 14px 16px; min-width: 200px; gap: 12px; }
  .doctor-seal .seal-num { font-size: 22px; }
  .wa-bubble { display: none; }
  .hero-cta .btn { width: 100%; }
  .final-cta { padding: 64px 0; overflow-x: hidden; }
  .final-cta .btn { white-space: normal; width: 100%; max-width: 100%; box-sizing: border-box; padding: 18px 24px; font-size: 15px; }
  .footer .logo-foot-img { height: 72px; }
  .ti-widget .ti-review-item {
    min-width: calc(100% - 32px) !important;
    max-width: calc(100% - 32px) !important;
    width: calc(100% - 32px) !important;
    margin: 0 16px !important;
    flex-shrink: 0 !important;
  }
  .ti-widget .ti-reviews-container-wrapper {
    overflow: hidden !important;
  }
  .trustindex-wrap {
    overflow: hidden !important;
  }
}

/* =====================================================
   ============== POLISH & ANIMATIONS ==================
   ===================================================== */

/* Use shared easing on all the originally-defined transitions
   without re-declaring them — newer rules below win on tie. */

/* ------------ Reveal on scroll ------------ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
  transition-delay: calc(var(--i, 0) * 80ms);
  will-change: transform, opacity;
}
.reveal.in { opacity: 1; transform: none; }

.reveal-up-sm { transform: translateY(12px); }
.reveal-scale {
  opacity: 0;
  transform: scale(.96);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: calc(var(--i, 0) * 80ms);
}
.reveal-scale.in { opacity: 1; transform: none; }

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
  transition-delay: 350ms;
}
.reveal-right.in { opacity: 1; transform: none; }

/* ------------ Heading accent line ------------ */
.section-head h2,
.doctor h2 {
  position: relative;
  padding-top: 18px;
}
.section-head h2::before,
.doctor h2::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 40px; height: 3px;
  background: var(--lime);
  border-radius: 2px;
}
.doctor h2::before { left: 0; transform: none; }
.hero h1 { position: relative; }

/* ------------ Hero polish ------------ */
.hero {
  background:
    radial-gradient(ellipse 800px 400px at 90% -20%, rgba(183, 199, 44, 0.10) 0%, transparent 70%),
    linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(183, 199, 44, 0.18) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.18;
  pointer-events: none;
  mask-image: linear-gradient(180deg, transparent 0%, black 30%, black 70%, transparent 100%);
}
.hero .container { position: relative; z-index: 1; }

.hero-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(12px);
  animation: heroWord .55s var(--ease) forwards;
  animation-delay: calc(var(--i, 0) * 80ms + 100ms);
}
.hero-word.accent {
  color: var(--lime);
  animation-name: heroWordAccent;
  animation-duration: .7s;
}
@keyframes heroWord {
  to { opacity: 1; transform: none; }
}
@keyframes heroWordAccent {
  0% { opacity: 0; transform: translateY(12px) scale(1.05); }
  60% { opacity: 1; transform: translateY(0) scale(1.05); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.hero .sub,
.hero .hero-cta,
.hero .google-pill,
.hero .bullets li {
  opacity: 0;
  transform: translateY(10px);
  animation: heroFade .5s var(--ease) forwards;
}
.hero .sub { animation-delay: 700ms; }
.hero .bullets li { animation-delay: calc(800ms + var(--i, 0) * 60ms); }
.hero .hero-cta { animation-delay: 1200ms; }
.hero .google-pill { animation-delay: 1350ms; }
@keyframes heroFade {
  to { opacity: 1; transform: none; }
}

.hero .form-card {
  opacity: 0;
  transform: translateX(40px);
  animation: formIn .55s var(--ease) 500ms forwards;
}
@keyframes formIn {
  to { opacity: 1; transform: none; }
}

.google-pill {
  animation: gentlePulse 1.4s var(--ease) 1700ms 1;
}
@keyframes gentlePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(183, 199, 44, 0); }
  50% { box-shadow: 0 0 0 8px rgba(183, 199, 44, 0.18); }
}

/* Bullet check stays solid (no draw animation needed beyond fade) */

/* ------------ Buttons: shine + active ------------ */
.btn { position: relative; overflow: hidden; transition: transform .2s var(--ease), box-shadow .25s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease); }
.btn:active { transform: translateY(0) scale(.98) !important; }

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: skewX(-20deg);
  transition: left .7s var(--ease);
  pointer-events: none;
}
.btn-primary:hover::before { left: 125%; }

/* Outline button: fill from left on hover */
.btn-outline { position: relative; overflow: hidden; z-index: 0; }
.btn-outline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gray-900);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .3s var(--ease);
  z-index: -1;
}
.btn-outline:hover { color: var(--white); border-color: var(--gray-900); }
.btn-outline:hover::before { transform: scaleX(1); }

/* ------------ Pain cards: lime underline + icon idle ------------ */
.pain-card { position: relative; overflow: hidden; transition: transform .28s var(--ease), box-shadow .28s var(--ease); }
.pain-card::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .35s var(--ease);
}
.pain-card:hover::after { transform: scaleX(1); }

/* Treatment card image scale on hover */
.treatment-card { transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .25s var(--ease); }

/* ------------ Timeline: draw line + sequential circles ------------ */
.timeline { position: relative; }
.timeline::before {
  /* Override to a gradient that we animate from 0 width */
  border-top: none;
  height: 2px;
  background-image: linear-gradient(to right, var(--gray-200) 50%, transparent 0%);
  background-size: 12px 2px;
  background-repeat: repeat-x;
  width: 0;
  transition: width 1.2s var(--ease);
}
.timeline.in::before { width: 76%; }

.step .step-circle {
  opacity: 0;
  transform: scale(.4);
  transition: opacity .4s var(--ease), transform .45s var(--ease), box-shadow .3s var(--ease);
  transition-delay: calc(var(--i, 0) * 220ms + 200ms);
}
.step h3, .step p {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
  transition-delay: calc(var(--i, 0) * 220ms + 320ms);
}
.step p { transition-delay: calc(var(--i, 0) * 220ms + 400ms); }

.timeline.in .step .step-circle { opacity: 1; transform: scale(1); }
.timeline.in .step h3, .timeline.in .step p { opacity: 1; transform: none; }

.step:hover .step-circle {
  box-shadow: 0 0 0 8px rgba(183, 199, 44, 0.18), 0 6px 18px rgba(183, 199, 44, 0.5);
}

/* ------------ Authority bar counter ------------ */
.authority .num { font-variant-numeric: tabular-nums; }

/* ------------ Testimonials polish ------------ */
.testimonial-card {
  position: relative;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .25s var(--ease);
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -8px; left: 14px;
  font-family: Georgia, serif;
  font-size: 110px;
  line-height: 1;
  color: rgba(183, 199, 44, 0.10);
  pointer-events: none;
  font-weight: 700;
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(183, 199, 44, 0.4); }
.testimonial-card:nth-child(1) { transform: rotate(-0.8deg); }
.testimonial-card:nth-child(2) { transform: rotate(0.4deg); }
.testimonial-card:nth-child(3) { transform: rotate(0.8deg); }
.testimonial-card:hover { transform: rotate(0deg) translateY(-6px); }

.testimonial-card .stars span {
  display: inline-block;
  opacity: 0;
  transform: scale(.6);
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.testimonial-card.in .stars span {
  opacity: 1; transform: scale(1);
}
.testimonial-card .stars span:nth-child(1) { transition-delay: 0ms; }
.testimonial-card .stars span:nth-child(2) { transition-delay: 60ms; }
.testimonial-card .stars span:nth-child(3) { transition-delay: 120ms; }
.testimonial-card .stars span:nth-child(4) { transition-delay: 180ms; }
.testimonial-card .stars span:nth-child(5) { transition-delay: 240ms; }

.testimonial-card .avatar {
  opacity: 0;
  transform: scale(0);
  transition: opacity .35s var(--ease), transform .45s cubic-bezier(.5, 1.6, .5, 1);
  transition-delay: 350ms;
}
.testimonial-card.in .avatar { opacity: 1; transform: scale(1); }

/* ------------ FAQ polish ------------ */
.faq-item.active {
  border-color: var(--lime);
  box-shadow: 0 10px 28px rgba(183, 199, 44, 0.18);
}
.faq-a { transition: max-height .4s var(--ease); }
.faq-a p {
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .25s var(--ease), transform .3s var(--ease), border-color .2s var(--ease);
}
.faq-a.open p { opacity: 1; transform: none; transition-delay: 150ms; }
.faq-arrow { transition: transform .35s var(--ease), background .2s var(--ease), color .2s var(--ease); }

/* ============== REAL-IMAGE COMPARE + CAROUSEL ============== */
.compare .img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
}

.carousel-outer { overflow: hidden; }
.carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 450ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.carousel-track .ba-card {
  flex-shrink: 0;
  width: calc((100% - 48px) / 3);
}
@media (max-width: 900px) { .carousel-track .ba-card { width: calc((100% - 24px) / 2); } }
@media (max-width: 560px)  { .carousel-track .ba-card { width: 100%; } }

.carousel-nav {
  display: flex; align-items: center; justify-content: center; gap: 20px;
  margin-top: 36px;
}
.carousel-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--white); border: 1.5px solid var(--gray-200); color: var(--gray-900);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: background .2s var(--ease), border-color .2s var(--ease), transform .15s var(--ease);
}
.carousel-btn:hover:not(:disabled) { background: var(--lime); border-color: var(--lime); color: var(--gray-900); }
.carousel-btn:active:not(:disabled) { transform: scale(.95); }
.carousel-btn:disabled { opacity: .3; cursor: default; }
.carousel-count { font-size: 15px; font-weight: 600; color: var(--gray-500); min-width: 64px; text-align: center; }
.carousel-count .cur { color: var(--gray-900); }

/* ------------ Final CTA: glow + particles + pulse ------------ */
.final-cta { position: relative; overflow: hidden; }
.final-cta::before {
  content: '';
  position: absolute;
  left: 50%; top: 60%;
  transform: translate(-50%, -50%);
  width: 600px; height: 360px;
  background: radial-gradient(ellipse, rgba(183, 199, 44, 0.18) 0%, transparent 65%);
  pointer-events: none;
}
.particles {
  position: absolute; inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.particles span {
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--lime);
  opacity: 0.18;
  animation: floatP 14s linear infinite;
}
.particles span:nth-child(1) { left: 10%; top: 80%; animation-duration: 16s; }
.particles span:nth-child(2) { left: 30%; top: 90%; animation-duration: 20s; animation-delay: -4s; width: 4px; height: 4px; }
.particles span:nth-child(3) { left: 65%; top: 85%; animation-duration: 18s; animation-delay: -8s; }
.particles span:nth-child(4) { left: 85%; top: 95%; animation-duration: 22s; animation-delay: -12s; width: 5px; height: 5px; }
@keyframes floatP {
  0% { transform: translate(0, 0); opacity: 0; }
  10% { opacity: 0.2; }
  90% { opacity: 0.2; }
  100% { transform: translate(60px, -480px); opacity: 0; }
}

.final-cta .btn-primary.btn-lg {
  animation: ctaPulse 3s var(--ease) infinite;
}
@keyframes ctaPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 6px 16px rgba(183, 199, 44, 0.35); }
  50% { transform: scale(1.02); box-shadow: 0 14px 36px rgba(183, 199, 44, 0.55); }
}
.final-cta .trust-pill {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
  transition-delay: calc(var(--i, 0) * 120ms);
}
.final-cta.in .trust-pill { opacity: 1; transform: none; }
.final-cta h2, .final-cta .sub, .final-cta .phone {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}
.final-cta.in h2 { opacity: 1; transform: none; }
.final-cta.in .sub { opacity: 1; transform: none; transition-delay: 120ms; }
.final-cta.in .phone { opacity: 1; transform: none; transition-delay: 600ms; }

/* ------------ Scroll progress ------------ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--lime), var(--lime-hover));
  z-index: 300;
  transition: width .1s linear;
}

/* ------------ Back to top ------------ */
.to-top {
  position: fixed;
  left: 24px; bottom: 24px;
  z-index: 90;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(183, 199, 44, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s, background .2s;
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--lime-hover); }
.to-top svg { width: 18px; height: 18px; }

/* ------------ Form focus polish ------------ */
.field input:focus, .field select:focus {
  box-shadow: 0 0 0 4px rgba(183, 199, 44, 0.18);
}
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8'><path d='M1 1l6 6 6-6' fill='none' stroke='%23B7C72C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

/* ------------ Compare slider ------------ */
.compare {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  background: #0e0e0e;
}
.compare .img {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, #E5E7EA 0 8px, #DDE0E5 8px 16px);
  display: flex; align-items: center; justify-content: center;
  font-size: 64px;
}
.compare .img.before { z-index: 1; }
.compare .img.after {
  z-index: 2;
  clip-path: polygon(var(--x, 50%) 0, 100% 0, 100% 100%, var(--x, 50%) 100%);
}
.compare .tag {
  position: absolute;
  top: 12px;
  z-index: 3;
  padding: 4px 10px;
  border-radius: 4px;
  font-family: ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 1px;
  background: rgba(63, 69, 75, 0.7);
  color: var(--white);
}
.compare .tag.left { left: 12px; }
.compare .tag.right { right: 12px; background: var(--lime); color: var(--gray-900); }
.compare .divider {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--x, 50%);
  width: 2px;
  background: var(--white);
  z-index: 4;
  transform: translateX(-1px);
  pointer-events: none;
  box-shadow: 0 0 8px rgba(0,0,0,0.3);
}
.compare .handle {
  position: absolute;
  top: 50%;
  left: var(--x, 50%);
  z-index: 5;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--gray-900);
  transform: translate(-50%, -50%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  font-weight: 700;
  font-size: 14px;
  pointer-events: none;
}

/* ------------ Hover micro-tweaks consolidated ------------ */
.pain-card, .treatment-card, .ba-card { cursor: default; }
.faq-q { cursor: pointer; transition: color .2s var(--ease); }

/* ------------ Hero visual placeholder ------------ */
.hero-visual {
  position: relative;
  opacity: 0;
  transform: translateX(40px);
  animation: formIn .55s var(--ease) 500ms forwards;
}
.hero-photo {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-card);
  overflow: hidden;
  background:
    repeating-linear-gradient(45deg, #E5E7EA 0 8px, #DDE0E5 8px 16px);
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(195, 198, 204, 0.5);
}
.hero-photo .placeholder-tag {
  position: absolute; top: 18px; left: 18px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  background: rgba(63, 69, 75, 0.7);
  color: var(--white);
  padding: 4px 8px;
  border-radius: 4px;
  z-index: 2;
}
.hero-photo-icon { font-size: 140px; opacity: 0.65; }
.hero-photo-chip {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-pill);
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-900);
  box-shadow: var(--shadow);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.hero-photo-chip .chip-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(183, 199, 44, 0.25);
}
.hero-photo-chip .chip-icon { font-size: 16px; }
.hero-photo-chip.chip-1 {
  top: 12%;
  left: -28px;
  animation: floatY 5s ease-in-out infinite;
}
.hero-photo-chip.chip-2 {
  bottom: 14%;
  right: -32px;
  animation: floatY 6s ease-in-out infinite reverse;
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ------------ Avaliação section ------------ */
.avaliacao-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--gray-900) 0%, #2A2E33 100%);
  color: var(--white);
  padding: 96px 0;
}
.avaliacao-bg {
  position: absolute; inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.avaliacao-bg .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}
.avaliacao-bg .blob-1 {
  width: 460px; height: 460px;
  background: rgba(183, 199, 44, 0.35);
  top: -120px; left: -120px;
}
.avaliacao-bg .blob-2 {
  width: 380px; height: 380px;
  background: rgba(183, 199, 44, 0.18);
  bottom: -140px; right: 10%;
}
.avaliacao-section::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.avaliacao-section .container { position: relative; z-index: 1; }

.avaliacao-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 64px;
  align-items: center;
}
.avaliacao-copy .section-label { color: var(--lime); }
.avaliacao-copy h2 {
  color: var(--white);
  font-size: clamp(28px, 3.4vw, 38px);
  margin-bottom: 18px;
  text-wrap: pretty;
  padding-top: 18px;
  position: relative;
}
.avaliacao-copy h2::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 40px; height: 3px;
  background: var(--lime);
  border-radius: 2px;
}
.avaliacao-sub {
  color: rgba(255,255,255,0.75);
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 520px;
}

.avaliacao-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 32px;
}
.avaliacao-perks li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.avaliacao-perks li::before {
  content: '';
  flex-shrink: 0;
  width: 22px; height: 22px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--lime) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><path d='M2.5 6.2l2.4 2.4 4.6-5.2' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>") center / 14px no-repeat;
}
.perk-num {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(183, 199, 44, 0.15);
  color: var(--lime);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 14px;
  font-family: ui-monospace, monospace;
  letter-spacing: 0.5px;
  border: 1px solid rgba(183, 199, 44, 0.35);
}
.avaliacao-perks strong {
  display: block;
  color: var(--white);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 2px;
}
.avaliacao-perks span {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  line-height: 1.55;
}

.avaliacao-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.trust-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}

.avaliacao-form-wrap { position: relative; }
.avaliacao-form-wrap::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--radius-card) + 2px);
  background: linear-gradient(135deg, rgba(183, 199, 44, 0.5), transparent 60%);
  z-index: 0;
  pointer-events: none;
}
.form-card-elevated {
  position: relative;
  z-index: 1;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .reveal-scale, .reveal-right { opacity: 1 !important; transform: none !important; }
  .hero-word { opacity: 1 !important; transform: none !important; }
  .hero .sub, .hero .hero-cta, .hero .google-pill, .hero .bullets li, .hero .form-card { opacity: 1 !important; transform: none !important; }
  .timeline::before { width: 76% !important; }
  .timeline .step-circle, .timeline .step h3, .timeline .step p { opacity: 1 !important; transform: none !important; }
  .final-cta .trust-pill, .final-cta h2, .final-cta .sub, .final-cta .phone { opacity: 1 !important; transform: none !important; }
  .testimonial-card .stars span, .testimonial-card .avatar { opacity: 1 !important; transform: scale(1) !important; }
  .pain-emoji { animation: none !important; }
  .final-cta .btn-primary.btn-lg { animation: none !important; }
  .particles { display: none; }
  .wa-btn { animation: none !important; }
}

