/* ============================================================
   LP Dra. Juliana Silva — Hematologia · Assis/SP
   Paleta extraida do logo (gota bordeaux + curva peach)
   Tipografia: Sora (sans) + Fraunces (serif editorial)
   ============================================================ */

:root {
  --bordeaux-deep: #6B1F38;
  --bordeaux: #7A2440;
  --bordeaux-soft: #8E3853;
  --rose-peach: #E8A698;
  --rose-light: #F5D9D1;
  --rose-cream: #FBEDE8;

  --off-white: #F8F4F1;
  --paper: #FCFAF7;
  --line: #E8DFD7;
  --line-soft: #F0E8E1;
  --grafite: #1F1A18;
  --gray-900: #2A2421;
  --gray-700: #4D423D;
  --gray-500: #7A6E66;
  --gray-300: #BCB1A8;

  --gold: #B8956A;
  --shadow-sm: 0 2px 6px rgba(31, 26, 24, 0.04), 0 1px 2px rgba(31, 26, 24, 0.06);
  --shadow-md: 0 6px 20px rgba(31, 26, 24, 0.06), 0 2px 6px rgba(31, 26, 24, 0.04);
  --shadow-lg: 0 16px 48px rgba(107, 31, 56, 0.10), 0 4px 12px rgba(31, 26, 24, 0.05);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --radius-xl: 28px;

  --container: 1180px;
  --gutter: clamp(20px, 4vw, 32px);

  --font-sans: 'Sora', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Fraunces', Georgia, 'Times New Roman', serif;

  --transition: 220ms cubic-bezier(0.2, 0.7, 0.3, 1);
}

/* MOBILE-SAFE BOILERPLATE ===================================== */
*, *::before, *::after { box-sizing: border-box; }
html, body { overflow-x: hidden; max-width: 100vw; }
img, video, iframe, svg { max-width: 100%; height: auto; display: block; }
input, textarea, select { font-size: 16px; }
body.modal-open { overflow: hidden; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *:not(.trust-track), *:not(.trust-track)::before, *:not(.trust-track)::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .trust-track { animation: trustMarquee 42s linear infinite !important; }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-900);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* TYPOGRAPHY BASES ============================================ */
h1, h2, h3, h4 { margin: 0; font-weight: 600; letter-spacing: -0.015em; line-height: 1.18; color: var(--gray-900); }
p { margin: 0 0 1em; }
a { color: var(--bordeaux); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--bordeaux-deep); }
em { font-style: italic; font-family: var(--font-serif); font-weight: 400; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--bordeaux);
  color: #fff;
  padding: 12px 18px;
  z-index: 9999;
}
.skip-link:focus { left: 12px; top: 12px; outline: 2px solid var(--rose-peach); outline-offset: 2px; }

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

/* BUTTONS ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), color var(--transition), box-shadow var(--transition), border-color var(--transition);
  text-decoration: none;
  white-space: nowrap;
  user-select: none;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--bordeaux);
  color: #fff;
  box-shadow: 0 6px 18px rgba(107, 31, 56, 0.22), 0 1px 2px rgba(0,0,0,0.06);
}
.btn-primary:hover { background: var(--bordeaux-deep); color: #fff; box-shadow: 0 10px 28px rgba(107, 31, 56, 0.28); }
.btn-ghost {
  background: transparent;
  color: var(--bordeaux);
  border-color: rgba(122, 36, 64, 0.20);
}
.btn-ghost:hover { background: var(--rose-cream); border-color: var(--bordeaux); }
.btn-light {
  background: var(--off-white);
  color: var(--bordeaux);
}
.btn-light:hover { background: var(--rose-cream); }
.btn-lg { padding: 16px 28px; font-size: 16px; }
.btn-sm { padding: 10px 16px; font-size: 13px; }
.btn-block { width: 100%; justify-content: center; }

/* HEADER ====================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 244, 241, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}
.header-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gray-900);
  text-decoration: none;
}
.header-brand img { width: 38px; height: 38px; object-fit: contain; }
.header-brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.header-brand-text strong { font-size: 14px; font-weight: 600; letter-spacing: -0.01em; }
.header-brand-text em {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  font-style: normal;
  color: var(--gray-500);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
  margin-right: 18px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  transition: border-color var(--transition), background var(--transition);
}
.nav-toggle:hover { border-color: var(--bordeaux); background: var(--rose-cream); }
.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--grafite);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--paper);
  z-index: 200;
  display: none;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu.is-open { display: block; }
.mobile-menu.is-open .mobile-menu-inner { animation: menuFadeIn 240ms cubic-bezier(0.2, 0.7, 0.3, 1) both; }
@keyframes menuFadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.mobile-menu-inner {
  padding: 80px 28px 40px;
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: 100%;
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--grafite);
  transition: border-color var(--transition), background var(--transition);
}
.mobile-menu-close:hover { border-color: var(--bordeaux); background: var(--rose-cream); color: var(--bordeaux); }

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu-nav a {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 32px;
  letter-spacing: -0.02em;
  color: var(--grafite);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
  transition: color var(--transition), padding-left var(--transition);
}
.mobile-menu-nav a:hover, .mobile-menu-nav a:focus {
  color: var(--bordeaux);
  padding-left: 8px;
}
.mobile-menu-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
  padding: 18px 24px;
  background: #25D366;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.30);
  transition: transform var(--transition);
}
.mobile-menu-cta:hover { transform: translateY(-2px); color: #fff; }
.mobile-menu-meta {
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--gray-500);
  line-height: 1.7;
  letter-spacing: 0.01em;
}
.mobile-menu-meta strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--grafite);
  margin-bottom: 2px;
}
.header-nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-700);
  text-decoration: none;
  letter-spacing: 0.005em;
  position: relative;
  padding: 6px 2px;
  transition: color var(--transition);
}
.header-nav a::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: 0;
  height: 1px;
  background: var(--bordeaux);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.header-nav a:hover {
  color: var(--bordeaux);
}
.header-nav a:hover::after {
  transform: scaleX(1);
}

/* HERO ASYMMETRIC ============================================ */
.hero {
  position: relative;
  padding: clamp(48px, 8vw, 96px) 0 clamp(56px, 9vw, 120px);
  background: linear-gradient(180deg, var(--paper) 0%, var(--off-white) 100%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -200px;
  width: 540px;
  height: 540px;
  background: radial-gradient(closest-side, rgba(232, 166, 152, 0.28), rgba(232, 166, 152, 0));
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -240px;
  left: -180px;
  width: 480px;
  height: 480px;
  background: radial-gradient(closest-side, rgba(122, 36, 64, 0.10), rgba(122, 36, 64, 0));
  pointer-events: none;
  z-index: 0;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 10px;
  background: rgba(122, 36, 64, 0.06);
  border: 1px solid rgba(122, 36, 64, 0.12);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--bordeaux);
  margin-bottom: 24px;
}
.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bordeaux);
  display: inline-block;
  flex-shrink: 0;
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: clamp(38px, 5.6vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  font-weight: 500;
  margin-bottom: 24px;
  color: var(--grafite);
}
.hero-title-serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-variation-settings: "opsz" 144;
  color: var(--bordeaux);
}
.hero-title-sans {
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: -0.03em;
}
.hl {
  position: relative;
  white-space: nowrap;
}
.hl::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 10px;
  background: linear-gradient(90deg, var(--rose-peach), var(--rose-light));
  z-index: -1;
  border-radius: 4px;
  transform: skewX(-6deg);
}

.hero-subheadline {
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--bordeaux);
  margin: -10px 0 22px;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.hero-subheadline strong {
  font-weight: 700;
  position: relative;
  white-space: nowrap;
}
.hero-subheadline strong::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--rose-peach);
  border-radius: 2px;
}
.hero-lead {
  font-size: clamp(16px, 1.6vw, 18px);
  color: var(--gray-700);
  max-width: 540px;
  margin-bottom: 24px;
  line-height: 1.6;
}
.hero-lead strong { color: var(--gray-900); font-weight: 600; }

.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
  color: var(--gray-700);
  max-width: 560px;
}
.hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.5;
}
.hero-bullets li > span { flex: 1; }
.hero-bullets li strong {
  color: var(--bordeaux);
  font-weight: 600;
  letter-spacing: -0.005em;
}
.hero-bullets svg {
  color: var(--bordeaux);
  flex-shrink: 0;
  margin-top: 2px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}
.hero-disclaimer {
  font-size: 13px;
  color: var(--gray-500);
  font-style: italic;
  margin: 0;
}

/* HERO PHOTO FRAME (rect arredondado + gota decorativa) */
.hero-visual { position: relative; }
.hero-photo-frame {
  position: relative;
  max-width: 440px;
  margin-left: auto;
  aspect-ratio: 4 / 5;
}
.hero-photo-frame::before {
  content: "";
  position: absolute;
  inset: -32px -40px -40px -32px;
  background: linear-gradient(135deg, rgba(232, 166, 152, 0.30), rgba(122, 36, 64, 0.10));
  filter: blur(48px);
  z-index: 0;
  border-radius: 32px;
}
.hero-deco-drop {
  position: absolute;
  top: -36px;
  right: -42px;
  width: 220px;
  height: 297px;
  color: rgba(122, 36, 64, 0.20);
  z-index: 0;
  pointer-events: none;
}
.hero-photo-rect {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 22px;
  overflow: hidden;
  background: var(--rose-cream);
  box-shadow: 0 30px 60px rgba(107, 31, 56, 0.20), 0 8px 16px rgba(31, 26, 24, 0.08);
  border: 1px solid rgba(122, 36, 64, 0.10);
}
.hero-photo-rect img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-photo-badge {
  position: absolute;
  bottom: 30px;
  left: -12px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-md);
  z-index: 2;
  min-width: 96px;
}
.hero-photo-badge .badge-num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gray-500);
  text-transform: uppercase;
}
.hero-photo-badge strong {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--bordeaux);
  line-height: 1;
  margin: 4px 0 2px;
}
.hero-photo-badge .badge-uf {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gray-700);
}
.hero-photo-stat {
  position: absolute;
  top: -18px;
  right: -28px;
  background: var(--bordeaux);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 10px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 12px 30px rgba(107, 31, 56, 0.30);
  z-index: 2;
  min-width: 130px;
}
.hero-photo-stat strong {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
}
.hero-photo-stat span {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 4px;
  opacity: 0.85;
}

/* TRUST STRIP (marquee infinito) ============================== */
.trust-strip {
  background: var(--grafite);
  color: rgba(255, 255, 255, 0.78);
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.trust-track {
  display: flex;
  width: max-content;
  animation: trustMarquee 42s linear infinite;
  will-change: transform;
}
.trust-strip:hover .trust-track,
.trust-strip:focus-within .trust-track {
  animation-play-state: paused;
}
.trust-row {
  display: flex;
  align-items: center;
  gap: 22px;
  padding-right: 22px;
  flex-shrink: 0;
}
@keyframes trustMarquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}
.trust-item {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  white-space: nowrap;
}
.trust-item strong {
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.01em;
  text-transform: none;
  white-space: nowrap;
}
.trust-sep { color: rgba(255, 255, 255, 0.24); font-size: 16px; flex-shrink: 0; }

/* SECTIONS BASE =============================================== */
.section {
  padding: clamp(64px, 9vw, 110px) 0;
  position: relative;
}
.section-light { background: var(--off-white); }
.section-dark { background: var(--grafite); color: rgba(255, 255, 255, 0.85); }
.section-stats { background: var(--rose-cream); }
.section-sobre { background: var(--paper); }
.section-cta { background: linear-gradient(180deg, var(--off-white) 0%, var(--rose-cream) 100%); }

.section-head {
  max-width: 880px;
  margin: 0 0 56px;
}
.section-head-center { margin: 0 auto 56px; text-align: center; max-width: 720px; }
.section-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0.32em;
  color: var(--bordeaux);
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid currentColor;
}
.section-num-light { color: var(--rose-peach); }
.section-title {
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.12;
  letter-spacing: -0.025em;
  font-weight: 600;
  color: var(--grafite);
  margin-bottom: 16px;
}
.section-title em {
  color: var(--bordeaux);
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
}
.section-title-light { color: #fff; }
.section-title-light em { color: var(--rose-peach); }
.section-lead {
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--gray-700);
  max-width: 620px;
  line-height: 1.6;
}
.section-head-center .section-lead { margin: 0 auto; }
.section-lead-light { color: rgba(255, 255, 255, 0.72); }

/* 01 ESPECIALIDADES ========================================== */
.esp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.esp-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.esp-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(122, 36, 64, 0.25);
}
.esp-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--rose-cream);
  border-radius: 14px;
  color: var(--bordeaux);
  margin-bottom: 20px;
}
.esp-card h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 26px;
  margin-bottom: 12px;
  color: var(--grafite);
  letter-spacing: -0.01em;
}
.esp-card p {
  color: var(--gray-700);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* 02 O QUE E (DARK + 2 COL) ================================== */
.o-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
.o-list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.o-list li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.o-marker {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(232, 166, 152, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  color: var(--rose-peach);
  background: rgba(232, 166, 152, 0.08);
}
.o-list li strong {
  display: block;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 4px;
}
.o-list li p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}
.o-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
}
.o-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.o-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(107, 31, 56, 0.32), rgba(31, 26, 24, 0));
  pointer-events: none;
}

/* 03 STATS ==================================================== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 16px;
}
.stat-item {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: left;
  border: 1px solid rgba(122, 36, 64, 0.10);
  transition: transform var(--transition);
}
.stat-item:hover { transform: translateY(-3px); }
.stat-num {
  display: block;
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(56px, 7vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--bordeaux);
  margin-bottom: 8px;
}
.stat-num sup { font-size: 0.45em; vertical-align: super; font-style: normal; font-weight: 500; }
.stat-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-700);
  margin-bottom: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.stat-item p { font-size: 14px; color: var(--gray-700); line-height: 1.55; margin: 0; }

/* 04 QUANDO PROCURAR ========================================= */
.quando-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.quando-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}
.quando-card:hover {
  transform: translateY(-2px);
  border-color: var(--bordeaux);
  background: var(--rose-cream);
}
.quando-card h3 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 16px;
  color: var(--bordeaux);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.quando-card p {
  font-size: 14px;
  color: var(--gray-700);
  margin: 0;
  line-height: 1.5;
}

/* PULL QUOTE ================================================= */
.pullquote {
  padding: clamp(48px, 7vw, 96px) 0;
  background: var(--bordeaux);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.pullquote::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -100px;
  width: 380px;
  height: 380px;
  background: radial-gradient(closest-side, rgba(232, 166, 152, 0.28), rgba(232, 166, 152, 0));
  pointer-events: none;
}
.pullquote blockquote {
  position: relative;
  margin: 0 auto;
  max-width: 880px;
  text-align: center;
}
.pullquote .quote-mark {
  font-family: var(--font-serif);
  font-size: 120px;
  line-height: 0.8;
  color: var(--rose-peach);
  display: block;
  margin: 0 auto 12px;
  font-weight: 300;
  height: 60px;
  overflow: hidden;
}
.pullquote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.35;
  color: #fff;
  margin: 0 0 24px;
  letter-spacing: -0.01em;
}
.pullquote cite {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose-peach);
}

/* 05 SOBRE ==================================================== */
.sobre-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
.sobre-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3 / 4;
  background: var(--gray-300);
}
.sobre-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sobre-photo-credit {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: rgba(31, 26, 24, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.sobre-photo-credit span {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.7;
}
.sobre-photo-credit strong {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  margin-top: 2px;
}
.sobre-bio {
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--gray-700);
  margin-bottom: 16px;
  line-height: 1.65;
}
.sobre-crm {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bordeaux);
  margin-bottom: 28px;
  padding: 6px 14px;
  border: 1px solid rgba(122, 36, 64, 0.20);
  border-radius: 999px;
  background: var(--rose-cream);
}
.sobre-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.sobre-list li {
  display: flex;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.sobre-list li:last-child { border-bottom: none; }
.sobre-year {
  flex-shrink: 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 22px;
  color: var(--bordeaux);
  width: 60px;
  letter-spacing: -0.01em;
}
.sobre-list li strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--grafite);
  margin-bottom: 2px;
  letter-spacing: -0.01em;
}
.sobre-list li span {
  font-size: 13px;
  color: var(--gray-500);
  letter-spacing: 0.02em;
}
.sobre-highlight strong {
  position: relative;
  padding-right: 22px;
}
.sobre-highlight strong::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bordeaux);
  box-shadow: 0 0 0 4px rgba(122, 36, 64, 0.14);
}

/* 06 DEPOIMENTOS ============================================= */
.rating-summary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 10px 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
}
.rating-summary .stars { display: inline-flex; gap: 2px; }
.rating-summary strong {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 18px;
  color: var(--grafite);
}
.rating-summary span {
  font-size: 12px;
  color: var(--gray-500);
  letter-spacing: 0.02em;
}
.dep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.dep-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.dep-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.dep-stars { display: flex; gap: 2px; }
.dep-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray-700);
  margin: 0;
  flex-grow: 1;
}
.dep-card footer {
  border-top: 1px solid var(--line);
  padding-top: 14px;
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.dep-card footer strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--grafite);
}
.dep-card footer span {
  font-size: 12px;
  color: var(--gray-500);
  letter-spacing: 0.02em;
}
.dep-cta-row {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

/* 07 FAQ ====================================================== */
.faq-wrap { max-width: 820px; }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-item[open] {
  border-color: rgba(122, 36, 64, 0.30);
  box-shadow: var(--shadow-md);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: 16px;
  color: var(--grafite);
  letter-spacing: -0.005em;
  user-select: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question:hover { color: var(--bordeaux); }
.faq-chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--rose-cream);
  color: var(--bordeaux);
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition), color var(--transition);
}
.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
  background: var(--bordeaux);
  color: #fff;
}
.faq-answer { padding: 0 26px 24px; }
.faq-answer p {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.65;
  margin: 0;
}

/* 08 CTA FINAL ================================================ */
.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}
.cta-map {
  position: relative;
  min-height: 460px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.map-facade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  cursor: pointer;
  font-family: inherit;
  background:
    radial-gradient(circle at 30% 30%, rgba(232, 166, 152, 0.18), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(122, 36, 64, 0.22), transparent 55%),
    linear-gradient(135deg, #2A2421, #4D423D);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 18px;
  color: #fff;
  text-align: center;
  padding: 32px;
  transition: transform var(--transition);
}
.map-facade::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}
.map-facade:hover { transform: scale(1.005); }
.map-facade-pin {
  position: relative;
  z-index: 1;
  color: var(--rose-peach);
  filter: drop-shadow(0 8px 16px rgba(232, 166, 152, 0.35));
}
.map-facade-meta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.map-facade-meta strong {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 22px;
  color: #fff;
  letter-spacing: 0.01em;
}
.map-facade-meta span {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.78);
}
.map-facade-meta em {
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose-peach);
  margin-top: 8px;
}
.cta-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.cta-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow-md);
}
.cta-card header { margin-bottom: 6px; }
.cta-card h2 {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--grafite);
  margin: 0 0 6px;
  line-height: 1.2;
}
.cta-card h2 em { color: var(--bordeaux); font-family: var(--font-serif); font-weight: 300; }
.cta-card header p {
  font-size: 14px;
  color: var(--gray-500);
  margin: 0;
  line-height: 1.5;
}
.cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--grafite);
  background: var(--off-white);
  transition: border-color var(--transition), background var(--transition);
}
.cta-row:hover { border-color: var(--bordeaux); background: var(--rose-cream); color: var(--grafite); }
.cta-row svg { flex-shrink: 0; color: var(--bordeaux); }
.cta-row-whats svg { color: #25D366; }
.cta-row > div { display: flex; flex-direction: column; line-height: 1.3; flex-grow: 1; }
.cta-row strong { font-size: 14px; font-weight: 600; color: var(--grafite); letter-spacing: -0.005em; }
.cta-row span { font-size: 12px; color: var(--gray-500); letter-spacing: 0.02em; }
.cta-row-arrow { font-size: 16px; color: var(--gray-300); transition: color var(--transition), transform var(--transition); }
.cta-row:hover .cta-row-arrow { color: var(--bordeaux); transform: translateX(2px); }
.cta-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 6px 0 8px;
}
.cta-tags li {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-700);
  padding: 6px 10px;
  background: var(--rose-cream);
  border-radius: 999px;
}
.cta-hours {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin: 4px 0 0;
}

/* FOOTER ====================================================== */
.footer {
  background: var(--grafite);
  color: rgba(255, 255, 255, 0.72);
  padding-top: clamp(48px, 6vw, 72px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 6px;
}
.footer-brand strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}
.footer-brand span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 4px;
}
.footer-col h3 {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 14px;
}
.footer-col p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 8px;
  line-height: 1.55;
}
.footer-col a { color: rgba(255, 255, 255, 0.85); }
.footer-col a:hover { color: var(--rose-peach); }

.footer-bottom {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.62);
}
.footer-disclaimer {
  font-style: italic;
  color: rgba(255, 255, 255, 0.50);
}
.footer-rd {
  padding: 18px 0;
}
.footer-rd-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.footer-rd-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.footer-rd-inner a {
  display: inline-flex;
  align-items: center;
  opacity: 0.55;
  transition: opacity var(--transition);
}
.footer-rd-inner a:hover { opacity: 1; }
.footer-rd-inner img {
  height: 22px;
  width: auto;
  filter: brightness(0) invert(1);
}

/* WHATSAPP FLOAT ============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.35), 0 4px 8px rgba(0, 0, 0, 0.15);
  z-index: 99;
  transition: transform var(--transition), box-shadow var(--transition);
  opacity: 0;
  transform: translateY(20px) scale(0.85);
}
.whatsapp-float.is-visible { opacity: 1; transform: translateY(0) scale(1); }
.whatsapp-float:hover { transform: translateY(-2px) scale(1.05); box-shadow: 0 16px 36px rgba(37, 211, 102, 0.5); }

/* REVEAL ANIMATION =========================================== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms cubic-bezier(0.2, 0.7, 0.3, 1), transform 600ms cubic-bezier(0.2, 0.7, 0.3, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE ================================================== */
@media (max-width: 1100px) {
  .header-nav { display: none; }
  .header-cta-desktop { display: none; }
  .nav-toggle { display: flex; }
}

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-photo-frame { margin: 0 auto; max-width: 380px; }
  .hero-photo-stat { top: -18px; right: -8px; padding: 8px 14px; min-width: 110px; }
  .hero-photo-stat strong { font-size: 14px; }
  .hero-photo-stat span { font-size: 9px; }
  .hero-photo-badge { left: -8px; bottom: 24px; }
  .esp-grid { grid-template-columns: repeat(2, 1fr); }
  .quando-grid { grid-template-columns: repeat(2, 1fr); }
  .dep-grid { grid-template-columns: repeat(2, 1fr); }
  .o-grid { grid-template-columns: 1fr; gap: 40px; }
  .sobre-grid { grid-template-columns: 1fr; gap: 40px; }
  .sobre-photo { max-width: 480px; margin: 0 auto; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .cta-grid { grid-template-columns: 1fr; }
  .cta-map { min-height: 360px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section-head { max-width: 100%; }
}

@media (max-width: 720px) {
  .stats-grid { grid-template-columns: 1fr; }
  .esp-grid { grid-template-columns: 1fr; }
  .dep-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .trust-track { animation-duration: 30s; }
  .trust-row { gap: 18px; padding-right: 18px; }
}

@media (max-width: 700px) {
  .header-brand-text em { display: none; }
  .header-brand-text strong { font-size: 13px; }
  .header-brand img { width: 32px; height: 32px; }
  .header-inner { padding: 12px 0; }
  .btn-sm span { display: none; }
  .btn-sm {
    padding: 0;
    width: 44px;
    height: 44px;
    gap: 0;
    border-radius: 50%;
    justify-content: center;
    flex-shrink: 0;
  }
  .btn-sm svg { width: 18px; height: 18px; }
  .hero { padding: 32px 0 56px; }
  .hero-title { font-size: clamp(32px, 8vw, 44px); }
  .hero-eyebrow { font-size: 11px; padding: 6px 12px 6px 9px; margin-bottom: 18px; }
  .hero-subheadline { font-size: 15px; margin: -6px 0 18px; }
  .hero-lead { font-size: 15px; line-height: 1.55; margin-bottom: 20px; }
  .hero-bullets { font-size: 14px; gap: 10px; margin-bottom: 24px; }
  .hero-bullets li { gap: 10px; }
  .hero-actions { width: 100%; gap: 10px; }
  .hero-actions .btn { flex: 1 1 100%; justify-content: center; }
  .hero-photo-frame { max-width: 320px; }
  .hero-photo-stat { display: none; }
  .hero-photo-badge { left: -8px; bottom: 20px; padding: 10px 14px; min-width: 84px; }
  .hero-photo-badge strong { font-size: 18px; }
  .hero-deco-drop { display: none; }
  .section { padding: 56px 0; }
  .section-head { margin: 0 0 36px; }
  .section-num { font-size: 12px; }
  .section-title { font-size: clamp(26px, 7vw, 34px); }
  .section-lead { font-size: 14px; }
  .esp-grid { grid-template-columns: 1fr; gap: 16px; }
  .esp-card { padding: 28px 24px; }
  .esp-card h3 { font-size: 22px; }
  .quando-grid { grid-template-columns: 1fr; gap: 12px; }
  .quando-card { padding: 22px 20px; }
  .dep-grid { grid-template-columns: 1fr; gap: 16px; }
  .dep-card { padding: 24px 22px; }
  .stats-grid { gap: 16px; }
  .stat-item { padding: 28px 24px; }
  .stat-num { font-size: clamp(48px, 12vw, 64px); }
  .o-list { gap: 18px; margin-bottom: 26px; }
  .o-list li strong { font-size: 15px; }
  .o-list li p { font-size: 13px; }
  .sobre-bio { font-size: 15px; }
  .sobre-list li { padding: 14px 0; gap: 14px; }
  .sobre-year { font-size: 18px; width: 50px; }
  .sobre-list li strong { font-size: 14px; }
  .sobre-list li span { font-size: 12px; }
  .sobre-photo-credit { padding: 8px 12px; }
  .footer { padding-top: 48px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; padding-bottom: 24px; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; text-align: left; }
  .pullquote { padding: 56px 0; }
  .pullquote .quote-mark { font-size: 72px; height: 36px; margin-bottom: 4px; }
  .pullquote p { font-size: 20px; }
  .faq-question { padding: 18px 20px; font-size: 15px; }
  .faq-answer { padding: 0 20px 20px; }
  .faq-answer p { font-size: 14px; }
  .faq-chevron { width: 28px; height: 28px; }
  .cta-card { padding: 26px 22px; }
  .cta-card h2 { font-size: 22px; }
  .cta-row { padding: 12px 14px; gap: 12px; }
  .cta-row strong { font-size: 13px; }
  .cta-map { min-height: 280px; }
  .map-facade-meta strong { font-size: 18px; }
  .rating-summary { padding: 8px 14px; gap: 8px; }
  .rating-summary strong { font-size: 16px; }
  .rating-summary span { font-size: 11px; }
}

@media (max-width: 380px) {
  :root { --gutter: 16px; }
  .section { padding: 56px 0; }
  .esp-card, .stat-item, .dep-card { padding: 24px 20px; }
  .cta-card { padding: 22px; }
}

/* PRINT ======================================================= */
@media print {
  .header, .whatsapp-float, .footer-rd { display: none; }
  .hero { padding-top: 24px; }
}
