/* ===== RESET ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Bricolage Grotesque', sans-serif; color: #151414; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; border: none; cursor: pointer; background: none; }
ul { list-style: none; }

/* ===== DESIGN TOKENS ===== */
:root {
  --azul-royal:     #007FE1;
  --azul-medio:     #2A7DE1;
  --amarelo:        #FFBE3F;
  --amarelo-alt:    #FFBF3C;
  --rosa-magenta:   #D41367;
  --rosa-alt:       #D71667;
  --verde-whatsapp: #41A937;
  --verde-btn:      #54CC62;

  --dark:           #151414;
  --dark-alt:       #191718;
  --cinza-texto:    #3F3F3F;
  --cinza-claro:    #F5F5F5;
  --cinza-f3:       #F3F3F3;
  --branco:         #FFFFFF;
  --placeholder:    rgba(0, 55, 62, 0.2);

  --radius-hero:    70px;
  --radius-card:    59px;
  --radius-card-sm: 45.9767px;
  --radius-saude:   50px;
  --radius-destaque:40.5px;
  --radius-btn:     100px;
  --radius-btn-sm:  70.4px;
  --radius-input:   12.5453px;
  --radius-tag:     20px;
  --radius-dot:     50px;
  --radius-btn-wpp: 36px;
}

/* ===== FONTES ===== */
@font-face {
  font-family: 'Recita';
  src: url('../fonts/Recita-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Recita';
  src: url('../fonts/Recita-LightItalic.woff2') format('woff2');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Recita';
  src: url('../fonts/Recita-Book.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Recita';
  src: url('../fonts/Recita-BookItalic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Recita';
  src: url('../fonts/Recita-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Recita';
  src: url('../fonts/Recita-MediumItalic.woff2') format('woff2');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Recita';
  src: url('../fonts/Recita-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Recita';
  src: url('../fonts/Recita-BoldItalic.woff2') format('woff2');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Recita';
  src: url('../fonts/Recita-Heavy.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Recita';
  src: url('../fonts/Recita-HeavyItalic.woff2') format('woff2');
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Basier Square';
  src: url('../fonts/BasierSquare-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Basier Square';
  src: url('../fonts/BasierSquare-Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Basier Square';
  src: url('../fonts/BasierSquare-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Basier Square';
  src: url('../fonts/BasierSquare-MediumItalic.woff2') format('woff2');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Basier Square';
  src: url('../fonts/BasierSquare-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Basier Square';
  src: url('../fonts/BasierSquare-SemiBoldItalic.woff2') format('woff2');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Basier Square';
  src: url('../fonts/BasierSquare-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Basier Square';
  src: url('../fonts/BasierSquare-BoldItalic.woff2') format('woff2');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

.container { max-width: 1240px; margin: 0 auto; padding: 0 20px; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  padding: 32px 0;
}
.navbar.scrolled {
  background: var(--branco);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  padding: 16px 0;
}
.navbar-inner {
  max-width: 1242.5px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar .logo img { width: 197px; height: auto; }
.nav-menu {
  display: flex;
  gap: 35px;
  align-items: center;
}
.nav-menu a {
  font-family: 'Basier Square', sans-serif;
  font-weight: 500;
  font-size: 14.58px;
  letter-spacing: 0.405px;
  color: var(--dark);
  white-space: nowrap;
}
.navbar-right { display: flex; align-items: center; gap: 24px; }
.whatsapp-icon { width: 46.08px; height: 46.08px; color: var(--verde-whatsapp); }
.social-icons { display: flex; gap: 17px; }
.social-icons svg { width: 24px; height: 24px; color: var(--dark); fill: currentColor; }
.hamburger { display: none; width: 24px; height: 24px; cursor: pointer; background: none; border: none; }
.hamburger svg { width: 100%; height: 100%; }

/* Mobile menu drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 280px;
  height: 100vh;
  background: var(--branco);
  z-index: 1100;
  transition: right 0.3s ease;
  padding: 40px 24px;
  box-shadow: -4px 0 20px rgba(0,0,0,0.1);
}
.mobile-drawer.open { right: 0; }
.mobile-drawer-close { position: absolute; top: 24px; right: 24px; width: 24px; height: 24px; }
.mobile-drawer nav { display: flex; flex-direction: column; gap: 24px; margin-top: 60px; }
.mobile-drawer nav a { font-family: 'Basier Square', sans-serif; font-weight: 500; font-size: 16px; color: var(--dark); }
.drawer-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.4);
  z-index: 1050; opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.drawer-overlay.open { opacity: 1; pointer-events: auto; }

/* ===== HERO ===== */
.hero {
  position: relative;
  max-width: 1240px;
  height: 668px;
  margin: 184px auto 0;
  border-radius: var(--radius-hero);
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.18) 32%, rgba(0,0,0,0) 52%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 44px 0 0 56px;
  max-width: 420px;
}
.hero-title {
  font-family: 'Recita', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 44px;
  line-height: 104%;
  letter-spacing: 0.3645px;
  color: var(--branco);
  margin-bottom: 18px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.hero-sub {
  font-family: 'Basier Square', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 21px;
  letter-spacing: 0.3645px;
  color: var(--branco);
  max-width: 290px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.25);
}
.hero-squiggle {
  position: absolute;
  bottom: 16%;
  left: -3%;
  width: 106%;
  z-index: 2;
  pointer-events: none;
}

/* ===== EIXOS DE ASSISTÊNCIA ===== */
.eixos {
  max-width: 1240px;
  margin: 100px auto 0;
  padding: 0 20px;
  text-align: center;
}
.label-conhca {
  font-family: 'Basier Square', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 5px;
  color: var(--dark);
  display: block;
  margin-bottom: 12px;
}
.headline-secao {
  font-family: 'Recita', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 52px;
  line-height: 62px;
  letter-spacing: -2px;
  color: var(--azul-royal);
  margin-bottom: 56px;
}
.headline-secao.rosa { color: var(--rosa-alt); }
.eixos-cards { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.card-eixo {
  width: 590px;
  height: 400px;
  border-radius: var(--radius-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 40px;
  text-align: center;
}
.card-eixo.azul { background: var(--azul-royal); }
.card-eixo.rosa { background: var(--rosa-magenta); }
.headline-card {
  font-family: 'Recita', serif;
  font-weight: 500;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 0.5px;
  color: var(--branco);
}
.body-lg {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 130%;
  letter-spacing: 0.5px;
  color: var(--branco);
  max-width: 470px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 39px;
  border-radius: var(--radius-btn);
  font-family: 'Basier Square', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.5px;
  transition: filter 0.3s ease;
}
.btn:hover { filter: brightness(0.9); }
.btn-amarelo { background: var(--amarelo); color: var(--dark); }
.btn-azul { background: var(--azul-royal); color: var(--branco); }

/* ===== COMO CUIDAMOS ===== */
.servicos {
  max-width: 1240px;
  margin: 100px auto 0;
  padding: 0 20px;
  text-align: center;
}
.servicos-grid {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 56px;
}
.card-servico {
  width: 283.8px;
  height: 314.82px;
  border-radius: var(--radius-card-sm);
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-servico:hover { transform: scale(1.02); box-shadow: 0 8px 30px rgba(0,0,0,0.12); }
.card-servico::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 8.58%, rgba(0,0,0,0.75) 85.2%);
}
.headline-card-sm {
  position: relative;
  z-index: 2;
  font-family: 'Recita', serif;
  font-weight: 700;
  font-size: 31.17px;
  line-height: 100%;
  letter-spacing: 0.39px;
  color: var(--branco);
  margin-bottom: 12px;
  text-align: left;
}
.body-xs {
  position: relative;
  z-index: 2;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 400;
  font-size: 14.8432px;
  line-height: 130%;
  letter-spacing: 0.39px;
  color: var(--branco);
  text-align: left;
}

/* ===== PARA ESPECIALISTAS / EMPRESAS ===== */
.split-section {
  max-width: 1240px;
  margin: 100px auto 0;
  padding: 0 20px;
  display: flex;
  gap: 16px;
}
.split-img {
  width: 697px;
  height: 541px;
  border-radius: var(--radius-saude);
  background-size: cover;
  background-position: center;
}
.split-content {
  width: 710px;
  height: 541px;
  border-radius: var(--radius-saude);
  padding: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.split-content.amarelo { background: var(--amarelo-alt); }
.split-content.azul { background: var(--azul-medio); }
.tag {
  display: inline-flex;
  align-items: center;
  border: 1px solid #000000;
  border-radius: var(--radius-tag);
  padding: 8px 16px;
  font-family: 'Basier Square', sans-serif;
  font-weight: 700;
  font-size: 16.8px;
  color: var(--dark-alt);
  width: fit-content;
  margin-bottom: 24px;
}
.headline-destaque-titulo {
  font-family: 'Recita', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 43px;
  line-height: 52px;
  letter-spacing: -2.2px;
  margin-bottom: 24px;
}
.headline-destaque-titulo.dark-text { color: var(--dark); }
.headline-destaque-titulo.white-text { color: var(--branco); }
.split-text {
  font-family: 'Basier Square', sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 26px;
  max-width: 557px;
  margin-bottom: 32px;
}
.split-text.dark-text { color: var(--dark); }
.split-text.white-text { color: var(--branco); }
.servicos-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 40px;
  margin-bottom: 32px;
}
.servicos-list li strong {
  display: block;
  font-family: 'Basier Square', sans-serif;
  font-weight: 700;
  font-size: 12.6px;
  line-height: 15px;
  color: var(--branco);
  margin-bottom: 4px;
}
.servicos-list li span {
  font-family: 'Basier Square', sans-serif;
  font-weight: 700;
  font-size: 12.6px;
  line-height: 15px;
  color: var(--branco);
}
.btn-sm-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 188px;
  height: 54px;
  border-radius: var(--radius-btn);
  font-family: 'Basier Square', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.5px;
  transition: filter 0.3s ease;
}
.btn-sm-link:hover { filter: brightness(0.9); }

/* ===== SAÚDE MENTAL AO ALCANCE ===== */
.saude-alcance {
  max-width: 1240px;
  margin: 100px auto 0;
  padding: 0 20px;
  display: flex;
  gap: 16px;
}
.saude-card {
  width: 527px;
  height: 599px;
  background: var(--cinza-claro);
  border-radius: var(--radius-saude);
  padding: 64px;
  display: flex;
  flex-direction: column;
}
.headline-saude {
  font-family: 'Recita', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 48.4px;
  line-height: 107%;
  letter-spacing: -2px;
  color: var(--rosa-magenta);
  margin-bottom: 24px;
}
.saude-subtitulo {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 500;
  font-size: 22.99px;
  line-height: 130%;
  letter-spacing: -1.21px;
  color: var(--dark-alt);
  margin-bottom: 20px;
}
.body-sm {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 400;
  font-size: 16.94px;
  line-height: 150%;
  color: var(--dark-alt);
  margin-bottom: auto;
}
.saude-card .logo-habiens { width: 167px; height: auto; margin-top: 32px; }
.carousel {
  width: 593px;
  height: 595px;
  border-radius: var(--radius-saude);
  position: relative;
  overflow: hidden;
}
.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease;
}
.carousel-slide { min-width: 100%; height: 100%; background-size: cover; background-position: center; }
.carousel-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 25.59px;
}
.dot {
  width: 16.82px;
  height: 16.82px;
  border-radius: var(--radius-dot);
  background: var(--cinza-f3);
  cursor: pointer;
  transition: background 0.3s ease;
}
.dot.active { background: var(--amarelo-alt); }

/* ===== DESTAQUES ===== */
.destaques { max-width: 1240px; margin: 100px auto 0; padding: 0 20px; display: flex; flex-direction: column; gap: 24px; }
.destaque-card {
  border-radius: var(--radius-saude);
  padding: 70px 105px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.destaque-card.azul { background: var(--azul-medio); height: 329px; justify-content: center; }
.destaque-card.amarelo { background: var(--amarelo-alt); height: 370px; justify-content: center; }
.destaque-label {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 300;
  font-size: 24px;
  line-height: 130%;
  letter-spacing: 0.315px;
}
.destaque-card.azul .destaque-label { color: var(--branco); }
.destaque-card.amarelo .destaque-label { color: #000000; }
.headline-destaque {
  font-family: 'Recita', serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 130%;
  max-width: 898px;
}
.destaque-card.azul .headline-destaque { color: var(--branco); }
.destaque-card.amarelo .headline-destaque { color: #000000; }

/* ===== PSICOTERAPIA ===== */
.psicoterapia { max-width: 1240px; margin: 100px auto 0; padding: 0 20px; text-align: center; }
.headline-psico {
  font-family: 'Recita', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 56px;
  line-height: 67px;
  letter-spacing: -2px;
  color: var(--dark);
  margin-bottom: 56px;
}
.psico-card {
  background: var(--cinza-claro);
  border-radius: var(--radius-destaque);
  padding: 24.3px 64.8px 29.16px;
  display: flex;
  align-items: center;
  gap: 98.82px;
  text-align: left;
}
.psico-texto {
  font-family: 'Basier Square', sans-serif;
  font-weight: 400;
  font-size: 17.82px;
  line-height: 21px;
  letter-spacing: -1.62px;
  color: var(--cinza-texto);
  max-width: 482.76px;
}
.psico-foto {
  width: 345.06px;
  height: 345.06px;
  border-radius: 50%;
  background-size: cover;
  background-position: center 15%;
  flex-shrink: 0;
}
.psico-legenda {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #000000;
  margin-top: 24px;
}

/* ===== CONTATO ===== */
.contato-section {
  max-width: 1240px;
  margin: 100px auto 0;
  padding: 0 20px;
  position: relative;
}
.contato-box {
  background: var(--branco);
  border-radius: var(--radius-saude);
  min-height: 627px;
  padding: 76px 80px;
  display: flex;
  gap: 80px;
  flex-wrap: wrap;
  box-shadow: 0 4px 40px rgba(0,0,0,0.06);
  position: relative;
  z-index: 2;
}
.contato-info-col { flex: 1; min-width: 300px; }
.avatar-habiens { width: 79px; height: 79px; margin-bottom: 24px; }
.contato-tit {
  font-family: 'Recita', serif;
  font-weight: 500;
  font-size: 42px;
  line-height: 50px;
  letter-spacing: 0.5px;
  color: var(--dark);
  margin-bottom: 24px;
}
.contato-info {
  font-family: 'Basier Square', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 34px;
  letter-spacing: 0.5px;
  display: block;
}
.contato-info.rosa { color: var(--rosa-magenta); }
.contato-info.azul { color: var(--azul-medio); }
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 187.2px;
  height: 36px;
  background: var(--verde-btn);
  border-radius: var(--radius-btn-wpp);
  font-family: 'Basier Square', sans-serif;
  font-weight: 500;
  font-size: 13.5px;
  letter-spacing: 0.072px;
  color: var(--branco);
  margin-top: 24px;
  transition: filter 0.3s ease;
}
.btn-whatsapp:hover { filter: brightness(0.95); }
.contato-form { flex: 1; min-width: 300px; display: flex; flex-direction: column; gap: 10px; }
.input-field {
  width: 100%;
  height: 64.61px;
  background: var(--cinza-claro);
  border-radius: var(--radius-input);
  border: none;
  padding: 6px 24px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 400;
  font-size: 12.5453px;
  letter-spacing: 0.313632px;
  color: var(--dark);
}
.input-field::placeholder { color: var(--placeholder); }
textarea.input-field { height: 155.56px; padding-top: 16px; resize: none; font-family: inherit; }
.btn-enviar {
  width: 132.35px;
  height: 38.02px;
  background: var(--amarelo);
  border-radius: var(--radius-btn-sm);
  font-family: 'Basier Square', sans-serif;
  font-weight: 700;
  font-size: 14.08px;
  letter-spacing: 0.352px;
  color: var(--branco);
  align-self: flex-end;
  transition: filter 0.3s ease;
}
.btn-enviar:hover { filter: brightness(0.9); }

/* Squiggle decorativo */
.squiggle-footer {
  position: absolute;
  bottom: -60px;
  left: 0;
  width: 100%;
  z-index: 1;
  opacity: 0.5;
  pointer-events: none;
}

footer { height: 80px; }

/* ===== FADE-IN ===== */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVO MOBILE (390px) ===== */
@media (max-width: 768px) {
  .nav-menu, .social-icons, .whatsapp-icon { display: none; }
  .hamburger { display: block; }
  .navbar { padding: 23px 0; }
  .navbar .logo img { width: 150px; height: auto; }
  .navbar-inner { padding: 0 12px; }

  .hero {
    width: calc(100% - 24px);
    height: 334px;
    margin: 75px auto 0;
    border-radius: 35px;
  }
  .hero-content { padding: 28px 0 0 24px; max-width: 200px; }
  .hero-title { font-size: 24px; line-height: 108%; letter-spacing: 0.18225px; margin-bottom: 10px; }
  .hero-sub { font-size: 11px; line-height: 14px; max-width: 170px; }
  .hero-squiggle { bottom: 10%; }

  .eixos { margin-top: 60px; }
  .label-conhca { font-size: 7px; letter-spacing: 2.5px; }
  .headline-secao { font-size: 26px; line-height: 31px; letter-spacing: -1px; margin-bottom: 32px; }
  .eixos-cards { flex-direction: column; align-items: center; gap: 24px; }
  .card-eixo { width: 100%; max-width: 340px; height: 320px; padding: 32px 20px; }
  .headline-card { font-size: 28px; }
  .body-lg { font-size: 16px; max-width: 280px; }
  .btn { padding: 10px 24px; font-size: 14px; }

  .servicos { margin-top: 60px; }
  .servicos-grid { flex-direction: column; align-items: center; }
  .card-servico { width: 100%; max-width: 280px; height: 280px; }

  .split-section { flex-direction: column; margin-top: 60px; }
  .split-img, .split-content { width: 100%; height: auto; min-height: 320px; }
  .split-content { padding: 32px 24px; }
  .headline-destaque-titulo { font-size: 24px; line-height: 30px; }
  .split-text { font-size: 16px; line-height: 20px; }
  .servicos-list { grid-template-columns: 1fr; }

  .saude-alcance { flex-direction: column; margin-top: 60px; }
  .saude-card, .carousel { width: 100%; height: auto; }
  .saude-card { padding: 32px 24px; }
  .carousel { height: 320px; }
  .headline-saude { font-size: 28px; }

  .destaques { margin-top: 60px; }
  .destaque-card { padding: 32px 24px; height: auto !important; }
  .headline-destaque { font-size: 22px; }

  .psicoterapia { margin-top: 60px; }
  .headline-psico { font-size: 28px; line-height: 34px; }
  .psico-card { flex-direction: column; gap: 24px; padding: 24px; }
  .psico-foto { width: 220px; height: 220px; }

  .contato-section { margin-top: 60px; }
  .contato-box { flex-direction: column; padding: 40px 24px; min-height: auto; }
  .contato-tit { font-size: 24px; }
}
