/* ==========================================================================
   DRA. AMANDA LOZER · NEUROCIRURGIA & CIRURGIA DA COLUNA
   Design Ultra-Moderno · Mix Editorial Sans + Playfair Display Sutil
   Tipografia: Plus Jakarta Sans + Playfair Display (Itálico Nobre)
   Cantos Arredondados: 16px - 28px (Pills & Smooth Containers)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS & RESET
   -------------------------------------------------------------------------- */
:root {
  /* Cores Base */
  --bg-page: #F8FAFC;
  --bg-surface: #FFFFFF;
  --bg-subtle: #F1F5F9;
  --bg-dark: #070D1E;
  --bg-dark-card: #0E1833;
  --bg-dark-hover: #15244D;

  /* Textos */
  --text-main: #0B132B;
  --text-muted: #475569;
  --text-light: #64748B;
  --text-white: #FFFFFF;
  --text-white-muted: #CBD5E1;

  /* Acentos de Alta Energia & Rigor */
  --brand-blue: #1D4ED8;
  --brand-blue-hover: #1E40AF;
  --brand-blue-soft: #EFF6FF;
  --brand-gold: #C5A880;
  --brand-gold-soft: rgba(197, 168, 128, 0.15);
  --brand-green: #10B981;

  /* Bordas */
  --border-subtle: rgba(15, 23, 42, 0.08);
  --border-card: rgba(15, 23, 42, 0.12);
  --border-dark: rgba(255, 255, 255, 0.12);
  --border-dark-hover: rgba(255, 255, 255, 0.25);

  /* Sombras Modernas */
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 16px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 16px 36px rgba(15, 23, 42, 0.08);
  --shadow-dark: 0 20px 48px rgba(0, 0, 0, 0.4);

  /* Cantos Arredondados Modernos */
  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 9999px;

  /* Tipografia */
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Newsreader', 'Cormorant Garamond', Georgia, serif;

  /* Transições */
  --ease-snappy: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast: 160ms var(--ease-snappy);
  --t-normal: 240ms var(--ease-snappy);
}

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

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

body.theme-modern {
  font-family: var(--font-sans);
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* --------------------------------------------------------------------------
   BARRA LATERAL DE ROLAGEM PERSONALIZADA (LUXURY BRAND BLUE & DEEP NAVY)
   -------------------------------------------------------------------------- */
/* Webkit (Chrome, Edge, Safari, Opera) */
::-webkit-scrollbar {
  width: 9px;
}

::-webkit-scrollbar-track {
  background: #070D1E;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #1D4ED8 0%, #2563EB 50%, #3B82F6 100%);
  border-radius: 9px;
  border: 2px solid #070D1E;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #2563EB 0%, #3B82F6 100%);
  box-shadow: 0 0 10px rgba(37, 99, 235, 0.6);
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #2563EB #070D1E;
}

/* Indicador de Progresso de Leitura no Topo */
.scroll-progress-line {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #1D4ED8 0%, #2563EB 50%, #60A5FA 100%);
  z-index: 99999;
  pointer-events: none;
  box-shadow: 0 0 10px rgba(37, 99, 235, 0.8);
  transition: width 60ms linear;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: all var(--t-fast);
}

button, input, select {
  font: inherit;
  color: inherit;
}

ul, ol {
  list-style: none;
}

/* --------------------------------------------------------------------------
   DETALHE SERIFADO SUTIL (EDITORIAL REFINADO & DELICADO)
   -------------------------------------------------------------------------- */
.serif-accent {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.1em;
  letter-spacing: 0.01em;
  display: inline;
  color: #FFFFFF;
}

/* --------------------------------------------------------------------------
   2. CONTAINERS & LAYOUT
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.container--narrow {
  max-width: 820px;
}

/* --------------------------------------------------------------------------
   3. BOTÕES MODERNOS & PÍLULAS DELICADAS
   -------------------------------------------------------------------------- */
.btn-modern {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--t-fast);
  white-space: nowrap;
}

.btn-modern--accent {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1E40AF 0%, #1D4ED8 50%, #2563EB 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(29, 78, 216, 0.35);
  transition: all 300ms var(--ease-snappy);
}

.btn-modern--accent::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transform: skewX(-20deg);
  transition: left 650ms ease;
}

.btn-modern--accent:hover::after {
  left: 150%;
}

.btn-modern--accent:hover {
  background: linear-gradient(135deg, #1E40AF 0%, #1E40AF 50%, #1D4ED8 100%);
  box-shadow: 0 8px 24px rgba(29, 78, 216, 0.45);
  transform: translateY(-2px);
}

.btn-modern--glass {
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-modern--glass:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-1px);
}

.btn-modern--ghost-dark {
  background-color: #FFFFFF;
  color: var(--text-main);
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-sm);
}

.btn-modern--ghost-dark:hover {
  background-color: var(--bg-subtle);
  border-color: var(--text-main);
}

.btn-modern--sm {
  padding: 8px 16px;
  font-size: 0.8125rem;
}

.btn-modern--lg {
  padding: 13px 26px;
  font-size: 0.90625rem;
}

.btn-modern--block {
  width: 100%;
}

.kicker-pill {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  background-color: var(--brand-blue-soft);
  color: var(--brand-blue);
  margin-bottom: 14px;
}

.kicker-pill--gold {
  background-color: var(--brand-gold-soft);
  color: var(--brand-gold);
}

.title-modern {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-main);
  margin-bottom: 14px;
}

.desc-modern {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 680px;
  line-height: 1.6;
}

.section-header-modern {
  margin-bottom: 48px;
}

.section-header-modern.text-center {
  text-align: center;
}

.section-header-modern.text-center .desc-modern {
  margin-left: auto;
  margin-right: auto;
}

/* --------------------------------------------------------------------------
   4. NAVBAR SUPERIOR TRANSPARENTE & ELEGANTE (ESTILO UNTU CARE)
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 48px;
  background: transparent;
  pointer-events: none;
  transition: padding 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header__inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  pointer-events: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 1px solid transparent;
  box-shadow: none;
  transition: max-width 450ms cubic-bezier(0.16, 1, 0.3, 1),
              padding 400ms cubic-bezier(0.16, 1, 0.3, 1),
              border-radius 450ms cubic-bezier(0.16, 1, 0.3, 1),
              background 400ms cubic-bezier(0.16, 1, 0.3, 1),
              backdrop-filter 400ms cubic-bezier(0.16, 1, 0.3, 1),
              border-color 400ms cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* Quando sair da seção inicial: morphing para a barra arredondada flutuante moderna em glassmorphism */
.site-header.is-scrolled {
  padding: 16px 24px;
}

.site-header.is-scrolled .site-header__inner {
  max-width: 1140px;
  padding: 8px 22px 8px 26px;
  border-radius: var(--radius-pill);
  background: rgba(7, 13, 30, 0.78);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 40px -10px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: transform 250ms ease;
}

.header-logo:hover {
  transform: scale(1.03);
}

.header-logo__img {
  height: 50px;
  width: auto;
  object-fit: contain;
  transition: height 350ms cubic-bezier(0.16, 1, 0.3, 1), transform 300ms ease;
}

.site-header.is-scrolled .header-logo__img {
  height: 38px;
}

.header-logo__img--white {
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.45));
}

.header-nav__list {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-header .nav-item {
  font-size: 0.84375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  padding: 8px 2px;
  position: relative;
  text-decoration: none;
  transition: color 250ms ease;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.site-header .nav-item::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #FFFFFF;
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1), opacity 250ms ease;
  opacity: 0;
}

.site-header .nav-item:hover {
  color: #FFFFFF;
}

.site-header .nav-item:hover::after {
  transform: scaleX(0.5);
  opacity: 0.7;
}

.site-header .nav-item.is-active {
  color: #FFFFFF !important;
  font-weight: 600;
}

.site-header .nav-item.is-active::after {
  transform: scaleX(1);
  opacity: 1;
}

.btn-header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #FFFFFF;
  font-size: 0.84375rem;
  font-weight: 600;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 250ms ease;
}

.btn-header-cta:hover {
  background: #FFFFFF;
  color: #070D1E;
  border-color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.btn-header-cta svg {
  transition: transform 200ms ease;
}

.btn-header-cta:hover svg {
  transform: translateX(3px);
}

.site-header.is-scrolled .header-nav__list {
  gap: 26px;
}

.site-header.is-scrolled .nav-item {
  font-size: 0.8125rem;
  padding: 6px 2px;
}

.site-header.is-scrolled .btn-header-cta {
  padding: 8px 18px;
  font-size: 0.8125rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle--light span {
  width: 20px;
  height: 2px;
  background-color: #FFFFFF;
  border-radius: 2px;
}

/* --------------------------------------------------------------------------
   5. HERO FULL-SCREEN REFINADO & EQUILIBRADO
   -------------------------------------------------------------------------- */
.hero-fullscreen {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  overflow: hidden;
  padding-top: 110px;
  padding-bottom: 80px;
}

.hero-bg-image-container {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-bg-picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  animation: heroCinematicMotion 26s ease-in-out infinite alternate;
  will-change: transform;
  transform-origin: 70% 35%;
}

@keyframes heroCinematicMotion {
  0% {
    transform: scale(1.0) translate(0, 0);
  }
  50% {
    transform: scale(1.06) translate(-1%, -0.8%);
  }
  100% {
    transform: scale(1.025) translate(0.6%, 0.4%);
  }
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(90deg, rgba(7, 13, 30, 0.94) 0%, rgba(7, 13, 30, 0.76) 42%, rgba(7, 13, 30, 0.38) 75%, rgba(7, 13, 30, 0.68) 100%),
    linear-gradient(180deg, rgba(7, 13, 30, 0.45) 0%, transparent 35%, rgba(7, 13, 30, 0.94) 100%);
}

.hero-scroll-cue {
  position: absolute;
  bottom: 56px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  animation: heroFloatArrow 2.4s ease-in-out infinite;
  transition: opacity 300ms ease, transform 250ms ease, background 250ms ease, border-color 250ms ease;
  text-decoration: none;
}

.hero-scroll-cue svg {
  transition: transform 200ms ease;
}

.hero-scroll-cue:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.45);
  transform: translateX(-50%) translateY(4px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
}

.hero-scroll-cue:hover svg {
  transform: translateY(2px);
}

@keyframes heroFloatArrow {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(6px);
  }
}

.hero-fullscreen__content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-split-container {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 48px;
  align-items: flex-end;
  width: 100%;
}

/* Card Editorial da Médica (oculto no desktop) */
.hero-mobile-doctor-card {
  display: none;
}

.hero-left-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 680px;
}

.hero-kicker-clean {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #E2E8F0;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--brand-green);
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulseDotRadar 2.2s infinite;
}

@keyframes pulseDotRadar {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    box-shadow: 0 0 0 7px rgba(16, 185, 129, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

.hero-br-mobile {
  display: none;
}

.hero-title-clean {
  font-size: 3.15rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: #FFFFFF;
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.hero-sub-clean {
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.65;
  color: #CBD5E1;
  margin-bottom: 32px;
  max-width: 580px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-actions-clean {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.btn-hero-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #FFFFFF;
  color: #070D1E;
  font-size: 0.9375rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
  transition: transform 250ms var(--ease-snappy), box-shadow 250ms var(--ease-snappy), background-color 200ms ease;
  position: relative;
  overflow: hidden;
  animation: heroBtnSubtleGlow 3.6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.btn-hero-white:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.45);
  background-color: #F8FAFC;
  color: #1D4ED8;
  animation: none;
}

.btn-hero-white:active {
  transform: scale(0.97);
}

.btn-hero-white svg {
  transition: transform 250ms var(--ease-snappy);
  animation: heroBtnArrowNudge 3.6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.btn-hero-white:hover svg {
  transform: translateX(4px);
  animation: none;
}

.hero-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.90625rem;
  font-weight: 600;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 250ms ease;
}

.hero-phone-link:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}

.hero-phone-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-green);
}

/* Coluna Direita: Card Flutuante de Estatística (Inspirado no 10K+) */
.hero-right-col {
  display: flex;
  justify-content: flex-end;
}

.hero-floating-stat-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-xl);
  padding: 26px 28px;
  box-shadow: 0 24px 50px -10px rgba(0, 0, 0, 0.35);
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 300ms var(--ease-snappy), box-shadow 300ms var(--ease-snappy);
  animation: heroFloatCard 6s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes heroFloatCard {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

.hero-floating-stat-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 32px 65px -10px rgba(0, 0, 0, 0.45);
  border-color: rgba(255, 255, 255, 0.4);
}

.hero-stat-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-pill);
}

.hero-stat-number {
  font-size: 1.65rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  line-height: 1;
}

.hero-stat-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.55;
  margin: 0;
}

.hero-stat-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

/* --------------------------------------------------------------------------
   6. SEÇÃO PROBLEMAS QUE TRATAMOS (COM FOTOS ANATÔMICAS MODERNAS)
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   6. SEÇÃO PROBLEMAS QUE TRATAMOS (GRID 2 COLUNAS EQUILIBRADO & ELEGANTE)
   -------------------------------------------------------------------------- */
.section-services {
  padding: 95px 0;
  background: 
    radial-gradient(60% 50% at 50% 0%, rgba(29, 78, 216, 0.04) 0%, transparent 100%),
    linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
  position: relative;
}

/* --------------------------------------------------------------------------
   6.1 SEÇÃO SEQUENCIAL: A LINHA DO CUIDADO (JORNADA DO TRATAMENTO 2x2 AREJADA)
   -------------------------------------------------------------------------- */
.section-journey {
  padding: 105px 0;
  background: 
    radial-gradient(50% 40% at 50% 20%, rgba(29, 78, 216, 0.035) 0%, transparent 100%),
    #FFFFFF;
  position: relative;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.journey-grid-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  position: relative;
  z-index: 2;
  margin-top: 48px;
}

.journey-card-clean {
  background: #FFFFFF;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  padding: 34px 32px;
  box-shadow: 0 4px 24px -4px rgba(15, 23, 42, 0.04);
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 24px;
  align-items: flex-start;
  transition: transform 320ms var(--ease-snappy), box-shadow 320ms var(--ease-snappy), border-color 320ms ease;
  position: relative;
}

.journey-card-clean:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -8px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(29, 78, 216, 0.15);
  border-color: rgba(29, 78, 216, 0.3);
}

.journey-card-clean--highlight {
  background: linear-gradient(145deg, #FFFFFF 0%, #F8FAFC 100%);
  border: 1.5px solid rgba(29, 78, 216, 0.22);
  box-shadow: 0 8px 28px -4px rgba(29, 78, 216, 0.08);
}

.journey-step-lead {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.journey-step-circle {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 800;
  border: 1px solid rgba(29, 78, 216, 0.2);
  box-shadow: 0 4px 12px rgba(29, 78, 216, 0.1);
}

.journey-card-clean--highlight .journey-step-circle {
  background: linear-gradient(135deg, #1E40AF 0%, #1D4ED8 100%);
  color: #FFFFFF;
  border-color: transparent;
  box-shadow: 0 6px 16px rgba(29, 78, 216, 0.3);
}

.journey-step-body {
  display: flex;
  flex-direction: column;
}

.journey-step-phase {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-blue);
  margin-bottom: 6px;
}

.journey-step-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-main);
  margin-bottom: 10px;
}

.journey-step-desc {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.journey-step-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.journey-pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  background-color: var(--bg-subtle);
  border: 1px solid var(--border-subtle);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-main);
}

.journey-pill-tag--success {
  background-color: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.25);
  color: #065F46;
  font-weight: 700;
}

/* Callout Convite Harmonioso & Iluminado */
.journey-cta-clean {
  margin-top: 48px;
  background: linear-gradient(135deg, #F8FAFC 0%, #FFFFFF 100%);
  border: 1px solid rgba(29, 78, 216, 0.15);
  border-radius: 24px;
  padding: 34px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  box-shadow: 0 10px 30px -4px rgba(29, 78, 216, 0.05);
}

.journey-cta-clean__left {
  display: flex;
  flex-direction: column;
}

.journey-cta-clean__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-blue);
  margin-bottom: 8px;
}

.journey-cta-clean__title {
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-main);
  margin-bottom: 6px;
}

.journey-cta-clean__desc {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0;
}

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

.service-card-clean {
  background-color: #FFFFFF;
  border: 1px solid rgba(15, 23, 42, 0.09);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px -4px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
  transition: transform 350ms var(--ease-snappy), box-shadow 350ms var(--ease-snappy), border-color 350ms ease;
}

.service-card-clean:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.1), 0 0 0 1px rgba(29, 78, 216, 0.15);
  border-color: rgba(29, 78, 216, 0.3);
}

.service-card-clean__thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: 205px;
  background-color: transparent;
  overflow: hidden;
}

.service-card-clean__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 300ms var(--ease-snappy);
}

.service-card-clean__img--top {
  object-position: center 20%;
}

.service-card-clean:hover .service-card-clean__img {
  transform: scale(1.04);
}

.service-thumb-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  color: var(--text-main);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08), inset 0 1px 1px rgba(255, 255, 255, 0.9);
  z-index: 2;
}

.service-thumb-badge--gold {
  background: rgba(255, 250, 240, 0.82);
  color: #8C6228;
  border: 1px solid rgba(197, 168, 128, 0.5);
  box-shadow: 0 4px 16px rgba(197, 168, 128, 0.15), inset 0 1px 1px rgba(255, 255, 255, 0.95);
}

.service-card-clean__body {
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card-clean__body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.3;
  margin-bottom: 8px;
}

.service-card-clean__body p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 16px;
  flex-grow: 1;
}

.service-card-clean__list {
  border-top: 1px solid var(--border-subtle);
  padding-top: 12px;
}

.service-card-clean__list li {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-main);
  margin-bottom: 6px;
  padding-left: 18px;
  position: relative;
  line-height: 1.45;
}

.service-card-clean__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--brand-blue);
  font-weight: 700;
}

.service-card-clean--highlight {
  background: linear-gradient(135deg, #FAF8F5, #FFFFFF);
  border: 1.5px solid rgba(197, 168, 128, 0.4);
}

/* --------------------------------------------------------------------------
   7. BENTO GRID SECTION: A MÉDICA (SOBRE MIM)
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   7. BENTO GRID SECTION: A MÉDICA (SOBRE MIM)
   -------------------------------------------------------------------------- */
.section-bento {
  padding: 95px 0;
  background: 
    radial-gradient(50% 40% at 85% 20%, rgba(197, 168, 128, 0.04) 0%, transparent 100%),
    linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  position: relative;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.bento-grid-4 {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 22px;
}

.bento-item {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 30px 26px;
  background-color: #FFFFFF;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 16px -4px rgba(15, 23, 42, 0.04);
  transition: transform 350ms var(--ease-snappy), box-shadow 350ms var(--ease-snappy), border-color 350ms ease;
}

.bento-item:hover {
  box-shadow: 0 16px 36px -8px rgba(15, 23, 42, 0.09);
  border-color: rgba(29, 78, 216, 0.25);
  transform: translateY(-3px);
}

.bento-item--photo {
  grid-row: span 2;
  padding: 0;
  overflow: hidden;
  position: relative;
  background-color: transparent;
  border: none;
  box-shadow: 0 16px 36px -8px rgba(15, 23, 42, 0.08);
}

.bento-photo-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 440px;
}

.bento-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 400ms var(--ease-snappy);
}

.bento-item--photo:hover .bento-img {
  transform: scale(1.03);
}

.bento-photo-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(7, 13, 30, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #FFFFFF;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

.bento-photo-tag span {
  display: block;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-gold);
  font-weight: 700;
  margin-bottom: 2px;
}

.bento-photo-tag strong {
  font-size: 0.9375rem;
  font-weight: 700;
}

.bento-icon-box {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background-color: var(--brand-blue-soft);
  border: 1px solid rgba(29, 78, 216, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-blue);
  margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
  transition: transform 300ms var(--ease-snappy);
}

.bento-item:hover .bento-icon-box {
  transform: scale(1.08);
}

.bento-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 10px;
  line-height: 1.25;
}

.bento-text {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.bento-pill {
  display: inline-block;
  font-size: 0.71875rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  background-color: var(--brand-blue-soft);
  color: var(--brand-blue);
  width: fit-content;
}

.bento-pill--green {
  background-color: rgba(16, 185, 129, 0.12);
  color: #065F46;
}

/* --------------------------------------------------------------------------
   8. SEÇÃO CONSULTA & EXPERIÊNCIA (SPLIT SIDE-BY-SIDE LUMINOSO & REFINADO)
   -------------------------------------------------------------------------- */
.section-consultation {
  padding: 95px 0;
  background: 
    radial-gradient(50% 50% at 15% 50%, rgba(29, 78, 216, 0.035) 0%, transparent 100%),
    radial-gradient(40% 40% at 90% 70%, rgba(197, 168, 128, 0.05) 0%, transparent 100%),
    #FFFFFF;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.consultation-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.consultation-photo-col {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.consultation-photo-col::before {
  content: '';
  position: absolute;
  inset: -8px;
  background: radial-gradient(circle at 40% 40%, rgba(29, 78, 216, 0.15) 0%, rgba(197, 168, 128, 0.16) 45%, transparent 72%);
  filter: blur(30px);
  opacity: 0.7;
  z-index: 0;
  pointer-events: none;
  border-radius: calc(var(--radius-xl) + 8px);
  transition: opacity 400ms ease, transform 400ms ease;
  transform: scale(0.98);
}

.consultation-photo-col:hover::before {
  opacity: 0.95;
  transform: scale(1.02);
}

.consultation-photo-frame {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background-color: transparent;
  border: none;
  box-shadow: 0 20px 48px -12px rgba(29, 78, 216, 0.1), 0 8px 24px -8px rgba(15, 23, 42, 0.06);
  transition: transform 400ms var(--ease-snappy), box-shadow 400ms var(--ease-snappy);
  height: 100%;
  min-height: 480px;
  display: flex;
}

.consultation-photo-col:hover .consultation-photo-frame {
  transform: translateY(-3px);
  box-shadow: 0 28px 60px -12px rgba(29, 78, 216, 0.14), 0 12px 30px -8px rgba(15, 23, 42, 0.08);
}

.consultation-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  transition: transform 500ms var(--ease-snappy);
}

.consultation-photo-col:hover .consultation-photo-img {
  transform: scale(1.03);
}

.consultation-photo-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 12px 18px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-main);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.85);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--brand-blue);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.15);
}


.consultation-content-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.desc-modern--left {
  margin-bottom: 0;
}

.consultation-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 24px 0 28px;
  width: 100%;
}

.consultation-step-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background-color: rgba(248, 250, 252, 0.85);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-md);
  transition: all 300ms var(--ease-snappy);
  backdrop-filter: blur(8px);
}

.consultation-step-item:hover {
  background-color: #FFFFFF;
  border-color: rgba(29, 78, 216, 0.35);
  box-shadow: 0 8px 24px -4px rgba(29, 78, 216, 0.08);
  transform: translateX(4px);
}

.step-num-badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--brand-blue-soft);
  color: var(--brand-blue);
  font-size: 0.8125rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-text h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 3px;
  line-height: 1.3;
}

.step-text p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.consultation-action {
  margin-top: 4px;
}

/* --------------------------------------------------------------------------
   9. O CONSULTÓRIO EM VITÓRIA
   -------------------------------------------------------------------------- */
.section-clinic {
  padding: 80px 0;
  background-color: var(--bg-page);
}

.clinic-bento {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 24px;
  align-items: stretch;
}

.clinic-bento__item {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-card);
  background-color: #FFFFFF;
  overflow: hidden;
  position: relative;
  transition: transform 300ms var(--ease-snappy), box-shadow 300ms var(--ease-snappy);
}

.clinic-bento__item--photo {
  min-height: 420px;
}

.clinic-bento__item--photo:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px -8px rgba(15, 23, 42, 0.12);
}

.clinic-bento__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transition: transform 400ms var(--ease-snappy);
}

.clinic-bento__item--photo:hover .clinic-bento__img {
  transform: scale(1.03);
}

.clinic-bento__label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(7, 13, 30, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: #FFFFFF;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.clinic-bento__label strong {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.25;
}

.clinic-bento__label span {
  font-size: 0.71875rem;
  color: var(--brand-gold-light);
  font-weight: 500;
}

.clinic-bento__item--info {
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.clinic-info-badge {
  font-size: 0.65625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-blue);
  margin-bottom: 6px;
}

.clinic-bento__item--info h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.clinic-bento__item--info p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 16px;
}

.clinic-info-list {
  margin-bottom: 22px;
}

.clinic-info-list li {
  font-size: 0.8125rem;
  color: var(--text-main);
  margin-bottom: 6px;
  padding-left: 16px;
  position: relative;
}

.clinic-info-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--brand-blue);
  font-size: 1.1rem;
  line-height: 1;
}

/* Faixa Panorâmica de Vitória - ES (Terceira Ponte) */
.clinic-city-strip {
  margin-top: 32px;
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 250px;
  display: flex;
  align-items: flex-end;
  border: none;
  box-shadow: 0 20px 48px -12px rgba(15, 23, 42, 0.08);
}

.clinic-city-strip__thumb {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.clinic-city-strip__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transition: transform 600ms var(--ease-snappy);
}

.clinic-city-strip:hover .clinic-city-strip__img {
  transform: scale(1.03);
}

.clinic-city-strip__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 13, 30, 0.25) 0%, rgba(7, 13, 30, 0.78) 55%, rgba(7, 13, 30, 0.94) 100%);
}

.clinic-city-strip__content {
  position: relative;
  z-index: 2;
  padding: 34px 38px;
  color: #FFFFFF;
  max-width: 680px;
}

.clinic-city-strip__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-gold-light);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.clinic-city-strip__content h4 {
  font-size: 1.45rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
  line-height: 1.25;
}

.clinic-city-strip__content p {
  font-size: 0.90625rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.55;
  margin: 0;
}

/* --------------------------------------------------------------------------
   9.1 DEPOIMENTOS DE PACIENTES (HISTÓRIAS REAIS & PROVA SOCIAL)
   -------------------------------------------------------------------------- */
.section-testimonials {
  padding: 85px 0;
  background-color: var(--bg-page);
  border-top: 1px solid rgba(15, 23, 42, 0.05);
}

.reviews-trust-strip {
  max-width: 780px;
  margin: 0 auto 44px;
  background: #FFFFFF;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-pill);
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.06);
}

.reviews-trust-left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.google-badge-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-main);
}

.reviews-stars-score {
  display: flex;
  align-items: center;
  gap: 6px;
}

.stars-gold {
  color: #F59E0B;
  font-size: 1rem;
  letter-spacing: 2px;
}

.score-number {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-main);
}

.reviews-trust-divider {
  width: 1px;
  height: 28px;
  background-color: rgba(15, 23, 42, 0.12);
}

.reviews-trust-right {
  display: flex;
  flex-direction: column;
}

.trust-bold {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.3;
}

.trust-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}

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

.testimonial-card-clean {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
  transition: transform 300ms var(--ease-snappy), box-shadow 300ms var(--ease-snappy), border-color 300ms ease;
  position: relative;
}

.testimonial-card-clean:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.1);
  border-color: rgba(29, 78, 216, 0.3);
}

.testimonial-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.testimonial-stars {
  color: #F59E0B;
  font-size: 0.9375rem;
  letter-spacing: 2px;
}

.testimonial-tag {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: var(--brand-blue-soft);
  color: var(--brand-blue);
}

.testimonial-card__quote {
  font-size: 0.90625rem;
  line-height: 1.65;
  color: var(--text-main);
  font-style: italic;
  margin: 0 0 24px 0;
  flex-grow: 1;
}

.testimonial-card__footer {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #070D1E 0%, #1D4ED8 100%);
  color: #FFFFFF;
  font-size: 0.84375rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(29, 78, 216, 0.2);
}

.testimonial-author {
  display: flex;
  flex-direction: column;
}

.testimonial-author strong {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.25;
}

.testimonial-author span {
  font-size: 0.71875rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   9.2 BLOG & EDUCAÇÃO MÉDICA
   -------------------------------------------------------------------------- */
.section-blog {
  padding: 85px 0;
  background-color: #FFFFFF;
  border-top: 1px solid rgba(15, 23, 42, 0.05);
}

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

.blog-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15, 23, 42, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
  transition: transform 300ms var(--ease-snappy), box-shadow 300ms var(--ease-snappy), border-color 300ms ease;
  cursor: pointer;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.1);
  border-color: rgba(29, 78, 216, 0.3);
}

.blog-card__thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background-color: transparent;
  overflow: hidden;
}

.blog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 400ms var(--ease-snappy);
}

.blog-card:hover .blog-card__img {
  transform: scale(1.05);
}

.blog-card__category {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  color: var(--text-main);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.blog-card__category--gold {
  background: rgba(255, 250, 240, 0.92);
  color: #8C6228;
  border: 1px solid rgba(197, 168, 128, 0.4);
}

.blog-card__body {
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.71875rem;
  color: var(--brand-blue);
  font-weight: 600;
  margin-bottom: 10px;
}

.blog-meta-dot {
  color: var(--text-light);
}

.blog-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.35;
  margin-bottom: 10px;
  transition: color 200ms ease;
}

.blog-card:hover .blog-card__title {
  color: var(--brand-blue);
}

.blog-card__excerpt {
  font-size: 0.84375rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 20px;
  flex-grow: 1;
}

.blog-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.blog-card__author {
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-author-img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 25%;
  border: 1.5px solid var(--brand-gold);
}

.blog-card__author span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-main);
}

.blog-card__cta {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.78125rem;
  font-weight: 700;
  color: var(--brand-blue);
  transition: transform 200ms ease;
}

.blog-card:hover .blog-card__cta {
  transform: translateX(3px);
}

.blog-bottom-card {
  background: linear-gradient(135deg, #070D1E 0%, #0F172A 100%);
  border-radius: var(--radius-xl);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 16px 40px -10px rgba(7, 13, 30, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.blog-bottom-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.blog-bottom-avatar-wrap {
  position: relative;
  width: 54px;
  height: 54px;
  flex-shrink: 0;
}

.blog-bottom-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 25%;
  border: 2px solid var(--brand-gold);
  box-shadow: 0 4px 14px rgba(197, 168, 128, 0.4);
}

.online-indicator {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 12px;
  height: 12px;
  background-color: #10B981;
  border: 2px solid #070D1E;
  border-radius: 50%;
}

.blog-bottom-text h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.blog-bottom-text p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.45;
}

.blog-bottom-right {
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   10. FAQ MODERNO (SUAVE & ELEGANTE)
   -------------------------------------------------------------------------- */
.section-faq {
  padding: 95px 0;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.modern-faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.modern-faq-item {
  background-color: #FFFFFF;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
  overflow: hidden;
  transition: all 250ms var(--ease-snappy);
}

.modern-faq-item:hover {
  border-color: rgba(29, 78, 216, 0.25);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.06);
}

.modern-faq-item[open] {
  border-color: rgba(29, 78, 216, 0.3);
  box-shadow: 0 8px 24px rgba(29, 78, 216, 0.08);
}

.modern-faq-trigger {
  padding: 20px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  user-select: none;
  transition: color 200ms ease;
}

.modern-faq-trigger::-webkit-details-marker {
  display: none;
}

.modern-faq-arrow {
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--brand-blue);
  transition: transform 300ms var(--ease-snappy);
}

.modern-faq-item[open] .modern-faq-arrow {
  transform: rotate(45deg);
}

.modern-faq-content {
  padding: 0 24px 22px;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-muted);
  animation: faqFadeIn 300ms var(--ease-snappy);
}

@keyframes faqFadeIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modern-faq-content p + p {
  margin-top: 12px;
}

/* --------------------------------------------------------------------------
   11. CONTATO / AGENDAMENTO CONCIERGE (DARK LUXURY COM AMBIENT GLOW)
   -------------------------------------------------------------------------- */
.section-booking {
  padding: 95px 0;
  background: 
    radial-gradient(circle at 80% 25%, rgba(29, 78, 216, 0.16) 0%, transparent 55%),
    radial-gradient(circle at 15% 75%, rgba(197, 168, 128, 0.12) 0%, transparent 50%),
    var(--bg-dark);
  position: relative;
}

.booking-modern-box {
  background: rgba(14, 24, 51, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: 52px 42px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.booking-modern-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.booking-modern-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 16px;
}

.booking-modern-desc {
  font-size: 0.96875rem;
  color: var(--text-white-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}

.booking-perks {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.perk-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: #FFFFFF;
  font-weight: 500;
}

.perk-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: rgba(16, 185, 129, 0.2);
  color: var(--brand-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.71875rem;
  font-weight: 800;
}

.booking-doctor-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.booking-doctor-badge__img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  border: 2px solid var(--brand-gold);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.booking-doctor-badge__text {
  display: flex;
  flex-direction: column;
}

.booking-doctor-badge__text strong {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.25;
}

.booking-doctor-badge__text span {
  font-size: 0.75rem;
  color: var(--brand-gold-light);
  font-weight: 600;
  margin: 2px 0;
}

.booking-doctor-badge__text small {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.65);
}

.form-modern-card {
  background-color: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow-lg);
}

.form-modern-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
}

.form-modern-card p {
  font-size: 0.8125rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

.modern-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.input-group label {
  font-size: 0.78125rem;
  font-weight: 600;
  color: var(--text-main);
}

.input-group input, .input-group select {
  width: 100%;
  padding: 11px 14px;
  font-size: 0.875rem;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-sm);
  background-color: #FFFFFF;
  color: var(--text-main);
  transition: all var(--t-fast);
}

.input-group input:focus, .input-group select:focus {
  outline: 2px solid var(--brand-blue);
  border-color: var(--brand-blue);
}

.form-micro-text {
  font-size: 0.71875rem;
  color: var(--text-light);
  text-align: center;
  line-height: 1.4;
}

/* --------------------------------------------------------------------------
   12. FOOTER MODERNO
   -------------------------------------------------------------------------- */
.footer-modern {
  background-color: #050811;
  color: var(--text-white-muted);
  padding-top: 64px;
  padding-bottom: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-modern__top {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 48px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  height: 42px;
  width: auto;
  object-fit: contain;
  margin-bottom: 14px;
}

.footer-modern__brand p {
  font-size: 0.8125rem;
  color: #94A3B8;
  margin-bottom: 12px;
}

.crm-badge {
  display: inline-block;
  font-size: 0.71875rem;
  font-weight: 600;
  color: var(--brand-gold);
}

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

.footer-col h5 {
  font-size: 0.78125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #FFFFFF;
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  font-size: 0.8125rem;
  color: #94A3B8;
  margin-bottom: 8px;
}

.footer-col a:hover {
  color: #FFFFFF;
}

.footer-loc {
  font-size: 0.78125rem;
  color: #94A3B8;
  line-height: 1.5;
  margin-bottom: 12px;
}

.footer-contact-btn {
  display: inline-block;
  font-size: 0.78125rem;
  font-weight: 600;
  color: var(--brand-gold);
  border-bottom: 1px solid var(--brand-gold);
  padding-bottom: 2px;
}

.footer-contact-btn:hover {
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.footer-modern__bottom {
  padding-top: 24px;
}

.footer-cfm {
  font-size: 0.71875rem;
  color: #64748B;
  line-height: 1.55;
  margin-bottom: 16px;
}

.footer-copy {
  display: flex;
  justify-content: space-between;
  font-size: 0.71875rem;
  color: #64748B;
}

/* --------------------------------------------------------------------------
   13. DOCK FLUTUANTE DISCRETO
   -------------------------------------------------------------------------- */
.dock-floating {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 990;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 300ms cubic-bezier(0.16, 1, 0.3, 1),
              transform 300ms cubic-bezier(0.16, 1, 0.3, 1),
              visibility 300ms cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.dock-floating.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.dock-button {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(7, 13, 30, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #FFFFFF;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  font-weight: 500;
  font-size: 0.8125rem;
  transition: all var(--t-fast);
}

.dock-button:hover {
  background-color: var(--brand-blue);
  border-color: var(--brand-blue);
  transform: translateY(-1px);
}

.dock-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--brand-green);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.3);
}

.hero-trust-micro {
  display: none;
}

/* --------------------------------------------------------------------------
   14. MOBILE DRAWER LUXURY (APP-LIKE SMOOTH SLIDE & BLUR)
   -------------------------------------------------------------------------- */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 320ms cubic-bezier(0.16, 1, 0.3, 1),
              visibility 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-drawer.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-drawer__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(7, 13, 30, 0.68);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: opacity 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 86%;
  max-width: 345px;
  background-color: #FFFFFF;
  padding: calc(22px + env(safe-area-inset-top, 0px)) 20px calc(24px + env(safe-area-inset-bottom, 0px));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: -12px 0 44px rgba(0, 0, 0, 0.28);
  transform: translateX(100%);
  transition: transform 380ms cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-drawer.is-open .mobile-drawer__panel {
  transform: translateX(0);
}

.mobile-drawer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-subtle);
}

.mobile-drawer__logo {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.mobile-drawer__close {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-subtle);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--text-main);
  cursor: pointer;
  transition: all 200ms ease;
}

.mobile-drawer__close:hover,
.mobile-drawer__close:active {
  background-color: var(--brand-blue-soft);
  color: var(--brand-blue);
  transform: scale(0.95);
}

.mobile-drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 18px 0;
  flex-grow: 1;
}

.drawer-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 14px;
  border-radius: 12px;
  font-size: 0.90625rem;
  font-weight: 600;
  color: var(--text-main);
  transition: all 180ms ease;
  text-decoration: none;
}

.drawer-link::after {
  content: '›';
  font-size: 1.25rem;
  line-height: 1;
  color: #94A3B8;
  font-weight: 400;
  transition: transform 180ms ease, color 180ms ease;
}

.drawer-link:active,
.drawer-link:hover {
  background-color: var(--brand-blue-soft);
  color: var(--brand-blue);
}

.drawer-link:active::after,
.drawer-link:hover::after {
  color: var(--brand-blue);
  transform: translateX(3px);
}

.mobile-drawer__bottom {
  padding-top: 18px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-drawer__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: center;
}

.mobile-drawer__crm {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-main);
}

.mobile-drawer__loc {
  display: block;
  font-size: 0.6875rem;
  color: var(--text-light);
}

/* --------------------------------------------------------------------------
   15. RESPONSIVIDADE & BREAKPOINTS
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-fullscreen {
    padding-top: 120px;
    padding-bottom: 70px;
  }

  .hero-split-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-title-clean {
    font-size: 2.65rem;
  }

  .hero-right-col {
    justify-content: flex-start;
  }

  .hero-floating-stat-card {
    max-width: 100%;
    width: 100%;
  }

  .services-grid-clean {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .consultation-split {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .bento-grid-4 {
    grid-template-columns: 1fr 1fr;
  }

  .bento-item--photo {
    grid-column: span 2;
    grid-row: auto;
    min-height: 360px;
  }

  .clinic-bento {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-bottom-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
  }

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

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

  .journey-grid-2x2 {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .journey-cta-clean {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  /* 1. Reset & Global Mobile Adjustments */
  * {
    -webkit-tap-highlight-color: transparent;
  }

  .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  /* Previne zoom indesejado em inputs no Safari iOS */
  input, select, textarea {
    font-size: 16px !important;
  }

  /* Ritmo Vertical e Tipografia Fluida Mobile */
  .section-services,
  .section-journey,
  .section-consultation,
  .section-bento,
  .section-testimonials,
  .section-clinic,
  .section-blog,
  .section-faq,
  .section-booking {
    padding: 56px 0;
  }

  .section-header-modern {
    margin-bottom: 30px;
  }

  .title-modern {
    font-size: clamp(1.65rem, 6.2vw, 2.05rem);
    line-height: 1.22;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
  }

  .desc-modern {
    font-size: 0.90625rem;
    line-height: 1.58;
  }

  /* 2. Header & Glassmorphism Navbar */
  .header-nav {
    display: none;
  }

  .header-actions .btn-header-cta {
    display: none;
  }

  /* 2. Top Header Mobile (Aberto, Leve e Minimalista no 1º Frame) */
  .site-header {
    padding: calc(16px + env(safe-area-inset-top, 0px)) 20px 8px;
    background: transparent;
  }

  .site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    box-shadow: none;
    transition: all 300ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  /* Ao rolar a página: cápsula flutuante moderna para legibilidade sobre fundos claros */
  .site-header.is-scrolled {
    padding: calc(8px + env(safe-area-inset-top, 0px)) 16px 6px;
  }

  .site-header.is-scrolled .site-header__inner {
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    background: rgba(7, 13, 30, 0.90);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 12px 32px -4px rgba(0, 0, 0, 0.6);
  }

  .header-logo {
    display: flex;
    align-items: center;
  }

  .header-logo__img {
    height: 34px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.6));
    transition: height 250ms ease;
  }

  .site-header.is-scrolled .header-logo__img {
    height: 30px;
  }

  /* Botão de menu hamburguer limpo e direto, sem background circular */
  .menu-toggle {
    display: flex;
    width: 40px;
    height: 40px;
    border-radius: 0;
    background: transparent;
    border: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    align-items: flex-end;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 0;
    box-shadow: none;
    cursor: pointer;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .menu-toggle span {
    display: block;
    height: 2px;
    background-color: #FFFFFF;
    border-radius: 2px;
    transition: all 250ms ease;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
  }

  .menu-toggle span:first-child {
    width: 22px;
  }

  .menu-toggle span:last-child {
    width: 15px;
    margin-right: 0;
  }

  .menu-toggle:active {
    transform: scale(0.92);
    opacity: 0.7;
    background: transparent;
    border: none;
  }

  .site-header.is-scrolled .menu-toggle {
    width: 36px;
    height: 36px;
  }

  /* 3. Hero Fullscreen (Aberto, Espaço Vazio Nobre no Topo e Headline Aterrada na Base) */
  .hero-fullscreen {
    padding-top: calc(88px + env(safe-area-inset-top, 0px));
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
  }

  .hero-bg-image-container {
    opacity: 1;
  }

  .hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    animation: heroCinematicMotion 26s ease-in-out infinite alternate;
  }

  /* Degradê cinematográfico: Topo aberto e sereno, Base escura profunda para contraste máximo */
  .hero-bg-overlay {
    background: 
      linear-gradient(180deg, 
        rgba(7, 13, 30, 0.52) 0%, 
        rgba(7, 13, 30, 0.20) 25%, 
        rgba(7, 13, 30, 0.72) 48%, 
        rgba(7, 13, 30, 0.97) 72%, 
        #070D1E 100%
      );
  }

  .hero-fullscreen__content {
    padding-bottom: 0;
    position: relative;
    z-index: 3;
    width: 100%;
  }

  .hero-split-container {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  /* Deixa o espaço superior vazio e ancora a headline mais para baixo */
  .hero-left-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin-top: auto;
    padding-top: clamp(100px, 18vh, 180px); /* Respiro livre no topo dinâmico */
    box-sizing: border-box;
  }

  /* Oculta o card redundante de 85% no mobile para a primeira tela respirar sem cortes */
  .hero-right-col {
    display: none;
  }

  .hero-mobile-doctor-card {
    display: none !important;
  }

  .hero-kicker-clean {
    font-size: 0.65625rem;
    padding: 5px 13px;
    margin-bottom: 12px;
    gap: 6px;
    background: rgba(7, 13, 30, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .hero-br-mobile {
    display: inline;
  }

  /* Headline aumentada e estruturada em 3 linhas com presença nobre */
  .hero-title-clean {
    font-size: clamp(2.35rem, 9.6vw, 3.1rem);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 14px;
    letter-spacing: -0.035em;
    color: #FFFFFF;
    text-shadow: 0 2px 22px rgba(0, 0, 0, 0.92);
    max-width: 100%;
  }

  .hero-sub-clean {
    font-size: 0.875rem;
    line-height: 1.54;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.90);
    max-width: 340px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
  }

  /* 1 único botão dominante no mobile */
  .hero-actions-clean {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0;
    margin-bottom: 10px;
  }

  .btn-hero-white {
    width: 100%;
    justify-content: center;
    padding: 15px 24px;
    font-size: 0.9375rem;
    font-weight: 700;
    border-radius: var(--radius-pill);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
    background-color: #FFFFFF;
    color: #070D1E;
    animation: heroBtnSubtleGlow 3.6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    transform-origin: center;
  }

  .btn-hero-white:active {
    transform: scale(0.97);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
    animation: none;
  }

  .hero-phone-link {
    display: none;
  }

  /* Prova social limpa e nobre: sem caixa fechada em volta */
  .hero-trust-micro {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 6px;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.92);
    background: transparent;
    border: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 2px 0;
    width: 100%;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.8);
  }

  .hero-trust-micro .stars-gold {
    font-size: 0.875rem;
    letter-spacing: 1.5px;
    color: #FBBF24;
  }

  .hero-scroll-cue {
    display: none;
  }

  .hero-floating-stat-card {
    width: 100%;
    max-width: 100%;
    padding: 22px 20px;
    border-radius: 20px;
    animation: none;
    gap: 10px;
    background: rgba(14, 24, 51, 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 16px 40px -10px rgba(0, 0, 0, 0.4);
  }

  .hero-stat-badge {
    padding: 6px 16px;
  }

  .hero-stat-number {
    font-size: 1.65rem;
  }

  .hero-stat-desc {
    font-size: 0.84375rem;
    line-height: 1.55;
  }

  .hero-stat-footer {
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.75rem;
    gap: 8px;
  }

  .hero-scroll-cue {
    display: none;
  }

  /* 4. Serviços (Problemas que Tratamos) */
  .services-grid-clean {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card-clean {
    border-radius: 20px;
  }

  .service-card-clean__thumb {
    aspect-ratio: 16 / 9;
    height: 175px;
  }

  .service-thumb-badge {
    top: 10px;
    left: 10px;
    font-size: 0.625rem;
    padding: 5px 12px;
  }

  .service-card-clean__body {
    padding: 18px 16px;
  }

  .service-card-clean__body h3 {
    font-size: 1.125rem;
    margin-bottom: 6px;
  }

  .service-card-clean__body p {
    font-size: 0.84375rem;
    line-height: 1.52;
    margin-bottom: 12px;
  }

  .service-card-clean__list {
    padding-top: 10px;
  }

  .service-card-clean__list li {
    font-size: 0.78125rem;
    margin-bottom: 5px;
  }

  /* 5. Linha do Cuidado (Jornada) */
  .journey-grid-2x2 {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 24px;
  }

  .journey-card-clean {
    grid-template-columns: 42px 1fr;
    gap: 14px;
    padding: 18px 16px;
    border-radius: 18px;
  }

  .journey-step-circle {
    width: 42px;
    height: 42px;
    font-size: 1rem;
    border-radius: 13px;
  }

  .journey-step-phase {
    font-size: 0.6875rem;
    margin-bottom: 3px;
  }

  .journey-step-title {
    font-size: 1.0625rem;
    margin-bottom: 6px;
  }

  .journey-step-desc {
    font-size: 0.8125rem;
    line-height: 1.5;
    margin-bottom: 12px;
  }

  .journey-step-footer {
    gap: 6px;
  }

  .journey-pill-tag {
    font-size: 0.6875rem;
    padding: 4px 9px;
  }

  .journey-cta-clean {
    flex-direction: column;
    align-items: stretch;
    padding: 22px 18px;
    border-radius: 20px;
    gap: 16px;
    margin-top: 28px;
  }

  .journey-cta-clean__title {
    font-size: 1.15rem;
  }

  .journey-cta-clean__desc {
    font-size: 0.84375rem;
  }

  .journey-cta-clean__right {
    width: 100%;
  }

  .journey-cta-clean__right .btn-modern {
    width: 100%;
    justify-content: center;
  }

  /* 6. A Consulta */
  .consultation-split {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .consultation-photo-frame {
    min-height: auto;
    height: 270px;
    border-radius: 20px;
  }

  .consultation-photo-col::before {
    display: none;
  }

  .consultation-photo-badge {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 9px 14px;
    font-size: 0.71875rem;
  }

  .consultation-steps {
    gap: 10px;
    margin: 18px 0 22px;
  }

  .consultation-step-item {
    padding: 13px 14px;
    border-radius: 14px;
    gap: 12px;
  }

  .step-num-badge {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
  }

  .step-text h4 {
    font-size: 0.875rem;
  }

  .step-text p {
    font-size: 0.78125rem;
    line-height: 1.45;
  }

  .consultation-action {
    width: 100%;
  }

  .consultation-action .btn-modern {
    width: 100%;
    justify-content: center;
  }

  /* 7. Sobre a Médica (Bento Grid) */
  .bento-grid-4 {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .bento-item--photo {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: auto;
  }

  .bento-photo-wrapper {
    min-height: auto;
    height: 280px;
    border-radius: 20px;
    overflow: hidden;
  }

  .bento-photo-tag {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 10px 14px;
    border-radius: 14px;
  }

  .bento-photo-tag strong {
    font-size: 0.875rem;
  }

  .bento-item {
    padding: 20px 16px;
    border-radius: 18px;
  }

  .bento-icon-box {
    width: 38px;
    height: 38px;
    margin-bottom: 14px;
  }

  .bento-title {
    font-size: 1.125rem;
    margin-bottom: 6px;
  }

  .bento-text {
    font-size: 0.84375rem;
    line-height: 1.55;
    margin-bottom: 14px;
  }

  .bento-pill {
    font-size: 0.6875rem;
    padding: 4px 10px;
  }

  /* 8. Depoimentos */
  .reviews-trust-strip {
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 18px;
    padding: 16px 16px;
    gap: 10px;
    margin-bottom: 28px;
  }

  .reviews-trust-divider {
    display: none;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .testimonial-card-clean {
    padding: 20px 16px;
    border-radius: 18px;
  }

  .testimonial-card__header {
    margin-bottom: 12px;
  }

  .testimonial-card__quote {
    font-size: 0.84375rem;
    line-height: 1.6;
    margin-bottom: 16px;
  }

  .testimonial-avatar {
    width: 38px;
    height: 38px;
    font-size: 0.8125rem;
  }

  .testimonial-author strong {
    font-size: 0.875rem;
  }

  .testimonial-author span {
    font-size: 0.71875rem;
  }

  /* 9. Consultório em Vitória */
  .clinic-bento {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .clinic-bento__item--photo {
    min-height: auto;
    height: 260px;
    border-radius: 20px;
  }

  .clinic-bento__label {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 10px 14px;
    border-radius: 14px;
  }

  .clinic-bento__item--info {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .clinic-bento__item--info h3 {
    font-size: 1.25rem;
  }

  .clinic-bento__item--info p {
    font-size: 0.84375rem;
  }

  .clinic-info-list li {
    font-size: 0.78125rem;
  }

  .clinic-bento__item--info .btn-modern {
    width: 100%;
    justify-content: center;
  }

  .clinic-city-strip {
    min-height: 210px;
    margin-top: 18px;
    border-radius: 20px;
  }

  .clinic-city-strip__content {
    padding: 20px 16px;
  }

  .clinic-city-strip__badge {
    font-size: 0.6875rem;
    padding: 5px 12px;
    margin-bottom: 8px;
  }

  .clinic-city-strip__content h4 {
    font-size: 1.15rem;
    margin-bottom: 6px;
  }

  .clinic-city-strip__content p {
    font-size: 0.8125rem;
    line-height: 1.5;
  }

  /* 10. Blog */
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .blog-card {
    border-radius: 20px;
  }

  .blog-card__thumb {
    height: 165px;
  }

  .blog-card__body {
    padding: 16px 14px;
  }

  .blog-card__title {
    font-size: 1.05rem;
    margin-bottom: 8px;
  }

  .blog-card__excerpt {
    font-size: 0.8125rem;
    line-height: 1.5;
  }

  .blog-bottom-card {
    flex-direction: column;
    align-items: stretch;
    padding: 20px 16px;
    border-radius: 20px;
    gap: 16px;
    margin-top: 24px;
  }

  .blog-bottom-left {
    gap: 14px;
  }

  .blog-bottom-avatar {
    width: 46px;
    height: 46px;
  }

  .blog-bottom-text h4 {
    font-size: 1rem;
  }

  .blog-bottom-text p {
    font-size: 0.8125rem;
  }

  .blog-bottom-right .btn-modern {
    width: 100%;
    justify-content: center;
  }

  /* 11. FAQ */
  .modern-faq-list {
    gap: 10px;
  }

  .modern-faq-item {
    border-radius: 16px;
  }

  .modern-faq-trigger {
    padding: 16px 14px;
    font-size: 0.875rem;
    line-height: 1.35;
    gap: 12px;
  }

  .modern-faq-arrow {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--bg-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
  }

  .modern-faq-content {
    padding: 0 14px 16px;
    font-size: 0.8125rem;
    line-height: 1.6;
  }

  /* 12. Agendamento WhatsApp */
  .booking-modern-box {
    padding: 24px 16px;
    border-radius: 22px;
  }

  .booking-modern-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .booking-modern-title {
    font-size: clamp(1.5rem, 5.5vw, 1.95rem);
    line-height: 1.22;
    margin-bottom: 12px;
  }

  .booking-modern-desc {
    font-size: 0.875rem;
    line-height: 1.55;
    margin-bottom: 20px;
  }

  .booking-perks {
    gap: 10px;
  }

  .perk-item {
    font-size: 0.8125rem;
  }

  .booking-doctor-badge {
    margin-top: 18px;
    padding: 12px 14px;
    border-radius: 16px;
    gap: 12px;
  }

  .booking-doctor-badge__img {
    width: 48px;
    height: 48px;
  }

  .booking-doctor-badge__text strong {
    font-size: 0.875rem;
  }

  .booking-doctor-badge__text span {
    font-size: 0.71875rem;
  }

  .booking-doctor-badge__text small {
    font-size: 0.65625rem;
  }

  .form-modern-card {
    padding: 20px 16px;
    border-radius: 18px;
  }

  .form-modern-card h3 {
    font-size: 1.2rem;
  }

  .form-modern-card p {
    font-size: 0.78125rem;
    margin-bottom: 16px;
  }

  .input-group label {
    font-size: 0.75rem;
  }

  .input-group input,
  .input-group select {
    padding: 12px 14px;
    font-size: 16px !important;
    border-radius: 12px;
  }

  .modern-form .btn-modern {
    width: 100%;
    padding: 14px 20px;
    font-size: 0.9375rem;
    justify-content: center;
  }

  /* 13. Rodapé */
  .footer-modern {
    padding-top: 48px;
    padding-bottom: 90px;
  }

  .footer-modern__top {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 28px;
  }

  .footer-modern__links {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-col h5 {
    font-size: 0.875rem;
    margin-bottom: 10px;
  }

  .footer-col a {
    font-size: 0.8125rem;
  }

  .footer-copy {
    flex-direction: column;
    gap: 6px;
    text-align: center;
    font-size: 0.75rem;
  }

  .footer-cfm {
    font-size: 0.6875rem;
    line-height: 1.45;
  }

  /* 14. Dock Flutuante (Luxury Mobile Pill) */
  .dock-floating {
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    right: 16px;
    z-index: 999;
  }

  .dock-button {
    padding: 11px 18px;
    border-radius: 9999px;
    background: rgba(7, 13, 30, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.38);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #FFFFFF;
  }

  .dock-button span {
    display: inline !important;
  }

  .dock-pulse {
    display: inline-block !important;
    width: 8px;
    height: 8px;
  }
}

/* --------------------------------------------------------------------------
   15.1 AJUSTES ULTRA-FINOS PARA TELAS COMPACTAS (< 380px)
   -------------------------------------------------------------------------- */
@media (max-width: 380px) {
  .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero-title-clean {
    font-size: clamp(2.1rem, 9.2vw, 2.4rem);
    line-height: 1.1;
  }

  .hero-fullscreen {
    padding-top: 84px;
    padding-bottom: calc(56px + env(safe-area-inset-bottom, 0px));
  }

  .dock-button {
    padding: 10px 14px;
    font-size: 0.75rem;
  }

  .journey-card-clean {
    grid-template-columns: 36px 1fr;
    gap: 10px;
    padding: 16px 12px;
  }

  .journey-step-circle {
    width: 36px;
    height: 36px;
    font-size: 0.875rem;
  }

  .form-modern-card {
    padding: 18px 12px;
  }

  .booking-modern-box {
    padding: 20px 12px;
  }
}

/* --------------------------------------------------------------------------
   16. ANIMAÇÕES DE REVELAÇÃO SUAVE (SCROLL REVEAL FLUIDO & ELEGANTE)
   -------------------------------------------------------------------------- */
.has-reveal .reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 750ms cubic-bezier(0.16, 1, 0.3, 1), transform 750ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.has-reveal .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 90ms; }
.reveal-delay-2 { transition-delay: 180ms; }
.reveal-delay-3 { transition-delay: 270ms; }
.reveal-delay-4 { transition-delay: 360ms; }

/* --------------------------------------------------------------------------
   17. MICROINTERAÇÕES & EFEITOS LUXURY (BOTÕES & CARDS)
   -------------------------------------------------------------------------- */
.btn-header-cta,
.btn-modern--accent {
  position: relative;
  overflow: hidden;
}

.btn-header-cta::after,
.btn-modern--accent::after {
  content: '';
  position: absolute;
  top: 0;
  left: -130%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-25deg);
  animation: luxuryBtnShimmer 4.6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  pointer-events: none;
}

/* Brilho reflexivo de luz sutil sobre o Botão Hero Branco */
.btn-hero-white::after {
  content: '';
  position: absolute;
  top: 0;
  left: -140%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(29, 78, 216, 0.08) 25%,
    rgba(255, 255, 255, 0.95) 50%,
    rgba(29, 78, 216, 0.12) 75%,
    transparent 100%
  );
  transform: skewX(-25deg);
  animation: heroBtnShimmer 3.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  pointer-events: none;
}

@keyframes luxuryBtnShimmer {
  0%, 60% {
    left: -130%;
  }
  100% {
    left: 170%;
  }
}

@keyframes heroBtnShimmer {
  0%, 45% {
    left: -140%;
  }
  85%, 100% {
    left: 180%;
  }
}

/* Pulsação de aura e escala sutil e refinada */
@keyframes heroBtnSubtleGlow {
  0%, 100% {
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35), 0 0 0 0 rgba(255, 255, 255, 0.32);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45), 0 0 0 7px rgba(255, 255, 255, 0);
    transform: scale(1.015);
  }
}

/* Micro-movimento de atração na seta do botão */
@keyframes heroBtnArrowNudge {
  0%, 55%, 100% {
    transform: translateX(0);
  }
  70% {
    transform: translateX(4px);
  }
  82% {
    transform: translateX(1px);
  }
}

.service-card-clean:hover,
.journey-card-clean:hover,
.testimonial-card-clean:hover,
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -10px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(29, 78, 216, 0.18);
}
