/* ============================================================
   NEURAMPLA · Clínica de Psicologia e Avaliação Neuropsicológica
   ============================================================ */

/* ============================================================
   FONTS
   ============================================================ */
@font-face {
  font-family: "LeMondeCourrier";
  src: url("uploads/LeMondeCourrier%20Normal.otf") format("opentype"),
       url("assets/fonts/LeMondeCourrier-Normal.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "LeMondeCourrier";
  src: url("uploads/LeMondeCourrier%20Italic.otf") format("opentype"),
       url("assets/fonts/LeMondeCourrier-Italic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "LeMondeCourrier";
  src: url("uploads/LeMondeCourrier%20Demi.otf") format("opentype"),
       url("assets/fonts/LeMondeCourrier-Demi.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "LeMondeCourrier";
  src: url("uploads/LeMondeCourrier%20Demi%20Italic.otf") format("opentype"),
       url("assets/fonts/LeMondeCourrier-DemiItalic.otf") format("opentype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "LeMondeCourrier";
  src: url("uploads/LeMondeCourrier%20Bold.otf") format("opentype"),
       url("assets/fonts/LeMondeCourrier-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "LeMondeCourrier";
  src: url("uploads/LeMondeCourrier%20Bold%20Italic.otf") format("opentype"),
       url("assets/fonts/LeMondeCourrier-BoldItalic.otf") format("opentype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* Almarai Bold */
@font-face {
  font-family: "Almarai";
  src: url("uploads/Almarai-Bold.ttf") format("truetype"),
       url("assets/fonts/Almarai-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary: #005C65;
  --primary-deep: #003a40;
  --green-light: #9DEAB2;
  --off-white: #F4F6FA;
  --yellow: #EAF475;
  --black: #2A292D;
  --white: #ffffff;

  --serif: "LeMondeCourrier", "Le Monde Courrier", "Newsreader", "Source Serif Pro", Georgia, serif;
  --sans: "Almarai", "Helvetica Neue", "Segoe UI", Arial, sans-serif;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;

  --container: 1280px;
  --gutter: clamp(20px, 4vw, 56px);

  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  font-family: var(--sans);
  font-weight: 400;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
  font-size: 17px;
}

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

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

button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.08;
  margin: 0;
  color: var(--primary);
  text-wrap: balance;
}

p { margin: 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding: 0 var(--gutter);
  box-sizing: border-box;
}

#sobre .container {
  max-width: 1180px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  padding: 14px 24px;
  border-radius: 999px;
  transition: all .35s var(--ease);
  white-space: nowrap;
}

.btn--primary {
  background: var(--primary);
  color: var(--off-white);
}
.btn--primary:hover {
  background: var(--primary-deep);
  transform: translateY(-1px);
}

.btn--ghost-light {
  background: transparent;
  color: var(--off-white);
  box-shadow: inset 0 0 0 1.5px rgba(244,246,250,0.7);
}
.btn--ghost-light:hover {
  background: rgba(244,246,250,0.12);
  box-shadow: inset 0 0 0 1.5px var(--off-white);
}

.btn--invert {
  background: var(--white);
  color: var(--primary);
}
.btn--invert:hover {
  background: var(--green-light);
}

.btn--sm { padding: 11px 20px; font-size: 14px; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.nav.is-scrolled {
  border-bottom-color: rgba(0,92,101,0.08);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 32px;
}
.nav__logo img {
  height: 28px;
  width: auto;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav__link {
  font-size: 13.5px;
  font-weight: 400;
  color: var(--black);
  position: relative;
  padding: 4px 0;
  transition: color .2s var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -2px;
  height: 1.5px;
  background: var(--primary);
  transition: right .35s var(--ease);
}
.nav__link:hover { color: var(--primary); }
.nav__link:hover::after { right: 0; }

.nav__toggle {
  display: none;
  width: 36px; height: 36px;
  align-items: center;
  justify-content: center;
}
.nav__toggle span {
  width: 22px; height: 1.5px; background: var(--black);
  position: relative;
}
.nav__toggle span::before,
.nav__toggle span::after {
  content: ""; position: absolute; left: 0; width: 100%; height: 1.5px;
  background: var(--black);
}
.nav__toggle span::before { top: -7px; }
.nav__toggle span::after { top: 7px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--off-white);
}
.hero__media {
  position: absolute; inset: 0;
  background-image: url("assets/hero.png");
  background-size: cover;
  background-position: 50% 35%;
  filter: blur(2px);
  transform: scale(1.06);
  animation: heroUnblur 2.2s var(--ease) .2s both;
}
@keyframes heroUnblur {
  0% { filter: blur(28px); transform: scale(1.15); opacity: 0; }
  100% { filter: blur(2px); transform: scale(1.06); opacity: 1; }
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(42,41,45,0.35) 0%, rgba(42,41,45,0.15) 35%, rgba(0,92,101,0.55) 100%);
}
.hero__logo {
  position: absolute;
  top: 110px;
  left: var(--gutter);
  height: 36px;
  z-index: 2;
  opacity: 0;
  animation: fadeUp 1s var(--ease) .8s forwards;
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1100px;
  padding: 0 var(--gutter);
}
.hero__eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 28px;
  font-weight: 700;
  font-family: var(--sans);
  opacity: 0;
  animation: fadeUp 1s var(--ease) 1s forwards;
}
.hero__title {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--off-white);
  font-size: clamp(34px, 4.8vw, 68px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 auto 26px;
  max-width: 20ch;
  opacity: 0;
  animation: fadeUp 1.1s var(--ease) 1.15s forwards;
}
.hero__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--green-light);
}
.hero__sub {
  color: rgba(244,246,250,0.88);
  font-size: clamp(15px, 1.2vw, 17px);
  max-width: 560px;
  margin: 0 auto 40px;
  letter-spacing: 0.005em;
  line-height: 1.68;
  text-align: center;
  text-shadow: 0 1px 10px rgba(0,0,0,0.28);
  opacity: 0;
  animation: fadeUp 1.1s var(--ease) 1.35s forwards;
}
.hero__cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1.1s var(--ease) 1.55s forwards;
}
.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 0;
  right: 0;
  z-index: 2;
  color: rgba(244,246,250,0.85);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  opacity: 0;
  animation: fadeUp 1.1s var(--ease) 1.8s forwards;
  pointer-events: none;
}
.hero__scroll-arrow {
  color: rgba(244,246,250,0.85);
  animation: scrollNudge 2.2s ease-in-out infinite;
}
@keyframes scrollNudge {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50% { transform: translateY(6px); opacity: 1; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   SECTION DEFAULTS
   ============================================================ */
section {
  position: relative;
  scroll-margin-top: 90px;
}

.section {
  padding: clamp(64px, 7vw, 104px) 0;
}

#sobre {
  scroll-margin-top: 80px;
  padding-top: clamp(72px, 8vw, 112px);
}

#encaminhamentos {
  scroll-margin-top: 90px;
  padding-top: clamp(64px, 7vw, 104px);
  padding-bottom: clamp(40px, 4vw, 60px);
}
#fluxo {
  padding-top: clamp(40px, 4vw, 60px);
  padding-bottom: clamp(40px, 4vw, 60px);
}
#equipe {
  padding-top: clamp(40px, 4vw, 60px);
}

.section--off { background: var(--off-white); }
.section--primary { background: var(--primary); color: var(--off-white); }
.section--primary h2 { color: var(--off-white); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 28px;
  font-weight: 700;
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}
.section--primary .eyebrow { color: var(--green-light); }
.banner-corp .eyebrow { color: var(--green-light); margin-bottom: 0; }
#empresas .banner-corp { margin-top: 0; }

.section__title {
  font-size: clamp(32px, 4.4vw, 60px);
  max-width: 22ch;
  margin: 0 0 28px;
  letter-spacing: -0.018em;
  font-weight: 400;
}
.section__title em {
  font-style: italic;
  font-weight: 300;
}

.section__sub {
  font-size: clamp(16px, 1.2vw, 18px);
  max-width: 56ch;
  color: var(--black);
  opacity: 0.78;
}
.section--primary .section__sub { color: rgba(244,246,250,0.8); }

/* ============================================================
   SOBRE
   ============================================================ */
.sobre__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
  margin-top: 24px;
}
.sobre__left {
  min-width: 0;
}
.sobre__text {
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.75;
  color: var(--black);
}
.sobre__text p + p { margin-top: 18px; }
.sobre__text strong {
  color: var(--primary);
  font-weight: 700;
}

.sobre__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 300px));
  justify-content: center;
  gap: 20px;
  margin-top: 44px;
}
.sobre__stat {
  background: var(--white);
  border: 1px solid rgba(0,92,101,0.12);
  border-radius: 18px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
  box-sizing: border-box;
  transition: border-color .3s var(--ease);
}
.sobre__stat:hover {
  border-color: rgba(0,92,101,0.26);
}
.sobre__stat-number {
  font-family: var(--serif);
  font-size: clamp(26px, 3.2vw, 42px);
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.02em;
  font-weight: 400;
  white-space: normal;
  overflow-wrap: break-word;
}
.sobre__stat-label {
  font-size: 13px;
  color: var(--black);
  opacity: 0.62;
  letter-spacing: 0.02em;
  line-height: 1.4;
}
.sobre__stat--featured {
  background: var(--white);
  border-color: rgba(0,92,101,0.12);
  gap: 10px;
  justify-content: flex-start;
}
.sobre__stat--featured:hover {
  border-color: rgba(0,92,101,0.26);
}
.sobre__meta-chip {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  align-self: flex-start;
  background: rgba(0,92,101,0.07);
  color: var(--primary);
  border: 1px solid rgba(0,92,101,0.18);
  padding: 4px 12px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.sobre__stat--featured .sobre__stat-number {
  color: var(--primary);
  font-size: clamp(17px, 1.5vw, 21px);
  white-space: normal;
  line-height: 1.3;
}
.sobre__stat--featured .sobre__stat-label {
  color: var(--black);
  opacity: 0.62;
}

.sobre__video {
  position: relative;
  width: 100%;
  max-width: 420px;
  min-width: 0;
  box-sizing: border-box;
  aspect-ratio: 9 / 11;
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  color: var(--off-white);
  isolation: isolate;
  cursor: pointer;
  transition: transform .35s var(--ease);
}
.sobre__video:hover { transform: translateY(-4px); }

/* Foto de fundo — preenche o card sem deformar */
.sobre__video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  z-index: 0;
}

/* Overlay escuro gradiente — garante legibilidade do texto */
.sobre__video::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,42,48,0.35) 0%,
    rgba(0,42,48,0.05) 26%,
    rgba(0,42,48,0.05) 56%,
    rgba(0,42,48,0.72) 78%,
    rgba(0,42,48,0.92) 100%
  );
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

/* ── Capa institucional verde — estado padrão (antes do play) ── */
.sobre__video-cover {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(160deg, #003A40 0%, #004C53 50%, #005C65 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 36px 36px 92px;
  text-align: center;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.sobre__video.is-playing .sobre__video-cover {
  opacity: 0;
}
/* "Neurampla" — título principal grande, serifado */
.sobre__cover-brand {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 400;
  color: var(--off-white);
  letter-spacing: -0.02em;
  line-height: 1.1;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(157,234,178,0.25);
}
/* "Conheça nossa abordagem" — título principal da capa, serifado */
.sobre__cover-title {
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 400;
  color: rgba(244,246,250,0.95);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
/* Texto descritivo — leve mas legível */
.sobre__cover-desc {
  font-family: var(--sans);
  font-size: 13px;
  color: rgba(244,246,250,0.65);
  line-height: 1.65;
  max-width: 26ch;
  margin-top: 4px;
}

/* (legado — mantido para compatibilidade) */
.sobre__video-content {
  position: absolute;
  bottom: 52px;
  left: 28px;
  right: 100px;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* Estado de reprodução — overlay recua, texto some */
.sobre__video.is-playing::before { opacity: 0.18; }
.sobre__video.is-playing .sobre__video-content {
  opacity: 0;
  pointer-events: none;
}
.sobre__video-logo {
  height: 56px;
  opacity: 0.95;
}
.sobre__video-title {
  font-family: var(--serif);
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--off-white);
  font-weight: 400;
  text-align: left;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.sobre__video-desc {
  font-size: 14px;
  color: rgba(244,246,250,0.80);
  text-align: center;
  line-height: 1.65;
  max-width: 26ch;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(157,234,178,0.6); }
  50% { box-shadow: 0 0 0 12px rgba(157,234,178,0); }
}
.sobre__video-play {
  position: absolute;
  bottom: 28px; right: 28px;
  z-index: 2;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(244,246,250,0.94);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  border: none;
  transition: background 0.3s ease, transform 0.3s ease;
  animation: pulse 2.6s ease-in-out infinite;
}
.sobre__video.is-playing .sobre__video-play {
  animation: none;
  background: rgba(244,246,250,0.72);
}
/* Ícones play/pause */
.icon-pause { display: none; }
.sobre__video.is-playing .icon-play  { display: none; }
.sobre__video.is-playing .icon-pause { display: block; }

/* Wrapper do card de vídeo — ocupa a célula do grid e empilha card + crédito */
.sobre__video-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  min-width: 0;
  width: 100%;
}

/* Identificação discreta abaixo do card — linha única */
.sobre__video-credit {
  padding-left: 4px;
  font-family: var(--sans);
  font-size: 12.5px;
  color: var(--primary);
  line-height: 1.4;
  opacity: 0.70;
  letter-spacing: 0.01em;
}

/* Controle de velocidade */
.sobre__speed {
  position: absolute;
  bottom: 28px;
  left: 28px;
  z-index: 3;
  display: none;
}
.sobre__video.is-playing .sobre__speed {
  display: block;
}
.sobre__speed-btn {
  background: rgba(244,246,250,0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(244,246,250,0.30);
  border-radius: 20px;
  color: var(--off-white);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 5px 12px;
  cursor: pointer;
  line-height: 1;
  transition: background 0.2s ease;
}
.sobre__speed-btn:hover {
  background: rgba(244,246,250,0.28);
}
.sobre__speed-menu {
  display: none;
  position: absolute;
  bottom: calc(100% + 8px);
  left: 0;
  list-style: none;
  margin: 0;
  padding: 6px 0;
  background: rgba(0,42,48,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 10px;
  border: 1px solid rgba(157,234,178,0.18);
  min-width: 80px;
  overflow: hidden;
}
.sobre__speed-menu.is-open {
  display: block;
}
.sobre__speed-opt {
  font-family: var(--sans);
  font-size: 13px;
  color: rgba(244,246,250,0.82);
  padding: 8px 16px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.sobre__speed-opt:hover {
  background: rgba(157,234,178,0.12);
  color: var(--off-white);
}
.sobre__speed-opt.is-active {
  color: var(--green-light);
  font-weight: 600;
}

.sobre__photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 80px;
}
.sobre__photo {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  position: relative;
  filter: contrast(1.05) saturate(1.08) brightness(1.02);
}
.sobre__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.sobre__photo--tall { aspect-ratio: 3 / 4; align-self: auto; }
.sobre__photo-caption {
  position: absolute;
  left: 16px; bottom: 14px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--primary);
  background: rgba(244,246,250,0.90);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 5px 13px;
  border-radius: 999px;
  border: 1px solid rgba(0,92,101,0.12);
}

/* ============================================================
   ATUAÇÃO
   ============================================================ */
#atuacao .section__sub {
  color: rgba(0, 92, 101, 0.88);
  opacity: 1;
  font-weight: 400;
}

.atuacao__head {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}

/* Cards da seção Atuação — mais compactos que os cards de outras seções */
#atuacao .cards {
  row-gap: 14px;
}
#atuacao .card {
  min-height: 240px;
  padding: 24px;
}
#atuacao .card__body {
  font-size: 14px;
  line-height: 1.7;
}
/* Card 03 — título longo, ajuste fino de tipografia */
#atuacao .cards .card:nth-child(3) .card__title {
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.25;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.card {
  background: var(--off-white);
  border-radius: var(--r-lg);
  padding: 36px 28px 36px 32px;
  border: 1px solid rgba(0,92,101,0.07);
  transition: all .4s var(--ease);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 16px;
  box-sizing: border-box;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  opacity: 0;
  z-index: -1;
  transition: opacity .4s var(--ease);
}
.card:hover {
  border-color: rgba(0,92,101,0.35);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,92,101,0.08);
}

.card.reveal {
  transform: translateY(18px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.card.reveal.is-visible {
  transform: translateY(0);
  transition: opacity 0.75s var(--ease), transform 0.38s var(--ease),
              border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.cards .card.reveal[data-delay="1"] { transition-delay: 0.13s; }
.cards .card.reveal[data-delay="2"] { transition-delay: 0.26s; }
.cards .card.reveal[data-delay="3"] { transition-delay: 0.39s; }
.card__num {
  font-family: var(--sans);
  font-size: 11px;
  color: var(--primary);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  opacity: 0.48;
  display: block;
  margin-bottom: 12px;
}
.card__title {
  font-family: var(--serif);
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.15;
  color: var(--primary);
  letter-spacing: -0.015em;
  margin-bottom: 0;
  font-weight: 400;
  text-wrap: pretty;
}
.card__body {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--black);
  opacity: 0.78;
}
.card__icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 15px;
  color: var(--primary);
  margin-bottom: 4px;
  font-weight: 500;
}

.banner-corp {
  margin-top: clamp(56px, 6vw, 72px);
  background: linear-gradient(140deg, var(--primary) 0%, var(--primary-deep) 100%);
  border-radius: var(--r-xl);
  padding: clamp(44px, 5.5vw, 76px) clamp(40px, 5vw, 72px);
  display: grid;
  grid-template-columns: 1fr minmax(0, 420px);
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
  color: var(--off-white);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-width: 0;
}
.banner-corp::before {
  content: "";
  position: absolute;
  left: -80px; top: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(157,234,178,0.14) 0%, transparent 62%);
  pointer-events: none;
  z-index: -1;
  animation: corpBlob 16s ease-in-out infinite alternate;
}
.banner-corp::after {
  content: "";
  position: absolute;
  left: 15%; bottom: -80px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(157,234,178,0.06) 0%, transparent 65%);
  pointer-events: none;
  z-index: -1;
}
@keyframes corpBlob {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(20px, -16px) scale(1.07); }
}
.banner-corp__left {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
  position: relative;
  z-index: 1;
}
.banner-corp__text {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 38px);
  line-height: 1.18;
  color: var(--off-white);
  font-weight: 400;
  letter-spacing: -0.016em;
  max-width: 30ch;
  text-wrap: pretty;
}
.banner-corp__text em {
  font-style: italic;
  color: var(--green-light);
  font-weight: 300;
}
.banner-corp__note {
  font-size: 14.5px;
  color: rgba(244,246,250,0.54);
  line-height: 1.72;
  max-width: 46ch;
}
.banner-corp__logos {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.banner-corp__logos > span {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border: 1px solid rgba(244,246,250,0.18);
  border-radius: 999px;
  white-space: nowrap;
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(244,246,250,0.68);
  background: rgba(157,234,178,0.07);
}
.banner-corp__image {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  align-self: stretch;
  min-height: 280px;
  min-width: 0;
  z-index: 1;
}
.banner-corp__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.banner-corp__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    108deg,
    rgba(0,58,64,0.38) 0%,
    rgba(0,58,64,0.0) 50%
  );
}

/* ============================================================
   MÉDICOS E PROFISSIONAIS
   ============================================================ */
.medicos__head {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
  margin-bottom: 64px;
}
.medicos__head-left {
  min-width: 0;
}
.medicos__head-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}
.medicos__intro {
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.78;
  color: var(--black);
  opacity: 0.82;
  margin-top: 28px;
  max-width: 58ch;
}
.medicos__image {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.medicos__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.medicos__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 55%,
    rgba(0,58,64,0.18) 100%
  );
}
.medicos__caption {
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
  color: rgba(0,92,101,0.75);
  line-height: 1.58;
}
.medicos__cta {
  margin-top: 56px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.medicos__cta-sub {
  font-size: 15px;
  color: var(--black);
  opacity: 0.65;
  max-width: 46ch;
  line-height: 1.65;
}
.cards--four {
  grid-template-columns: repeat(4, 1fr);
}

/* Bloco de parceiros — seção Médicos */
.medicos__parceiros {
  margin-top: clamp(48px, 5vw, 64px);
  background: linear-gradient(140deg, var(--primary) 0%, var(--primary-deep) 100%);
  border-radius: var(--r-xl);
  padding: clamp(40px, 5vw, 64px) clamp(40px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
  color: var(--off-white);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.medicos__parceiros::before {
  content: "";
  position: absolute;
  right: -60px; top: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(157,234,178,0.12) 0%, transparent 65%);
  pointer-events: none;
  z-index: -1;
}
.medicos__parceiros .eyebrow {
  color: var(--green-light);
  margin-bottom: 16px;
}
.medicos__parceiros-text {
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.72;
  color: rgba(244,246,250,0.80);
  max-width: 58ch;
  margin: 0 0 16px;
}
.medicos__parceiros-text--sm {
  font-size: clamp(13.5px, 0.95vw, 15px);
  color: rgba(244,246,250,0.62);
  margin: 0 0 28px;
}
.medicos__parceiros-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.medicos__parceiros-list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid rgba(244,246,250,0.18);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(244,246,250,0.75);
  background: rgba(157,234,178,0.07);
  white-space: nowrap;
}
.medicos__parceiros-list li::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--green-light);
  flex-shrink: 0;
}
.medicos__parceiros-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}

/* Painel de decisão — lado direito do bloco parceiros */
.medicos__parc-heading {
  margin: 0;
}
.medicos__parc-action-title {
  font-family: var(--serif);
  font-size: clamp(17px, 1.3vw, 20px);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: var(--off-white);
  margin: 0 0 10px;
}
.medicos__parc-action-intro {
  font-size: clamp(13px, 0.9vw, 14px);
  line-height: 1.62;
  color: rgba(244,246,250,0.52);
  margin: 0;
}
.medicos__parc-action-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.medicos__parc-action-note {
  font-size: clamp(11.5px, 0.82vw, 12.5px);
  line-height: 1.5;
  color: rgba(244,246,250,0.42);
  font-style: italic;
  margin: 0;
}
.medicos__parc-btn {
  width: 100%;
  justify-content: center;
}

/* Modal — opções em linha */
.modal__options--row {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
}
.modal__option input[type="checkbox"] {
  accent-color: var(--primary);
  width: 16px; height: 16px;
  flex-shrink: 0;
}
/* Nota de arquivo */
.modal__file-note {
  font-size: 13px;
  color: var(--black);
  opacity: 0.52;
  font-style: italic;
  line-height: 1.55;
  margin: 0;
  padding: 10px 14px;
  background: var(--off-white);
  border-radius: 8px;
  border: 1px dashed rgba(0,92,101,0.2);
}

/* ============================================================
   FLUXO
   ============================================================ */
.fluxo__head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 72px;
}
.fluxo__title { color: var(--primary); }
.fluxo__title em {
  font-style: italic;
  color: var(--primary-deep);
  font-weight: 300;
}
.fluxo__head-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.fluxo__badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.fluxo__badge {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(0,92,101,0.07);
  border: 1px solid rgba(0,92,101,0.14);
  border-radius: 100px;
  padding: 6px 14px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.step {
  background: #fff;
  border-radius: 14px;
  padding: 22px 22px 24px;
  border: 1px solid rgba(0,92,101,0.08);
  border-top: 3px solid rgba(0,92,101,0.12);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-top-color .35s var(--ease), box-shadow .35s var(--ease), transform .35s var(--ease);
}
.step:hover {
  border-top-color: var(--primary);
  box-shadow: 0 8px 32px rgba(0,92,101,0.09);
  transform: translateY(-4px);
}

/* Connector chevron between cards (3-col layout) */
.step:not(:nth-child(3n))::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -13px;
  width: 7px;
  height: 7px;
  border-top: 1.5px solid rgba(0,92,101,0.22);
  border-right: 1.5px solid rgba(0,92,101,0.22);
  transform: translate(0, -50%) rotate(45deg);
  z-index: 1;
}

.step__num {
  font-family: var(--sans);
  font-size: 11px;
  color: var(--primary);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  opacity: 0.48;
  display: block;
  margin-bottom: 8px;
}
.step__title {
  font-family: var(--serif);
  font-size: clamp(16px, 1.35vw, 19px);
  color: var(--primary);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin: 0 0 10px;
  text-wrap: pretty;
}
.step__body {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--black);
  opacity: 0.68;
  margin: 0;
}

/* Step card reveal animation */
.step.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.step.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease),
              border-top-color .35s var(--ease), box-shadow .35s var(--ease);
}
.steps .step.reveal[data-delay="1"] { transition-delay: 0.13s; }
.steps .step.reveal[data-delay="2"] { transition-delay: 0.26s; }

/* ============================================================
   EQUIPE
   ============================================================ */
.equipe__head {
  margin-bottom: 56px;
}

.equipe__lead {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 0;
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid rgba(0,92,101,0.08);
  margin-bottom: 28px;
}
.equipe__lead-photo {
  aspect-ratio: 4 / 5;
  background-image: url("assets/apple.png");
  background-size: cover;
  background-position: center top;
}
.equipe__lead-body {
  padding: clamp(40px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}
.equipe__lead-name {
  font-family: var(--serif);
  font-size: clamp(30px, 3.2vw, 42px);
  color: var(--primary);
  letter-spacing: -0.018em;
  font-weight: 400;
  line-height: 1.05;
}
.equipe__lead-crp {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--black);
  opacity: 0.55;
}
.equipe__lead-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-light);
  color: var(--primary);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  width: fit-content;
}
.equipe__lead-badge::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
}
.equipe__lead-desc {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--black);
  opacity: 0.82;
  margin-top: 6px;
  max-width: 56ch;
}

.equipe__members {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.member {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 28px 24px 30px;
  border: 1px solid rgba(0,92,101,0.08);
  border-top: 2px solid rgba(0,92,101,0.1);
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-top-color .35s var(--ease), box-shadow .35s var(--ease), transform .35s var(--ease);
}
.member:hover {
  border-top-color: var(--primary);
  box-shadow: 0 6px 24px rgba(0,92,101,0.07);
  transform: translateY(-2px);
}
.member__name {
  font-family: var(--serif);
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--primary);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0 0 6px;
  text-wrap: pretty;
}
.member__crp {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--black);
  opacity: 0.48;
  margin-bottom: 14px;
}
.member__role {
  font-size: 13.5px;
  color: var(--black);
  opacity: 0.72;
  line-height: 1.58;
  margin: 0;
}


/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.depo__head { margin-bottom: 56px; }
.depo__head .section__sub { margin-top: 16px; max-width: 56ch; }
.depo__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.depo {
  background: var(--off-white);
  border-radius: var(--r-lg);
  padding: 40px 36px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.depo__mark {
  font-family: var(--serif);
  font-size: 88px;
  line-height: 1;
  color: var(--green-light);
  font-weight: 300;
  margin-bottom: 8px;
}
.depo__placeholder {
  font-style: italic;
  font-family: var(--serif);
  color: var(--primary);
  opacity: 0.6;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 300;
}
.depo__meta {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,92,101,0.12);
  display: flex;
  align-items: center;
  gap: 12px;
}
.depo__avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--green-light);
  opacity: 0.5;
}
.depo__label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  opacity: 0.6;
}
.depo__tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background: rgba(157,234,178,0.28);
  color: var(--primary);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.depo__notice {
  font-size: 12px;
  color: var(--black);
  opacity: 0.42;
  margin-top: 10px;
  font-style: italic;
}

/* ============================================================
   BLOG
   ============================================================ */
.blog__head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  margin-bottom: 56px;
}
.blog__head-right {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-end;
  text-align: right;
}
.blog__head-right .section__sub { text-align: right; }

.blog__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.post {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(0,92,101,0.08);
  display: flex;
  flex-direction: column;
  transition: all .4s var(--ease);
  cursor: pointer;
}
.post:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
}
a.post {
  text-decoration: none;
  color: inherit;
}
.post__media {
  aspect-ratio: 16 / 11;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.post__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.18) 100%);
  pointer-events: none;
}
.post__cat {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--yellow);
  color: var(--black);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  z-index: 2;
}
.post__body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.post__title {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--primary);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.01em;
  text-wrap: pretty;
}
.post__excerpt {
  font-size: 14px;
  color: var(--black);
  opacity: 0.7;
  line-height: 1.55;
  flex: 1;
}
.post__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(0,92,101,0.08);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  opacity: 0.75;
}
.post__meta-arrow {
  display: inline-flex;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--off-white);
  align-items: center;
  justify-content: center;
  transition: transform .35s var(--ease);
}
.post:hover .post__meta-arrow { transform: translateX(4px); }

/* ============================================================
   FAQ
   ============================================================ */
.faq__layout {
  display: grid;
  grid-template-columns: 0.85fr 1.2fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.faq__side {
  position: sticky;
  top: 120px;
}
.faq__side-help {
  margin-top: 40px;
  padding: 28px;
  background: var(--off-white);
  border-radius: var(--r-md);
  border: 1px solid rgba(0,92,101,0.08);
}
.faq__side-help p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--black);
  opacity: 0.8;
  margin-bottom: 16px;
}

.faq__list {
  border-top: 1px solid var(--green-light);
}
.faq__item {
  border-bottom: 1px solid var(--green-light);
}
.faq__q {
  width: 100%;
  text-align: left;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  font-family: var(--serif);
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--primary);
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 1.3;
  transition: color .25s var(--ease);
}
.faq__q:hover { color: var(--primary-deep); }
.faq__icon {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all .4s var(--ease);
}
.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  background: var(--primary);
  transition: transform .4s var(--ease);
}
.faq__icon::before { width: 12px; height: 1.5px; }
.faq__icon::after { width: 1.5px; height: 12px; }

.faq__item.is-open .faq__icon {
  background: var(--primary);
}
.faq__item.is-open .faq__icon::before,
.faq__item.is-open .faq__icon::after {
  background: var(--off-white);
}
.faq__item.is-open .faq__icon::after { transform: scaleY(0); }

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s var(--ease);
}
.faq__a-inner {
  padding: 0 0 32px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--black);
  opacity: 0.78;
  max-width: 60ch;
}
.faq__item.is-open .faq__a {
  max-height: 400px;
}

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta {
  position: relative;
  padding: clamp(96px, 11vw, 152px) 0;
  text-align: center;
  color: var(--off-white);
  overflow: hidden;
  isolation: isolate;
}
.cta__media {
  position: absolute;
  inset: 0;
  background-image: url("assets/cta.png");
  background-size: cover;
  background-position: 50% 30%;
  filter: blur(3px) saturate(0.9);
  transform: scale(1.06);
  z-index: -2;
}
.cta__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,92,101,0.85);
  z-index: -1;
}
.cta__inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.cta__title {
  font-family: var(--serif);
  font-size: clamp(38px, 5.4vw, 76px);
  line-height: 1.05;
  color: var(--off-white);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  font-weight: 400;
}
.cta__title em {
  font-style: italic;
  color: var(--green-light);
  font-weight: 300;
}
.cta__sub {
  font-size: clamp(15px, 1.3vw, 18px);
  color: rgba(244,246,250,0.85);
  max-width: 540px;
  margin: 0 auto 40px;
}
.cta__notes {
  margin-top: 32px;
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244,246,250,0.65);
}
.cta__notes span { display: inline-flex; align-items: center; gap: 8px; }
.cta__notes span::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green-light);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black);
  color: var(--off-white);
  padding: 88px 0 32px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(244,246,250,0.12);
}
.footer__brand img {
  height: 40px;
  width: auto;
  margin-bottom: 24px;
  display: block;
  background: transparent;
}
.footer__tagline {
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(244,246,250,0.6);
  max-width: 34ch;
}
.footer__col h4 {
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-light);
  font-weight: 700;
  margin-bottom: 18px;
}
.footer__col p, .footer__col a {
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(244,246,250,0.78);
  display: block;
  margin-bottom: 6px;
  transition: color .2s var(--ease);
}
.footer__col a:hover { color: var(--green-light); }

.footer__bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(244,246,250,0.5);
  letter-spacing: 0.05em;
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(37,211,102,0.35);
  z-index: 100;
  transition: transform .3s var(--ease);
}
.wa-float:hover { transform: scale(1.06); }
.wa-float::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  opacity: 0;
  animation: waPing 2.5s ease-out infinite;
}
@keyframes waPing {
  0% { opacity: 0.6; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.35); }
}
.wa-float svg { width: 30px; height: 30px; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.40s; }
.reveal[data-delay="6"] { transition-delay: 0.48s; }

/* ============================================================
   QUIZ CALLOUT — ORIENTAÇÃO INICIAL
   ============================================================ */
/* Quando dentro de seção off-white, o card usa fundo branco para contrastar */
.section--off .quiz-callout { background: #fff; }
.quiz-callout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(36px, 4.5vw, 56px);
  align-items: center;
  background: var(--off-white);
  border-radius: 16px;
  border: 1px solid rgba(0,92,101,0.09);
  border-top: 3px solid var(--primary);
  box-shadow: 0 2px 20px rgba(0,92,101,0.05);
  padding: clamp(32px, 3.2vw, 48px) clamp(32px, 3.8vw, 52px);
  margin-top: clamp(48px, 5vw, 64px);
}
.quiz-callout__title {
  font-family: var(--serif);
  font-size: clamp(19px, 1.6vw, 25px);
  font-weight: 500;
  color: var(--black);
  line-height: 1.25;
  letter-spacing: -0.012em;
  margin: 10px 0 12px;
  text-wrap: pretty;
}
.quiz-callout__text {
  font-size: clamp(13.5px, 1vw, 15px);
  line-height: 1.68;
  color: var(--black);
  opacity: 0.68;
  margin: 0;
  max-width: 52ch;
}
.quiz-callout__right {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: clamp(22px, 2.2vw, 28px);
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(0,92,101,0.07);
  box-shadow: 0 1px 8px rgba(0,92,101,0.04);
}
.quiz-callout__card-title {
  font-family: var(--serif);
  font-size: clamp(15px, 1.2vw, 17px);
  font-weight: 500;
  color: var(--primary);
  margin: 0;
  line-height: 1.3;
}
.quiz-callout__card-text {
  font-size: 13px;
  line-height: 1.60;
  color: var(--black);
  opacity: 0.64;
  margin: 0;
}
.quiz-callout__right .btn {
  width: 100%;
  justify-content: center;
  margin-top: 2px;
}
.quiz-callout__note {
  font-size: 11.5px;
  color: var(--black);
  opacity: 0.44;
  line-height: 1.55;
  margin: 0;
}
.btn--outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--r-full, 999px);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--primary);
  background: transparent;
  border: 1.5px solid rgba(0,92,101,0.35);
  cursor: pointer;
  transition: border-color .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  text-decoration: none;
}
.btn--outline:hover {
  border-color: var(--primary);
  background: rgba(0,92,101,0.05);
}

/* ============================================================
   MODAL
   ============================================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--gutter);
}
.modal.is-open { display: flex; }
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.46);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.modal__dialog {
  position: relative;
  background: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
  z-index: 1;
  animation: modalDialogIn .28s var(--ease) both;
}
@keyframes modalDialogIn {
  from { opacity: 0; transform: translateY(18px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0)   scale(1);    }
}
.modal__close {
  position: absolute;
  top: 18px; right: 18px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--off-white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  opacity: 0.55;
  transition: opacity .2s, background .2s;
  z-index: 2;
}
.modal__close:hover { opacity: 1; background: rgba(0,92,101,0.08); }
.modal__inner {
  padding: clamp(36px, 5vw, 52px);
}
.modal__title {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 26px);
  color: var(--primary);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin: 12px 0 12px;
  text-wrap: pretty;
}
.modal__desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--black);
  opacity: 0.68;
  margin-bottom: 28px;
}
.modal__fieldset {
  border: none;
  padding: 0;
  margin: 0 0 24px;
}
.modal__legend {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  opacity: 0.7;
  display: block;
  margin-bottom: 12px;
}
.modal__options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.modal__option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border: 1px solid rgba(0,92,101,0.12);
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
  color: var(--black);
  transition: border-color .2s, background .2s;
}
.modal__option:hover { border-color: rgba(0,92,101,0.28); background: rgba(0,92,101,0.03); }
.modal__option input[type="radio"] {
  accent-color: var(--primary);
  width: 16px; height: 16px;
  flex-shrink: 0;
}
.modal__option:has(input:checked) {
  border-color: var(--primary);
  background: rgba(0,92,101,0.05);
}
.modal__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 24px;
}
.modal__field { display: flex; flex-direction: column; gap: 6px; }
.modal__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  opacity: 0.65;
}
.modal__input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(0,92,101,0.15);
  border-radius: 10px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--black);
  background: var(--off-white);
  outline: none;
  transition: border-color .2s, background .2s;
  box-sizing: border-box;
}
.modal__input:focus { border-color: var(--primary); background: #fff; }
.modal__submit { width: 100%; justify-content: center; margin-bottom: 14px; }
.modal__disclaimer {
  font-size: 12px;
  color: var(--black);
  opacity: 0.45;
  line-height: 1.5;
  text-align: center;
  margin: 0;
}

/* Modal — elementos adicionais */
.modal__aviso {
  background: rgba(0,92,101,0.05);
  border: 1px solid rgba(0,92,101,0.12);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 13px;
  color: var(--primary);
  line-height: 1.6;
  margin-bottom: 28px;
  opacity: 0.85;
}
.modal__section-title {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  opacity: 0.5;
  margin: 0 0 14px;
}
.modal__fields--single { grid-template-columns: 1fr; }
.modal__q {
  margin-bottom: 24px;
}
.modal__q-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  display: block;
  margin-bottom: 10px;
  line-height: 1.4;
}
.modal__textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(0,92,101,0.15);
  border-radius: 10px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--black);
  background: var(--off-white);
  outline: none;
  resize: vertical;
  min-height: 96px;
  transition: border-color .2s, background .2s;
  box-sizing: border-box;
  line-height: 1.55;
}
.modal__textarea:focus { border-color: var(--primary); background: #fff; }
.modal__checkbox-wrap {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  background: var(--off-white);
  border-radius: 10px;
  border: 1px solid rgba(0,92,101,0.1);
  margin-bottom: 20px;
}
.modal__checkbox-wrap input[type="checkbox"] {
  accent-color: var(--primary);
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
}
.modal__checkbox-text {
  font-size: 12px;
  line-height: 1.6;
  color: var(--black);
  opacity: 0.65;
  cursor: pointer;
}
.modal__checkbox-text a { color: var(--primary); text-decoration: underline; }
.modal__privacidade-body {
  font-size: 14px;
  line-height: 1.75;
  color: var(--black);
  opacity: 0.78;
  margin-top: 20px;
}
.modal__privacidade-body p { margin-bottom: 14px; }
.modal__error {
  background: rgba(220, 53, 69, 0.07);
  border: 1px solid rgba(220, 53, 69, 0.2);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  color: #b91c1c;
  margin-bottom: 14px;
  line-height: 1.5;
}
.modal__success {
  display: none;
  text-align: center;
  padding: 32px 0 16px;
}
.modal__success-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(0,92,101,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary);
}
.modal__success-title {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 24px);
  color: var(--primary);
  font-weight: 400;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.modal__success-text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--black);
  opacity: 0.7;
  max-width: 34ch;
  margin: 0 auto 28px;
}
.modal__success-btn { margin: 0 auto; }

/* Nav CTA visibility control */
.nav__cta-mobile { display: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .nav__cta-desktop { display: none; }

  .nav.is-open .nav__links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 76px;
    left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 24px var(--gutter) 32px;
    gap: 20px;
    border-bottom: 1px solid rgba(0,92,101,0.1);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  }

  .nav.is-open .nav__toggle span { background: transparent; }
  .nav.is-open .nav__toggle span::before { transform: rotate(45deg); top: 0; }
  .nav.is-open .nav__toggle span::after { transform: rotate(-45deg); top: 0; }
  .nav.is-open .nav__cta-mobile { display: flex; width: fit-content; }
  .hero__logo { top: 96px; height: 30px; }

  /* Modal: inputs em coluna no tablet */
  .modal__fields { grid-template-columns: 1fr; }

  .sobre__grid,
  .atuacao__head,
  .medicos__head,
  .fluxo__head,
  .blog__head,
  .faq__layout { grid-template-columns: 1fr; gap: 40px; }
  .quiz-callout { grid-template-columns: 1fr; gap: 28px; }

  .equipe__lead { grid-template-columns: 1fr; }
  .equipe__lead-photo { aspect-ratio: 16 / 10; }

  .cards, .cards--four, .blog__grid, .depo__grid, .equipe__members {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:not(:nth-child(3n))::after { display: none; }
  .step:not(:nth-child(2n))::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: -13px;
    width: 7px;
    height: 7px;
    border-top: 1.5px solid rgba(0,92,101,0.22);
    border-right: 1.5px solid rgba(0,92,101,0.22);
    transform: translate(0, -50%) rotate(45deg);
    z-index: 1;
  }

  .medicos__parceiros {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .medicos__parceiros-right {
    flex-direction: column;
    min-width: 0;
  }
  .sobre__video { max-width: 100%; }
  .banner-corp {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .banner-corp__image {
    align-self: auto;
    aspect-ratio: 16 / 9;
    min-height: 0;
  }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .faq__side { position: static; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .hero { min-height: 640px; }
  .hero__logo { top: 90px; left: 20px; height: 26px; }
  .nav__inner { height: 64px; }

  .cards, .cards--four, .blog__grid, .depo__grid, .equipe__members,
  .steps, .sobre__photos {
    grid-template-columns: 1fr;
  }
  .step::after { display: none !important; }
  .sobre__meta { grid-template-columns: 1fr; }
  .medicos__parceiros-right { flex-direction: column; }
  .medicos__parceiros-right .btn { width: 100%; justify-content: center; }
  .banner-corp { gap: 24px; }
  .banner-corp__image { aspect-ratio: 4 / 3; }
  .banner-corp__logos { gap: 8px; }
  .banner-corp__logos > span { font-size: 10.5px; padding: 6px 13px; }
  .footer__top { grid-template-columns: 1fr; }
  .hero__cta { flex-direction: column; width: 100%; }
  .hero__cta .btn { width: 100%; }
  .wa-float { width: 54px; height: 54px; bottom: 18px; right: 18px; }
  .wa-float svg { width: 26px; height: 26px; }
  /* Modal: tela inteira no mobile */
  .modal { padding: 0; align-items: flex-end; }
  .modal__dialog { border-radius: 20px 20px 0 0; max-height: 92vh; }
  /* Quiz callout: mobile compacto */
  .quiz-callout {
    padding: 28px 24px;
    margin-top: 40px;
  }
  .quiz-callout__right .btn { width: 100%; }
}
