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

html {
  scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
p,
figure {
  margin: 0;
}

body {
  min-width: 320px;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

/* Variables */
:root {
  --purple: #6c3480;
  --purple-dark: #4f3751;
  --purple-light: #d3b6e3;
  --lilac: #f2e7f5;
  --pink-soft: #f9e5ec;
  --cream: #fffaf0;
  --yellow: #ffc973;
  --yellow-soft: #ffe3b3;
  --green-soft: #dcebd9;
  --whatsapp: #167846;
  --whatsapp-dark: #0d6137;
  --text: #302832;
  --text-soft: #665c68;
  --white: #ffffff;
  --line: rgba(113, 54, 127, 0.16);
  --shadow: 0 18px 45px rgba(72, 32, 81, 0.12);
  --radius: 26px;
  --radius-small: 16px;
  --container: 1160px;
  --font-display: "Belleza", Georgia, "Times New Roman", serif;
  --font-body: "Arimo", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

/* Global */
body {
  background: var(--white);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

h1,
h2,
.hero__name,
.footer__name {
  color: var(--purple-dark);
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2rem, 9vw, 3.6rem);
  letter-spacing: -0.025em;
}

h2 {
  font-size: clamp(1.85rem, 7vw, 3rem);
  letter-spacing: -0.018em;
}

h3 {
  line-height: 1.35;
}

p {
  color: var(--text-soft);
}

a {
  color: inherit;
}

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

#inicio,
#psicoterapia,
#sobre,
#consultorio,
#atendimento,
#contato {
  scroll-margin-top: 84px;
}

.section {
  padding-block: clamp(4.5rem, 10vw, 8rem);
}

.section--cream {
  background: var(--cream);
}

.section--lilac {
  background: linear-gradient(135deg, #f8f1fa 0%, var(--lilac) 100%);
}

.section--yellow {
  background: linear-gradient(135deg, #fff5d9 0%, var(--yellow-soft) 100%);
}

.section-label,
.eyebrow {
  color: var(--purple);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.4;
  text-transform: uppercase;
}

.section-label {
  margin-bottom: 0.75rem;
}

.section-heading {
  max-width: 700px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.button {
  display: inline-flex;
  width: 100%;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.78rem 1.25rem;
  border: 0;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  transition: background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--whatsapp {
  background: var(--whatsapp);
  box-shadow: 0 10px 24px rgba(22, 120, 70, 0.2);
  color: var(--white);
}

.button--whatsapp:hover {
  background: var(--whatsapp-dark);
  box-shadow: 0 13px 28px rgba(13, 97, 55, 0.24);
}

.whatsapp-icon {
  display: block;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  object-fit: contain;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid #f3ae3d;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  background: var(--purple-dark);
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

/* Header */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(108, 52, 128, 0.12);
  background: #fffdfb;
  box-shadow: 0 8px 26px rgba(79, 55, 81, 0.08);
}

.site-header__inner {
  position: relative;
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 0.65rem;
  color: var(--purple-dark);
  text-decoration: none;
}

.site-brand__logo {
  width: 46px;
  height: 44px;
  flex: 0 0 auto;
  object-fit: contain;
}

.site-brand__text {
  display: grid;
  line-height: 1.2;
}

.site-brand__text strong {
  color: var(--purple);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
}

.site-brand__text small {
  margin-top: 0.12rem;
  color: var(--text-soft);
  font-size: 0.65rem;
  letter-spacing: 0.025em;
}

.nav-toggle {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  place-content: center;
  gap: 5px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--white);
  color: var(--purple-dark);
  cursor: pointer;
}

.nav-toggle__line {
  display: block;
  width: 21px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:first-child {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  position: absolute;
  top: calc(100% + 1px);
  right: 0;
  left: 0;
  max-height: 0;
  padding: 0 1rem;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 0 0 18px 18px;
  background: #fffdfb;
  box-shadow: 0 18px 35px rgba(79, 55, 81, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  visibility: hidden;
  transition: max-height 220ms ease, opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.site-nav.is-open {
  max-height: 470px;
  padding-block: 0.65rem 1rem;
  border-color: var(--line);
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.site-nav__list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav__list a {
  display: flex;
  min-height: 44px;
  align-items: center;
  padding: 0.55rem 0.35rem;
  border-bottom: 1px solid rgba(108, 52, 128, 0.08);
  color: var(--purple-dark);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav__list a:hover {
  color: var(--purple);
}

.site-nav__cta {
  min-height: 46px;
  margin-top: 0.85rem;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 18%, rgba(255, 232, 173, 0.8), transparent 25%),
    linear-gradient(135deg, #fff 0%, #fbf6fb 48%, #f2e7f5 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, #ee8f96 0 58px, transparent 58px),
    linear-gradient(90deg, #d77bcd 0 42px, transparent 42px),
    linear-gradient(90deg, #f3ca48 0 52px, transparent 52px),
    linear-gradient(90deg, #9acb85 0 44px, transparent 44px);
  background-position: 8% 8%, 88% 27%, 9% 83%, 77% 91%;
  background-repeat: no-repeat;
  background-size: 160px 5px, 160px 5px, 160px 5px, 160px 5px;
  content: "";
  opacity: 0.58;
  pointer-events: none;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  padding-block: 0.75rem 3.5rem;
}

.hero__media {
  position: relative;
  display: flex;
  height: 218px;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 0.4rem;
}

.hero__media img {
  position: relative;
  z-index: 1;
  width: auto;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.hero__halo {
  position: absolute;
  bottom: 0.4rem;
  left: 50%;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(113, 54, 127, 0.14);
  border-radius: 48% 52% 42% 58%;
  background: rgba(255, 255, 255, 0.52);
  transform: translateX(-50%) rotate(10deg);
}

.hero__content {
  max-width: 620px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.85rem;
  padding: 0.45rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.hero__name {
  margin-top: 0.25rem;
  color: var(--purple);
  font-size: clamp(2.35rem, 12vw, 4.6rem);
}

.hero__credential {
  margin-top: 0.45rem;
  color: var(--purple-dark);
  font-size: 0.98rem;
  font-weight: 700;
}

.hero__text {
  max-width: 570px;
  margin-block: 1rem 1.3rem;
  font-size: 1.05rem;
}

.hero__note {
  max-width: 520px;
  margin-top: 1rem;
  padding-left: 0.85rem;
  border-left: 3px solid var(--purple-light);
  color: var(--purple-dark);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.55;
}

/* Trust cards */
.trust {
  position: relative;
  z-index: 2;
  padding-block: 1.25rem 3.5rem;
  background: var(--white);
}

.trust__grid {
  display: grid;
  gap: 0.9rem;
}

.trust-card {
  display: grid;
  grid-template-columns: 70px 1fr;
  min-height: 116px;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-left: 4px solid var(--purple-light);
  border-radius: var(--radius-small);
  background: var(--white);
  box-shadow: 0 9px 25px rgba(72, 32, 81, 0.06);
}

.trust-card__icon {
  width: 66px;
  height: 66px;
  object-fit: contain;
}

.trust-card h2 {
  color: var(--text);
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.35;
}

/* Psychotherapy */
.feature,
.about,
.office__grid {
  display: grid;
  align-items: center;
  gap: 2.2rem;
}

.feature__media,
.about__media {
  width: min(100%, 440px);
  margin-inline: auto;
}

.feature__media img,
.about__media img {
  width: 100%;
  border-radius: calc(var(--radius) - 7px);
  object-fit: cover;
}

.feature__media img {
  aspect-ratio: 1;
}

.feature__media--wide img {
  aspect-ratio: 3 / 2;
  object-fit: contain;
}

.image-frame {
  position: relative;
  z-index: 0;
  padding: 0.7rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-frame::after {
  position: absolute;
  z-index: -1;
  right: -0.55rem;
  bottom: -0.55rem;
  width: 42%;
  height: 42%;
  border-radius: 22px;
  content: "";
}

.image-frame--yellow {
  background: #fff1c6;
}

.image-frame--yellow::after {
  background: #e3a8d6;
}

.image-frame--green {
  background: #e8f0e4;
}

.image-frame--green::after {
  background: #c9b2dc;
}

.image-frame--pink {
  background: #fdebf0;
}

.image-frame--pink::after {
  background: #f1c05d;
}

.feature__content,
.about__content,
.office__content,
.final-cta__content {
  max-width: 600px;
}

.feature__content h2,
.about__content h2,
.office__content h2,
.final-cta__content h2 {
  margin-bottom: 1.2rem;
}

.feature__content p:not(.section-label),
.about__content p:not(.section-label),
.office__content > p:not(.section-label),
.final-cta__content > p:not(.section-label) {
  margin-bottom: 1rem;
}

.feature__content .button,
.about__content .button,
.office__content .button {
  margin-top: 0.55rem;
}

/* About */
.about__media {
  max-width: 360px;
}

.about__media img {
  aspect-ratio: 2 / 3;
  object-position: center top;
}

/* Office */
.office {
  position: relative;
  overflow: hidden;
}

.office::before {
  position: absolute;
  top: 10%;
  right: -80px;
  width: 250px;
  height: 250px;
  border: 55px solid var(--lilac);
  border-radius: 50%;
  content: "";
  opacity: 0.55;
  pointer-events: none;
}

.carousel {
  position: relative;
  width: min(100%, 560px);
  margin-inline: auto;
}

.carousel__viewport {
  overflow: hidden;
  border: 8px solid var(--white);
  border-radius: var(--radius);
  background: var(--lilac);
  box-shadow: var(--shadow);
  touch-action: pan-y;
}

.carousel__track {
  display: flex;
  transition: transform 280ms ease;
}

.carousel__slide {
  min-width: 100%;
}

.carousel__slide img {
  width: 100%;
  aspect-ratio: 8 / 7;
  object-fit: cover;
}

.carousel__button {
  position: absolute;
  z-index: 2;
  top: calc(50% - 19px);
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 7px 18px rgba(48, 40, 50, 0.13);
  color: var(--purple-dark);
  cursor: pointer;
  font-family: Georgia, serif;
  font-size: 1.8rem;
  line-height: 1;
  transform: translateY(-50%);
}

.carousel__button:hover {
  background: var(--lilac);
}

.carousel__button--previous {
  left: -0.35rem;
}

.carousel__button--next {
  right: -0.35rem;
}

.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1.15rem;
}

.carousel__dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #d8c9dc;
  cursor: pointer;
}

.carousel__dot.is-active {
  width: 30px;
  border-radius: 999px;
  background: var(--purple);
}

.check-list {
  display: grid;
  gap: 0.55rem;
  margin: 1.2rem 0 1.5rem;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.7rem;
  color: var(--text-soft);
}

.check-list li::before {
  position: absolute;
  top: 0.12rem;
  left: 0;
  color: var(--purple);
  content: "✓";
  font-weight: 800;
}

/* Online */
.section--yellow .feature__media {
  box-shadow: none;
}

/* Service info */
.service-info {
  background:
    radial-gradient(circle at 8% 14%, rgba(211, 182, 227, 0.3), transparent 24%),
    linear-gradient(180deg, var(--white), #fcf8fd);
}

.service-info__primary {
  display: grid;
  gap: 1.1rem;
}

.service-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(1.5rem, 5vw, 2.25rem);
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 38px rgba(72, 32, 81, 0.07);
}

.service-panel::before {
  position: absolute;
  top: 0;
  left: clamp(1.5rem, 5vw, 2.25rem);
  width: 64px;
  height: 4px;
  border-radius: 0 0 999px 999px;
  background: var(--purple);
  content: "";
}

.service-panel--online {
  background: linear-gradient(145deg, rgba(255, 227, 179, 0.34), rgba(255, 255, 255, 0.92));
}

.service-panel__kicker {
  margin-bottom: 0.65rem;
  color: var(--purple);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.service-panel h3 {
  margin-bottom: 1.25rem;
  color: var(--purple-dark);
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 5vw, 2rem);
  line-height: 1.12;
}

.service-panel__list {
  display: grid;
  gap: 0.72rem;
  list-style: none;
}

.service-panel__list li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--text-soft);
  line-height: 1.55;
}

.service-panel__list li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 6px;
  height: 2px;
  border-radius: 999px;
  background: var(--purple);
  content: "";
}

.service-info__facts {
  display: grid;
  margin-top: clamp(1.75rem, 5vw, 2.5rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-fact {
  display: grid;
  gap: 0.35rem;
  padding: 1.15rem 0.2rem;
}

.service-fact + .service-fact {
  border-top: 1px solid var(--line);
}

.service-fact dt {
  color: var(--purple);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-fact dd {
  color: var(--purple-dark);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.45;
}

/* CTA */
.mid-cta {
  padding-block: clamp(4rem, 9vw, 7rem);
  background:
    radial-gradient(circle at 12% 25%, rgba(255, 255, 255, 0.7), transparent 19%),
    linear-gradient(135deg, var(--pink-soft), var(--lilac));
}

.mid-cta__inner {
  max-width: 860px;
  text-align: center;
}

.mid-cta__mark {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 1.1rem;
  border-radius: 50%;
  background: var(--white);
  color: var(--purple);
  box-shadow: 0 8px 25px rgba(72, 32, 81, 0.1);
}

.mid-cta h2 {
  font-size: clamp(1.75rem, 6.5vw, 2.75rem);
}

.mid-cta p {
  max-width: 600px;
  margin: 1.15rem auto 1.5rem;
}

.final-cta {
  overflow: hidden;
  padding-block: clamp(4.5rem, 10vw, 7rem) clamp(3rem, 8vw, 4.5rem);
  background: var(--cream);
}

.final-cta__grid {
  display: grid;
  align-items: center;
  gap: clamp(2.5rem, 7vw, 5rem);
}

.final-cta__media {
  position: relative;
  display: grid;
  place-items: center;
  order: 2;
  padding: 0.75rem 0 0;
}

.final-cta__media::before {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: min(88%, 360px);
  height: 86%;
  border-radius: 30px;
  background: var(--pink-soft);
  content: "";
  transform: translateX(-50%) rotate(-4deg);
}

.final-cta__media img {
  position: relative;
  z-index: 1;
  width: min(100%, 340px);
  height: auto;
  border-radius: 28px;
  box-shadow: 0 18px 44px rgba(72, 32, 81, 0.11);
  object-fit: contain;
}

.final-cta__content {
  padding-bottom: 0;
}

.final-cta__signature {
  margin-top: 1.2rem;
  color: var(--purple-dark) !important;
  font-size: 0.92rem;
  font-weight: 700;
}

.whatsapp-float {
  position: fixed;
  z-index: 50;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
  border-radius: 999px;
  background: var(--whatsapp);
  box-shadow: 0 12px 28px rgba(13, 97, 55, 0.32);
  color: var(--white);
  opacity: 0;
  pointer-events: none;
  text-decoration: none;
  transform: translateY(18px);
  transition: opacity 180ms ease, transform 180ms ease, background-color 180ms ease;
}

.whatsapp-float.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.whatsapp-float:hover {
  background: var(--whatsapp-dark);
}

.whatsapp-float__icon {
  width: 21px;
  height: 21px;
}

.whatsapp-float__label {
  display: none;
}

/* Footer */
.footer {
  padding-block: 3.2rem 1.6rem;
  background: var(--purple-dark);
  color: var(--white);
}

.footer__top,
.footer__bottom {
  display: grid;
  gap: 1.5rem;
}

.footer__brand {
  display: grid;
  grid-template-columns: 78px 1fr;
  align-items: center;
  gap: 1rem;
  max-width: 560px;
}

.footer__logo-wrap {
  display: grid;
  width: 78px;
  height: 72px;
  place-items: center;
  padding: 0.45rem;
  border-radius: 16px;
  background: var(--cream);
}

.footer__logo {
  width: 62px;
  height: 58px;
  object-fit: contain;
}

.footer p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  line-height: 1.6;
}

.footer__name {
  margin-bottom: 0.2rem !important;
  color: var(--white) !important;
  font-size: 1.5rem !important;
}

.footer__credential {
  color: var(--white) !important;
  font-weight: 700;
}

.footer__cta {
  justify-self: start;
}

.footer__notices {
  display: grid;
  gap: 1rem;
  margin-block: 2.2rem 1.6rem;
  padding-block: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.footer__notices p {
  max-width: 720px;
  font-size: 0.82rem;
}

.footer__bottom {
  gap: 0.65rem;
}

.footer__copyright {
  color: rgba(255, 255, 255, 0.9) !important;
}

.footer__credit {
  max-width: 580px;
  color: rgba(255, 255, 255, 0.58) !important;
  font-size: 0.76rem !important;
}

/* Responsive */
@media (min-width: 560px) {
  .container {
    width: min(calc(100% - 3rem), var(--container));
  }

  .button {
    width: auto;
    min-width: 230px;
  }

  .whatsapp-float {
    width: auto;
    min-width: 56px;
    gap: 0.65rem;
    padding-inline: 0.7rem 1rem;
  }

  .whatsapp-float__label {
    display: inline;
    font-size: 0.84rem;
    font-weight: 700;
  }
}

@media (min-width: 760px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
    min-height: 650px;
    align-items: center;
    gap: 2rem;
    padding-block: 2rem 0;
  }

  .hero__content {
    grid-row: 1;
    grid-column: 1;
    padding-bottom: 2rem;
  }

  .hero__media {
    grid-row: 1;
    grid-column: 2;
    height: 610px;
    align-self: end;
    margin: 0;
  }

  .hero__halo {
    width: 420px;
    height: 420px;
  }

  .hero__text {
    font-size: 1.12rem;
  }

  .trust {
    padding-block: 0 4.5rem;
  }

  .trust__grid {
    grid-template-columns: repeat(3, 1fr);
    transform: translateY(-1.8rem);
  }

  .trust-card {
    grid-template-columns: 76px 1fr;
    min-height: 138px;
    padding: 1.15rem;
  }

  .trust-card__icon {
    width: 72px;
    height: 72px;
  }

  .feature,
  .about,
  .office__grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(3rem, 7vw, 6.5rem);
  }

  .feature--reverse .feature__media {
    grid-column: 2;
  }

  .feature--reverse .feature__content {
    grid-row: 1;
    grid-column: 1;
  }

  .about {
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  }

  .office__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }

  .whatsapp-icon {
    width: 19px;
    height: 19px;
  }

  .whatsapp-float__icon {
    width: 20px;
    height: 20px;
  }

  .service-info__primary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-panel {
    min-height: 280px;
  }

  .service-info__facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-fact {
    padding: 1.4rem clamp(1rem, 2.5vw, 2rem);
  }

  .service-fact + .service-fact {
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .final-cta__grid {
    grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(3rem, 7vw, 7rem);
  }

  .final-cta__media {
    order: initial;
  }

  .final-cta__media img {
    width: min(100%, 420px);
  }

  .final-cta__content {
    padding-block: 0;
  }

  .footer__top,
  .footer__bottom {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .footer__cta {
    justify-self: end;
  }

  .footer__notices {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem;
  }

  .footer__credit {
    justify-self: end;
    text-align: right;
  }
}

@media (min-width: 1024px) {
  .site-header__inner {
    min-height: 76px;
  }

  .site-brand__logo {
    width: 52px;
    height: 48px;
  }

  .site-brand__text strong {
    font-size: 1.05rem;
  }

  .site-brand__text small {
    font-size: 0.68rem;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    max-height: none;
    align-items: center;
    gap: clamp(0.7rem, 1.4vw, 1.35rem);
    padding: 0;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

  .site-nav__list {
    display: flex;
    align-items: center;
    gap: clamp(0.65rem, 1.25vw, 1.25rem);
  }

  .site-nav__list a {
    min-height: 44px;
    padding: 0.4rem 0;
    border: 0;
    font-size: clamp(0.78rem, 1vw, 0.9rem);
    white-space: nowrap;
  }

  .site-nav__list a:hover {
    color: var(--purple);
  }

  .site-nav__cta {
    min-width: 170px;
    min-height: 44px;
    margin: 0;
    padding-inline: 1rem;
    font-size: 0.86rem;
    white-space: nowrap;
  }

  #inicio,
  #psicoterapia,
  #sobre,
  #consultorio,
  #atendimento,
  #contato {
    scroll-margin-top: 90px;
  }
}

@media (min-width: 1040px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(390px, 0.85fr);
  }

  .hero__media {
    height: 660px;
  }

  .trust-card {
    padding: 1.3rem 1.5rem;
  }

}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
