:root {
  --ink: #31251d;
  --ink-soft: #685b51;
  --paper: #f8f3ec;
  --paper-deep: #eee4d6;
  --card: #fffdfa;
  --terracotta: #a64b32;
  --terracotta-dark: #873822;
  --sage: #667064;
  --line: rgba(76, 54, 40, 0.15);
  --shadow: 0 24px 70px rgba(67, 43, 29, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

.site-header {
  position: fixed;
  z-index: 2;
  top: 14px;
  left: 50%;
  display: flex;
  width: min(100% - 32px, 1240px);
  transform: translateX(-50%);
  border: 1px solid rgba(96, 68, 47, 0.16);
  border-radius: 16px;
  padding: 13px 18px;
  align-items: center;
  justify-content: space-between;
  background: rgba(250, 245, 237, 0.62);
  box-shadow: 0 12px 36px rgba(72, 46, 28, 0.09), inset 0 1px rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(18px) saturate(125%);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
}

.brand {
  display: grid;
  gap: 3px;
  line-height: 1;
}

.brand span {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.brand small {
  color: var(--ink-soft);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.065em;
  text-transform: uppercase;
}

.header-cta {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  font-size: 0.82rem;
  font-weight: 700;
  transition: color 180ms ease, border-color 180ms ease;
}

.header-cta span {
  font-size: 1rem;
}

.header-cta:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
}

.hero {
  position: relative;
  display: grid;
  min-height: 760px;
  overflow: hidden;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
  gap: clamp(48px, 8vw, 150px);
  align-items: center;
  padding: 154px max(24px, calc((100vw - 1240px) / 2)) 76px;
  background:
    radial-gradient(circle at 76% 18%, rgba(182, 112, 77, 0.16), transparent 25%),
    linear-gradient(115deg, var(--paper) 0%, #f5eee5 52%, var(--paper-deep) 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-image: radial-gradient(rgba(65, 44, 29, 0.22) 0.5px, transparent 0.5px);
  background-size: 5px 5px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 70%);
  pointer-events: none;
}

.hero__glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(5px);
  pointer-events: none;
}

.hero__glow--one {
  top: 54%;
  left: -190px;
  width: 440px;
  height: 440px;
  background: rgba(162, 84, 48, 0.07);
}

.hero__glow--two {
  top: 4%;
  right: -120px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(115, 73, 48, 0.11);
}

.hero__content,
.hero__portrait-wrap {
  position: relative;
  z-index: 1;
}

.hero__content {
  max-width: 650px;
}

.eyebrow {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0 0 24px;
  color: var(--terracotta-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.145em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 1px;
  background: currentColor;
}

h1 {
  max-width: 620px;
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(3rem, 5.45vw, 5.45rem);
  font-weight: 500;
  letter-spacing: -0.061em;
  line-height: 0.98;
}

h2,
h3 {
  margin-top: 0;
}

.hero__lead {
  max-width: 575px;
  margin: 30px 0 0;
  color: #44372e;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.68;
}

.hero__approach {
  max-width: 525px;
  margin: 15px 0 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  gap: 13px;
  align-items: center;
  justify-content: center;
  border-radius: 99px;
  padding: 0 22px;
  font-size: 0.86rem;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button--primary {
  color: #fffaf5;
  background: var(--terracotta);
  box-shadow: 0 10px 20px rgba(130, 59, 35, 0.18);
}

.button--primary:hover {
  background: var(--terracotta-dark);
  box-shadow: 0 13px 25px rgba(130, 59, 35, 0.25);
  transform: translateY(-2px);
}

.button--quiet {
  min-height: auto;
  padding: 0 4px;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
}

.button--quiet:hover {
  border-color: var(--ink);
}

.hero__details {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 42px 0 0;
  padding: 0;
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 600;
  list-style: none;
}

.hero__details li {
  display: flex;
  gap: 8px;
  align-items: center;
}

.hero__details li::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--terracotta);
  content: "";
}

.hero__portrait-wrap {
  width: min(100%, 475px);
  justify-self: center;
}

.hero-portrait {
  position: relative;
  margin: 0;
}

.hero-portrait::before {
  position: absolute;
  z-index: -1;
  top: -19px;
  right: -18px;
  bottom: 22px;
  left: 28px;
  border: 1px solid rgba(91, 56, 37, 0.18);
  border-radius: 240px 240px 20px 20px;
  content: "";
}

.hero-portrait__visual {
  position: relative;
  display: grid;
  min-height: 550px;
  overflow: hidden;
  border-radius: 235px 235px 12px 12px;
  place-items: center;
  background:
    linear-gradient(145deg, rgba(111, 38, 24, 0.2), rgba(68, 47, 29, 0.08)),
    linear-gradient(135deg, #d4b69b, #a84d32 52%, #f0c279);
  box-shadow: var(--shadow);
}

.hero-portrait__visual::after {
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 253, 248, 0.52);
  border-radius: 225px 225px 6px 6px;
  content: "";
  pointer-events: none;
}

.hero-portrait__visual img {
  width: 100%;
  height: 100%;
  min-height: 550px;
  object-fit: cover;
  object-position: center center;
}

.image-placeholder {
  position: absolute;
  z-index: 1;
  margin: 0;
  padding: 12px 18px;
  border: 1px solid rgba(255, 253, 248, 0.56);
  border-radius: 999px;
  color: rgba(255, 253, 248, 0.9);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-portrait__visual:has(img:not([hidden])) .image-placeholder {
  display: none;
}

.hero-portrait figcaption {
  position: absolute;
  z-index: 2;
  right: auto;
  bottom: -27px;
  left: 50%;
  display: grid;
  gap: 4px;
  width: max-content;
  max-width: calc(100% - 42px);
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 15px 21px;
  background: rgba(255, 253, 248, 0.86);
  box-shadow: 0 10px 22px rgba(64, 43, 29, 0.12);
  text-align: center;
  transform: translateX(-50%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-portrait figcaption span:first-child {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.03rem;
  font-weight: 600;
}

.hero-portrait figcaption span:last-child {
  color: var(--ink-soft);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero-note {
  display: flex;
  gap: 12px;
  max-width: 365px;
  margin: 64px auto 0;
  align-items: flex-start;
  justify-content: center;
  color: var(--ink-soft);
  font-family: "Fraunces", Georgia, serif;
  font-size: 0.98rem;
  line-height: 1.45;
  text-align: center;
}

.hero-note p {
  margin: 0;
}

.hero-note__symbol {
  color: var(--terracotta);
  font-size: 1.14rem;
}

.whatsapp-float {
  position: fixed;
  z-index: 5;
  right: 28px;
  bottom: 28px;
  display: grid;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(255, 253, 248, 0.4);
  border-radius: 50%;
  place-items: center;
  color: #fffaf5;
  background: var(--terracotta);
  box-shadow: 0 13px 26px rgba(91, 44, 28, 0.29);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float::before {
  position: absolute;
  z-index: -1;
  inset: -7px;
  border: 1px solid rgba(166, 75, 50, 0.4);
  border-radius: inherit;
  animation: whatsapp-pulse 2.2s ease-out infinite;
  content: "";
}

.whatsapp-float:hover {
  background: var(--terracotta-dark);
  box-shadow: 0 16px 30px rgba(91, 44, 28, 0.34);
  transform: translateY(-3px);
}

.whatsapp-float svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

@keyframes whatsapp-pulse {
  0%,
  100% {
    opacity: 0.35;
    transform: scale(0.93);
  }

  50% {
    opacity: 0;
    transform: scale(1.19);
  }
}

.identification {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 10vw, 148px) max(24px, calc((100vw - 1240px) / 2));
  color: #f8f0e7;
  background: #30261f;
}

.identification::before {
  position: absolute;
  top: -240px;
  right: -180px;
  width: 590px;
  height: 590px;
  border: 1px solid rgba(255, 237, 214, 0.1);
  border-radius: 50%;
  content: "";
}

.identification::after {
  position: absolute;
  bottom: -190px;
  left: -170px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(167, 75, 49, 0.16);
  filter: blur(18px);
  content: "";
}

.identification__intro,
.identification__grid,
.identification__closing {
  position: relative;
  z-index: 1;
}

.identification__intro {
  display: grid;
  max-width: 805px;
  gap: 0;
}

.eyebrow--light {
  color: #dfa27e;
}

.identification h2 {
  max-width: 780px;
  margin-bottom: 22px;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.3rem, 4.25vw, 4.35rem);
  font-weight: 500;
  letter-spacing: -0.052em;
  line-height: 1.04;
}

.identification__intro > p:last-child {
  max-width: 555px;
  margin: 0;
  color: rgba(248, 240, 231, 0.68);
  font-size: 1rem;
  line-height: 1.68;
}

.identification__grid {
  display: grid;
  margin-top: clamp(46px, 6vw, 82px);
  border-top: 1px solid rgba(255, 237, 214, 0.2);
  grid-template-columns: repeat(4, 1fr);
}

.identification-card {
  min-height: 252px;
  border-right: 1px solid rgba(255, 237, 214, 0.2);
  padding: 27px clamp(18px, 2.4vw, 34px) 24px 0;
}

.identification-card:not(:first-child) {
  padding-left: clamp(18px, 2.4vw, 34px);
}

.identification-card:last-child {
  border-right: 0;
  padding-right: 0;
}

.identification-card span {
  color: #dfa27e;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
}

.identification-card h3 {
  margin: 41px 0 13px;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.26rem, 1.8vw, 1.62rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.13;
}

.identification-card p {
  margin: 0;
  color: rgba(248, 240, 231, 0.66);
  font-size: 0.88rem;
  line-height: 1.6;
}

.identification__closing {
  max-width: 730px;
  margin: clamp(54px, 8vw, 100px) auto 0;
  color: #f2d8c6;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.22rem, 2.2vw, 1.72rem);
  letter-spacing: -0.03em;
  line-height: 1.34;
  text-align: center;
}

.approach {
  position: relative;
  display: grid;
  overflow: hidden;
  grid-template-columns: minmax(260px, 0.86fr) minmax(330px, 1.14fr);
  column-gap: clamp(60px, 11vw, 182px);
  row-gap: 66px;
  padding: clamp(82px, 11vw, 160px) max(24px, calc((100vw - 1240px) / 2));
  background: var(--card);
}

.approach::after {
  position: absolute;
  z-index: 0;
  right: -9px;
  bottom: -118px;
  color: rgba(166, 75, 50, 0.06);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(13rem, 24vw, 25rem);
  font-weight: 600;
  letter-spacing: -0.15em;
  line-height: 0.72;
  content: "MN";
  pointer-events: none;
}

.approach__heading,
.approach__right,
.approach__statement,
.approach__photo,
.approach__principles,
.approach__link {
  position: relative;
  z-index: 1;
}

.approach__heading h2 {
  max-width: 480px;
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.45rem, 4.1vw, 4.15rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 1.01;
}

.approach__right {
  display: grid;
  gap: clamp(22px, 3vw, 42px);
  align-items: center;
  grid-template-columns: minmax(170px, 0.68fr) minmax(245px, 1fr);
}

.approach__photo {
  position: relative;
  order: 2;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 18px 38px rgba(61, 39, 27, 0.16);
}

.approach__photo::after {
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255, 253, 248, 0.5);
  border-radius: 12px;
  content: "";
  pointer-events: none;
}

.approach__photo img {
  display: block;
  width: 100%;
  aspect-ratio: 0.82;
  object-fit: cover;
  object-position: center;
}

.approach__statement {
  order: 1;
  align-self: end;
  max-width: 610px;
  border-left: 1px solid rgba(166, 75, 50, 0.45);
  padding: 0 0 0 clamp(23px, 3vw, 42px);
}

.approach__mark {
  display: block;
  height: 44px;
  color: var(--terracotta);
  font-family: "Fraunces", Georgia, serif;
  font-size: 4.2rem;
  line-height: 1;
}

.approach__statement p {
  margin: 4px 0 0;
  color: #4e4239;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.22rem, 2vw, 1.65rem);
  letter-spacing: -0.025em;
  line-height: 1.48;
}

.approach__principles {
  display: grid;
  grid-column: 1 / -1;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.approach__principles article {
  min-height: 218px;
  border-right: 1px solid var(--line);
  padding: 25px clamp(22px, 3vw, 47px) 0 0;
}

.approach__principles article + article {
  padding-left: clamp(22px, 3vw, 47px);
}

.approach__principles article:last-child {
  border-right: 0;
  padding-right: 0;
}

.approach__principles span {
  color: var(--terracotta);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
}

.approach__principles h3 {
  margin: 35px 0 11px;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.3rem, 1.8vw, 1.62rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.approach__principles p {
  max-width: 336px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.89rem;
  line-height: 1.62;
}

.approach__link {
  grid-column: 1 / -1;
  width: fit-content;
  margin: 5px auto 0;
  border-bottom: 1px solid var(--terracotta);
  padding: 0 1px 8px;
  color: var(--terracotta-dark);
  font-size: 0.86rem;
  font-weight: 700;
  transition: color 180ms ease, transform 180ms ease;
}

.approach__link span {
  display: inline-block;
  margin-left: 8px;
  font-size: 1rem;
  transition: transform 180ms ease;
}

.approach__link:hover {
  color: var(--terracotta);
}

.approach__link:hover span {
  transform: translate(2px, -2px);
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 58px;
    padding-top: 146px;
  }

  .hero__portrait-wrap {
    width: min(100%, 480px);
    justify-self: start;
  }

  .hero-note {
    margin: 64px auto 0;
  }

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

  .identification-card {
    min-height: 230px;
    border-bottom: 1px solid rgba(255, 237, 214, 0.2);
    padding: 26px 26px 28px 0;
  }

  .identification-card:nth-child(2) {
    border-right: 0;
    padding-left: 26px;
    padding-right: 0;
  }

  .identification-card:nth-child(3) {
    padding-left: 0;
  }

  .identification-card:nth-child(4) {
    border-right: 0;
    padding-right: 0;
  }

  .approach {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .approach__statement {
    max-width: 690px;
  }

  .approach__right {
    max-width: 690px;
  }
}

@media (max-width: 600px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    padding: 12px 14px;
  }

  .header-cta {
    font-size: 0;
  }

  .header-cta span {
    font-size: 1.18rem;
  }

  .hero {
    min-height: auto;
    gap: 50px;
    padding: 130px 20px 58px;
  }

  h1 {
    font-size: clamp(2.8rem, 14vw, 4rem);
  }

  .hero__lead {
    margin-top: 24px;
    line-height: 1.6;
  }

  .hero__approach {
    font-size: 0.9rem;
  }

  .hero__actions {
    display: grid;
    gap: 20px;
    margin-top: 28px;
  }

  .button--primary {
    width: 100%;
  }

  .button--quiet {
    width: fit-content;
  }

  .hero__details {
    display: grid;
    gap: 9px;
    margin-top: 31px;
  }

  .hero-portrait__visual,
  .hero-portrait__visual img {
    min-height: 460px;
  }

  .hero-portrait figcaption {
    max-width: calc(100% - 32px);
  }

  .hero-note {
    margin: 60px auto 0;
  }

  .identification {
    padding: 80px 20px;
  }

  .identification h2 {
    font-size: clamp(2.25rem, 11vw, 3.15rem);
  }

  .identification__grid {
    display: block;
    margin-top: 45px;
  }

  .identification-card,
  .identification-card:not(:first-child),
  .identification-card:last-child {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 237, 214, 0.2);
    padding: 25px 0 28px;
  }

  .identification-card h3 {
    margin-top: 28px;
  }

  .identification__closing {
    margin-top: 56px;
  }

  .approach {
    gap: 42px;
    padding: 80px 20px;
  }

  .approach__heading h2 {
    font-size: clamp(2.45rem, 11vw, 3.25rem);
  }

  .approach__statement {
    padding-left: 20px;
  }

  .approach__right {
    grid-template-columns: minmax(120px, 0.56fr) minmax(180px, 1fr);
    gap: 17px;
  }

  .approach__photo {
    border-radius: 14px;
  }

  .approach__photo::after {
    border-radius: 9px;
  }

  .approach__statement p {
    font-size: 1.22rem;
  }

  .approach__principles {
    display: block;
  }

  .approach__principles article,
  .approach__principles article + article,
  .approach__principles article:last-child {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 25px 0 29px;
  }

  .approach__principles h3 {
    margin-top: 27px;
  }

  .approach__link {
    margin-top: 4px;
  }

  .whatsapp-float {
    right: 17px;
    bottom: 17px;
    width: 52px;
    height: 52px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Layout da seção de abordagem: texto à esquerda, foto à direita e cards abaixo. */
.approach {
  grid-template-columns: minmax(0, 1.06fr) minmax(330px, 0.94fr);
  column-gap: clamp(52px, 8vw, 118px);
  align-items: center;
}

.approach__heading {
  max-width: 610px;
  align-self: center;
}

.approach__heading h2 {
  max-width: 590px;
  margin-bottom: 33px;
}

.approach__photo {
  order: initial;
  width: min(100%, 455px);
  justify-self: end;
  align-self: center;
}

.approach__statement {
  order: initial;
  align-self: auto;
  max-width: 570px;
  margin-top: 0;
}

@media (max-width: 900px) {
  .approach__photo {
    width: min(100%, 500px);
    justify-self: start;
  }
}

@media (max-width: 600px) {
  .approach__photo {
    width: 100%;
    max-width: 480px;
  }
}

/* Ordem responsiva da seção de abordagem. */
.approach {
  grid-template-columns: minmax(330px, 0.92fr) minmax(0, 1.08fr);
  grid-template-areas:
    "photo title"
    "photo statement"
    "cards cards"
    "link link";
  align-items: start;
  row-gap: 38px;
}

.approach__heading {
  grid-area: title;
}

.approach__heading h2 {
  margin-bottom: 0;
}

.approach__photo {
  grid-area: photo;
  align-self: center;
}

.approach__statement {
  grid-area: statement;
  margin: 0;
}

.approach__principles {
  grid-area: cards;
  margin-top: 28px;
}

.approach__link {
  grid-area: link;
}

@media (max-width: 900px) {
  .approach {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "title"
      "photo"
      "statement"
      "cards"
      "link";
    row-gap: 32px;
  }

  .approach__heading,
  .approach__statement {
    width: 100%;
    max-width: 620px;
  }

  .approach__photo {
    width: min(100%, 520px);
    justify-self: center;
  }

  .approach__principles {
    margin-top: 18px;
  }
}

@media (max-width: 600px) {
  .approach {
    row-gap: 29px;
  }

  .approach__photo {
    width: 100%;
  }

  .approach__statement {
    padding-left: 20px;
  }
}

/* Seção sobre Matheus */
.about {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(42px, 6vw, 104px);
  padding: clamp(86px, 11vw, 160px) max(24px, calc((100vw - 1160px) / 2));
  overflow: hidden;
  background: var(--paper-deep);
}

.about::before {
  position: absolute;
  width: min(46vw, 590px);
  aspect-ratio: 1;
  right: -12%;
  top: -43%;
  border: 1px solid rgba(174, 77, 47, 0.14);
  border-radius: 50%;
  content: "";
}

.about__intro,
.about__education,
.about__closing {
  position: relative;
  z-index: 1;
}

.about__intro h2 {
  max-width: 650px;
  margin: 22px 0 28px;
  color: var(--ink);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.55rem, 4.25vw, 4.35rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.about__copy {
  max-width: 610px;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.8;
}

.about__copy p + p {
  margin-top: 17px;
}

.about__education {
  align-self: center;
  padding: clamp(26px, 3.2vw, 40px);
  border: 1px solid rgba(80, 57, 43, 0.14);
  border-radius: 22px;
  box-shadow: 0 18px 42px rgba(67, 47, 35, 0.08);
  background: rgba(255, 252, 247, 0.77);
  backdrop-filter: blur(12px);
}

.about__education-heading {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding-bottom: 24px;
}

.about__education-heading > span {
  display: grid;
  width: 33px;
  height: 33px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--paper);
  background: var(--terra);
}

.about__education-heading p,
.about__education-heading strong {
  display: block;
}

.about__education-heading p {
  margin: 1px 0 4px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.about__education-heading strong {
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 500;
}

.about__degree {
  padding: 19px 0;
  border-top: 1px solid rgba(80, 57, 43, 0.13);
  border-bottom: 1px solid rgba(80, 57, 43, 0.13);
}

.about__degree span {
  color: var(--terra);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.about__degree p {
  margin-top: 7px;
  color: var(--ink);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.35;
}

.about__degree abbr {
  text-decoration: none;
}

.about__postgrads {
  display: grid;
  gap: 0;
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
}

.about__postgrads li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(80, 57, 43, 0.1);
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
}

.about__postgrads li::before {
  color: var(--terra);
  content: "✦";
}

.about__postgrads li span {
  margin-left: auto;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 500;
  text-align: right;
}

.about__closing {
  grid-column: 1 / -1;
  max-width: 930px;
  padding-top: clamp(16px, 2vw, 28px);
  border-top: 1px solid rgba(80, 57, 43, 0.16);
  color: var(--ink);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.28rem, 2vw, 1.78rem);
  font-weight: 500;
  line-height: 1.37;
}

@media (max-width: 900px) {
  .about {
    grid-template-columns: minmax(0, 1fr);
    gap: 42px;
  }

  .about__education {
    max-width: 650px;
  }

  .about__closing {
    padding-top: 25px;
  }
}

@media (max-width: 600px) {
  .about {
    gap: 34px;
    padding: 80px 20px;
  }

  .about__intro h2 {
    margin: 19px 0 24px;
    font-size: clamp(2.35rem, 12vw, 3.25rem);
  }

  .about__copy {
    font-size: 0.98rem;
    line-height: 1.73;
  }

  .about__education {
    padding: 24px 20px;
    border-radius: 18px;
  }

  .about__education-heading {
    gap: 12px;
    padding-bottom: 20px;
  }

  .about__education-heading > span {
    width: 30px;
    height: 30px;
  }

  .about__postgrads li {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 5px 11px;
  }

  .about__postgrads li span {
    width: calc(100% - 24px);
    margin-left: 24px;
    text-align: left;
  }

  .about__closing {
    font-size: 1.24rem;
  }
}
/* Foto editorial da seção Conheça Matheus */
.about {
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
  grid-template-areas:
    "intro photo"
    "education education"
    "closing closing";
  column-gap: clamp(42px, 6vw, 104px);
  row-gap: clamp(38px, 5vw, 70px);
}

.about__intro {
  grid-area: intro;
  align-self: center;
}

.about__photo {
  position: relative;
  grid-area: photo;
  min-height: 460px;
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 20px 46px rgba(67, 47, 35, 0.14);
  background: #d4c1aa;
}

.about__photo::after {
  position: absolute;
  z-index: 1;
  inset: 11px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 14px;
  content: "";
  pointer-events: none;
}

.about__photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  object-position: center;
}

.about__education {
  grid-area: education;
  width: 100%;
  max-width: none;
  justify-self: stretch;
}

.about__closing {
  grid-area: closing;
}

@media (max-width: 900px) {
  .about {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "intro"
      "photo"
      "education"
      "closing";
    row-gap: 38px;
  }

  .about__photo {
    width: min(100%, 520px);
    min-height: 540px;
    justify-self: center;
  }

  .about__photo img {
    min-height: 540px;
  }

  .about__education {
    max-width: 650px;
  }
}

@media (max-width: 600px) {
  .about {
    row-gap: 30px;
  }

  .about__photo {
    width: 100%;
    min-height: 455px;
    border-radius: 18px;
  }

  .about__photo::after {
    inset: 9px;
    border-radius: 11px;
  }

  .about__photo img {
    min-height: 455px;
  }
}
/* Seção de atendimento on-line */
.service {
  padding: clamp(86px, 11vw, 155px) max(24px, calc((100vw - 1160px) / 2));
  color: #fffaf3;
  background: #41322f;
}

.service__top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
  padding-bottom: clamp(42px, 6vw, 70px);
  border-bottom: 1px solid rgba(255, 250, 243, 0.2);
}

.eyebrow--light {
  color: #ead8c8;
}

.eyebrow--light span {
  background: #dca67d;
}

.service h2 {
  max-width: 650px;
  margin-top: 22px;
  color: #fffaf3;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.65rem, 4.8vw, 4.8rem);
  font-weight: 500;
  line-height: 0.97;
  letter-spacing: -0.068em;
}

.service__intro {
  max-width: 390px;
  margin-bottom: 7px;
  color: #eaded3;
  font-size: 1.02rem;
  line-height: 1.72;
}

.service__body {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(310px, 0.88fr);
  gap: clamp(38px, 7vw, 120px);
  padding-top: clamp(42px, 6vw, 70px);
}

.service__steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: item;
}

.service__steps li {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 20px;
  padding: 0 0 28px;
}

.service__steps li + li {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 250, 243, 0.18);
}

.service__number {
  color: #dca67d;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.service__steps h3 {
  margin: -5px 0 11px;
  color: #fffaf3;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.35rem, 2vw, 1.68rem);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.service__steps p {
  max-width: 530px;
  color: #e4d6ca;
  font-size: 0.97rem;
  line-height: 1.68;
}

.service__note {
  align-self: start;
  padding: clamp(27px, 3.3vw, 43px);
  border: 1px solid rgba(255, 250, 243, 0.68);
  border-radius: 21px;
  color: #44342e;
  background: #f7eee4;
}

.service__note-label {
  margin-bottom: 18px;
  color: #a64f34;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.service__note-text {
  color: #44342e;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  font-weight: 500;
  line-height: 1.36;
  letter-spacing: -0.035em;
}

.service__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 27px 0 28px;
}

.service__pills span {
  padding: 8px 11px;
  border: 1px solid rgba(68, 52, 46, 0.17);
  border-radius: 999px;
  color: #5a443a;
  font-size: 0.77rem;
  font-weight: 700;
}

.service .button--light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 21px;
  border: 0;
  border-radius: 999px;
  color: #fffaf3;
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 0.89rem;
  font-weight: 800;
  text-decoration: none;
  background: #ae4d2f;
  transition: transform 180ms ease, background 180ms ease;
}

.service .button--light:hover {
  transform: translateY(-2px);
  background: #933f27;
}

@media (max-width: 900px) {
  .service__top {
    display: block;
  }

  .service__intro {
    max-width: 590px;
    margin-top: 24px;
  }

  .service__body {
    grid-template-columns: minmax(0, 1fr);
    gap: 37px;
  }

  .service__note {
    max-width: 600px;
  }
}

@media (max-width: 600px) {
  .service {
    padding: 80px 20px;
  }

  .service__top {
    padding-bottom: 35px;
  }

  .service h2 {
    margin-top: 19px;
    font-size: clamp(2.45rem, 12vw, 3.35rem);
  }

  .service__body {
    padding-top: 35px;
  }

  .service__steps li {
    grid-template-columns: 45px minmax(0, 1fr);
    gap: 13px;
    padding-bottom: 25px;
  }

  .service__steps li + li {
    padding-top: 25px;
  }

  .service__steps h3 {
    margin-top: -4px;
  }

  .service__note {
    padding: 28px 22px;
    border-radius: 18px;
  }

  .service .button--light {
    width: 100%;
  }
}
/* Ajuste de hierarquia no atendimento */
.service__top {
  display: block;
}

.service h2 {
  max-width: 720px;
  font-size: clamp(2.55rem, 3.6vw, 3.85rem);
}

.service__intro {
  max-width: 540px;
  margin: 24px 0 0;
}

@media (max-width: 600px) {
  .service h2 {
    font-size: clamp(2.45rem, 12vw, 3.35rem);
  }
}
/* Restaura o selo da seção de identificação */
.identification .eyebrow--light {
  color: #dfa27e;
}

.identification .eyebrow--light span {
  background: currentColor;
}
/* Seção de dúvidas frequentes */
.faq {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  grid-template-areas:
    "intro list"
    "footer list";
  align-items: start;
  column-gap: clamp(54px, 9vw, 155px);
  row-gap: 40px;
  padding: clamp(88px, 11vw, 160px) max(24px, calc((100vw - 1160px) / 2));
  background: #f7f0e8;
}

.faq__intro {
  grid-area: intro;
}

.faq__intro h2 {
  margin: 21px 0 24px;
  color: var(--ink);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.5rem, 4vw, 4.15rem);
  font-weight: 500;
  line-height: 0.99;
  letter-spacing: -0.065em;
}

.faq__intro > p:last-child {
  max-width: 365px;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.72;
}

.faq__list {
  grid-area: list;
  border-top: 1px solid rgba(80, 57, 43, 0.24);
}

.faq__item {
  border-bottom: 1px solid rgba(80, 57, 43, 0.2);
}

.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 25px 0;
  color: var(--ink);
  cursor: pointer;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.24rem, 1.7vw, 1.52rem);
  font-weight: 500;
  line-height: 1.25;
  list-style: none;
  letter-spacing: -0.033em;
}

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

.faq__item summary > span {
  position: relative;
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(80, 57, 43, 0.27);
  border-radius: 50%;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.faq__item summary > span::before,
.faq__item summary > span::after {
  position: absolute;
  width: 11px;
  height: 1px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease;
}

.faq__item summary > span::after {
  transform: rotate(90deg);
}

.faq__item[open] summary > span {
  border-color: var(--terra);
  color: var(--paper);
  background: var(--terra);
  transform: rotate(180deg);
}

.faq__item[open] summary > span::after {
  transform: rotate(0deg);
}

.faq__answer {
  max-width: 610px;
  padding: 0 55px 25px 0;
}

.faq__answer p {
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.72;
}

.faq__footer {
  grid-area: footer;
  align-self: end;
  padding-top: 21px;
  border-top: 1px solid rgba(80, 57, 43, 0.18);
}

.faq__footer p {
  margin-bottom: 12px;
  color: var(--ink-soft);
  font-size: 0.87rem;
}

.faq__footer a {
  display: inline-block;
  color: var(--terra);
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
}

.faq__footer a::after {
  margin-left: 9px;
  content: "→";
  transition: transform 180ms ease;
}

.faq__footer a:hover::after {
  display: inline-block;
  transform: translateX(4px);
}

@media (max-width: 900px) {
  .faq {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "intro"
      "list"
      "footer";
    gap: 37px;
  }

  .faq__intro > p:last-child {
    max-width: 610px;
  }

  .faq__footer {
    max-width: 620px;
  }
}

@media (max-width: 600px) {
  .faq {
    gap: 30px;
    padding: 80px 20px;
  }

  .faq__intro h2 {
    margin: 19px 0 22px;
    font-size: clamp(2.38rem, 11.5vw, 3.25rem);
  }

  .faq__item summary {
    gap: 16px;
    padding: 21px 0;
    font-size: 1.24rem;
  }

  .faq__item summary > span {
    width: 31px;
    height: 31px;
  }

  .faq__answer {
    padding: 0 8px 22px 0;
  }
}
/* Encerramento e rodapé */
.closing-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(310px, 0.84fr);
  gap: clamp(46px, 9vw, 150px);
  padding: clamp(88px, 11vw, 158px) max(24px, calc((100vw - 1160px) / 2));
  overflow: hidden;
  color: #fff9f2;
  background: #ab4e31;
}

.closing-cta::before,
.closing-cta::after {
  position: absolute;
  border: 1px solid rgba(255, 249, 242, 0.18);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.closing-cta::before {
  top: -220px;
  left: -145px;
  width: 520px;
  height: 520px;
}

.closing-cta::after {
  right: -205px;
  bottom: -290px;
  width: 610px;
  height: 610px;
}

.closing-cta__content,
.closing-cta__contacts {
  position: relative;
  z-index: 1;
}

.closing-cta .eyebrow--light {
  color: #fde8d6;
}

.closing-cta .eyebrow--light span {
  background: currentColor;
}

.closing-cta h2 {
  max-width: 700px;
  margin: 23px 0 25px;
  color: #fff9f2;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.65rem, 4.8vw, 4.75rem);
  font-weight: 500;
  line-height: 0.97;
  letter-spacing: -0.07em;
}

.closing-cta__content > p:last-of-type {
  max-width: 560px;
  color: #f9ddca;
  font-size: 1rem;
  line-height: 1.74;
}

.closing-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 55px;
  margin-top: 31px;
  padding: 14px 23px;
  border-radius: 999px;
  color: #613121;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  background: #fff9f2;
  box-shadow: 0 11px 26px rgba(66, 27, 17, 0.18);
  transition: transform 180ms ease, background 180ms ease;
}

.closing-cta__button:hover {
  transform: translateY(-2px);
  background: #f9e6d7;
}

.closing-cta__contacts {
  align-self: center;
  padding: clamp(28px, 3.4vw, 43px);
  border: 1px solid rgba(255, 249, 242, 0.76);
  border-radius: 22px;
  color: #3e2a23;
  background: rgba(255, 249, 242, 0.94);
  box-shadow: 0 20px 44px rgba(77, 28, 17, 0.16);
}

.closing-cta__contacts-label {
  margin-bottom: 21px;
  color: #a64f34;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.closing-cta__contacts a {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 17px 0;
  border-top: 1px solid rgba(80, 57, 43, 0.15);
  color: inherit;
  text-decoration: none;
}

.closing-cta__contacts a span {
  color: #80665a;
  font-size: 0.78rem;
  font-weight: 700;
}

.closing-cta__contacts a strong {
  color: #3e2a23;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.closing-cta__notice {
  margin-top: 9px;
  padding-top: 20px;
  border-top: 1px solid rgba(80, 57, 43, 0.15);
  color: #80665a;
  font-size: 0.83rem;
  line-height: 1.55;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 25px max(24px, calc((100vw - 1160px) / 2));
  color: rgba(255, 248, 240, 0.65);
  background: #30261f;
  font-size: 0.75rem;
  line-height: 1.5;
}

.site-footer span {
  margin: 0 5px;
  color: #d59672;
}

@media (max-width: 900px) {
  .closing-cta {
    grid-template-columns: minmax(0, 1fr);
    gap: 43px;
  }

  .closing-cta__contacts {
    width: min(100%, 560px);
  }
}

@media (max-width: 600px) {
  .closing-cta {
    gap: 36px;
    padding: 80px 20px;
  }

  .closing-cta h2 {
    margin: 19px 0 22px;
    font-size: clamp(2.45rem, 12vw, 3.3rem);
  }

  .closing-cta__button {
    width: 100%;
  }

  .closing-cta__contacts {
    padding: 27px 22px;
    border-radius: 18px;
  }

  .site-footer {
    display: block;
    padding: 22px 20px;
  }

  .site-footer p + p {
    margin-top: 6px;
  }
}
/* Navegação do cabeçalho */
.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.header-nav a {
  padding: 9px 11px;
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 750;
  line-height: 1;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.header-nav a:hover {
  color: var(--terracotta);
  background: rgba(173, 77, 47, 0.09);
}

.header-nav a:first-child {
  border: 1px solid rgba(174, 77, 47, 0.28);
  color: var(--terracotta);
}

.header-nav a:first-child:hover {
  color: var(--paper);
  background: var(--terracotta);
}

.header-nav a:last-child {
  padding-right: 14px;
  padding-left: 14px;
  color: var(--paper);
  background: var(--ink);
}

.header-nav a:last-child:hover {
  color: var(--paper);
  background: var(--terracotta-dark);
}

#atendimento,
#duvidas,
#contato {
  scroll-margin-top: 104px;
}

@media (max-width: 760px) {
  .site-header {
    gap: 10px;
    padding: 10px 12px;
  }

  .header-nav a {
    padding: 8px 8px;
    font-size: 0.71rem;
  }

  .header-nav a:last-child {
    padding-right: 11px;
    padding-left: 11px;
  }
}

@media (max-width: 620px) {
  .site-header {
    display: block;
    top: 8px;
    width: min(100% - 16px, 1240px);
    padding: 10px 12px 11px;
  }

  .brand {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
  }

  .brand small {
    font-size: 0.59rem;
  }

  .header-nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 4px;
    margin-top: 10px;
  }

  .header-nav a,
  .header-nav a:last-child {
    min-width: 0;
    padding: 8px 4px;
    font-size: 0.64rem;
    text-align: center;
    white-space: nowrap;
  }
}
/* Equilíbrio do cabeçalho com CTA */
.site-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
}

.brand {
  justify-self: start;
}

.header-nav {
  justify-self: center;
}

.header-cta {
  justify-self: end;
  white-space: nowrap;
}

@media (max-width: 620px) {
  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .brand {
    justify-self: start;
  }

  .header-cta {
    justify-self: end;
    padding-bottom: 3px;
    font-size: 0.72rem;
  }

  .header-cta span {
    font-size: 0.86rem;
  }

  .header-nav {
    grid-column: 1 / -1;
    width: 100%;
    justify-self: stretch;
  }
}
/* Padronização visual dos atalhos */
.header-nav {
  gap: 6px;
}

.header-nav a,
.header-nav a:last-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 13px;
}

.header-nav a:first-child {
  min-width: 105px;
}

.header-nav a:last-child {
  min-width: 91px;
}

@media (max-width: 760px) {
  .header-nav {
    gap: 4px;
  }

  .header-nav a,
  .header-nav a:last-child {
    min-height: 37px;
    padding: 0 9px;
  }
}

@media (max-width: 620px) {
  .header-nav a,
  .header-nav a:last-child {
    min-height: 36px;
    min-width: 0;
    padding: 0 4px;
  }
}
/* Menu hambúrguer no mobile */
.mobile-menu {
  display: none;
}

@media (max-width: 620px) {
  .site-header {
    display: flex;
    min-height: 62px;
    align-items: center;
    justify-content: space-between;
    padding: 9px 13px;
  }

  .brand {
    display: grid;
    gap: 3px;
  }

  .brand span {
    font-size: 1.08rem;
  }

  .brand small,
  .header-nav,
  .header-cta {
    display: none;
  }

  .mobile-menu {
    position: relative;
    z-index: 4;
    display: block;
  }

  .mobile-menu summary {
    position: relative;
    display: grid;
    width: 43px;
    height: 43px;
    place-items: center;
    border: 1px solid rgba(96, 68, 47, 0.17);
    border-radius: 50%;
    cursor: pointer;
    list-style: none;
    background: rgba(255, 252, 247, 0.45);
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu summary > span {
    position: absolute;
    width: 17px;
    height: 1.5px;
    border-radius: 999px;
    background: var(--ink);
    transition: transform 200ms ease, opacity 150ms ease;
  }

  .mobile-menu summary > span:nth-child(1) {
    transform: translateY(-6px);
  }

  .mobile-menu summary > span:nth-child(3) {
    transform: translateY(6px);
  }

  .mobile-menu[open] summary > span:nth-child(1) {
    transform: rotate(45deg);
  }

  .mobile-menu[open] summary > span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu[open] summary > span:nth-child(3) {
    transform: rotate(-45deg);
  }

  .mobile-menu__panel {
    position: fixed;
    top: 79px;
    right: 8px;
    left: 8px;
    display: grid;
    gap: 3px;
    padding: 11px;
    border: 1px solid rgba(96, 68, 47, 0.16);
    border-radius: 18px;
    box-shadow: 0 18px 42px rgba(72, 46, 28, 0.13), inset 0 1px rgba(255, 255, 255, 0.6);
    background: rgba(250, 245, 237, 0.94);
    backdrop-filter: blur(18px) saturate(125%);
    -webkit-backdrop-filter: blur(18px) saturate(125%);
  }

  .mobile-menu__panel a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
    padding: 0 12px;
    border-radius: 11px;
    color: var(--ink);
    font-size: 0.91rem;
    font-weight: 750;
    text-decoration: none;
  }

  .mobile-menu__panel a > span {
    color: var(--terracotta);
    font-size: 1rem;
  }

  .mobile-menu__panel a:not(.mobile-menu__talk):hover {
    color: var(--terracotta);
    background: rgba(173, 77, 47, 0.08);
  }

  .mobile-menu__talk {
    margin-top: 5px;
    color: var(--paper) !important;
    background: var(--ink);
  }

  .mobile-menu__talk > span {
    color: var(--paper) !important;
  }
}
/* Aspa de fechamento da citação */
.approach__quote-close {
  display: inline;
  margin-left: 0.05em;
  color: var(--terracotta);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.35em;
  font-weight: 600;
  line-height: 0;
}
/* Aspa final como elemento editorial */
.approach__quote-close {
  position: absolute;
  right: 0;
  bottom: -0.32em;
  display: block;
  margin: 0;
  color: var(--terracotta);
  font-size: 4.2rem;
  font-weight: 600;
  line-height: 1;
  pointer-events: none;
}

@media (max-width: 600px) {
  .approach__quote-close {
    right: 4px;
    bottom: -0.26em;
    font-size: 3.6rem;
  }
}
/* Respiro para a aspa de fechamento */
.approach__statement {
  padding-bottom: 54px;
}

.approach__quote-close {
  bottom: 0;
}

@media (max-width: 600px) {
  .approach__statement {
    padding-bottom: 47px;
  }

  .approach__quote-close {
    bottom: 0;
  }
}
/* Legenda da foto de abordagem */
.approach__photo {
  overflow: visible;
  border-radius: 0;
  box-shadow: none;
}

.approach__photo::after {
  content: none;
}

.approach__photo-frame {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 18px 38px rgba(61, 39, 27, 0.16);
}

.approach__photo-frame::after {
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255, 253, 248, 0.5);
  border-radius: 12px;
  content: "";
  pointer-events: none;
}

.approach__photo-frame img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.approach__caption {
  max-width: 510px;
  margin: 12px 4px 0;
  color: var(--ink-soft);
  font-size: 0.77rem;
  line-height: 1.52;
}

.approach__caption em {
  color: var(--ink);
}

@media (max-width: 600px) {
  .approach__photo-frame {
    border-radius: 14px;
  }

  .approach__photo-frame::after {
    inset: 7px;
    border-radius: 9px;
  }

  .approach__caption {
    margin: 10px 3px 0;
    font-size: 0.74rem;
  }
}
/* Pós-graduações com instituição primeiro */
.about__postgrads li {
  display: grid;
  grid-template-columns: 17px minmax(0, 1fr);
  align-items: start;
  justify-content: initial;
  gap: 13px;
  padding: 15px 0;
}

.about__postgrads li::before {
  align-self: start;
  margin-top: 0.22em;
  color: var(--terra);
  font-size: 0.92rem;
  line-height: 1;
}

.about__postgrad-content {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.about__postgrad-content strong {
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 750;
  line-height: 1.32;
}

.about__postgrads li .about__postgrad-content span {
  width: auto;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.45;
  text-align: left;
}

@media (max-width: 600px) {
  .about__postgrads li {
    grid-template-columns: 17px minmax(0, 1fr);
    align-items: start;
    gap: 12px;
    padding: 16px 0;
  }

  .about__postgrads li::before {
    margin-top: 0.24em;
  }

  .about__postgrads li .about__postgrad-content span {
    width: auto;
    margin: 0;
  }
}
/* Pós à esquerda e instituição abreviada */
.about__postgrad-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 0 28px;
}

.about__postgrad-content strong {
  grid-column: 1;
}

.about__postgrads li .about__postgrad-content span {
  grid-column: 2;
  align-self: start;
  margin-top: 0.05em;
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 650;
  text-align: right;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .about__postgrad-content {
    grid-template-columns: minmax(0, 1fr);
    gap: 4px;
  }

  .about__postgrad-content strong,
  .about__postgrads li .about__postgrad-content span {
    grid-column: 1;
    text-align: left;
    white-space: normal;
  }

  .about__postgrads li .about__postgrad-content span {
    margin-top: 0;
  }
}
/* Rótulo da lista de pós-graduação */
.about__postgrads-label {
  margin: 0;
  padding: 19px 0 9px;
  color: var(--terra);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.about__postgrads-label + .about__postgrads {
  margin-top: 0;
}
/* Cabeçalho de formação centralizado */
.about__education-heading {
  position: relative;
  justify-content: center;
  text-align: center;
}

.about__education-heading > span {
  position: absolute;
  top: 0;
  left: 0;
}
/* Seta simples e botões centralizados no mobile */
.faq__footer a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.faq__footer a::after {
  display: none;
  content: none;
}

.faq__footer-icon {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transition: transform 180ms ease;
}

.faq__footer a:hover .faq__footer-icon {
  transform: translateX(4px);
}

@media (max-width: 600px) {
  .hero__actions {
    justify-items: center;
  }
}
/* CTA de dúvidas centralizado no mobile */
@media (max-width: 600px) {
  .faq__footer {
    width: 100%;
    text-align: center;
  }

  .faq__footer a {
    justify-content: center;
  }
}
/* Link de dúvidas no estilo editorial */
@media (max-width: 600px) {
  .faq__footer a {
    gap: 12px;
    padding: 0 2px 11px;
    border-bottom: 1px solid var(--terra);
    color: var(--terracotta);
  }

  .faq__footer-icon {
    width: 16px;
    height: 16px;
    transform: rotate(-45deg);
  }

  .faq__footer a:hover .faq__footer-icon {
    transform: translate(3px, -3px) rotate(-45deg);
  }
}