/*
 * Flauzina Silva — direção editorial clínica
 * Camada final de estilos: reduz a aparência de template, organiza a
 * responsividade e estabelece uma identidade visual autoral e sóbria.
 */

:root {
  --fl-paper: #f3eee5;
  --fl-paper-light: #fbf8f2;
  --fl-white: #fffdf9;
  --fl-ink: #202a26;
  --fl-muted: #626b66;
  --fl-forest: #173e36;
  --fl-forest-dark: #102e29;
  --fl-clay: #915635;
  --fl-line: rgba(32, 42, 38, 0.2);
  --fl-line-light: rgba(255, 253, 249, 0.24);
  --fl-page-gutter: clamp(1rem, 4vw, 2.5rem);
  --fl-content-width: 77.5rem;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 0;
  background: var(--fl-paper-light);
  color: var(--fl-ink);
}

img,
svg,
iframe,
video {
  max-width: 100%;
}

h1,
h2,
h3 {
  color: var(--fl-forest-dark);
  text-wrap: balance;
}

h1,
h2,
h3,
p,
a,
span,
strong {
  overflow-wrap: break-word;
}

::selection {
  background: var(--fl-clay);
  color: var(--fl-white);
}

.site-main,
.site-main > section,
.site-header__inner,
.hero-section__shell,
.hero-section__content,
.home-credentials__panel,
.home-credentials__copy,
.services-carousel,
.office-section__layout,
.contact-panel__layout {
  min-width: 0;
}

/* Elementos interativos: somente a ação principal recebe preenchimento. */
.fl-cta,
.site-header__cta,
.service-card__button,
.terapia-online .terapia-button,
.cta-button,
.assessment-cta a,
.assessment-button,
.office-section__map-link {
  min-height: 3rem;
  border-radius: 0;
  box-shadow: none;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.fl-cta--primary,
.site-header__cta--primary,
.service-card__button,
.terapia-online .terapia-button--primary,
.cta-button,
.assessment-cta a {
  background: var(--fl-forest);
  color: var(--fl-white);
  border-color: var(--fl-forest);
}

.fl-cta--primary:hover,
.fl-cta--primary:focus-visible,
.site-header__cta--primary:hover,
.site-header__cta--primary:focus-visible,
.service-card__button:hover,
.service-card__button:focus-visible,
.terapia-online .terapia-button--primary:hover,
.terapia-online .terapia-button--primary:focus-visible,
.cta-button:hover,
.cta-button:focus-visible {
  background: var(--fl-forest-dark);
  border-color: var(--fl-forest-dark);
  box-shadow: none;
  transform: none;
}

.fl-cta--secondary,
.site-header__cta--secondary,
.terapia-online .terapia-button--ghost {
  background: transparent;
  color: var(--fl-forest-dark);
  border-color: var(--fl-forest-dark);
}

.fl-cta--secondary:hover,
.fl-cta--secondary:focus-visible,
.site-header__cta--secondary:hover,
.site-header__cta--secondary:focus-visible,
.terapia-online .terapia-button--ghost:hover,
.terapia-online .terapia-button--ghost:focus-visible {
  background: var(--fl-forest-dark);
  color: var(--fl-white);
  border-color: var(--fl-forest-dark);
}

/* Cabeçalho */
.site-header {
  background: rgba(251, 248, 242, 0.97);
  border-bottom: 1px solid var(--fl-line);
  box-shadow: none;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.site-header__container,
.site-header--compact .site-header__container {
  width: min(100%, calc(var(--fl-content-width) + (var(--fl-page-gutter) * 2)));
  max-width: none;
  padding: 0.65rem var(--fl-page-gutter);
}

.site-header__inner,
.site-header--compact .site-header__inner {
  grid-template-columns: minmax(17.5rem, auto) 1fr auto;
  grid-template-areas: "top nav actions";
  gap: 1rem 2rem;
}

.site-header__top {
  grid-area: top;
}

.site-header__brand {
  gap: 0.75rem;
}

.site-header__logo {
  width: 2.7rem;
  height: 2.7rem;
  flex: 0 0 auto;
  object-fit: contain;
}

.site-header__title {
  color: var(--fl-forest-dark);
  font-size: clamp(1.18rem, 1.7vw, 1.5rem);
  white-space: nowrap;
}

.site-header__subtitle {
  max-width: 28rem;
  color: var(--fl-muted);
  font-size: 0.72rem;
}

.site-header__nav,
.site-header--compact .site-header__nav {
  grid-area: nav;
  justify-content: center;
  gap: clamp(0.8rem, 1.5vw, 1.5rem);
  overflow: visible;
  padding: 0;
}

.site-header__nav-link,
.site-header--compact .site-header__nav-link {
  position: relative;
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--fl-ink);
  font-size: 0.78rem;
  font-weight: 600;
}

.site-header__nav-link::after {
  content: "";
  position: absolute;
  inset: auto 0 0.35rem;
  height: 1px;
  background: var(--fl-clay);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}

.site-header__nav-link:hover,
.site-header__nav-link:focus-visible {
  background: transparent;
  color: var(--fl-forest-dark);
  outline: none;
}

.site-header__nav-link:hover::after,
.site-header__nav-link:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-header__actions,
.site-header--compact .site-header__actions {
  grid-area: actions;
  gap: 0.55rem;
  flex-wrap: nowrap;
}

.site-header__social {
  gap: 0.15rem;
}

.site-header__social-link {
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.site-header__social-link:hover,
.site-header__social-link:focus-visible {
  background: rgba(173, 116, 79, 0.1);
  outline: none;
}

.site-header__social-icon {
  filter: grayscale(1) saturate(0);
  opacity: 0.68;
}

.site-header__social-link:hover .site-header__social-icon,
.site-header__social-link:focus-visible .site-header__social-icon {
  opacity: 1;
}

.site-header__cta {
  min-height: 2.8rem;
  padding: 0.65rem 1.15rem;
  font-size: 0.8rem;
}

.site-header__commercial-note {
  display: none !important;
}

.site-header__menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-width: 3rem;
  min-height: 3rem;
  padding: 0.5rem 0.65rem;
  border: 1px solid var(--fl-forest-dark);
  border-radius: 0;
  background: transparent;
  color: var(--fl-forest-dark);
  font-size: 0.76rem;
  font-weight: 800;
}

.site-header__menu-toggle:focus-visible {
  outline: 3px solid rgba(173, 116, 79, 0.42);
  outline-offset: 2px;
}

.site-header__menu-icon {
  display: grid;
  gap: 0.22rem;
  width: 1.1rem;
}

.site-header__menu-icon span {
  display: block;
  width: 100%;
  height: 1px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header.is-menu-open .site-header__menu-icon span:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}

.site-header.is-menu-open .site-header__menu-icon span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .site-header__menu-icon span:nth-child(3) {
  transform: translateY(-4px) rotate(-45deg);
}

/* Primeira dobra */
.hero-section--editorial,
.hero-section--compact.hero-section--editorial {
  position: relative;
  padding: clamp(3.25rem, 6vw, 6.5rem) var(--fl-page-gutter) clamp(3.75rem, 7vw, 6.75rem);
  background: var(--fl-paper);
  overflow: hidden;
}

.hero-section--editorial::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32%;
  height: 1px;
  background: var(--fl-clay);
}

.hero-section__shell,
.hero-section__shell--compact {
  width: min(100%, var(--fl-content-width));
  max-width: var(--fl-content-width);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(22rem, 0.82fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}

.hero-section--compact .hero-section__content,
.hero-section__content {
  max-width: 43rem;
  gap: clamp(1rem, 1.7vw, 1.35rem);
}

.hero-section__eyebrow,
.home-credentials__eyebrow,
.doctoralia-reviews__eyebrow,
.contact-panel__eyebrow,
.final-cta__eyebrow {
  width: auto;
  max-width: 100%;
  justify-self: start;
  padding: 0 0 0 0.75rem;
  border-left: 2px solid var(--fl-clay);
  border-radius: 0;
  background: transparent;
  color: var(--fl-forest);
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: normal;
}

.hero-section--compact .hero-section__headline,
.hero-section__headline {
  max-width: none;
  margin: 0;
  color: var(--fl-forest-dark);
  font-size: clamp(3.2rem, 5.6vw, 5.15rem);
  font-weight: 500;
  line-height: 0.93;
  letter-spacing: -0.045em;
}

.hero-section--compact .hero-section__lead,
.hero-section__lead {
  max-width: 40rem;
  color: rgba(32, 42, 38, 0.86);
  font-size: clamp(1.02rem, 1.45vw, 1.18rem);
  line-height: 1.7;
}

.hero-section__badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid var(--fl-line);
  border-bottom: 1px solid var(--fl-line);
}

.hero-section--compact .hero-section__badge,
.hero-section__badge {
  min-height: 2.85rem;
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1rem 0.55rem 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--fl-muted);
  font-size: 0.75rem;
  font-weight: 700;
}

.hero-section__badge + .hero-section__badge {
  padding-left: 1rem;
  border-left: 1px solid var(--fl-line);
}

.hero-section__actions {
  align-items: center;
  gap: 1rem;
  margin: 0;
}

.hero-section__actions .fl-cta--primary {
  padding-inline: 1.5rem;
}

.hero-section__actions .fl-cta--secondary {
  min-height: auto;
  padding: 0.55rem 0;
  border-width: 0 0 1px;
  background: transparent;
  color: var(--fl-forest-dark);
}

.hero-section__actions .fl-cta--secondary::after {
  content: "↗";
  margin-left: 0.15rem;
}

.hero-section__actions .fl-cta--secondary:hover,
.hero-section__actions .fl-cta--secondary:focus-visible {
  background: transparent;
  color: var(--fl-clay);
  border-color: var(--fl-clay);
}

.fl-commercial-note,
.hero-section__commercial-note,
body .hero-section .fl-commercial-note.hero-section__commercial-note,
body .hero-section .commercial-note.hero-section__commercial-note {
  max-width: 32rem;
  margin: 0;
  padding: 0 0 0 0.85rem;
  border: 0;
  border-left: 1px solid var(--fl-line);
  border-radius: 0;
  background: transparent !important;
  color: var(--fl-muted);
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.55;
}

.hero-section__media {
  position: relative;
  isolation: isolate;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.hero-section__media::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -1.15rem -1.15rem 1.15rem 1.15rem;
  background: var(--fl-clay);
  opacity: 0.28;
}

.hero-section__media-frame {
  border-radius: 0;
  overflow: hidden;
  background: #d8ddd8;
}

.hero-section__image {
  display: block;
  width: 100%;
  height: clamp(31rem, 50vw, 39rem);
  max-height: 39rem;
  object-fit: cover;
  object-position: 50% 36%;
  filter: saturate(0.92) contrast(1.01);
}

.hero-section__media-note {
  position: absolute;
  inset: auto -1px -1px auto;
  width: min(88%, 24rem);
  display: grid;
  gap: 0.12rem;
  max-width: none;
  padding: 1rem 1.15rem;
  border-radius: 0;
  background: var(--fl-forest-dark);
  color: var(--fl-white);
  box-shadow: none;
}

.hero-section__media-note strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.05;
}

.hero-section__media-note span {
  color: rgba(255, 253, 249, 0.75);
  font-size: 0.72rem;
}

/* Ritmo geral da home */
.home-main--compact .section-spacing {
  padding-block: clamp(4rem, 7vw, 7rem);
}

.home-credentials,
.services-section,
.doctoralia-reviews,
.office-section,
.seo-faq-section,
.latest-posts,
.contact-section {
  padding-inline: var(--fl-page-gutter);
}

.home-credentials__container,
.services-section__container,
.doctoralia-reviews__container,
.office-section__container,
.latest-posts__container,
.contact-section__container {
  width: min(100%, var(--fl-content-width));
  max-width: var(--fl-content-width);
  margin-inline: auto;
  padding-inline: 0;
}

/* Apresentação profissional */
.home-credentials {
  background: var(--fl-white);
}

.home-credentials__panel,
.home-credentials__panel--text-only {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding: 0;
  border: 0;
  border-top: 1px solid var(--fl-line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home-credentials__copy {
  padding-top: clamp(2rem, 4vw, 3.5rem);
  gap: 1.2rem;
}

.home-credentials--compact .home-credentials__title,
.home-credentials__title {
  max-width: 17ch;
  margin: 0;
  color: var(--fl-forest-dark);
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  font-weight: 500;
  line-height: 0.96;
}

.home-credentials--compact .home-credentials__description,
.home-credentials__description {
  max-width: 48rem;
  color: var(--fl-muted);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.75;
}

.home-credentials--compact .home-credentials__grid,
.home-credentials__grid {
  counter-reset: credential;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(1.25rem, 3vw, 2.25rem);
  border-top: 1px solid var(--fl-line);
  border-bottom: 1px solid var(--fl-line);
}

.home-credentials__card {
  counter-increment: credential;
  position: relative;
  min-height: 11.5rem;
  padding: 1.6rem clamp(1rem, 2.5vw, 2rem);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home-credentials__card + .home-credentials__card {
  border-left: 1px solid var(--fl-line);
}

.home-credentials__card::before {
  content: "0" counter(credential);
  display: block;
  margin-bottom: 1.65rem;
  color: var(--fl-clay);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.home-credentials__card h3,
.home-credentials--compact .home-credentials__card h3 {
  margin: 0 0 0.55rem;
  color: var(--fl-forest-dark);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.05;
}

.home-credentials__card p {
  color: var(--fl-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* Temas atendidos como índice editorial */
.services-section {
  background: var(--fl-paper);
}

.services-carousel,
.services-carousel--compact {
  gap: clamp(2.5rem, 5vw, 4rem);
}

.services-carousel__header {
  max-width: 52rem;
  margin: 0;
  text-align: left;
  gap: 1rem;
}

.services-section--compact .services-carousel__title,
.services-carousel__title {
  max-width: 15ch;
  color: var(--fl-forest-dark);
  font-size: clamp(2.6rem, 5vw, 4.35rem);
  font-weight: 500;
  line-height: 0.96;
}

.services-section--compact .services-carousel__subtitle,
.services-carousel__subtitle {
  max-width: 48rem;
  color: var(--fl-muted);
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  line-height: 1.75;
}

.services-carousel__grid {
  counter-reset: service;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-bottom: 1px solid var(--fl-line);
}

.service-card,
.service-card--compact {
  counter-increment: service;
  min-height: 0;
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr) minmax(9rem, auto);
  grid-template-rows: auto auto;
  gap: 0.35rem clamp(1rem, 3vw, 2.5rem);
  align-items: center;
  padding: 1.55rem 0;
  border: 0;
  border-top: 1px solid var(--fl-line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition: background-color 0.2s ease, padding 0.2s ease;
}

.service-card::before {
  content: "0" counter(service);
  grid-column: 1;
  grid-row: 1 / 3;
  align-self: start;
  padding-top: 0.25rem;
  color: var(--fl-clay);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.service-card:hover {
  padding-inline: 0.75rem;
  background: rgba(255, 253, 249, 0.48);
}

.service-card__eyebrow {
  display: none;
}

.service-card__title,
.service-card--compact .service-card__title {
  grid-column: 2;
  margin: 0;
  color: var(--fl-forest-dark);
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  font-weight: 600;
  line-height: 1.05;
}

.service-card__summary {
  grid-column: 2;
  margin: 0;
  max-width: 42rem;
  color: var(--fl-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.service-card__meta {
  display: none;
}

.service-card__button,
.service-card--compact .service-card__button {
  grid-column: 3;
  grid-row: 1 / 3;
  align-self: center;
  justify-self: end;
  min-height: auto;
  margin: 0;
  padding: 0.5rem 0;
  border: 0;
  border-bottom: 1px solid var(--fl-forest-dark);
  background: transparent;
  color: var(--fl-forest-dark);
  font-size: 0.82rem;
  box-shadow: none;
}

.service-card__button::after {
  content: "→";
  margin-left: 0.5rem;
}

.service-card__button:hover,
.service-card__button:focus-visible {
  background: transparent;
  color: var(--fl-clay);
  border-color: var(--fl-clay);
}

.services-carousel__actions {
  justify-content: flex-start;
}

.services-carousel__actions .fl-cta--secondary {
  min-height: auto;
  padding: 0.55rem 0;
  border-width: 0 0 1px;
}

/* Prova social */
.doctoralia-reviews,
.doctoralia-reviews--compact {
  background: var(--fl-forest-dark);
  color: var(--fl-white);
}

.doctoralia-reviews--compact .doctoralia-reviews__container,
.doctoralia-reviews__container {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(24rem, 0.95fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}

.doctoralia-reviews__header,
.doctoralia-reviews--compact .doctoralia-reviews__header {
  max-width: 42rem;
  text-align: left;
  gap: 1.15rem;
}

.doctoralia-reviews__eyebrow,
.doctoralia-reviews--compact .doctoralia-reviews__eyebrow {
  justify-self: start;
  color: #d7ad8d;
  border-color: #d7ad8d;
}

.doctoralia-reviews__title,
.doctoralia-reviews--compact .doctoralia-reviews__title {
  max-width: 14ch;
  color: var(--fl-white);
  font-size: clamp(2.7rem, 5vw, 4.5rem);
  font-weight: 500;
  line-height: 0.95;
}

.doctoralia-reviews__description,
.doctoralia-reviews--compact .doctoralia-reviews__description {
  max-width: 39rem;
  color: rgba(255, 253, 249, 0.72);
  font-size: 1rem;
  line-height: 1.75;
}

.doctoralia-reviews__snapshot,
.doctoralia-reviews--compact .doctoralia-reviews__snapshot {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-bottom: 1px solid var(--fl-line-light);
}

.doctoralia-reviews__snapshot-card {
  padding: 1.5rem 0;
  border: 0;
  border-top: 1px solid var(--fl-line-light);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.doctoralia-reviews__snapshot-card strong {
  margin-bottom: 0.6rem;
  color: var(--fl-white);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.05;
}

.doctoralia-reviews__snapshot-card p {
  color: rgba(255, 253, 249, 0.68);
  line-height: 1.65;
}

.doctoralia-reviews__actions {
  grid-column: 2;
  justify-content: flex-start;
  margin-top: -1.5rem;
}

.doctoralia-reviews__actions .fl-cta {
  min-height: auto;
  padding: 0.65rem 0;
  border-width: 0 0 1px;
  border-color: var(--fl-white);
  color: var(--fl-white);
}

.doctoralia-reviews__actions .fl-cta::after {
  content: "↗";
}

.doctoralia-reviews__actions .fl-cta:hover,
.doctoralia-reviews__actions .fl-cta:focus-visible {
  background: transparent;
  color: #d7ad8d;
  border-color: #d7ad8d;
}

/* Consultório */
.office-section,
.office-section--compact {
  padding-block: clamp(4rem, 7vw, 7rem);
  background: var(--fl-white);
}

.office-section__background {
  display: none;
}

.office-section__layout,
.office-section__layout--compact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(24rem, 1.1fr);
  gap: 0;
  align-items: stretch;
  padding: 0;
  border: 1px solid var(--fl-line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.office-section__intro {
  padding: clamp(2rem, 5vw, 4.5rem);
}

.office-section__badge {
  width: fit-content;
  padding: 0 0 0 0.75rem;
  border: 0;
  border-left: 2px solid var(--fl-clay);
  border-radius: 0;
  background: transparent;
  color: var(--fl-forest);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.office-section__title,
.office-section--compact .office-section__title {
  max-width: 12ch;
  color: var(--fl-forest-dark);
  font-size: clamp(2.6rem, 4.6vw, 4rem);
  font-weight: 500;
  line-height: 0.96;
}

.office-section__subtitle,
.office-section--compact .office-section__subtitle {
  max-width: 34rem;
  color: var(--fl-muted);
  line-height: 1.75;
}

.office-section__details {
  margin-top: 1.5rem;
  border-top: 1px solid var(--fl-line);
}

.office-section__detail {
  padding: 1.25rem 0;
  border: 0;
  border-bottom: 1px solid var(--fl-line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.office-section__detail-icon {
  border-radius: 0;
  background: transparent;
  color: var(--fl-clay);
}

.office-section__compact-actions {
  margin-top: 1.5rem;
}

.office-section__compact-media {
  min-height: 100%;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 0;
  margin: 0;
  padding: 0;
  border: 0;
  border-left: 1px solid var(--fl-line);
  border-radius: 0;
  background: var(--fl-paper);
  overflow: hidden;
}

.office-section__compact-image {
  width: 100%;
  height: 100%;
  min-height: 34rem;
  border-radius: 0;
  object-fit: cover;
}

.office-section__compact-caption {
  padding: 1.2rem 1.4rem;
  border-top: 1px solid var(--fl-line);
  color: var(--fl-muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

/* Perguntas */
.seo-faq-section,
.seo-faq-section--compact {
  background: var(--fl-paper-light);
}

.seo-faq,
.seo-faq--compact {
  max-width: 58rem;
  margin-inline: auto;
  gap: 1.2rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.seo-faq__title,
.seo-faq--compact .seo-faq__title {
  max-width: 13ch;
  margin: 0;
  color: var(--fl-forest-dark);
  font-size: clamp(2.6rem, 5vw, 4.25rem);
  font-weight: 500;
  line-height: 0.96;
  text-align: left;
}

.seo-faq__description,
.seo-faq--compact .seo-faq__description {
  max-width: 44rem;
  margin: 0 0 clamp(1.5rem, 3vw, 2.5rem);
  color: var(--fl-muted);
  line-height: 1.7;
  text-align: left;
}

.faq-card {
  margin: 0;
  border: 0;
  border-top: 1px solid var(--fl-line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.faq-card:last-child {
  border-bottom: 1px solid var(--fl-line);
}

.faq-card summary {
  position: relative;
  padding: 1.35rem 3rem 1.35rem 0;
  color: var(--fl-forest-dark);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 600;
  line-height: 1.2;
}

.faq-card summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  color: var(--fl-clay);
  font-family: "Manrope", sans-serif;
  font-size: 1.35rem;
  font-weight: 400;
  transform: translateY(-50%);
}

.faq-card[open] summary::after {
  content: "−";
}

.faq-card p {
  max-width: 46rem;
  padding: 0 3rem 1.4rem 0;
  color: var(--fl-muted);
  line-height: 1.7;
}

/* Artigos */
.latest-posts,
.latest-posts--compact {
  background: var(--fl-paper);
}

.latest-posts__panel,
.latest-posts--compact .latest-posts__panel {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(26rem, 1.22fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.latest-posts__header {
  align-self: start;
}

.latest-posts__title,
.latest-posts--compact .latest-posts__title {
  max-width: 12ch;
  color: var(--fl-forest-dark);
  font-size: clamp(2.6rem, 4.8vw, 4.1rem);
  font-weight: 500;
  line-height: 0.96;
}

.latest-posts__description,
.latest-posts--compact .latest-posts__description {
  color: var(--fl-muted);
  line-height: 1.75;
}

.latest-posts__grid,
.latest-posts--compact .latest-posts__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-bottom: 1px solid var(--fl-line);
}

.latest-post-card {
  padding: 1.6rem 0;
  border: 0;
  border-top: 1px solid var(--fl-line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.latest-post-card__eyebrow {
  color: var(--fl-clay);
}

.latest-post-card__title,
.latest-posts--compact .latest-post-card__title {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 600;
  line-height: 1.1;
}

.latest-post-card__title a:hover,
.latest-post-card__title a:focus-visible {
  color: var(--fl-clay);
  text-decoration: none;
}

.latest-posts__actions {
  grid-column: 2;
  justify-content: flex-start;
}

.latest-posts__actions .fl-cta {
  min-height: auto;
  padding: 0.55rem 0;
  border-width: 0 0 1px;
}

/* Contato */
.contact-section,
.contact-section--compact {
  background: var(--fl-white);
}

.contact-panel,
.contact-panel--compact {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}

.contact-panel__layout,
.contact-panel--compact .contact-panel__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(25rem, 1.1fr);
  gap: 0;
  align-items: stretch;
  padding: 0;
  border: 1px solid var(--fl-line);
}

.contact-panel__intro {
  padding: clamp(2rem, 5vw, 4.5rem);
  background: var(--fl-forest-dark);
}

.contact-panel__eyebrow {
  color: #d7ad8d;
  border-color: #d7ad8d;
}

.contact-panel__title,
.contact-panel--compact .contact-panel__title {
  max-width: 13ch;
  color: var(--fl-white);
  font-size: clamp(2.6rem, 4.8vw, 4.15rem);
  font-weight: 500;
  line-height: 0.96;
}

.contact-panel__description,
.contact-panel--compact .contact-panel__description {
  color: rgba(255, 253, 249, 0.72);
  line-height: 1.75;
}

.contact-panel__channel-actions .fl-cta--primary {
  background: var(--fl-white);
  color: var(--fl-forest-dark);
  border-color: var(--fl-white);
}

.contact-panel__channel-actions .fl-cta--secondary {
  color: var(--fl-white);
  border-color: var(--fl-white);
}

.contact-panel__commercial-note {
  color: rgba(255, 253, 249, 0.64);
  border-color: var(--fl-line-light);
}

.contact-panel__form-card {
  padding: clamp(2rem, 5vw, 4.5rem);
  border-radius: 0;
  background: var(--fl-paper);
  box-shadow: none;
}

.contact-feedback {
  text-align: left;
}

.contact-form {
  gap: 1.5rem;
}

.contact-form__label {
  color: var(--fl-forest-dark);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form__input {
  min-height: 3.2rem;
  padding: 0.75rem 0;
  border: 0;
  border-bottom: 1px solid var(--fl-line);
  border-radius: 0;
  background: transparent;
  color: var(--fl-ink);
  font-size: 1rem;
}

.contact-form__input:focus,
.contact-form__input:focus-visible {
  border-color: var(--fl-forest);
  outline: none;
  box-shadow: 0 1px 0 var(--fl-forest);
}

textarea.contact-form__input {
  min-height: 8rem;
}

.contact-form__actions {
  justify-content: flex-start;
}

.contact-form__hint {
  color: var(--fl-muted);
  font-size: 0.8rem;
}

/* Rodapé e WhatsApp */
.site-footer {
  padding-block: clamp(3rem, 6vw, 5rem);
  background: #142520;
  border-top: 1px solid rgba(255, 253, 249, 0.12);
}

.site-footer__container {
  width: min(100%, calc(var(--fl-content-width) + (var(--fl-page-gutter) * 2)));
  max-width: none;
  padding-inline: var(--fl-page-gutter);
}

.site-footer__grid {
  gap: clamp(3rem, 7vw, 7rem);
}

.site-footer__meta,
.site-footer__nav,
.site-footer__profiles {
  color: rgba(255, 253, 249, 0.66);
}

.site-footer__heading {
  color: var(--fl-white);
  font-size: 1.5rem;
}

.site-footer__link {
  color: rgba(255, 253, 249, 0.78);
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.25em;
}

.site-footer__link:hover,
.site-footer__link:focus-visible {
  color: var(--fl-white);
  text-decoration-color: var(--fl-clay);
}

.site-footer__profiles-intro {
  max-width: 31rem;
  margin: -0.25rem 0 1rem;
  color: rgba(255, 253, 249, 0.66);
  font-size: 0.88rem;
  line-height: 1.65;
}

.site-footer__profile-list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  border-bottom: 1px solid rgba(255, 253, 249, 0.14);
}

.site-footer__profile-link {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  min-height: 3.25rem;
  padding: 0.7rem 0;
  color: rgba(255, 253, 249, 0.82);
  border-top: 1px solid rgba(255, 253, 249, 0.14);
  text-decoration: none;
  transition: color 160ms ease, border-color 160ms ease;
}

.site-footer__profile-name,
.site-footer__profile-description {
  display: block;
}

.site-footer__profile-name {
  color: inherit;
  font-size: 0.92rem;
  font-weight: 700;
}

.site-footer__profile-description {
  margin-top: 0.1rem;
  color: rgba(255, 253, 249, 0.56);
  font-size: 0.76rem;
  line-height: 1.45;
}

.site-footer__profile-arrow {
  color: var(--fl-clay);
  font-size: 1rem;
  transition: transform 160ms ease;
}

.site-footer__profile-link:hover,
.site-footer__profile-link:focus-visible {
  color: var(--fl-white);
  border-color: rgba(214, 153, 113, 0.55);
  outline: none;
}

.site-footer__profile-link:hover .site-footer__profile-arrow,
.site-footer__profile-link:focus-visible .site-footer__profile-arrow {
  transform: translate(0.12rem, -0.12rem);
}

/* Canais oficiais: marcas reconhecíveis, nomes visíveis e alvos amplos. */
.contact-channels {
  padding: clamp(3.75rem, 6vw, 5.5rem) var(--fl-page-gutter);
  border-top: 1px solid var(--fl-line);
  border-bottom: 1px solid var(--fl-line);
  background: var(--fl-paper);
}

.contact-channels__container {
  width: min(100%, var(--fl-content-width));
  margin-inline: auto;
}

.contact-channels__header {
  display: grid;
  gap: 0.7rem;
  max-width: 45rem;
  margin-bottom: clamp(2rem, 4vw, 3.25rem);
}

.contact-channels__eyebrow {
  color: var(--fl-clay);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-channels__title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.94;
}

.contact-channels__intro {
  max-width: 39rem;
  margin: 0;
  color: var(--fl-muted);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: 1.65;
}

.contact-channels__list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  margin: 0;
  border-bottom: 1px solid var(--fl-line);
}

.contact-channels__link {
  display: grid;
  grid-template-columns: 3.25rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  min-height: 5.5rem;
  padding: 1rem 0;
  border-top: 1px solid var(--fl-line);
  color: var(--fl-forest-dark);
  text-decoration: none;
  transition: color 160ms ease, padding 160ms ease;
}

.contact-channels__icon {
  display: grid;
  width: 3.25rem;
  height: 3.25rem;
  place-items: center;
  color: var(--fl-forest);
}

.contact-channels__icon svg,
.contact-channels__brand-image {
  display: block;
  width: 2.45rem;
  height: 2.45rem;
  object-fit: contain;
}

.contact-channels__link--whatsapp .contact-channels__icon {
  color: #128c4b;
}

.contact-channels__link--doctoralia .contact-channels__icon {
  color: #00a98f;
}

.contact-channels__copy,
.contact-channels__copy strong,
.contact-channels__copy span {
  display: block;
}

.contact-channels__copy strong {
  color: inherit;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
}

.contact-channels__copy span {
  margin-top: 0.2rem;
  color: var(--fl-muted);
  font-size: 0.8rem;
  line-height: 1.4;
}

.contact-channels__arrow {
  color: var(--fl-clay);
  font-size: 1.1rem;
  transition: transform 160ms ease;
}

.contact-channels__link:hover,
.contact-channels__link:focus-visible {
  padding-left: 0.4rem;
  color: var(--fl-clay);
  outline: none;
}

.contact-channels__link:focus-visible {
  box-shadow: inset 3px 0 0 var(--fl-clay);
}

.contact-channels__link:hover .contact-channels__arrow,
.contact-channels__link:focus-visible .contact-channels__arrow {
  transform: translate(0.15rem, -0.15rem);
}

@media (min-width: 768px) and (max-width: 1023px) {
  .contact-channels__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-bottom: 0;
  }

  .contact-channels__link {
    padding-inline: 1rem;
    border-bottom: 1px solid var(--fl-line);
  }

  .contact-channels__link:nth-child(odd) {
    border-right: 1px solid var(--fl-line);
  }

  .contact-channels__link:last-child {
    grid-column: 1 / -1;
    border-right: 0;
  }

  .site-footer__profiles {
    grid-column: 1 / -1;
  }

  .site-footer__profile-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 2rem;
    border-bottom: 0;
  }

  .site-footer__profile-list li:nth-last-child(-n + 2) .site-footer__profile-link {
    border-bottom: 1px solid rgba(255, 253, 249, 0.14);
  }
}

@media (min-width: 1024px) {
  .contact-channels__list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    border-bottom: 0;
  }

  .contact-channels__link {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: 3.75rem auto;
    align-content: start;
    min-height: 11rem;
    padding: 1.35rem 1.15rem;
    border-right: 1px solid var(--fl-line);
    border-bottom: 1px solid var(--fl-line);
  }

  .contact-channels__link:first-child {
    padding-left: 0;
  }

  .contact-channels__link:last-child {
    padding-right: 0;
    border-right: 0;
  }

  .contact-channels__icon {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }

  .contact-channels__copy {
    grid-column: 1 / -1;
    grid-row: 2;
    align-self: end;
  }

  .contact-channels__arrow {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .contact-channels__link:hover,
  .contact-channels__link:focus-visible {
    padding-left: 1.45rem;
  }

  .contact-channels__link:first-child:hover,
  .contact-channels__link:first-child:focus-visible {
    padding-left: 0.35rem;
  }

  .site-footer__grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(15rem, 0.9fr);
  }
}

.floating-whatsapp-button {
  background: var(--fl-forest);
  color: var(--fl-white);
  box-shadow: none;
}

.mobile-whatsapp-bar,
.mobile-whatsapp-bar--compact {
  background: rgba(20, 37, 32, 0.97);
  border-top: 1px solid rgba(255, 253, 249, 0.16);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.mobile-whatsapp-bar__link,
.mobile-whatsapp-bar--compact .mobile-whatsapp-bar__link {
  border-radius: 0;
  background: #2d725f;
}

/* Páginas internas: mesma linguagem, sem apagar sua hierarquia. */
.terapia-hero,
.terapia-section__container,
.seo-overview,
.seo-faq,
.latest-posts__panel,
.contact-panel,
.final-cta__panel,
.assessment-form-wrap,
.assessment-cta,
.assessment-result__inner,
.assessment-card,
.assessment-copy-card,
.assessment-editorial,
.doctoralia-reviews__widget-shell,
.office-section__map,
.office-section__layout {
  border-radius: 0;
  box-shadow: none;
}

.terapia-hero,
.terapia-section__container,
.seo-overview,
.assessment-form-wrap,
.assessment-cta,
.assessment-result__inner {
  background: var(--fl-paper-light);
  border-color: var(--fl-line);
}

.terapia-card,
.conversion-card,
.cluster-links__item,
.assessment-card,
.assessment-copy-card,
.assessment-editorial,
.latest-post-card,
.doctoralia-reviews__snapshot-card,
.dp-review,
.dp-rounded-lg {
  border-radius: 0 !important;
  box-shadow: none !important;
}

.cluster-links__item:hover,
.cluster-links__item:focus-visible {
  border-color: var(--fl-clay);
  box-shadow: none;
  transform: none;
}

.conversion-answer {
  border-radius: 0;
  background: #edf3ef;
  box-shadow: none;
}

.terapia-hero__eyebrow,
.terapia-section__eyebrow,
.terapia-section__eyebrow--accent {
  width: fit-content;
  padding: 0 0 0 0.75rem;
  border: 0;
  border-left: 2px solid var(--fl-clay);
  border-radius: 0;
  background: transparent;
  color: var(--fl-forest);
}

.terapia-hero__visual,
.terapia-hero__visual--photo,
.terapia-steps__list li,
.doctoralia-reviews__widget,
.doctoralia-reviews__widget .dp-rating,
.doctoralia-reviews__widget .dp-navigation {
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* Navegação compacta em tablet e celular */
@media (max-width: 1099px) {
  .site-header__container {
    position: relative;
  }

  .site-header__inner,
  .site-header--compact .site-header__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas: "top actions";
    gap: 1rem;
  }

  .site-header__top {
    min-width: 0;
  }

  .site-header__menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .site-header__social {
    display: none;
  }

  .site-header__nav,
  .site-header--compact .site-header__nav {
    position: absolute;
    inset: calc(100% + 1px) var(--fl-page-gutter) auto;
    display: grid;
    gap: 0;
    padding: 0;
    border: 1px solid var(--fl-line);
    border-radius: 0;
    background: var(--fl-paper-light);
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-0.45rem);
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  }

  .site-header.is-menu-open .site-header__nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-header__nav-link,
  .site-header--compact .site-header__nav-link {
    width: 100%;
    min-height: 3.15rem;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--fl-line);
    font-size: 0.86rem;
  }

  .site-header__nav-link:last-child {
    border-bottom: 0;
  }

  .site-header__nav-link::after {
    display: none;
  }

  .site-header__nav-link:hover,
  .site-header__nav-link:focus-visible {
    background: var(--fl-paper);
  }

  .hero-section__shell,
  .hero-section__shell--compact {
    grid-template-columns: minmax(0, 1.05fr) minmax(19rem, 0.75fr);
    gap: clamp(2rem, 4vw, 3.5rem);
  }

  .hero-section--compact .hero-section__headline,
  .hero-section__headline {
    font-size: clamp(2.9rem, 5.8vw, 4.2rem);
  }

  .hero-section__image {
    height: clamp(27rem, 55vw, 34rem);
  }
}

@media (max-width: 899px) {
  .hero-section__shell,
  .hero-section__shell--compact,
  .doctoralia-reviews__container,
  .doctoralia-reviews--compact .doctoralia-reviews__container,
  .office-section__layout,
  .office-section__layout--compact,
  .latest-posts__panel,
  .latest-posts--compact .latest-posts__panel,
  .contact-panel__layout,
  .contact-panel--compact .contact-panel__layout {
    grid-template-columns: 1fr;
  }

  .hero-section--compact .hero-section__content {
    max-width: 45rem;
  }

  .hero-section__media {
    width: min(100%, 45rem);
  }

  .hero-section__image {
    height: clamp(27rem, 72vw, 35rem);
  }

  .doctoralia-reviews__actions,
  .latest-posts__actions {
    grid-column: 1;
    margin-top: 0;
  }

  .office-section__compact-media {
    border-top: 1px solid var(--fl-line);
    border-left: 0;
  }

  .office-section__compact-image {
    min-height: 28rem;
  }
}

@media (max-width: 767px) {
  :root {
    --fl-page-gutter: 1rem;
  }

  .site-header__container {
    padding-block: 0.48rem;
  }

  .site-header__inner,
  .site-header--compact .site-header__inner {
    grid-template-columns: 1fr;
    grid-template-areas: "top";
  }

  .site-header__top {
    width: 100%;
  }

  .site-header__actions {
    display: none;
  }

  .site-header__logo {
    width: 2.35rem;
    height: 2.35rem;
  }

  .site-header__brand {
    gap: 0.6rem;
  }

  .site-header__title {
    font-size: clamp(1.05rem, 5vw, 1.25rem);
  }

  .site-header__menu-toggle {
    min-width: 2.85rem;
    min-height: 2.85rem;
  }

  .site-header__menu-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .site-header__nav,
  .site-header--compact .site-header__nav {
    inset-inline: 0;
  }

  .hero-section--editorial,
  .hero-section--compact.hero-section--editorial {
    padding: 2.3rem var(--fl-page-gutter) 3.5rem;
  }

  .hero-section__shell,
  .hero-section__shell--compact {
    gap: 2.6rem;
  }

  .hero-section--compact .hero-section__content,
  .hero-section__content {
    gap: 1rem;
  }

  .hero-section__eyebrow {
    font-size: 0.65rem;
  }

  .hero-section--compact .hero-section__headline,
  .hero-section__headline {
    font-size: clamp(2.55rem, 12vw, 3.35rem);
    line-height: 0.96;
  }

  .hero-section--compact .hero-section__lead,
  .hero-section__lead {
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .hero-section__badge-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-section--compact .hero-section__badge,
  .hero-section__badge {
    min-height: 2.6rem;
    padding: 0.5rem 0;
  }

  .hero-section__badge + .hero-section__badge {
    padding-left: 0;
    border-top: 1px solid var(--fl-line);
    border-left: 0;
  }

  .hero-section__actions {
    align-items: stretch;
    gap: 0.85rem;
  }

  .hero-section__actions .fl-cta--primary {
    width: 100%;
  }

  .hero-section__actions .fl-cta--secondary {
    align-self: flex-start;
    width: auto;
  }

  .hero-section__media::before {
    inset: -0.6rem -0.6rem 0.6rem 0.6rem;
  }

  .hero-section__image {
    height: clamp(28rem, 125vw, 32rem);
    object-position: 50% 36%;
  }

  .hero-section__media-note {
    width: calc(100% - 1rem);
    padding: 0.85rem 0.95rem;
  }

  .home-main--compact .section-spacing,
  .home-credentials,
  .services-section,
  .doctoralia-reviews,
  .office-section,
  .seo-faq-section,
  .latest-posts,
  .contact-section {
    padding-block: 4rem;
  }

  .home-credentials--compact .home-credentials__title,
  .services-section--compact .services-carousel__title,
  .doctoralia-reviews--compact .doctoralia-reviews__title,
  .office-section--compact .office-section__title,
  .seo-faq--compact .seo-faq__title,
  .latest-posts--compact .latest-posts__title,
  .contact-panel--compact .contact-panel__title {
    font-size: clamp(2.35rem, 11vw, 3.1rem);
    line-height: 0.98;
  }

  .home-credentials--compact .home-credentials__grid,
  .home-credentials__grid {
    grid-template-columns: 1fr;
  }

  .home-credentials__card {
    min-height: 0;
    padding: 1.4rem 0;
  }

  .home-credentials__card + .home-credentials__card {
    border-top: 1px solid var(--fl-line);
    border-left: 0;
  }

  .home-credentials__card::before {
    margin-bottom: 1rem;
  }

  .service-card,
  .service-card--compact {
    grid-template-columns: 2.5rem minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    gap: 0.45rem 0.75rem;
    padding: 1.35rem 0;
  }

  .service-card:hover {
    padding-inline: 0;
    background: transparent;
  }

  .service-card::before {
    grid-column: 1;
    grid-row: 1 / 4;
  }

  .service-card__title,
  .service-card__summary,
  .service-card__button,
  .service-card--compact .service-card__button {
    grid-column: 2;
  }

  .service-card__button,
  .service-card--compact .service-card__button {
    grid-row: 3;
    justify-self: start;
    margin-top: 0.35rem;
    width: auto;
  }

  .doctoralia-reviews__container,
  .doctoralia-reviews--compact .doctoralia-reviews__container {
    gap: 2.75rem;
  }

  .office-section__layout,
  .office-section__layout--compact {
    border-inline: 0;
  }

  .office-section__intro {
    padding: 2rem 0;
  }

  .office-section__compact-image {
    min-height: 0;
    height: 18rem;
  }

  .office-section__compact-caption {
    padding-inline: 0;
  }

  .faq-card summary {
    padding-block: 1.15rem;
    font-size: 1.3rem;
  }

  .faq-card p {
    padding-right: 0;
  }

  .latest-posts__panel,
  .latest-posts--compact .latest-posts__panel {
    gap: 2.5rem;
  }

  .contact-panel__layout,
  .contact-panel--compact .contact-panel__layout {
    border-inline: 0;
  }

  .contact-panel__intro,
  .contact-panel__form-card {
    padding: 2.2rem 1rem;
  }

  .contact-panel__channel-actions {
    align-items: stretch;
  }

  .contact-panel__channel-actions .fl-cta {
    width: 100%;
  }

  .contact-form,
  .contact-form__row {
    gap: 1.1rem;
  }

  .mobile-whatsapp-bar,
  .mobile-whatsapp-bar--compact {
    padding: 0.5rem max(0.75rem, env(safe-area-inset-left)) calc(0.5rem + env(safe-area-inset-bottom)) max(0.75rem, env(safe-area-inset-right));
  }

  .mobile-whatsapp-bar__label,
  .mobile-whatsapp-bar--compact .mobile-whatsapp-bar__label {
    display: none;
  }

  .mobile-whatsapp-bar__link {
    min-height: 3rem;
    padding: 0.7rem 1rem;
  }

  body {
    padding-bottom: calc(4rem + env(safe-area-inset-bottom));
  }

  .site-footer__meta,
  .site-footer__nav {
    text-align: left;
  }
}

@media (max-width: 359px) {
  .site-header__title {
    font-size: 1rem;
  }

  .hero-section--compact .hero-section__headline,
  .hero-section__headline {
    font-size: 2.4rem;
  }

  .fl-cta,
  .mobile-whatsapp-bar__link {
    font-size: 0.88rem;
    padding-inline: 0.85rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .site-header__nav,
  .site-header__menu-icon span,
  .service-card {
    transition: none;
  }
}
