:root {
  --orange: #e89b4b;
  --orange-dark: #d48535;
  --orange-soft: #f4c896;
  --text-body: #8b6914;
  --text-muted: #a67c52;
  --bg-page: #ffffff;
  --bg-card: #ffffff;
  --whatsapp: #25d366;
  --whatsapp-dark: #1da851;
  --maps-red: #ea4335;
  --maps-red-dark: #d33426;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-pill: 999px;
  --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.06);
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu,
    Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  --font-serif: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu,
    Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-body);
  background: var(--bg-page);
}

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

a {
  color: var(--orange);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 2.5rem;
  color: #8a989c;
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
}

.legal-back:hover {
  color: #6c7d81;
  text-decoration: none;
}

.container {
  width: min(1120px, 100% - 2rem);
  margin-inline: auto;
}

.container--hero {
  width: min(1360px, 100% - 1.25rem);
}

/* Home: cabeçalho + dobra dentro do mesmo cartão com gradiente (como ortofoot.com.br) */
.home-hero-shell {
  --hero-orange: #e88934;
  --hero-orange-deep: #df7a28;
  margin: 0.65rem auto 0.5rem;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  background: transparent;
  padding: 0;
}

.site-header.site-header--hero {
  position: relative;
  top: auto;
  background: transparent;
  box-shadow: none;
}

.site-header.site-header--hero .site-header__inner {
  padding: clamp(0.5rem, 1.25vw, 0.75rem) 0 clamp(0.35rem, 1vw, 0.55rem);
}

.home-hero-shell .brand__mark {
  width: 88px;
  height: 88px;
}

.home-hero-shell .brand__wordmark {
  max-height: 58px;
  max-width: min(210px, 38vw);
}

@media (max-width: 480px) {
  .home-hero-shell .brand__mark {
    width: 72px;
    height: 72px;
  }

  .home-hero-shell .brand__wordmark {
    max-height: 48px;
  }
}

.home-hero-shell .site-nav__list {
  padding: 0.4rem 0.55rem;
  gap: 0.25rem;
}

.home-hero-shell .site-nav__list a {
  padding: 0.55rem 1.15rem;
  font-size: clamp(0.9rem, 1vw, 1.02rem);
  min-width: 4.75rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: inherit;
}

.brand__wordmark {
  display: block;
  height: auto;
  max-height: 58px;
  width: auto;
  max-width: min(200px, 36vw);
  object-fit: contain;
}

.brand__mark {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .brand__wordmark {
    max-height: 46px;
    max-width: min(170px, 48vw);
  }

  .brand__mark {
    width: 64px;
    height: 64px;
  }
}

.nav-toggle {
  display: none;
  border: none;
  background: transparent;
  padding: 0.5rem;
  cursor: pointer;
  color: var(--orange);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  margin: 5px 0;
  border-radius: 1px;
}

.site-nav {
  display: flex;
  align-items: center;
}

.site-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  gap: clamp(0.85rem, 2vw, 1.75rem);
  align-items: center;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.site-nav__list a {
  display: block;
  padding: 0.2rem 0.1rem;
  border-radius: 0;
  font-size: clamp(0.82rem, 1.05vw, 0.94rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #6f6f6f;
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s;
  border-bottom: 2px solid transparent;
  min-width: unset;
  text-align: center;
}

.site-nav__list a:hover {
  color: #6f6f6f;
  text-decoration: none;
  border-bottom-color: rgba(217, 122, 40, 0.65);
}

.site-nav__list a.is-active {
  color: #6f6f6f;
}

/* Primeira dobra (conteúdo; fundo e cantos vêm de .home-hero-shell na home) */
.hero-fold {
  padding: 0.2rem 0 clamp(1.1rem, 3vw, 2rem);
}

@media (min-width: 768px) {
  .hero-fold {
    padding: 0.2rem 0 clamp(1.35rem, 3.5vw, 2.35rem);
  }
}

.hero-fold__grid {
  display: grid;
  gap: clamp(1.1rem, 2.5vw, 1.85rem);
  align-items: center;
}

@media (min-width: 768px) {
  .hero-fold__grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 1.08fr);
    gap: clamp(1.5rem, 3vw, 2.75rem);
    align-items: center;
  }
}

.hero-fold__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(0.75rem, 1.6vw, 1.2rem);
  padding-inline: 0;
}

.hero-fold__eyebrow {
  margin: 0;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  background: rgba(232, 137, 52, 0.12);
  color: #6f6f6f;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero-fold__title {
  margin: 0;
  font-size: clamp(1.75rem, 4.2vw, 3.05rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--hero-orange);
  max-width: min(13.5em, 100%);
  letter-spacing: -0.03em;
}

.hero-fold__lead {
  margin: 0;
  color: #6f6f6f;
  max-width: 54ch;
  font-size: clamp(1rem, 1.25vw, 1.08rem);
}

.hero-fold__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-fold__cta,
.hero-fold__cta-alt {
  align-self: flex-start;
}

.hero-fold__cta-alt {
  border: 1px solid rgba(232, 137, 52, 0.35);
}

.hero-fold__trust {
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.hero-fold__trust li {
  position: relative;
  padding-left: 20px;
  font-size: 0.94rem;
  color: #6f6f6f;
}

.hero-fold__trust li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--hero-orange);
}

.hero-fold__media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.12);
  align-self: center;
  width: 100%;
  max-width: 70%;
  margin-inline: auto;
}

.hero-fold__media img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 768px) {
  .hero-fold__media {
    border-radius: 20px;
  }
}

.hero-orange {
  background: linear-gradient(135deg, var(--orange) 0%, #f0a85c 100%);
  color: #fff;
  text-align: center;
  padding: 3rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.hero-orange::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  top: -120px;
  left: -80px;
  pointer-events: none;
}

.hero-orange h1 {
  position: relative;
  margin: 0 auto 1.5rem;
  max-width: 28ch;
  font-size: clamp(1.35rem, 4vw, 1.85rem);
  font-weight: 700;
  line-height: 1.35;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  text-decoration: none;
}

.btn:hover:not(.hero-fold__cta) {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn.hero-fold__cta:hover {
  text-decoration: none;
}

.btn--primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 4px 16px rgba(232, 155, 75, 0.35);
}

.btn--primary:hover {
  background: var(--orange-dark);
  color: #fff;
}

.home-hero-shell .btn--primary.hero-fold__cta {
  background: var(--whatsapp);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.3);
  padding: 0.8rem 1.65rem;
  font-size: 0.98rem;
  animation: hero-cta-pulse 2.2s ease-in-out infinite;
}

.home-hero-shell .btn--primary.hero-fold__cta:hover {
  background: var(--whatsapp-dark);
  color: #fff;
}

@keyframes hero-cta-pulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 10px 24px rgba(37, 211, 102, 0.3);
  }

  50% {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 16px 36px rgba(37, 211, 102, 0.48);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero-shell .btn--primary.hero-fold__cta {
    animation: none;
  }
}

.home-hero-shell .btn--light.hero-fold__cta-alt {
  color: var(--hero-orange-deep);
  background: rgba(255, 255, 255, 0.7);
}

.home-hero-shell .btn--light.hero-fold__cta-alt:hover {
  background: #fff;
  color: var(--hero-orange-deep);
}

.btn--light {
  background: #fff;
  color: var(--orange);
}

.btn--light:hover {
  color: var(--orange-dark);
}

.btn--whatsapp {
  background: var(--whatsapp);
  color: #fff;
}

.btn--whatsapp:hover {
  background: var(--whatsapp-dark);
  color: #fff;
}

.btn--maps {
  background: var(--maps-red);
  color: #fff;
  box-shadow: 0 4px 16px rgba(234, 67, 53, 0.3);
}

.btn--maps:hover {
  background: var(--maps-red-dark);
  color: #fff;
}

.section {
  padding: 3rem 0;
}

.section--tight {
  padding: 2rem 0;
}

.section__title {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--orange);
  font-weight: 700;
}

.section__lead {
  margin: 0 0 2rem;
  max-width: 62ch;
  color: var(--text-muted);
}

.card-panel {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 2rem;
  margin-bottom: 2rem;
}

.split {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .split {
    grid-template-columns: 1fr 1fr;
  }

  .split--reverse .split__media {
    order: 2;
  }

  .split--reverse .split__content {
    order: 1;
  }
}

.media-round {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.media-round img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.media-round--full {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
}

.media-round--full img {
  width: 64%;
  margin: 0 auto 0 0;
  aspect-ratio: auto;
  object-fit: contain;
  border-radius: var(--radius-md);
}

@media (max-width: 767px) {
  .media-round--full {
    display: flex;
    justify-content: center;
  }

  .media-round--full img {
    width: min(72%, 280px);
    margin: 0 auto;
  }
}

.media-round--small img {
  width: 82%;
  margin: 0 auto;
}

.media-round--small {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
}

.media-orange {
  background: var(--orange);
  border-radius: var(--radius-lg);
  padding: 1rem;
}

.media-orange img {
  border-radius: var(--radius-md);
  width: 100%;
  object-fit: cover;
}

.service-block {
  scroll-margin-top: 5.5rem;
  margin-bottom: 3rem;
}

.service-block:last-child {
  margin-bottom: 0;
}

.service-block .split {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
}

.service-block h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  color: var(--orange);
}

.service-block p {
  margin: 0 0 1.25rem;
  color: var(--text-muted);
}

.text-center {
  text-align: center;
}

.text-block {
  max-width: 720px;
  margin-inline: auto;
  color: var(--text-muted);
}

.map-building {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .map-building {
    grid-template-columns: 1fr 1fr;
  }
}

.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 320px;
  box-shadow: var(--shadow-soft);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
}

.collage {
  position: relative;
  min-height: 420px;
  margin: 2rem 0;
}

.collage__item {
  position: absolute;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.collage__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collage__item--1 {
  width: 48%;
  left: 0;
  top: 8%;
  z-index: 1;
}

.collage__item--2 {
  width: 48%;
  right: 0;
  top: 0;
  z-index: 2;
}

.collage__item--3 {
  width: 55%;
  left: 22%;
  bottom: 0;
  z-index: 3;
}

@media (max-width: 767px) {
  .collage {
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .collage__item {
    position: relative;
    width: 100% !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
  }

  .collage__item img {
    aspect-ratio: 4/3;
  }
}

.site-footer {
  margin-top: 24px;
  background: #ffffff;
  color: #d97a28;
  padding: 56px 0 44px;
  border-top: 0;
}

.site-footer__inner {
  width: min(1120px, 100% - 2rem);
  margin-inline: auto;
  border-top: 1px solid rgba(217, 122, 40, 0.22);
  padding-top: 36px;
  display: grid;
  gap: 28px;
}

.site-footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.site-footer__social-block {
  margin-left: auto;
  text-align: right;
}

.site-footer__brand {
  display: inline-flex;
  align-items: center;
}

.site-footer__logo {
  max-width: 160px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.site-footer__title {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--orange);
}

.site-footer__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #6f6f6f;
  max-width: 34ch;
}

.site-footer__social {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 2px;
}

.site-footer__social a {
  color: #6f6f6f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-footer__social a:hover {
  color: #6f6f6f;
}

.site-footer__social svg {
  width: 24px;
  height: 24px;
}

.site-footer__bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 16px;
}

.site-footer__legal {
  grid-row: 1;
  grid-column: 3;
  justify-self: end;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 24px;
}

.site-footer__legal a {
  color: #6f6f6f;
  font-size: 0.95rem;
}

.site-footer__legal a:hover {
  text-decoration: none;
  color: #6f6f6f;
}

.site-footer__copyright {
  grid-row: 2;
  grid-column: 2;
  justify-self: center;
  text-align: center;
  margin: 0;
  font-size: 0.9rem;
  color: #9a9a9a;
}

.float-wa {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 200;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.15s;
}

.float-wa:hover {
  transform: scale(1.06);
  color: #fff;
  text-decoration: none;
}

.float-wa svg {
  width: 28px;
  height: 28px;
}

/* Blueprint base: contexto + ações + conteúdo + estados */
.page-shell {
  width: min(1280px, 100% - 2rem);
  margin-inline: auto;
  padding: 32px 0 48px;
  display: grid;
  gap: 32px;
}

.page-header {
  display: grid;
  gap: 12px;
}

.page-header__meta {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.page-header__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.page-header__title {
  margin: 0;
  color: var(--orange);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  line-height: 1.2;
}

.page-header__lead {
  margin: 0;
  color: var(--text-muted);
  max-width: 72ch;
}

.page-actionbar {
  background: var(--bg-card);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.page-actionbar__group {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.chip {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-pill);
  background: #fff;
  color: var(--text-muted);
  padding: 8px 12px;
  font-size: 0.88rem;
  font-weight: 600;
}

.content-stack {
  display: grid;
  gap: 24px;
}

.state-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px dashed rgba(0, 0, 0, 0.12);
  padding: 24px;
}

.state-card p {
  margin: 0;
  color: var(--text-muted);
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.banner-card {
  border-radius: var(--radius-lg);
}

.section-surface {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 24px;
}

.card-panel--hero {
  padding-top: 0;
  overflow: hidden;
}

.media-round--header {
  margin: -2rem -2rem 2rem;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.media-round--header img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.media-round--center-720 {
  max-width: 720px;
  margin-inline: auto;
}

.media-round--center-640 {
  max-width: 640px;
  margin-inline: auto;
}

.content-gap-lg {
  margin-top: 24px;
}

.banner-card__title {
  position: relative;
  margin: 0 auto 1.25rem;
  max-width: 28ch;
  font-size: clamp(1.2rem, 3vw, 1.65rem);
}

.what-we-do {
  padding-top: 4rem;
}

#o-que-fazemos {
  scroll-margin-top: 5.5rem;
}

#primeira-dobra {
  scroll-margin-top: 5.5rem;
}

.what-we-do__title {
  margin: 0 0 0.6rem;
  color: #3f555a;
  font-size: clamp(1.6rem, 2.4vw, 2.15rem);
  font-weight: 400;
  line-height: 1.15;
}

.what-we-do__lead {
  margin: 0;
  max-width: 88ch;
  color: #5f6f73;
  font-size: 1.07rem;
}

.what-we-do__hint {
  margin: 0.75rem 0 0;
  color: var(--orange-dark);
  font-size: 0.88rem;
  font-weight: 600;
}

.what-we-do__grid {
  margin-top: 2.15rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.what-we-do__card {
  background: #fff;
  border: 1px solid #eceeef;
  border-radius: 10px;
  padding: 1rem 0.95rem 0.9rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.what-we-do__card:hover {
  transform: translateY(-4px);
  border-color: #e5e7e8;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.what-we-do__icon {
  color: var(--orange);
  margin-bottom: 0.8rem;
}

.what-we-do__icon svg {
  width: 26px;
  height: 26px;
}

.what-we-do__card h3 {
  margin: 0 0 0.55rem;
  color: #3f555a;
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.25;
}

.what-we-do__card p {
  margin: 0;
  color: #6c7d81;
  font-size: 0.95rem;
  line-height: 1.45;
}

.what-we-do__cta {
  margin-top: 1.2rem;
  display: flex;
  justify-content: center;
}

.what-we-do__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 128px;
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #ffffff;
  background: var(--whatsapp);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.what-we-do__button:hover {
  color: #ffffff;
  text-decoration: none;
  background: var(--whatsapp-dark);
  filter: none;
}

.faq-section__container {
  max-width: 980px;
}

.faq-section__title {
  margin: 0 0 0.6rem;
  color: #3f555a;
  font-size: clamp(1.8rem, 2.8vw, 2.45rem);
  font-weight: 500;
}

.faq-section__lead {
  margin: 0 0 1.6rem;
  color: #5f6f73;
  font-size: 1.03rem;
}

.faq-accordion {
  display: grid;
  gap: 0.65rem;
}

.faq-item {
  border: 1px solid #e9edef;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 0.9rem 1rem;
  color: #3f555a;
  font-size: 0.98rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: ">";
  color: #5f6f73;
  font-size: 1rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(90deg);
}

.faq-item p {
  margin: 0;
  padding: 0 1rem 0.95rem;
  color: #6a7a7f;
  font-size: 0.95rem;
  line-height: 1.52;
  border-top: 1px solid #eef1f3;
}

@media (max-width: 900px) {
  .hero-fold__actions {
    width: 100%;
  }

  .hero-fold__actions .btn {
    width: 100%;
  }

  .page-shell {
    width: min(1280px, 100% - 1.25rem);
    padding: 24px 0 40px;
    gap: 24px;
  }

  .page-header__top {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-actionbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-toggle {
    display: block;
    order: 2;
  }

  .site-nav {
    width: 100%;
    order: 4;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  .site-nav.is-open {
    max-height: 420px;
  }

  .site-nav__list {
    flex-direction: column;
    width: 100%;
    border-radius: var(--radius-md);
    padding: 0.65rem;
    gap: 0.25rem;
  }

  .site-nav__list a {
    min-width: unset;
    width: 100%;
    padding: 0.7rem 1rem;
    font-size: 0.88rem;
    text-align: left;
  }

  .site-footer__top {
    flex-direction: column;
    gap: 20px;
  }

  .site-footer__social-block {
    margin-left: 0;
    text-align: left;
    align-self: flex-start;
  }

  .site-footer__social {
    justify-content: flex-start;
  }

  .what-we-do__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__bottom {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
  }

  .site-footer__legal {
    justify-self: auto;
    gap: 14px;
  }
}

#primeira-dobra {
  scroll-margin-top: 5.5rem;
}

#mentorias,
#estrutura {
  scroll-margin-top: 5.5rem;
}

/* —— Home folds: Mentorias & Estrutura —— */
.home-fold {
  padding-top: 0.5rem;
}

.home-fold--muted {
  background: linear-gradient(180deg, #f7f8f9 0%, #fff 12rem);
}

.home-fold__intro {
  max-width: 720px;
}

.home-fold__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
}

.home-fold__title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

.home-fold__title {
  margin: 0;
  color: #3f555a;
  font-size: clamp(1.6rem, 2.4vw, 2.15rem);
  font-weight: 400;
  line-height: 1.15;
}

.home-fold__lead {
  margin: 0;
  max-width: 62ch;
  color: #5f6f73;
  font-size: 1.07rem;
  line-height: 1.65;
}

.home-fold__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.35rem 0 1.75rem;
}

.home-fold__tag {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid #e4e7ea;
  background: #fff;
  color: #4f6166;
  font-size: 0.82rem;
  font-weight: 600;
}

.program-grid {
  display: grid;
  gap: 1rem;
}

.program-card {
  background: #fff;
  border: 1px solid #eceeef;
  border-radius: 14px;
  padding: 1.25rem 1.2rem 1.15rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.program-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.07);
}

.program-card--highlight {
  border-color: rgba(241, 156, 73, 0.35);
  background: linear-gradient(180deg, #fff 0%, #fffaf5 100%);
}

.program-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.program-card__badge {
  display: inline-flex;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: rgba(241, 156, 73, 0.14);
  color: #b86a1a;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.program-card__badge--b2b {
  background: rgba(63, 85, 90, 0.1);
  color: #3f555a;
}

.program-card__icon {
  color: var(--orange);
  flex-shrink: 0;
}

.program-card__icon svg {
  width: 28px;
  height: 28px;
}

.program-card__title {
  margin: 0 0 0.55rem;
  color: #3f555a;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.25;
}

.program-card__text {
  margin: 0 0 0.85rem;
  color: #6c7d81;
  font-size: 0.96rem;
  line-height: 1.55;
}

.program-card__list {
  margin: 0;
  padding-left: 1.15rem;
  color: #5f7074;
  font-size: 0.92rem;
  line-height: 1.5;
}

.program-card__list li + li {
  margin-top: 0.35rem;
}

.program-card__highlights {
  display: grid;
  gap: 0.65rem;
}

.program-card__highlights div {
  display: grid;
  gap: 0.1rem;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  background: #f4f6f7;
}

.program-card__highlights strong {
  color: #3f555a;
  font-size: 0.88rem;
  font-weight: 600;
}

.program-card__highlights span {
  color: #6c7d81;
  font-size: 0.82rem;
}

.home-fold__cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 1.75rem;
  padding: 1.25rem 1.35rem;
  border-radius: 14px;
  border: 1px solid #e8ebec;
  background: #f7f8f9;
}

.home-fold__cta-panel--consulta {
  background: linear-gradient(135deg, #fff7ef 0%, #fff 55%);
  border-color: rgba(241, 156, 73, 0.25);
}

.home-fold__cta-title {
  margin: 0 0 0.35rem;
  color: #3f555a;
  font-size: 1.05rem;
  font-weight: 600;
}

.home-fold__cta-text {
  margin: 0;
  max-width: 48ch;
  color: #6c7d81;
  font-size: 0.92rem;
  line-height: 1.5;
}

.home-fold__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.clinic-info-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  padding: 1rem 1.15rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #eceeef;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.clinic-info-bar__address {
  font-style: normal;
  color: #4f6166;
  font-size: 0.95rem;
  line-height: 1.55;
}

.clinic-info-bar__maps {
  color: var(--orange);
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
}

.clinic-info-bar__maps:hover {
  text-decoration: underline;
}

.clinic-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.clinic-feature {
  background: #fff;
  border: 1px solid #eceeef;
  border-radius: 12px;
  padding: 1rem;
}

.clinic-feature__icon {
  color: var(--orange);
  margin-bottom: 0.55rem;
}

.clinic-feature__icon svg {
  width: 24px;
  height: 24px;
}

.clinic-feature h3 {
  margin: 0 0 0.35rem;
  color: #3f555a;
  font-size: 0.98rem;
  font-weight: 600;
}

.clinic-feature p {
  margin: 0;
  color: #6c7d81;
  font-size: 0.88rem;
  line-height: 1.45;
}

.clinic-visual {
  margin-bottom: 1.5rem;
  padding: 1rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #eceeef;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
}

.clinic-visual__photo {
  margin: 0;
}

.clinic-visual__photo figcaption {
  margin-top: 0.65rem;
  color: #6c7d81;
  font-size: 0.84rem;
  line-height: 1.45;
  text-align: center;
}

.presentacao-cta .clinic-quote {
  margin-top: 0;
  margin-bottom: 1.25rem;
}

.presentacao-cta .home-fold__cta-panel {
  margin-top: 0;
}

/* —— Founder bio —— */
.founder-bio__eyebrow {
  margin: 0 0 0.45rem;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.founder-bio__name {
  margin: 0 0 0.35rem;
  color: #3f555a;
  font-size: clamp(1.45rem, 2.2vw, 1.85rem);
  font-weight: 700;
  line-height: 1.15;
}

.founder-bio__role {
  margin: 0 0 1rem;
  color: #f28c28;
  font-size: 0.98rem;
  font-weight: 600;
}

.founder-bio__text {
  margin: 0 0 1.15rem;
  color: #6f6f6f;
  font-size: 1.05rem;
  line-height: 1.75;
}

.founder-bio__credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.founder-bio__credentials li {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(232, 155, 75, 0.35);
  background: rgba(232, 155, 75, 0.1);
  color: #5f4a2e;
  font-size: 0.82rem;
  font-weight: 600;
}

/* —— Protocolos personalizados (carrossel) —— */
.protocols-fold__title {
  margin: 0 0 0.85rem;
  color: #3f555a;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 700;
  line-height: 1.2;
}

.protocols-fold__text {
  margin: 0 0 1.15rem;
  color: #6f6f6f;
  font-size: 1.05rem;
  line-height: 1.75;
}

.protocols-fold__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.protocols-fold__list li {
  position: relative;
  padding-left: 1.35rem;
  color: #5a5a5a;
  font-size: 0.98rem;
  line-height: 1.55;
}

.protocols-fold__list li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--orange);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: inherit;
}

.protocols-carousel {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: #f8f4ef;
}

.protocols-carousel__viewport {
  overflow: hidden;
}

.protocols-carousel__track {
  display: flex;
  transition: transform 0.45s ease;
}

.protocols-carousel__slide {
  flex: 0 0 100%;
  margin: 0;
}

.protocols-carousel__slide img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.protocols-carousel__btn {
  display: none;
}

.protocols-carousel__dots {
  position: absolute;
  left: 50%;
  bottom: 0.85rem;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 0.45rem;
}

.protocols-carousel__dot {
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.protocols-carousel__dot.is-active {
  background: var(--orange);
  transform: scale(1.15);
}

.founder-bio__credentials li::before {
  content: "✓";
  margin-right: 0.35rem;
  color: var(--orange-dark);
  font-weight: 700;
}

.clinic-quote {
  margin: 0 0 1.5rem;
  padding: 1.15rem 1.25rem;
  border-left: 4px solid var(--orange);
  border-radius: 0 12px 12px 0;
  background: #fff;
}

.clinic-quote p {
  margin: 0;
  color: #4f6166;
  font-size: 1rem;
  line-height: 1.65;
}

@media (min-width: 768px) {
  .program-grid {
    grid-template-columns: 1.15fr 1fr;
  }

  .program-card--highlight {
    grid-column: 1 / -1;
  }

  .program-card--compact {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0 1.5rem;
    align-items: start;
  }

  .program-card--compact .program-card__head,
  .program-card--compact .program-card__title,
  .program-card--compact .program-card__text {
    grid-column: 1;
  }

  .program-card--compact .program-card__highlights {
    grid-column: 2;
    grid-row: 1 / span 4;
    min-width: 220px;
  }

  .clinic-features {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .home-fold__cta-panel {
    flex-direction: column;
    align-items: stretch;
  }

  .home-fold__cta-panel .btn {
    width: 100%;
    justify-content: center;
  }

  .home-fold__cta-actions {
    width: 100%;
  }

  .home-fold__cta-actions .btn {
    flex: 1;
    justify-content: center;
  }
}

/* —— Scroll reveal —— */
.scroll-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* —— Contact bar —— */
.site-contact-bar {
  background: #fffaf5;
  border-bottom: 1px solid rgba(232, 155, 75, 0.2);
}

.site-contact-bar__inner {
  padding: 0.55rem 0;
}

.site-contact-bar__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #5f7074;
  font-size: 0.84rem;
  line-height: 1.45;
  text-align: center;
}

.site-contact-bar__item {
  margin: 0;
}

.site-contact-bar__text {
  color: #5f7074;
}

.site-contact-bar__link {
  color: #3f555a;
  font-weight: 600;
  text-decoration: none;
}

.site-contact-bar__link:hover {
  color: var(--orange-dark);
}

@media (min-width: 640px) {
  .site-contact-bar__list {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 0;
  }

  .site-contact-bar__item + .site-contact-bar__item::before {
    content: "·";
    margin: 0 0.85rem;
    color: rgba(95, 112, 116, 0.45);
    font-weight: 400;
  }
}

/* —— Clickable service cards —— */
.what-we-do__card--link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.what-we-do__card--link:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
  border-color: rgba(232, 155, 75, 0.45);
  text-decoration: none;
  color: inherit;
}

.what-we-do__card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: auto;
  padding-top: 0.85rem;
  color: var(--orange-dark);
  font-size: 0.88rem;
  font-weight: 600;
}

.what-we-do__card--link:hover .what-we-do__card-cta {
  text-decoration: underline;
}

/* —— How consultation works —— */
.how-consult {
  background: linear-gradient(180deg, #fff 0%, #fffaf5 100%);
}

.how-consult__grid {
  display: grid;
  gap: 1rem;
}

.how-consult__step {
  background: #fff;
  border: 1px solid #eceeef;
  border-radius: 14px;
  padding: 1.15rem 1.2rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.how-consult__step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-bottom: 0.55rem;
  border-radius: 999px;
  background: rgba(232, 155, 75, 0.15);
  color: var(--orange-dark);
  font-size: 0.82rem;
  font-weight: 700;
}

.how-consult__step h3 {
  margin: 0 0 0.4rem;
  color: #3f555a;
  font-size: 1rem;
  font-weight: 600;
}

.how-consult__step p {
  margin: 0;
  color: #6c7d81;
  font-size: 0.92rem;
  line-height: 1.5;
}

.how-consult__tech {
  margin-top: 1.25rem;
  padding: 1.15rem 1.25rem;
  border-radius: 14px;
  border: 1px solid rgba(232, 155, 75, 0.25);
  background: #fff;
}

.how-consult__tech h3 {
  margin: 0 0 0.45rem;
  color: #3f555a;
  font-size: 1.02rem;
  font-weight: 700;
}

.how-consult__tech p {
  margin: 0;
  color: #6c7d81;
  font-size: 0.94rem;
  line-height: 1.55;
}

@media (min-width: 768px) {
  .how-consult__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* —— Biossegurança —— */
.bio-safe__grid {
  display: grid;
  gap: 0.85rem;
}

.bio-safe__item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1rem 1.1rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #eceeef;
}

.bio-safe__icon {
  flex-shrink: 0;
  color: var(--orange);
}

.bio-safe__icon svg {
  width: 24px;
  height: 24px;
}

.bio-safe__item h3 {
  margin: 0 0 0.3rem;
  color: #3f555a;
  font-size: 0.98rem;
  font-weight: 600;
}

.bio-safe__item p {
  margin: 0;
  color: #6c7d81;
  font-size: 0.88rem;
  line-height: 1.45;
}

@media (min-width: 768px) {
  .bio-safe__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* —— Reviews —— */
.reviews-section__lead {
  margin: 0 0 1.25rem;
  color: #6c7d81;
  font-size: 0.96rem;
  line-height: 1.55;
}

.reviews-grid {
  display: grid;
  gap: 1rem;
}

.review-card {
  background: #fff;
  border: 1px solid #eceeef;
  border-radius: 14px;
  padding: 1.15rem 1.2rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.review-card__stars {
  color: #f5a623;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.review-card p {
  margin: 0 0 0.65rem;
  color: #5f7074;
  font-size: 0.92rem;
  line-height: 1.55;
}

.review-card cite {
  color: #8a9498;
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 600;
}

.reviews-section__cta {
  margin-top: 1.25rem;
  text-align: center;
}

@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* —— Footer contact —— */
.site-footer__contact-block {
  text-align: right;
}

.site-footer__contact-block a {
  color: #6f6f6f;
  text-decoration: none;
}

.site-footer__contact-block a:hover {
  color: var(--orange-dark);
}

.site-footer__legal-info {
  padding-top: 0.25rem;
  border-top: 1px solid rgba(217, 122, 40, 0.15);
  text-align: center;
}

.site-footer__legal-info p {
  margin: 0;
  color: #8a9498;
  font-size: 0.82rem;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .site-footer__contact-block {
    text-align: left;
  }
}

/* —— Cookie banner —— */
.cookie-banner[hidden] {
  display: none !important;
}

.cookie-banner {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  max-width: 520px;
  margin-inline: auto;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #e8ebec;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.cookie-banner p {
  margin: 0;
  flex: 1;
  min-width: 200px;
  color: #5f7074;
  font-size: 0.84rem;
  line-height: 1.45;
}

.cookie-banner a {
  color: var(--orange-dark);
  font-weight: 600;
}

.cookie-banner .btn {
  padding: 0.45rem 0.85rem;
  font-size: 0.84rem;
}

body.has-cookie-banner {
  padding-bottom: var(--cookie-banner-offset, 6rem);
}

/* Home — mais respiro entre textos */
.page-home {
  line-height: 1.68;
}

.page-home .hero-fold__content {
  gap: clamp(0.95rem, 1.85vw, 1.45rem);
}

.page-home .hero-fold__lead {
  line-height: 1.68;
}

.page-home .hero-fold__trust {
  gap: 0.75rem;
  margin-top: 0.35rem;
}

.page-home .founder-bio__eyebrow {
  margin-bottom: 0.65rem;
}

.page-home .founder-bio__name {
  margin-bottom: 0.55rem;
}

.page-home .founder-bio__role {
  margin-bottom: 1.25rem;
}

.page-home .founder-bio__text {
  margin-bottom: 1.4rem;
  line-height: 1.8;
}

.page-home .protocols-fold__title {
  margin-bottom: 1rem;
}

.page-home .protocols-fold__text {
  margin-bottom: 1.35rem;
  line-height: 1.8;
}

.page-home .protocols-fold__list {
  gap: 0.85rem;
}

.page-home .protocols-fold__list li {
  line-height: 1.65;
}

.page-home .clinic-quote p {
  line-height: 1.75;
}

.page-home .home-fold__eyebrow {
  margin-bottom: 0.7rem;
}

.page-home .home-fold__title-row {
  margin-bottom: 1rem;
}

.page-home .home-fold__lead {
  line-height: 1.72;
}

.page-home .home-fold__cta-title {
  margin-bottom: 0.55rem;
}

.page-home .home-fold__cta-text {
  line-height: 1.65;
}

.page-home .what-we-do__title {
  margin-bottom: 0.85rem;
}

.page-home .what-we-do__lead {
  line-height: 1.68;
}

.page-home .what-we-do__hint {
  margin-top: 1rem;
}

.page-home .what-we-do__card h3 {
  margin-bottom: 0.75rem;
}

.page-home .what-we-do__card p {
  line-height: 1.55;
}

.page-home .how-consult__step-num {
  margin-bottom: 0.7rem;
}

.page-home .how-consult__step h3 {
  margin-bottom: 0.55rem;
}

.page-home .how-consult__step p {
  line-height: 1.58;
}

.page-home .how-consult__tech h3 {
  margin-bottom: 0.65rem;
}

.page-home .how-consult__tech p {
  line-height: 1.62;
}

.page-home .program-card__title {
  margin-bottom: 0.75rem;
}

.page-home .program-card__text {
  margin-bottom: 1rem;
  line-height: 1.62;
}

.page-home .program-card__list {
  line-height: 1.58;
}

.page-home .program-card__list li + li {
  margin-top: 0.5rem;
}

.page-home .faq-section__title {
  margin-bottom: 0.85rem;
}

.page-home .faq-section__lead {
  margin-bottom: 1.85rem;
  line-height: 1.65;
}

.page-home .faq-accordion {
  gap: 0.85rem;
}

.page-home .faq-item p {
  line-height: 1.6;
  padding-bottom: 1.1rem;
}

.page-home .reviews-section__lead {
  margin-bottom: 1.5rem;
  line-height: 1.62;
}

.page-home .review-card p {
  margin-bottom: 0.85rem;
  line-height: 1.62;
}

.page-home .bio-safe__item h3 {
  margin-bottom: 0.45rem;
}

.page-home .bio-safe__item p {
  line-height: 1.55;
}

.page-home .clinic-feature__icon {
  margin-bottom: 0.7rem;
}

.page-home .clinic-feature h3 {
  margin-bottom: 0.5rem;
}

.page-home .clinic-feature p {
  line-height: 1.55;
}

#estrutura .home-fold__intro {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

#estrutura .home-fold__eyebrow {
  margin-bottom: 0;
}

#estrutura .home-fold__title-row {
  margin-bottom: 0;
}

#estrutura .home-fold__lead {
  line-height: 1.72;
}

#estrutura .clinic-info-bar {
  margin-top: 0.75rem;
  margin-bottom: 2rem;
  padding: 1.3rem 1.4rem;
  gap: 1.35rem;
}

#estrutura .clinic-info-bar__address {
  line-height: 1.75;
}

#estrutura .clinic-features {
  gap: 1.15rem;
  margin-bottom: 2rem;
}

#estrutura .clinic-feature {
  padding: 1.3rem 1.25rem;
}

#estrutura .clinic-feature__icon {
  margin-bottom: 0.85rem;
}

#estrutura .clinic-feature h3 {
  margin-bottom: 0.65rem;
}

#estrutura .clinic-feature p {
  line-height: 1.62;
}

.page-home .site-footer__title {
  margin-bottom: 0.65rem;
}

.page-home .site-footer__text {
  line-height: 1.58;
}
