:root {
  --bg: #fbf7f1;
  --bg-soft: #f5eee4;
  --surface: #fffdf9;
  --text: #24221f;
  --muted: #706b64;
  --line: #ded5ca;
  --mustard: #aa7728;
  --mustard-dark: #7c5318;
  --mustard-soft: #d8b779;
  --sage: #738066;
  --cream: #fffaf2;
  --shadow: 0 18px 50px rgba(55, 42, 23, .10);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1180px;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}


/* =========================
   CONFIGURAÇÕES GERAIS
========================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -100px;
  z-index: 9999;
  background: var(--text);
  color: #fff;
  padding: .7rem 1rem;
  border-radius: 8px;
}

.skip-link:focus {
  top: 1rem;
}

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

.section {
  padding: 96px 0;
}

.section-soft {
  background:
    linear-gradient(
      180deg,
      #f8f2e9 0%,
      #fbf7f1 100%
    );
}


/* =========================
   TIPOGRAFIA
========================= */

.eyebrow {
  margin: 0 0 16px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--mustard-dark);
}

.eyebrow.light {
  color: #f8ead3;
}

h1,
h2,
h3 {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -.035em;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.3rem);
  max-width: 890px;
  margin-bottom: 28px;
}

h1 em {
  color: var(--mustard);
  font-style: normal;
}

h2 {
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  margin-bottom: 20px;
}

h3 {
  font-size: 1.08rem;
  line-height: 1.35;
}

p {
  margin-top: 0;
}


/* =========================
   CABEÇALHO
========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;

  background:
    rgba(251, 247, 241, .94);

  backdrop-filter: blur(14px);

  border-bottom:
    1px solid rgba(222, 213, 202, .85);
}

.nav-wrap {
  min-height: 78px;

  display: grid;

  grid-template-columns:
    auto 1fr auto;

  align-items: center;

  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  white-space: nowrap;
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.55rem;
}

.brand-role {
  padding-left: 10px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: .9rem;
}

.main-nav {
  justify-self: center;

  display: flex;

  align-items: center;

  gap: 30px;

  font-size: .92rem;
}

.main-nav a {
  position: relative;
  padding: 26px 0 22px;
}

.main-nav a::after {
  content: '';

  position: absolute;

  left: 0;
  right: 100%;
  bottom: 16px;

  height: 1px;

  background: var(--mustard);

  transition: right .25s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  right: 0;
}


/* =========================
   MENU MOBILE
========================= */

.menu-toggle {
  display: none;

  width: 44px;
  height: 44px;

  border:
    1px solid var(--line);

  background:
    rgba(255, 255, 255, .55);

  border-radius: 14px;

  padding: 10px;

  cursor: pointer;
}

.menu-toggle span {
  display: block;

  height: 1.5px;

  background: var(--text);

  margin: 5px 0;
}


/* =========================
   BOTÕES
========================= */

.btn {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 10px;

  min-height: 50px;

  padding: 0 22px;

  border-radius: 999px;

  border:
    1px solid transparent;

  font-weight: 650;

  line-height: 1.2;

  transition:
    transform .2s ease,
    background .2s ease,
    border-color .2s ease;
}

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

.btn-small {
  min-height: 44px;
  padding: 0 18px;
  font-size: .88rem;
}

.btn-primary {
  background:
    linear-gradient(
      135deg,
      var(--mustard),
      #c4903e
    );

  color: #fff;

  box-shadow:
    0 10px 24px rgba(170, 119, 40, .22);
}

.btn-primary:hover {
  background:
    linear-gradient(
      135deg,
      #97651c,
      var(--mustard)
    );
}

.btn-outline {
  border-color: var(--mustard-soft);

  color: var(--mustard-dark);

  background:
    rgba(255, 255, 255, .4);
}

.btn-light {
  background: var(--cream);
  color: var(--mustard-dark);
}

.text-link {
  color: var(--mustard-dark);
  font-weight: 650;

  border-bottom:
    1px solid currentColor;
}


/* ==================================================
   HERO
   COMPUTADOR:
   TEXTO ESQUERDA + NAOMI DIREITA
================================================== */

.hero {
  position: relative;

  overflow: hidden;

  padding:
    36px 0 0;
}

.hero::before {
  content: '';

  position: absolute;

  width: 520px;
  height: 520px;

  border-radius: 50%;

  right: -180px;
  top: -160px;

  background:
    radial-gradient(
      circle,
      rgba(216, 183, 121, .18) 0%,
      rgba(216, 183, 121, 0) 70%
    );
}


/* IMPORTANTE:
   mantém tudo na primeira tela */
.hero-grid {
  position: relative;

  display: grid;

  grid-template-columns:
    minmax(0, 1.05fr)
    minmax(390px, .95fr);

  gap: 42px;

  align-items: center;

  min-height:
    calc(100vh - 114px);
}


/* TEXTO */

.hero-copy {
  order: 1;

  position: relative;

  z-index: 2;

  padding:
    28px 0 54px;
}

.hero-copy h1 {
  font-size:
    clamp(3.25rem, 5.7vw, 5.55rem);

  line-height: .97;

  letter-spacing: -.04em;

  max-width: 760px;

  margin-bottom: 22px;
}

.hero-copy h1 em {
  color: #b57922;
  font-style: normal;
}

.hero-subtitle {
  max-width: 650px;

  color: var(--muted);

  font-size: 1.08rem;

  line-height: 1.7;

  margin:
    0 0 18px;
}


/* CREDENCIAIS */

.credential-line {
  display: flex;

  flex-wrap: wrap;

  gap:
    10px 18px;

  align-items: center;

  font-size: .9rem;

  margin:
    24px 0;

  color: var(--muted);
}

.credential-line span + span,
.credential-line strong {
  position: relative;
  padding-left: 18px;
}

.credential-line span + span::before,
.credential-line strong::before {
  content: '•';

  position: absolute;

  left: 0;

  color: var(--mustard);
}


/* BOTÕES HERO */

.hero-actions {
  display: flex;

  align-items: center;

  gap: 20px;

  flex-wrap: wrap;
}

.microcopy {
  max-width: 650px;

  font-size: .82rem;

  color: var(--muted);

  margin:
    18px 0 0;
}


/* ==================================================
   FOTO PRINCIPAL NAOMI
================================================== */

.hero-visual {
  order: 2;

  position: relative;

  align-self: stretch;

  display: flex;

  align-items: flex-end;

  justify-content: center;

  min-height: 590px;
}

.photo-frame {
  overflow: hidden;

  box-shadow:
    var(--shadow);

  background:
    #eee7de;
}


/*
  ENQUADRAMENTO:
  DA REGIÃO DAS MÃOS PARA CIMA
*/

.hero-photo {
  width:
    min(500px, 100%);

  height: 560px;

  overflow: hidden;

  border-radius:
    250px 250px 26px 26px;

  border:
    1px solid rgba(170, 119, 40, .15);

  background:
    #f2ece3;
}

.hero-photo img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  /*
    controla onde o corte acontece
  */
  object-position:
    50% 20%;

  /*
    aproxima a Naomi
    sem mostrar as pernas
  */
  transform:
    scale(1.35);

  transform-origin:
    50% 27%;
}


/* FRASE AO LADO */

.hero-quote {
  position: absolute;

  right: -6px;
  top: 95px;

  width: 190px;

  margin: 0;

  padding:
    18px 0 18px 20px;

  border-left:
    1px solid var(--mustard-soft);

  color: var(--muted);

  font-family:
    var(--serif);

  font-size: .98rem;

  font-style: italic;

  line-height: 1.55;

  z-index: 3;
}


/* DECORAÇÃO */

.botanical {
  position: absolute;

  width: 130px;
  height: 220px;

  right: -72px;
  bottom: 24px;

  opacity: .55;

  background:

    radial-gradient(
      ellipse at 20% 20%,
      var(--sage) 0 16%,
      transparent 17%
    ),

    radial-gradient(
      ellipse at 65% 40%,
      var(--sage) 0 18%,
      transparent 19%
    ),

    radial-gradient(
      ellipse at 30% 66%,
      var(--sage) 0 17%,
      transparent 18%
    ),

    linear-gradient(
      75deg,
      transparent 48%,
      var(--sage) 49% 51%,
      transparent 52%
    );

  transform:
    rotate(-13deg);
}


/* =========================
   FAIXA DE CONFIANÇA
========================= */

.trust-strip {
  background:
    rgba(255, 255, 255, .68);

  border-block:
    1px solid var(--line);
}

.trust-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);
}

.trust-grid article {
  display: flex;

  align-items: center;

  gap: 18px;

  padding:
    24px 28px;
}

.trust-grid article + article {
  border-left:
    1px solid var(--line);
}

.trust-grid .icon {
  font-size: 1.6rem;

  color: var(--mustard);
}

.trust-grid strong,
.trust-grid small {
  display: block;
}

.trust-grid small {
  color: var(--muted);

  margin-top: 4px;
}


/* =========================
   TÍTULOS DAS SEÇÕES
========================= */

.section-heading {
  display: flex;

  justify-content: space-between;

  gap: 40px;

  align-items: end;

  margin-bottom: 42px;
}

.heading-note {
  max-width: 460px;

  color: var(--muted);

  margin-bottom: 8px;
}


/* =========================
   CARDS
========================= */

.cards-grid {
  display: grid;

  gap: 18px;
}

.cards-grid.four {
  grid-template-columns:
    repeat(4, 1fr);
}

.cards-grid.two {
  grid-template-columns:
    repeat(2, 1fr);
}

.service-card,
.principle-card {
  min-height: 275px;

  padding: 30px;

  background:
    rgba(255, 255, 255, .62);

  border:
    1px solid var(--line);

  border-radius:
    var(--radius-sm);

  box-shadow:
    0 12px 28px rgba(65, 50, 29, .04);
}

.service-card .card-icon,
.principle-card > span {
  display: block;

  color: var(--mustard);

  font-size: 2rem;

  margin-bottom: 30px;
}

.service-card h3,
.principle-card h3 {
  font-family:
    var(--serif);

  font-size: 1.35rem;

  font-weight: 400;
}

.service-card p,
.principle-card p {
  color: var(--muted);

  font-size: .94rem;
}


/* =========================
   SOBRE NAOMI
========================= */

.about-section {
  background:
    var(--surface);
}

.about-grid {
  display: grid;

  grid-template-columns:
    .9fr 1.1fr;

  gap: 72px;

  align-items: center;
}

.about-photo-wrap {
  position: relative;
}

.about-photo {
  height: 520px;

  border-radius: 28px;

  overflow: hidden;
}

.about-photo img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  /* Enquadra aproximadamente das mãos até o topo da cabeça */
  object-position:
    50% 18%;

  transform:
    scale(1.45);

  transform-origin:
    50% 25%;
}

.photo-note {
  position: absolute;

  left: -28px;

  bottom: 34px;

  width: 220px;

  padding: 20px;

  background:
    rgba(251, 247, 241, .94);

  border:
    1px solid var(--line);

  border-radius: 14px;

  font-family:
    var(--serif);

  font-style: italic;

  color: var(--muted);
}

.about-copy > p:not(.eyebrow):not(.professional-id) {
  color: var(--muted);

  max-width: 690px;
}

.professional-id {
  color: var(--mustard-dark);

  font-weight: 700;
}


/* =========================
   CREDENCIAIS
========================= */

.credentials-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 22px;

  margin:
    36px 0;
}

.credentials-grid > div {
  padding-right: 16px;
}

.credentials-grid > div + div {
  border-left:
    1px solid var(--line);

  padding-left: 20px;
}

.mini-icon {
  color: var(--mustard);

  font-size: 1.5rem;
}

.credentials-grid h3 {
  margin:
    8px 0;

  font-family:
    var(--serif);

  font-size: 1.2rem;

  font-weight: 400;
}

.credentials-grid p {
  font-size: .84rem;

  color: var(--muted);
}


/* =========================
   PROCESSO
========================= */

.process-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 0;
}

.process-grid article {
  position: relative;

  padding:
    6px 38px 8px 76px;

  min-height: 150px;
}

.process-grid article + article {
  border-left:
    1px solid var(--line);
}

.step {
  position: absolute;

  left: 18px;

  top: 0;

  width: 42px;

  height: 42px;

  border-radius: 50%;

  display: grid;

  place-items: center;

  background:
    var(--mustard);

  color: #fff;

  font-weight: 700;
}

.process-grid h3 {
  font-family:
    var(--serif);

  font-weight: 400;

  font-size: 1.3rem;
}

.process-grid p {
  color: var(--muted);

  font-size: .92rem;
}

.differences-section {
  background:
    #f9f4ec;
}

.principle-card {
  min-height: 240px;
}


/* =========================
   CTA
========================= */

.cta-band {
  padding:
    62px 0;

  background:
    linear-gradient(
      135deg,
      #9a671d,
      #bc8a38
    );

  color: #fff;

  position: relative;

  overflow: hidden;
}

.cta-band::after {
  content: '';

  position: absolute;

  width: 260px;

  height: 260px;

  border:
    1px solid rgba(255, 255, 255, .18);

  border-radius: 50%;

  right: -70px;

  top: -120px;
}

.cta-grid {
  display: grid;

  grid-template-columns:
    1.2fr .8fr;

  gap: 40px;

  align-items: center;
}

.cta-grid h2 {
  margin-bottom: 8px;

  font-size:
    clamp(2.3rem, 4vw, 4rem);
}

.cta-grid p {
  color: #f5e8d3;

  max-width: 660px;
}

.cta-actions {
  justify-self: end;

  text-align: right;
}

.cta-actions small {
  display: block;

  margin-top: 12px;

  color: #f7e9d3;
}


/* =========================
   FAQ
========================= */

.faq-grid {
  display: grid;

  grid-template-columns:
    .7fr 1.3fr;

  gap: 70px;

  align-items: start;
}

.faq-grid > div:first-child > p:last-child {
  color: var(--muted);
}

.faq-list details {
  border-top:
    1px solid var(--line);
}

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

.faq-list summary {
  cursor: pointer;

  list-style: none;

  padding:
    20px 42px 20px 0;

  position: relative;

  font-weight: 650;
}

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

.faq-list summary::after {
  content: '+';

  position: absolute;

  right: 8px;

  font-size: 1.4rem;

  font-weight: 300;

  color: var(--mustard);
}

.faq-list details[open] summary::after {
  content: '−';
}

.faq-list details p {
  color: var(--muted);

  padding:
    0 44px 20px 0;
}


/* =========================
   CONTATO
========================= */

.contact-details {
  padding:
    58px 0;

  border-top:
    1px solid var(--line);
}

.contact-grid {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 40px;

  align-items: center;
}

.contact-grid h2 {
  font-size:
    clamp(2rem, 3vw, 3.2rem);

  margin-bottom: 8px;
}

.contact-list p {
  margin:
    7px 0;

  color: var(--muted);
}

.contact-list strong {
  color: var(--text);
}


/* =========================
   RODAPÉ
========================= */

.site-footer {
  padding:
    55px 0 22px;

  background:
    #24221f;

  color:
    #f4eee6;
}

.footer-grid {
  display: grid;

  grid-template-columns:
    1fr .6fr 1.2fr;

  gap: 44px;
}

.footer-brand .brand-role {
  color:
    #bdb3a6;

  border-color:
    #5a554f;
}

.footer-grid p {
  color:
    #bdb3a6;

  font-size: .9rem;
}

.footer-links {
  display: flex;

  flex-direction: column;

  gap: 10px;
}

.footer-links a {
  color:
    #d7cfc5;
}

.emergency-note {
  border-left:
    1px solid #514c46;

  padding-left: 28px;
}

.emergency-note strong {
  color: #fff;
}

.copyright {
  display: flex;

  justify-content: space-between;

  gap: 20px;

  padding-top: 24px;

  margin-top: 34px;

  border-top:
    1px solid #403c37;

  color:
    #9f978e;

  font-size: .8rem;
}


/* =========================
   ANIMAÇÕES
========================= */

.reveal {
  opacity: 0;

  transform:
    translateY(18px);

  transition:
    opacity .65s ease,
    transform .65s ease;
}

.reveal.is-visible {
  opacity: 1;

  transform:
    translateY(0);
}


/* ==================================================
   TABLETS / TELAS MÉDIAS
================================================== */

@media (max-width: 1040px) {

  .nav-wrap {
    grid-template-columns:
      auto 1fr auto;

    gap: 14px;
  }


  .menu-toggle {
    display: block;

    justify-self: end;
  }


  .main-nav {
    position: absolute;

    left: 1rem;

    right: 1rem;

    top:
      calc(100% + 10px);

    background:
      var(--surface);

    border:
      1px solid var(--line);

    border-radius: 18px;

    box-shadow:
      var(--shadow);

    padding: 14px;

    display: none;

    flex-direction: column;

    align-items: stretch;

    gap: 0;
  }


  .main-nav.open {
    display: flex;
  }


  .main-nav a {
    padding:
      12px 10px;
  }


  .main-nav a::after {
    display: none;
  }


  .hero-grid {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(340px, .8fr);

    gap: 28px;
  }


  .hero-copy h1 {
    font-size:
      clamp(3rem, 5.3vw, 4.7rem);
  }


  .hero-photo {
    width:
      min(440px, 100%);

    height: 530px;
  }


  .hero-quote,
  .botanical {
    display: none;
  }


  .cards-grid.four {
    grid-template-columns:
      repeat(2, 1fr);
  }


  .about-grid {
    gap: 42px;
  }


  .credentials-grid {
    grid-template-columns:
      1fr;
  }


  .credentials-grid > div + div {
    border-left: 0;

    border-top:
      1px solid var(--line);

    padding:
      18px 0 0;
  }

}


/* ==================================================
   CELULAR / TABLET PEQUENO

   AQUI ESTÁ A MUDANÇA PRINCIPAL:

   1 - FOTO DA NAOMI
   2 - TEXTO
================================================== */

@media (max-width: 820px) {

  .header-cta {
    display: none;
  }


  .nav-wrap {
    min-height: 72px;

    grid-template-columns:
      1fr auto;
  }


  /*
    Remove espaço antes da foto.
    Assim Naomi aparece imediatamente.
  */

  .hero {
    padding-top: 0;
  }


  /*
    Foto pode ocupar toda largura
    da tela no celular.
  */

  .hero > .container {
    width: 100%;
  }


  .hero-grid {
    display: grid;

    grid-template-columns: 1fr;

    gap: 0;

    min-height: auto;
  }


  /*
    A foto vem PRIMEIRO
  */

  .hero-visual {
    order: 1 !important;

    min-height: auto;

    width: 100%;

    align-self: auto;

    display: block;
  }


  /*
    Texto vem DEPOIS
  */

  .hero-copy {
    order: 2 !important;

    padding:
      34px 1.15rem 42px;

    text-align: center;
  }


  /*
    FOTO GRANDE NO TOPO
    Parecida com seu exemplo
  */

  .hero-photo {
    width: 100%;

    height: 455px;

    margin: 0;

    border-radius:
      0 0 30px 30px;

    border-left: 0;

    border-right: 0;

    box-shadow: none;
  }


  /*
    Naomi aparece:
    cabeça + tronco + mãos
    sem destacar as pernas.
  */

  .hero-photo img {
    object-position:
      50% 19%;

    transform:
      scale(1.32);

    transform-origin:
      50% 25%;
  }


  .hero-copy .eyebrow {
    margin-bottom: 14px;
  }


  .hero-copy h1 {
    max-width: 680px;

    margin:
      0 auto 20px;

    font-size:
      clamp(2.65rem, 10vw, 4rem);

    line-height: 1;

    letter-spacing: -.04em;
  }


  .hero-subtitle {
    max-width: 620px;

    margin:
      0 auto 20px;

    font-size: 1rem;

    line-height: 1.65;
  }


  .credential-line {
    justify-content: center;

    margin:
      20px auto;
  }


  .hero-actions {
    justify-content: center;
  }


  .microcopy {
    margin-inline: auto;

    text-align: center;
  }


  /*
    Frase lateral não aparece
    no celular para não poluir.
  */

  .hero-quote,
  .botanical {
    display: none;
  }


  .trust-grid {
    grid-template-columns:
      1fr;
  }


  .trust-grid article + article {
    border-left: 0;

    border-top:
      1px solid var(--line);
  }


  .section-heading {
    display: block;
  }


  .heading-note {
    max-width: 100%;
  }


  .about-grid,
  .cta-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns:
      1fr;
  }


  .cards-grid.two {
    grid-template-columns:
      1fr;
  }


  .about-photo {
    height: 500px;
  }

  .about-photo img {
    object-position:
      50% 18%;

    transform:
      scale(1.45);

    transform-origin:
      50% 25%;
  }


  .photo-note {
    left: 18px;
  }


  .process-grid {
    grid-template-columns:
      1fr;

    gap: 28px;
  }


  .process-grid article {
    padding-left: 72px;
  }


  .process-grid article + article {
    border-left: 0;

    border-top:
      1px solid var(--line);

    padding-top: 28px;
  }


  .process-grid article + article .step {
    top: 28px;
  }


  .cta-actions {
    justify-self: start;

    text-align: left;
  }


  .footer-grid {
    grid-template-columns:
      1fr 1fr;
  }


  .emergency-note {
    grid-column:
      1 / -1;
  }

}


/* ==================================================
   CELULARES
================================================== */

@media (max-width: 560px) {

  .container {
    width:
      min(
        calc(100% - 1.25rem),
        var(--container)
      );
  }


  .section {
    padding:
      72px 0;
  }


  /*
    Cabeçalho continua com margem.
  */

  .site-header .container {
    width:
      min(
        calc(100% - 1.25rem),
        var(--container)
      );
  }


  .brand-role {
    display: none;
  }


  .brand-name {
    font-size: 1.35rem;
  }


  .menu-toggle {
    width: 46px;

    height: 46px;
  }


  h2 {
    font-size:
      clamp(
        2.25rem,
        10vw,
        3.2rem
      );
  }


  /*
    HERO fica sem margem lateral
    apenas na área da foto.
  */

  .hero > .container {
    width: 100%;
  }


  /*
    FOTO DA NAOMI
    é o primeiro elemento visível
    abaixo do cabeçalho.
  */

  .hero-photo {
    height: 430px;

    border-radius:
      0 0 26px 26px;
  }


  .hero-photo img {
    object-position:
      50% 18%;

    transform:
      scale(1.34);

    transform-origin:
      50% 24%;
  }


  .hero-copy {
    padding:
      30px 1rem 38px;
  }


  .hero-copy .eyebrow {
    font-size: .67rem;

    letter-spacing: .18em;
  }


  .hero-copy h1 {
    font-size:
      clamp(
        2.45rem,
        11.4vw,
        3.7rem
      );

    line-height: 1.01;

    margin-bottom: 18px;
  }


  .hero-subtitle {
    max-width: 100%;

    font-size: .98rem;

    line-height: 1.62;

    margin:
      0 auto 18px;
  }


  /*
    Botão ocupa largura maior
    no celular.
  */

  .hero-actions {
    align-items: stretch;
  }


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


  .hero-actions .text-link {
    margin-inline: auto;
  }


  /*
    Dados da psicóloga
    ficam organizados verticalmente.
  */

  .credential-line {
    display: grid;

    gap: 5px;
  }


  .credential-line span + span,
  .credential-line strong {
    padding-left: 0;
  }


  .credential-line span + span::before,
  .credential-line strong::before {
    display: none;
  }


  .cards-grid.four {
    grid-template-columns:
      1fr;
  }


  .cards-grid.two {
    grid-template-columns:
      1fr;
  }


  .service-card,
  .principle-card {
    min-height: auto;
  }


  .about-photo {
    height: 460px;
  }

  .about-photo img {
    object-position:
      50% 18%;

    transform:
      scale(1.42);

    transform-origin:
      50% 25%;
  }


  .photo-note {
    position: static;

    width: auto;

    margin-top: -20px;

    margin-inline: 16px;
  }


  .cta-band {
    padding:
      52px 0;
  }


  .cta-actions .btn {
    width: 100%;
  }


  .footer-grid {
    grid-template-columns:
      1fr;
  }


  .emergency-note {
    grid-column: auto;

    border-left: 0;

    border-top:
      1px solid #514c46;

    padding:
      22px 0 0;
  }


  .copyright {
    flex-direction: column;
  }

}


/* =========================
   ACESSIBILIDADE
========================= */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }


  *,
  *::before,
  *::after {
    transition:
      none !important;

    animation:
      none !important;
  }


  .reveal {
    opacity: 1;

    transform: none;
  }

}
/* ==================================================
   CORTE FORTE DA FOTO "SOBRE MIM"
   Mostra somente das mãos até a ponta do cabelo
================================================== */

.about-photo {
  height: 520px;
  overflow: hidden;
  border-radius: 28px;
}

.about-photo img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  /* mantém rosto e mãos centralizados */
  object-position: 50% 18%;

  /* zoom forte para eliminar pernas e banco */
  transform: scale(2.50);

  /* concentra o zoom na parte superior do corpo */
  transform-origin: 50% 24%;
}


/* TABLET */
@media (max-width: 820px) {

  .about-photo {
    height: 500px;
  }

  .about-photo img {
    object-position: 50% 18%;
    transform: scale(1.95);
    transform-origin: 50% 24%;
  }

}


/* CELULAR */
@media (max-width: 560px) {

  .about-photo {
    height: 460px;
  }

  .about-photo img {
    object-position: 50% 17%;
    transform: scale(1.90);
    transform-origin: 50% 23%;
  }

}
/* =========================================
   CORREÇÃO DOS ÍCONES WHATSAPP / INSTAGRAM
========================================= */

.contact-socials {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  margin-top: 22px !important;
}

.contact-socials .social-button {
  width: 52px !important;
  height: 52px !important;
  min-width: 52px !important;
  max-width: 52px !important;
  min-height: 52px !important;
  max-height: 52px !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  padding: 0 !important;
  margin: 0 !important;

  border-radius: 50% !important;

  overflow: hidden !important;

  flex: 0 0 52px !important;

  transition:
    transform .2s ease,
    box-shadow .2s ease;
}


/* TAMANHO DO DESENHO DENTRO DO BOTÃO */

.contact-socials .social-button svg {
  width: 25px !important;
  height: 25px !important;

  min-width: 25px !important;
  min-height: 25px !important;

  max-width: 25px !important;
  max-height: 25px !important;

  display: block !important;

  fill: currentColor !important;
}


/* WHATSAPP */

.contact-socials .whatsapp-button {
  background: #25D366 !important;
  color: #ffffff !important;
}


/* INSTAGRAM */

.contact-socials .instagram-button {
  background: #24221f !important;
  color: #ffffff !important;
}


.contact-socials .social-button:hover {
  transform: translateY(-3px);

  box-shadow:
    0 8px 20px rgba(0, 0, 0, .15);
}


/* CELULAR */

@media (max-width: 560px) {

  .contact-socials {
    margin-top: 18px !important;
  }

  .contact-socials .social-button {
    width: 50px !important;
    height: 50px !important;

    min-width: 50px !important;
    max-width: 50px !important;

    min-height: 50px !important;
    max-height: 50px !important;

    flex-basis: 50px !important;
  }

  .contact-socials .social-button svg {
    width: 24px !important;
    height: 24px !important;

    min-width: 24px !important;
    min-height: 24px !important;

    max-width: 24px !important;
    max-height: 24px !important;
  }

}
/* Ajuste fino da seção de contato */

.contact-details {
  padding: 44px 0;
}

.contact-socials {
  margin-top: 16px !important;
}