/* ==========================================================================
   V33 | fidelidade ao conceito editorial aprovado
   A estrutura alterna superfícies claras e escuras. O rosé é ação e detalhe,
   nunca cor de texto. As animações existentes permanecem intactas.
   ========================================================================== */

:root {
  --v33-ink: #17140f;
  --v33-ink-soft: #49443f;
  --v33-muted: #706b66;
  --v33-paper: #f1f0ec;
  --v33-paper-warm: #e8e3dd;
  --v33-paper-deep: #d6ccc2;
  --v33-line: rgba(23, 20, 15, 0.14);
  --v33-dark: #17140f;
  --v33-dark-soft: #211d18;
  --v33-rose: #b77b70;
  --v33-rose-dark: #966157;
  --v33-wine: #6b1f32;
  --v33-wine-dark: #531625;
  --v33-display: "Archivo", "Inter", sans-serif;
  --v33-body: "Inter", sans-serif;
  --v33-container: 1120px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}

body {
  font-family: var(--v33-body);
  color: var(--v33-ink);
  background:
    radial-gradient(circle at 7% 4%, rgba(255, 255, 255, 0.92), transparent 32rem),
    radial-gradient(circle at 92% 24%, rgba(214, 204, 194, 0.24), transparent 36rem),
    var(--v33-paper);
}

.page {
  width: 100%;
  max-width: none;
  padding: 0;
  overflow: hidden;
}

.profile,
.services,
.about,
.contents,
.section-label {
  width: min(calc(100% - 48px), var(--v33-container));
  max-width: var(--v33-container);
  margin-inline: auto;
}

.profile {
  position: relative;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 0;
  padding: 22px 0 20px;
  overflow: visible;
  text-align: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  isolation: isolate;
}

.profile::before {
  display: none;
}

.profile__topbar {
  grid-area: topbar;
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
  padding: 0 2px;
}

.profile__brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--v33-ink);
  text-decoration: none;
}

.profile__brand > span {
  font-family: var(--v33-display);
  font-size: 20px;
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.profile__brand > small {
  padding-left: 14px;
  border-left: 1px solid rgba(23, 20, 15, 0.35);
  color: var(--v33-muted);
  font-size: 8px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.profile__nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 40px);
}

.profile__nav a {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--v33-ink-soft);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  text-transform: uppercase;
}

.profile__nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  height: 1px;
  background: var(--v33-rose);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.profile__nav a:hover::after,
.profile__nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.profile__copy {
  position: relative;
  z-index: 3;
  align-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 620px;
  padding: 0;
}

.profile__eyebrow,
.about__eyebrow {
  margin: 0 0 6px;
  color: var(--v33-ink-soft);
  font-family: var(--v33-body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.profile__name {
  align-self: center;
  max-width: none;
  color: var(--v33-ink);
  font-family: var(--v33-display);
  font-size: clamp(25px, 2.5vw, 32px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.profile__tagline {
  max-width: 56ch;
  margin-top: 8px;
  color: var(--v33-ink-soft);
  font-family: var(--v33-body);
  font-size: 13px;
  line-height: 1.5;
}

.profile__actions {
  margin-top: 26px;
}

.profile__text-link,
.about__link {
  color: var(--v33-ink);
  border-color: rgba(23, 20, 15, 0.34);
}

.profile__text-link:hover,
.profile__text-link:focus-visible,
.about__link:hover,
.about__link:focus-visible {
  color: var(--v33-ink);
  border-color: var(--v33-ink);
}

.profile .avatar {
  position: relative;
  align-self: center;
  width: 92px;
  height: 92px;
  min-height: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
  isolation: isolate;
}

.profile .avatar::before {
  display: none;
}

.profile .avatar picture {
  display: block;
  width: 100%;
  height: 100%;
}

.profile .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 27%;
  border-radius: 50%;
  filter: saturate(0.78) contrast(0.96);
  transform: none;
  -webkit-mask-image: none;
  mask-image: none;
}

.profile .avatar::after {
  border: 0;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(23, 20, 15, 0.12);
}

.profile .socials {
  gap: 7px;
  justify-content: center;
  margin: 11px 0 0;
}

.profile .social {
  width: 34px;
  height: 34px;
  color: var(--v33-ink);
  background: transparent;
  border-color: rgba(23, 20, 15, 0.18);
}

.profile .social:hover,
.profile .social:focus-visible {
  color: var(--v33-paper);
  background: var(--v33-ink);
  border-color: var(--v33-ink);
}

.btn--primary {
  color: #fff;
  background: var(--v33-wine);
  border-color: var(--v33-wine);
  border-radius: 2px;
  box-shadow: none;
}

.btn--primary:hover,
.btn--primary:focus-visible {
  color: #fff;
  background: var(--v33-wine-dark);
  border-color: var(--v33-wine-dark);
  box-shadow: 0 12px 28px rgba(83, 22, 37, 0.2);
}

/* Primeira dobra clara: radar e mensagem sobre a mesma superfície mineral. */
.hero {
  --accent: var(--v33-wine);
  --accent-strong: var(--v33-wine);
  width: 100%;
  max-width: none;
  min-height: 500px;
  display: grid;
  grid-template-columns: minmax(520px, 1.1fr) minmax(340px, 0.9fr);
  align-items: center;
  gap: clamp(50px, 7vw, 94px);
  margin: 0 0 clamp(54px, 7vw, 88px);
  padding:
    clamp(28px, 3.5vw, 44px)
    max(24px, calc((100vw - var(--v33-container)) / 2));
  color: var(--v33-ink);
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(23, 20, 15, 0.08);
  border-radius: 0;
  box-shadow: none;
}

.hero__body {
  grid-column: 2;
  grid-row: 1;
  align-items: flex-start;
  text-align: left;
}

.hero__line {
  display: block;
  width: 44px;
  height: 2px;
  margin-bottom: 24px;
  background: var(--v33-wine);
}

.hero__body h1 {
  max-width: 12ch;
  color: var(--v33-ink);
  font-family: var(--v33-display);
  font-size: clamp(40px, 4.35vw, 56px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.hero__body h1 em {
  color: inherit;
}

.hero__body p {
  max-width: 37ch;
  margin-top: 24px;
  color: var(--v33-ink-soft);
  font-size: 15px;
  line-height: 1.65;
}

.hero__body .btn {
  margin-top: 28px;
}

.radar-stage {
  grid-column: 1;
  grid-row: 1;
  width: min(100%, 500px);
  justify-self: start;
}

.radar {
  background:
    radial-gradient(circle at 50% 50%, rgba(107, 31, 50, 0.13), rgba(107, 31, 50, 0.025) 68%, transparent 100%);
  box-shadow:
    0 0 72px rgba(107, 31, 50, 0.08),
    inset 0 0 38px rgba(107, 31, 50, 0.035);
}

.radar__rings circle,
.radar__spokes path {
  stroke: rgba(107, 31, 50, 0.32);
}

.radar__rings circle:first-child {
  stroke: rgba(107, 31, 50, 0.56);
}

.radar__specks circle {
  fill: rgba(107, 31, 50, 0.48);
}

.radar-links line {
  stroke: rgba(107, 31, 50, 0.52);
}

.radar-links circle {
  fill: var(--v33-wine);
  animation-name: blip-ping-wine;
}

@keyframes blip-ping-wine {
  0% {
    fill: #6b1f32;
    r: 2.4;
    opacity: 1;
  }
  18%,
  100% {
    fill: #6b1f32;
    r: 1.4;
    opacity: 0.5;
  }
}

.radar__sweep {
  background: conic-gradient(
    from -78deg,
    transparent 0deg,
    rgba(107, 31, 50, 0.025) 18deg,
    rgba(107, 31, 50, 0.08) 44deg,
    rgba(107, 31, 50, 0.2) 64deg,
    rgba(107, 31, 50, 0.42) 77.2deg,
    transparent 78deg
  );
}

.radar__sweep::after {
  background: linear-gradient(to bottom, rgba(107, 31, 50, 0), rgba(107, 31, 50, 0.72));
  box-shadow: 0 0 10px rgba(107, 31, 50, 0.3);
}

.radar__core {
  color: var(--v33-paper);
  background: var(--v33-wine);
  border-color: rgba(107, 31, 50, 0.8);
  box-shadow: 0 10px 30px rgba(107, 31, 50, 0.2);
}

.symptom {
  color: var(--v33-wine);
  background: rgba(241, 240, 236, 0.86);
  border-color: rgba(107, 31, 50, 0.28);
  box-shadow: 0 8px 24px rgba(69, 52, 48, 0.06);
  animation-name: sym-ping-wine;
}

@keyframes sym-ping-wine {
  0% {
    color: var(--v33-paper);
    border-color: var(--v33-wine);
    background: var(--v33-wine);
    box-shadow: 0 10px 26px rgba(107, 31, 50, 0.22);
  }
  20%,
  100% {
    color: var(--v33-wine);
    border-color: rgba(107, 31, 50, 0.28);
    background: rgba(241, 240, 236, 0.86);
    box-shadow: 0 8px 24px rgba(69, 52, 48, 0.06);
  }
}

/* Pilares claros; os SVGs continuam sendo o foco e mantêm suas animações. */
.section-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
  color: var(--v33-ink);
  font-family: var(--v33-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.045em;
  text-align: center;
}

.section-label::before {
  width: 34px;
  height: 2px;
  background: var(--v33-rose);
}

.section-label::after {
  display: none;
}

.services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: clamp(54px, 7vw, 84px);
}

.service,
.service:nth-child(2),
.service:nth-child(3),
.service:nth-child(4) {
  position: relative;
  width: 100%;
  min-height: 300px;
  margin: 0;
  overflow: hidden;
  color: var(--v33-ink);
  background:
    radial-gradient(circle at 90% 18%, rgba(255, 255, 255, 0.74), transparent 34%),
    linear-gradient(135deg, #e4ded7, #eeebe7);
  border: 1px solid rgba(23, 20, 15, 0.08);
  border-radius: 3px;
  box-shadow: none;
  transform: none;
}

.service:nth-child(2),
.service:nth-child(3) {
  background:
    radial-gradient(circle at 90% 18%, rgba(255, 255, 255, 0.68), transparent 34%),
    linear-gradient(135deg, #ece9e5, #ded7d0);
}

.service:hover,
.service:nth-child(2):hover,
.service:nth-child(4):hover {
  border-color: rgba(23, 20, 15, 0.22);
  box-shadow: 0 20px 44px rgba(45, 39, 34, 0.1);
  transform: translateY(-3px);
}

.service::after {
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(241, 240, 236, 0.98) 0%,
    rgba(232, 227, 221, 0.9) 42%,
    rgba(232, 227, 221, 0.3) 68%,
    transparent 100%
  );
}

.service__art {
  z-index: 0;
  right: -2%;
  left: auto;
  width: 58%;
  height: 100%;
  opacity: 0.96;
  filter: saturate(0.68) sepia(0.08) contrast(0.94);
}

.service__scene > rect:first-of-type {
  opacity: 0;
}

.service__body {
  position: relative;
  z-index: 2;
  max-width: 58%;
  min-height: 300px;
  padding: 30px 24px 24px;
  gap: 7px;
}

.service__icon {
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  color: var(--v33-ink);
  background: rgba(241, 240, 236, 0.42);
  border-color: rgba(23, 20, 15, 0.16);
  border-radius: 2px;
}

.service h3 {
  color: var(--v33-ink);
  font-family: var(--v33-display);
  font-size: clamp(25px, 2.6vw, 32px);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.service__sub {
  color: var(--v33-ink-soft);
  font-size: 12px;
  font-weight: 700;
}

.service__desc {
  max-width: 31ch;
  color: var(--v33-muted);
  font-size: 12.5px;
  line-height: 1.52;
}

.service .btn--ghost {
  color: var(--v33-ink);
  border-top-color: rgba(23, 20, 15, 0.16);
}

.service .btn--ghost:hover,
.service .btn--ghost:focus-visible {
  color: var(--v33-ink);
  border-top-color: var(--v33-ink);
}

/* Faixa intermediária semelhante ao esboço. */
.whats {
  width: 100%;
  max-width: none;
  margin: 0 0 clamp(58px, 7vw, 88px);
  padding:
    24px
    max(24px, calc((100vw - var(--v33-container)) / 2));
  gap: 24px;
  color: var(--v33-ink);
  background: linear-gradient(90deg, #d8cec4, #ece6df 52%, #d3c6bb);
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.whats__icon {
  color: var(--v33-ink);
  background: transparent;
  border-color: rgba(23, 20, 15, 0.25);
}

.whats h2,
.whats p {
  color: var(--v33-ink);
}

.whats h2 {
  font-family: var(--v33-display);
}

.whats .btn--whats {
  color: #fff;
  background: var(--v33-rose);
  border-color: var(--v33-rose);
  border-radius: 2px;
}

.whats .btn--whats:hover,
.whats .btn--whats:focus-visible {
  background: var(--v33-rose-dark);
  border-color: var(--v33-rose-dark);
}

/* Autoridade em composição editorial, sem aparência de card genérico. */
.about {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(40px, 7vw, 88px);
  margin-bottom: clamp(58px, 7vw, 88px);
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.about::after {
  display: none;
}

.about__portrait {
  aspect-ratio: 4 / 5;
  border-radius: 2px;
  box-shadow: 18px 18px 0 #d8cfc6;
}

.about__portrait img {
  object-position: 50% 31%;
  filter: saturate(0.78) contrast(0.96);
}

.about__body {
  max-width: 590px;
}

.about__body h2 {
  color: var(--v33-ink);
  font-family: var(--v33-display);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.about__body > p:not(.about__eyebrow) {
  color: var(--v33-muted);
}

.about__points {
  display: grid;
  gap: 11px;
  margin: 24px 0 0;
  padding: 0;
  color: var(--v33-ink-soft);
  list-style: none;
}

.about__points li {
  position: relative;
  padding-left: 24px;
  font-size: 13px;
  line-height: 1.5;
}

.about__points li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 8px;
  height: 8px;
  border: 1px solid var(--v33-rose);
  transform: rotate(45deg);
}

/* Conteúdo em superfície clara e limpa. */
.contents {
  grid-auto-columns: minmax(0, 1fr);
  gap: 16px;
  margin-bottom: clamp(50px, 6vw, 76px);
  padding: 0;
  overflow: visible;
}

.social-post {
  color: var(--v33-ink);
  background: rgba(255, 255, 255, 0.32);
  border-color: rgba(23, 20, 15, 0.13);
  border-radius: 3px;
  box-shadow: none;
}

.social-post:hover {
  box-shadow: 0 20px 42px rgba(45, 39, 34, 0.12);
  transform: translateY(-3px);
}

.social-post__body {
  background: rgba(241, 240, 236, 0.95);
  border-color: rgba(23, 20, 15, 0.12);
}

.social-post__action {
  color: var(--v33-ink);
}

.social-post__action--liked {
  color: var(--v33-rose);
}

.social-post__status,
.social-post small {
  color: var(--v33-paper);
  background: rgba(23, 20, 15, 0.72);
}

/* Fechamento escuro e rodapé claro. */
.final {
  width: 100%;
  max-width: none;
  min-height: 190px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding:
    clamp(38px, 5vw, 58px)
    max(24px, calc((100vw - var(--v33-container)) / 2));
  color: var(--v33-paper);
  background:
    radial-gradient(circle at 18% 100%, rgba(183, 123, 112, 0.13), transparent 31rem),
    var(--v33-dark);
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.final h2 {
  max-width: 24ch;
  color: var(--v33-paper);
  font-family: var(--v33-display);
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.final__icon {
  color: var(--v33-paper);
  border-color: rgba(241, 240, 236, 0.25);
}

.footer {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px 28px;
  margin: 0;
  padding:
    26px
    max(24px, calc((100vw - var(--v33-container)) / 2));
  color: var(--v33-ink);
  background: #e7e2dc;
  border: 0;
}

.footer__identity {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.footer__identity strong {
  color: var(--v33-ink);
  font-family: var(--v33-display);
  font-size: 15px;
}

.footer__identity span,
.footer__contacts a,
.footer__links a,
.footer__links button {
  color: var(--v33-muted);
  font-size: 10px;
}

.footer__contacts {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px 22px;
}

.footer__contacts a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.footer__contacts a:hover,
.footer__contacts a:focus-visible {
  color: var(--v33-ink);
}

.footer__links {
  grid-column: 1 / -1;
  justify-content: flex-start;
  padding-top: 10px;
  border-top: 1px solid rgba(23, 20, 15, 0.1);
}

/* Nenhuma tipografia rosé nas seções editoriais. */
.profile__eyebrow,
.about__eyebrow,
.service__sub,
.hero__body h1,
.section-label,
.whats h2,
.about h2,
.final h2 {
  color: inherit;
}

@media (max-width: 899px) {
  .profile {
    gap: 12px;
    padding: 22px 0 20px;
  }

  .profile__nav {
    gap: 18px;
  }

  .profile__nav a {
    font-size: 9px;
  }

  .profile__name {
    font-size: 27px;
  }

  .profile .avatar {
    width: 90px;
    height: 90px;
  }

  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 30px;
    padding-top: 36px;
  }

  .hero__body {
    grid-column: 1;
    grid-row: 1;
    width: min(100%, 620px);
    justify-self: center;
  }

  .hero__body h1 {
    font-size: clamp(36px, 5vw, 48px);
  }

  .radar-stage {
    grid-column: 1;
    grid-row: 2;
    width: min(100%, 500px);
    justify-self: center;
  }

  .services {
    grid-template-columns: 1fr;
    max-width: 760px;
  }

  .service,
  .service:nth-child(2),
  .service:nth-child(3),
  .service:nth-child(4) {
    min-height: 280px;
  }

  .service__body {
    min-height: 280px;
  }

  .contents {
    grid-auto-columns: minmax(220px, 0.72fr);
    padding-bottom: 14px;
    overflow-x: auto;
  }
}

@media (max-width: 720px) {
  .profile,
  .services,
  .about,
  .contents,
  .section-label {
    width: min(calc(100% - 34px), var(--v33-container));
  }

  .profile {
    gap: 12px;
    padding: 22px 0 24px;
    text-align: center;
  }

  .profile__topbar {
    min-height: 56px;
  }

  .profile__nav {
    display: none;
  }

  .profile__brand > span {
    font-size: 17px;
  }

  .profile__copy {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0;
  }

  .profile__eyebrow {
    margin-bottom: 6px;
    font-size: 8px;
  }

  .profile__name {
    align-self: center;
    font-size: 25px;
    line-height: 1;
  }

  .profile__tagline {
    max-width: 34ch;
    margin-top: 8px;
    font-size: 13.5px;
    line-height: 1.5;
  }

  .profile__actions {
    margin-top: 22px;
  }

  .profile .socials {
    justify-content: center;
    margin-top: 12px;
  }

  .profile .avatar {
    width: 92px;
    height: 92px;
    margin: 0 auto;
    justify-self: center;
  }

  .profile .avatar img {
    border-radius: 50%;
  }

  .hero {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 26px;
    margin-bottom: 48px;
    padding: 34px 18px 46px;
  }

  .hero__body {
    grid-column: 1;
    grid-row: 1;
    width: min(100%, 520px);
    margin-inline: auto;
  }

  .hero__body h1 {
    max-width: 14ch;
    font-size: clamp(32px, 8.8vw, 42px);
    line-height: 1.04;
  }

  .hero__body p {
    max-width: 34ch;
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.58;
  }

  .hero__body .btn {
    width: 100%;
    margin-top: 22px;
  }

  .radar-stage {
    grid-column: 1;
    grid-row: 2;
    width: min(100%, 430px);
    justify-self: center;
  }

  .section-label {
    margin-bottom: 20px;
    font-size: clamp(27px, 7.5vw, 34px);
  }

  .services {
    gap: 14px;
    margin-bottom: 48px;
  }

  .service,
  .service:nth-child(2),
  .service:nth-child(3),
  .service:nth-child(4) {
    min-height: 318px;
  }

  .service__art {
    top: 0;
    right: -5%;
    width: 56%;
    height: 57%;
  }

  .service::after {
    background: linear-gradient(
      180deg,
      rgba(241, 240, 236, 0.02) 0%,
      rgba(232, 227, 221, 0.1) 38%,
      rgba(232, 227, 221, 0.92) 62%,
      rgba(232, 227, 221, 1) 100%
    );
  }

  .service__body {
    max-width: 100%;
    min-height: 318px;
    justify-content: flex-end;
    padding: 20px;
  }

  .service__icon {
    position: absolute;
    top: 20px;
    left: 20px;
  }

  .service h3 {
    font-size: 26px;
  }

  .service__desc {
    max-width: 36ch;
    font-size: 12px;
  }

  .service .btn--ghost {
    align-self: flex-start;
  }

  .whats {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 52px;
    padding: 28px 18px 32px;
    text-align: left;
  }

  .whats__icon {
    width: 44px;
    height: 44px;
  }

  .whats .btn--whats {
    grid-column: 1 / -1;
    width: 100%;
  }

  .about {
    grid-template-columns: 1fr;
    gap: 34px;
    margin-bottom: 54px;
  }

  .about__portrait {
    width: min(76%, 300px);
    justify-self: center;
    box-shadow: 12px 12px 0 #d8cfc6;
  }

  .about__body {
    width: 100%;
  }

  .about__body h2 {
    font-size: clamp(36px, 10vw, 46px);
  }

  .contents {
    grid-auto-columns: minmax(230px, 78%);
    gap: 12px;
    margin-bottom: 48px;
  }

  .final {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 36px 18px 40px;
    text-align: left;
  }

  .final h2 {
    max-width: 18ch;
    font-size: clamp(28px, 8vw, 36px);
  }

  .final .btn {
    grid-column: 1 / -1;
    width: 100%;
  }

  .footer {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px 18px 28px;
  }

  .footer__contacts {
    display: grid;
    justify-content: stretch;
    gap: 0;
  }

  .footer__contacts a {
    min-height: 40px;
    border-bottom: 1px solid rgba(23, 20, 15, 0.08);
  }

  .footer__links {
    grid-column: 1;
  }
}

@media (max-width: 420px) {
  .profile__actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .profile__actions .btn {
    width: 100%;
  }

  .hero {
    padding-inline: 12px;
  }

  .service,
  .service:nth-child(2),
  .service:nth-child(3),
  .service:nth-child(4),
  .service__body {
    min-height: 300px;
  }

  .service__art {
    width: 62%;
    height: 55%;
  }
}

/* ==========================================================================
   V40 | composição aprovada: radar primeiro no mobile e pilares em cinza
   ========================================================================== */

.pillars-section {
  --pillars-surface: #d8d4d0;
  --pillar-card: #f3f0eb;
  --pillar-line: rgba(74, 68, 63, 0.13);
  width: 100%;
  margin: 0 0 clamp(56px, 7vw, 86px);
  padding:
    clamp(54px, 6vw, 76px)
    max(24px, calc((100vw - var(--v33-container)) / 2))
    clamp(62px, 7vw, 88px);
  background:
    radial-gradient(circle at 12% 5%, rgba(255, 255, 255, 0.34), transparent 30rem),
    linear-gradient(112deg, #dcd9d5 0%, var(--pillars-surface) 52%, #d1cdca 100%);
  border-top: 1px solid rgba(23, 20, 15, 0.06);
  border-bottom: 1px solid rgba(23, 20, 15, 0.08);
}

.pillars-section .section-label,
.pillars-section .services {
  width: 100%;
  max-width: var(--v33-container);
  margin-inline: auto;
}

.pillars-section .section-label {
  margin-bottom: 34px;
}

.pillars-section .section-label::before {
  background: var(--v33-wine);
}

.pillars-section .services {
  gap: 18px;
  margin-bottom: 0;
}

.pillars-section .service,
.pillars-section .service:nth-child(2),
.pillars-section .service:nth-child(3),
.pillars-section .service:nth-child(4) {
  min-height: 268px;
  background:
    radial-gradient(circle at 88% 14%, rgba(255, 255, 255, 0.86), transparent 34%),
    var(--pillar-card);
  border: 1px solid var(--pillar-line);
  border-radius: 12px;
  box-shadow: 0 16px 36px rgba(67, 59, 54, 0.08);
}

.pillars-section .service:hover {
  border-color: rgba(107, 31, 50, 0.25);
  box-shadow: 0 22px 48px rgba(67, 59, 54, 0.13);
}

.pillars-section .service::after {
  background: linear-gradient(
    90deg,
    rgba(243, 240, 235, 1) 0%,
    rgba(243, 240, 235, 0.96) 43%,
    rgba(243, 240, 235, 0.52) 66%,
    rgba(243, 240, 235, 0.06) 100%
  );
}

.pillars-section .service__body {
  max-width: 62%;
  min-height: 268px;
  padding: 26px 24px 22px;
  gap: 7px;
}

.pillars-section .service__number {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  color: #fff;
  background: var(--v33-wine);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.08em;
  box-shadow: 0 8px 20px rgba(107, 31, 50, 0.18);
}

.pillars-section .service__icon {
  display: none;
}

.pillars-section .service h3 {
  color: #2f2b28;
  font-size: clamp(25px, 2.45vw, 31px);
}

.pillars-section .service__sub {
  color: #4c4541;
}

.pillars-section .service__desc {
  color: #6a625d;
}

.pillars-section .service .btn--ghost {
  min-height: 44px;
  margin-top: auto;
  color: var(--v33-wine);
  border-top-color: rgba(107, 31, 50, 0.17);
}

.pillars-section .service .btn--ghost:hover,
.pillars-section .service .btn--ghost:focus-visible {
  color: var(--v33-wine-dark);
  border-top-color: var(--v33-wine);
}

.pillars-section .service__art {
  top: 0;
  right: -1%;
  width: 53%;
  height: 100%;
  opacity: 0.88;
  filter:
    grayscale(1)
    sepia(0.7)
    saturate(2.25)
    hue-rotate(294deg)
    brightness(0.76)
    contrast(1.05);
}

@media (max-width: 899px) {
  .hero {
    grid-template-rows: auto auto;
    gap: 28px;
    padding-top: 30px;
  }

  .radar-stage {
    grid-column: 1;
    grid-row: 1;
    width: min(100%, 470px);
    justify-self: center;
  }

  .hero__body {
    grid-column: 1;
    grid-row: 2;
    align-items: center;
    width: min(100%, 620px);
    justify-self: center;
    text-align: center;
  }

  .hero__line {
    margin-inline: auto;
  }

  .hero__body h1,
  .hero__body p {
    margin-inline: auto;
  }
}

@media (max-width: 720px) {
  .hero {
    gap: 20px;
    margin-bottom: 0;
    padding: 26px 18px 54px;
  }

  .radar-stage {
    grid-row: 1;
    width: min(calc(100vw - 40px), 350px);
  }

  .radar-stage .symptom {
    --r: 44cqw;
    max-width: 34cqw;
    padding: 6px 8px;
    border-radius: 9px;
    font-size: clamp(9px, 3.15cqw, 11px);
  }

  .radar-stage .symptom--wide {
    --r: 35cqw;
    max-width: 35cqw;
  }

  .hero__body {
    grid-row: 2;
    align-items: center;
    width: 100%;
    text-align: center;
  }

  .hero__line {
    width: 40px;
    margin: 4px auto 2px;
  }

  .hero__body h1 {
    max-width: 17ch;
    margin-inline: auto;
    font-size: clamp(31px, 8.4vw, 39px);
    line-height: 1.06;
  }

  .hero__body p {
    max-width: 31ch;
    margin: 12px auto 0;
    font-size: 14px;
    line-height: 1.55;
  }

  .hero__body .btn {
    width: min(100%, 360px);
    min-height: 52px;
    margin: 18px auto 0;
  }

  .pillars-section {
    margin-bottom: 50px;
    padding: 48px 17px 56px;
  }

  .pillars-section .section-label {
    width: min(100%, 340px);
    margin-bottom: 26px;
    font-size: clamp(28px, 8vw, 34px);
    line-height: 1.08;
  }

  .pillars-section .services {
    width: 100%;
    gap: 14px;
  }

  .pillars-section .service,
  .pillars-section .service:nth-child(2),
  .pillars-section .service:nth-child(3),
  .pillars-section .service:nth-child(4),
  .pillars-section .service__body {
    min-height: 224px;
  }

  .pillars-section .service {
    border-radius: 12px;
  }

  .pillars-section .service__body {
    max-width: 67%;
    justify-content: flex-start;
    padding: 20px 16px 16px;
  }

  .pillars-section .service__number {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
    font-size: 11px;
  }

  .pillars-section .service h3 {
    font-size: 25px;
  }

  .pillars-section .service__sub {
    max-width: 23ch;
    font-size: 11.5px;
    line-height: 1.35;
  }

  .pillars-section .service__desc {
    max-width: 25ch;
    font-size: 11.5px;
    line-height: 1.45;
  }

  .pillars-section .service .btn--ghost {
    min-height: 40px;
    padding-top: 9px;
    font-size: 12px;
  }

  .pillars-section .service__art {
    top: 0;
    right: -8%;
    width: 52%;
    height: 100%;
  }

  .pillars-section .service::after {
    background: linear-gradient(
      90deg,
      rgba(243, 240, 235, 1) 0%,
      rgba(243, 240, 235, 0.97) 48%,
      rgba(243, 240, 235, 0.45) 72%,
      rgba(243, 240, 235, 0.03) 100%
    );
  }
}

@media (max-width: 420px) {
  .radar-stage {
    width: min(calc(100vw - 36px), 338px);
  }

  .pillars-section .service,
  .pillars-section .service:nth-child(2),
  .pillars-section .service:nth-child(3),
  .pillars-section .service:nth-child(4),
  .pillars-section .service__body {
    min-height: 218px;
  }

  .pillars-section .service__art {
    right: -10%;
    width: 54%;
    height: 100%;
  }
}

/* ==========================================================================
   V41 | capa da bio e alinhamento óptico no mobile
   ========================================================================== */

@media (max-width: 720px) {
  .profile {
    --profile-cover-height: 118px;
    width: 100%;
    max-width: none;
    gap: 0;
    margin: 0;
    padding: 0 20px 30px;
    overflow: visible;
    isolation: isolate;
  }

  .profile::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 50%;
    z-index: 0;
    display: block;
    width: 100vw;
    height: var(--profile-cover-height);
    transform: translateX(-50%);
    background:
      radial-gradient(circle at 78% 6%, rgba(255, 255, 255, 0.18), transparent 34%),
      radial-gradient(circle at 18% 110%, rgba(183, 123, 112, 0.2), transparent 44%),
      linear-gradient(118deg, #302c2a 0%, #493238 48%, #6b1f32 100%);
    border-bottom: 1px solid rgba(83, 22, 37, 0.22);
    box-shadow: 0 12px 30px rgba(69, 52, 48, 0.08);
    pointer-events: none;
  }

  .profile .avatar {
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
    align-self: center;
    width: 106px;
    height: 106px;
    margin: 64px auto 0;
    overflow: hidden;
    background: var(--v33-paper);
    border-radius: 50%;
    box-shadow:
      0 0 0 5px var(--v33-paper),
      0 14px 30px rgba(52, 43, 39, 0.18);
  }

  .profile .avatar::after {
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(83, 22, 37, 0.16);
  }

  .profile__copy {
    position: relative;
    z-index: 2;
    align-self: center;
    width: min(100%, 360px);
    max-width: 360px;
    margin: 18px auto 0;
    padding: 0;
    text-align: center;
  }

  .profile__name {
    align-self: center;
    width: 100%;
    margin: 0;
    font-size: 27px;
    line-height: 1.05;
    text-align: center;
  }

  .profile__tagline {
    align-self: center;
    width: min(100%, 316px);
    max-width: 316px;
    margin: 10px auto 0;
    font-size: 13.5px;
    line-height: 1.52;
    text-align: center;
    text-wrap: pretty;
  }

  .profile .socials {
    align-self: center;
    width: max-content;
    display: grid;
    grid-template-columns: repeat(3, 44px);
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 17px auto 0;
    padding: 0;
  }

  .profile .social {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    margin: 0;
    padding: 0;
    border: 1px solid rgba(23, 20, 15, 0.18);
    border-radius: 50%;
  }

  .profile .social svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 380px) {
  .profile {
    padding-inline: 17px;
  }

  .profile__tagline {
    width: min(100%, 292px);
  }
}

/* ==========================================================================
   V42 | arco da bio em todas as telas + novos pilares lineares
   ========================================================================== */

.profile {
  width: 100%;
  max-width: none;
  min-height: 318px;
  gap: 0;
  margin: 0 0 34px;
  padding: 34px 24px 62px;
  color: #fff;
  overflow: visible;
  isolation: isolate;
}

.profile::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 50%;
  z-index: 0;
  display: block;
  width: 108vw;
  height: calc(100% + 28px);
  transform: translateX(-50%);
  background:
    radial-gradient(circle at 76% 6%, rgba(255, 255, 255, 0.11), transparent 30%),
    radial-gradient(circle at 18% 100%, rgba(183, 123, 112, 0.2), transparent 42%),
    linear-gradient(120deg, #4e1828 0%, var(--v33-wine) 52%, #521626 100%);
  border-radius: 0 0 50% 50% / 0 0 15% 15%;
  box-shadow: 0 18px 42px rgba(83, 22, 37, 0.14);
  pointer-events: none;
}

.profile .avatar {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  width: 104px;
  height: 104px;
  margin: 0 auto;
  overflow: hidden;
  background: var(--v33-paper);
  border-radius: 50%;
  box-shadow:
    0 0 0 5px rgba(241, 240, 236, 0.96),
    0 16px 34px rgba(49, 10, 24, 0.28);
}

.profile .avatar::after {
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(83, 22, 37, 0.16);
}

.profile__copy {
  position: relative;
  z-index: 2;
  width: min(100%, 620px);
  max-width: 620px;
  margin: 18px auto 0;
  text-align: center;
}

.profile__name {
  width: 100%;
  margin: 0;
  color: #fff;
  font-size: clamp(27px, 2.6vw, 34px);
  text-align: center;
}

.profile__tagline {
  width: min(100%, 440px);
  max-width: 440px;
  margin: 10px auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13.5px;
  line-height: 1.55;
  text-align: center;
  text-wrap: pretty;
}

.profile .socials {
  align-self: center;
  width: max-content;
  display: grid;
  grid-template-columns: repeat(3, 44px);
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 17px auto 0;
  padding: 0;
}

.profile .social {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
}

.profile .social svg {
  width: 20px;
  height: 20px;
}

.profile .social:hover,
.profile .social:focus-visible {
  color: var(--v33-wine);
  background: var(--v33-paper);
  border-color: var(--v33-paper);
}

.pillars-section {
  --pillar-card: #f6f3ee;
  --pillar-graphite: #2f2a27;
  padding-top: clamp(58px, 6vw, 78px);
}

.pillars-section .services {
  gap: 18px;
}

.pillars-section .service,
.pillars-section .service:nth-child(2),
.pillars-section .service:nth-child(3),
.pillars-section .service:nth-child(4) {
  min-height: 232px;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.82), transparent 34%),
    var(--pillar-card);
  border: 1px solid rgba(74, 68, 63, 0.12);
  border-radius: 12px;
  box-shadow:
    0 14px 30px rgba(65, 56, 50, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.pillars-section .service::after {
  display: none;
}

.pillars-section .service__art {
  display: none !important;
}

.pillars-section .service__vector {
  position: absolute;
  top: 50%;
  right: 18px;
  z-index: 1;
  width: 34%;
  max-width: 180px;
  color: var(--v33-wine);
  transform: translateY(-50%);
  opacity: 0.94;
  pointer-events: none;
}

.pillars-section .service__vector svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.pillars-section .service__vector .vector-line {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pillars-section .service__vector .vector-pulse {
  fill: var(--v33-wine);
  transform-origin: center;
  animation: pillar-vector-pulse 3.4s ease-in-out infinite;
}

.pillars-section .service:nth-child(2) .vector-pulse {
  animation-delay: -0.8s;
}

.pillars-section .service:nth-child(3) .vector-pulse {
  animation-delay: -1.6s;
}

.pillars-section .service:nth-child(4) .vector-pulse {
  animation-delay: -2.4s;
}

@keyframes pillar-vector-pulse {
  0%,
  100% {
    opacity: 0.42;
    transform: scale(0.88);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

.pillars-section .service__body {
  position: relative;
  z-index: 2;
  max-width: 69%;
  min-height: 232px;
  display: block;
  padding: 26px 20px 32px 82px;
}

.pillars-section .service__number {
  position: absolute;
  top: 24px;
  left: 22px;
  width: 44px;
  height: 44px;
  margin: 0;
  font-size: 12px;
}

.pillars-section .service__icon,
.pillars-section .service__sub {
  display: none;
}

.pillars-section .service h3 {
  min-height: 44px;
  display: flex;
  align-items: center;
  margin: 0 0 12px;
  color: var(--pillar-graphite);
  font-size: clamp(20px, 1.9vw, 25px);
  line-height: 1.12;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.pillars-section .service__desc {
  max-width: 34ch;
  margin: 0;
  color: #625a55;
  font-size: 13px;
  line-height: 1.5;
  text-wrap: pretty;
}

.pillars-section .service__body::after {
  content: "";
  position: absolute;
  bottom: 23px;
  left: 82px;
  width: min(150px, calc(100% - 104px));
  height: 2px;
  background: linear-gradient(90deg, var(--v33-wine) 0 94%, transparent 94%);
  border-radius: 2px;
  box-shadow: 4px 0 0 -0.2px var(--v33-wine);
  opacity: 0.8;
}

.pillars-section .service .btn--ghost {
  position: absolute;
  inset: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  opacity: 0;
  border: 0;
  cursor: pointer;
}

.pillars-section .service:focus-within {
  outline: 2px solid var(--v33-wine);
  outline-offset: 3px;
}

@media (max-width: 899px) {
  .profile {
    min-height: 310px;
    padding-top: 30px;
  }

  .pillars-section .services {
    max-width: 760px;
  }
}

@media (max-width: 720px) {
  .profile {
    --profile-cover-height: auto;
    width: 100%;
    max-width: none;
    min-height: 324px;
    margin-bottom: 38px;
    padding: 26px 20px 66px;
  }

  .profile::before {
    inset: 0 auto auto 50%;
    width: 124vw;
    height: calc(100% + 24px);
    border-radius: 0 0 50% 50% / 0 0 11% 11%;
  }

  .profile .avatar {
    width: 104px;
    height: 104px;
    margin: 0 auto;
  }

  .profile__copy {
    width: min(100%, 360px);
    max-width: 360px;
    margin-top: 18px;
  }

  .profile__name {
    font-size: 28px;
  }

  .profile__tagline {
    width: min(100%, 316px);
    max-width: 316px;
    color: rgba(255, 255, 255, 0.82);
  }

  .pillars-section {
    padding-top: 50px;
  }

  .pillars-section .service,
  .pillars-section .service:nth-child(2),
  .pillars-section .service:nth-child(3),
  .pillars-section .service:nth-child(4),
  .pillars-section .service__body {
    min-height: 214px;
  }

  .pillars-section .service__body {
    max-width: 73%;
    padding: 22px 14px 30px 68px;
  }

  .pillars-section .service__number {
    top: 20px;
    left: 16px;
    width: 40px;
    height: 40px;
  }

  .pillars-section .service h3 {
    min-height: 40px;
    margin-bottom: 10px;
    font-size: clamp(19px, 5.4vw, 23px);
  }

  .pillars-section .service__desc {
    max-width: 29ch;
    font-size: 12px;
    line-height: 1.46;
  }

  .pillars-section .service__body::after {
    bottom: 20px;
    left: 68px;
    width: min(128px, calc(100% - 86px));
  }

  .pillars-section .service__vector {
    right: 8px;
    width: 31%;
    max-width: 132px;
  }
}

@media (max-width: 420px) {
  .pillars-section .service__body {
    max-width: 76%;
  }

  .pillars-section .service__vector {
    right: 4px;
    width: 30%;
  }
}

/* ==========================================================================
   V43 | ritmo entre bio e radar + pilares com CTA e movimento legível
   ========================================================================== */

/* A curva continua abraçando a bio, mas termina mais perto do radar. */
.profile {
  margin-bottom: 10px;
}

.hero {
  padding-top: clamp(18px, 2vw, 28px);
}

.pillars-section .service,
.pillars-section .service:nth-child(2),
.pillars-section .service:nth-child(3),
.pillars-section .service:nth-child(4) {
  min-height: 252px;
  overflow: hidden;
}

.pillars-section .service__body {
  width: 100%;
  max-width: none;
  min-height: 252px;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  grid-template-rows: auto auto auto;
  align-content: center;
  column-gap: 14px;
  row-gap: 0;
  padding: 24px 40% 22px 22px;
}

.pillars-section .service__number {
  position: static;
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  width: 44px;
  height: 44px;
}

.pillars-section .service h3 {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  min-height: 44px;
  margin: 0;
}

.pillars-section .service__desc {
  grid-column: 1 / -1;
  grid-row: 2;
  max-width: 42ch;
  margin: 16px 0 0;
  font-size: 13px;
  line-height: 1.52;
}

.pillars-section .service__body::after {
  display: none;
}

.pillars-section .service .btn--ghost {
  position: static;
  grid-column: 1 / -1;
  grid-row: 3;
  justify-self: start;
  width: auto;
  height: auto;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  color: var(--v33-wine);
  font-size: 12px;
  font-weight: 700;
  opacity: 1;
  border: 0;
  border-bottom: 1px solid rgba(107, 31, 50, 0.32);
  border-radius: 0;
  cursor: pointer;
  transition:
    gap 220ms ease,
    color 220ms ease,
    border-color 220ms ease;
}

.pillars-section .service .btn--ghost:hover,
.pillars-section .service .btn--ghost:focus-visible {
  gap: 12px;
  color: var(--v33-wine-dark);
  border-bottom-color: var(--v33-wine);
}

.pillars-section .service .btn--ghost .icon {
  width: 16px;
  height: 16px;
}

.pillars-section .service__vector {
  top: 50%;
  right: 16px;
  width: 37%;
  max-width: 190px;
  opacity: 1;
  filter: drop-shadow(0 8px 16px rgba(107, 31, 50, 0.14));
  animation: pillar-vector-float 4.2s ease-in-out infinite;
}

.pillars-section .service:nth-child(2) .service__vector {
  animation-delay: -1.05s;
}

.pillars-section .service:nth-child(3) .service__vector {
  animation-delay: -2.1s;
}

.pillars-section .service:nth-child(4) .service__vector {
  animation-delay: -3.15s;
}

.pillars-section .service__vector .vector-line {
  animation: pillar-line-breathe 2.4s ease-in-out infinite;
}

.pillars-section .service__vector .vector-pulse circle {
  stroke: rgba(255, 255, 255, 0.92);
  stroke-width: 1.2;
  transform-box: fill-box;
  transform-origin: center;
  animation: pillar-vector-pulse-strong 2.1s ease-in-out infinite;
}

.pillars-section .service__vector .vector-pulse circle:nth-child(2) {
  animation-delay: -0.7s;
}

.pillars-section .service__vector .vector-pulse circle:nth-child(3) {
  animation-delay: -1.4s;
}

.pillars-section .service:nth-child(4) .service__vector .vector-pulse circle:nth-child(4) {
  animation-delay: -1.75s;
}

.pillars-section .service:nth-child(1) .vector-line circle,
.pillars-section .service:nth-child(2) .vector-line circle {
  transform-box: fill-box;
  transform-origin: center;
  animation: pillar-node-breathe 2.6s ease-in-out infinite;
}

.pillars-section .service:nth-child(3) .vector-line path:last-of-type {
  stroke-dasharray: 34;
  stroke-dashoffset: 34;
  animation: pillar-check-draw 2.8s ease-in-out infinite;
}

.pillars-section .service:nth-child(4) .vector-line rect {
  animation: pillar-node-stroke 2.8s ease-in-out infinite;
}

.pillars-section .service:nth-child(4) .vector-line rect:nth-of-type(2) {
  animation-delay: -0.7s;
}

.pillars-section .service:nth-child(4) .vector-line rect:nth-of-type(3) {
  animation-delay: -1.4s;
}

.pillars-section .service:nth-child(4) .vector-line rect:nth-of-type(4) {
  animation-delay: -2.1s;
}

@keyframes pillar-vector-float {
  0%,
  100% {
    transform: translateY(-50%);
  }
  50% {
    transform: translateY(calc(-50% - 7px));
  }
}

@keyframes pillar-line-breathe {
  0%,
  100% {
    opacity: 0.72;
    stroke-width: 1.8;
  }
  50% {
    opacity: 1;
    stroke-width: 2.35;
  }
}

@keyframes pillar-vector-pulse-strong {
  0%,
  100% {
    opacity: 0.35;
    transform: scale(0.68);
  }
  50% {
    opacity: 1;
    transform: scale(1.55);
  }
}

@keyframes pillar-node-breathe {
  0%,
  100% {
    opacity: 0.62;
    transform: scale(0.94);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes pillar-check-draw {
  0%,
  20% {
    stroke-dashoffset: 34;
  }
  55%,
  82% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: -34;
  }
}

@keyframes pillar-node-stroke {
  0%,
  100% {
    stroke-opacity: 0.45;
  }
  50% {
    stroke-opacity: 1;
    filter: drop-shadow(0 0 3px rgba(107, 31, 50, 0.38));
  }
}

@media (max-width: 899px) {
  .profile {
    margin-bottom: 8px;
  }

  .hero {
    padding-top: 18px;
  }
}

@media (max-width: 720px) {
  .profile {
    min-height: 304px;
    margin-bottom: 4px;
    padding-bottom: 54px;
  }

  .profile::before {
    height: calc(100% + 14px);
  }

  .hero {
    padding-top: 12px;
  }

  .pillars-section .service,
  .pillars-section .service:nth-child(2),
  .pillars-section .service:nth-child(3),
  .pillars-section .service:nth-child(4),
  .pillars-section .service__body {
    min-height: 236px;
  }

  .pillars-section .service__body {
    grid-template-columns: 42px minmax(0, 1fr);
    column-gap: 11px;
    padding: 20px 37% 18px 16px;
  }

  .pillars-section .service__number {
    width: 40px;
    height: 40px;
  }

  .pillars-section .service h3 {
    min-height: 40px;
    font-size: clamp(18px, 5vw, 22px);
  }

  .pillars-section .service__desc {
    max-width: 36ch;
    margin-top: 13px;
    font-size: 11.8px;
    line-height: 1.48;
  }

  .pillars-section .service .btn--ghost {
    min-height: 40px;
    margin-top: 10px;
    font-size: 11.5px;
  }

  .pillars-section .service__vector {
    right: 5px;
    width: 35%;
    max-width: 142px;
  }
}

@media (max-width: 420px) {
  .pillars-section .service__body {
    padding-right: 35%;
  }

  .pillars-section .service__vector {
    right: 2px;
    width: 34%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pillars-section .service__vector,
  .pillars-section .service__vector .vector-line,
  .pillars-section .service__vector .vector-pulse circle,
  .pillars-section .service:nth-child(1) .vector-line circle,
  .pillars-section .service:nth-child(2) .vector-line circle,
  .pillars-section .service:nth-child(3) .vector-line path:last-of-type,
  .pillars-section .service:nth-child(4) .vector-line rect {
    animation: none;
  }
}

/* ==========================================================================
   V44 | primeira dobra mais curta, sintomas claros e modal editorial
   ========================================================================== */

/* Reduz a sobra depois dos ícones sem comprimir foto, bio ou áreas de toque. */
.profile {
  min-height: 0;
  margin-bottom: 0;
  padding-bottom: 30px;
}

.profile::before {
  height: calc(100% + 8px);
}

.hero {
  padding-top: 10px;
}

/* O radar sinaliza o sintoma com luz e contorno; o card não muda para escuro. */
.symptom {
  color: var(--v33-wine);
  background: rgba(248, 246, 242, 0.94);
  border-color: rgba(107, 31, 50, 0.28);
  box-shadow: 0 8px 24px rgba(69, 52, 48, 0.06);
  animation-name: sym-ping-light;
}

@keyframes sym-ping-light {
  0% {
    color: var(--v33-wine-dark);
    border-color: rgba(107, 31, 50, 0.78);
    background: rgba(255, 253, 249, 0.99);
    box-shadow:
      0 0 0 3px rgba(107, 31, 50, 0.08),
      0 10px 28px rgba(107, 31, 50, 0.18);
  }
  20%,
  100% {
    color: var(--v33-wine);
    border-color: rgba(107, 31, 50, 0.28);
    background: rgba(248, 246, 242, 0.94);
    box-shadow: 0 8px 24px rgba(69, 52, 48, 0.06);
  }
}

/* Modal dos quatro pilares: mesma superfície mineral clara da página. */
#service-dialog {
  border: 1px solid rgba(107, 31, 50, 0.18);
  background:
    radial-gradient(circle at 8% 4%, rgba(255, 255, 255, 0.96), transparent 42%),
    radial-gradient(circle at 96% 88%, rgba(203, 185, 174, 0.24), transparent 48%),
    #f3f0eb;
  color: var(--v33-ink);
  box-shadow:
    0 34px 90px rgba(52, 42, 38, 0.26),
    0 0 0 1px rgba(255, 255, 255, 0.56);
}

#service-dialog::before {
  height: 100%;
  background:
    radial-gradient(ellipse at 18% 12%, rgba(107, 31, 50, 0.045), transparent 34%),
    radial-gradient(ellipse at 82% 84%, rgba(130, 130, 130, 0.08), transparent 42%);
  mask-image: none;
  -webkit-mask-image: none;
}

#service-dialog::after {
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--v33-wine) 0 22%,
    rgba(107, 31, 50, 0.22) 22% 100%
  );
}

#service-dialog::backdrop {
  background: rgba(41, 35, 33, 0.48);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
}

#service-dialog .dialog__close {
  color: var(--v33-wine);
  background: rgba(255, 255, 255, 0.52);
  border-color: rgba(107, 31, 50, 0.2);
}

#service-dialog .dialog__close:hover,
#service-dialog .dialog__close:focus-visible {
  color: #fff;
  background: var(--v33-wine);
  border-color: var(--v33-wine);
}

#service-dialog .sd__icon {
  color: var(--v33-wine);
  background: rgba(255, 255, 255, 0.58);
  border-color: rgba(107, 31, 50, 0.22);
  box-shadow: 0 10px 26px rgba(107, 31, 50, 0.09);
}

#service-dialog .sd__sub,
#service-dialog .sd__block h4,
#service-dialog .sd__result h4 {
  color: var(--v33-wine);
}

#service-dialog .sd__title,
#service-dialog .sd__lead,
#service-dialog .sd__block li,
#service-dialog .sd__result p {
  color: var(--v33-ink);
}

#service-dialog .sd__lead {
  border-left-color: var(--v33-wine);
}

#service-dialog .sd__block li::before {
  background: var(--v33-wine);
}

#service-dialog .sd__result {
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.62), transparent 42%),
    rgba(107, 31, 50, 0.055);
  border-color: rgba(107, 31, 50, 0.18);
}

#service-dialog .sd__result::before {
  background: var(--v33-wine);
}

#service-dialog .sd__actions .btn--primary {
  color: #fff;
  background: var(--v33-wine);
  border-color: var(--v33-wine);
}

#service-dialog .sd__actions .btn--primary:hover,
#service-dialog .sd__actions .btn--primary:focus-visible {
  background: var(--v33-wine-dark);
  border-color: var(--v33-wine-dark);
}

#service-dialog .sd__actions .btn--whats {
  color: var(--v33-wine);
  background: rgba(255, 255, 255, 0.44);
  border-color: rgba(107, 31, 50, 0.32);
}

#service-dialog .sd__actions .btn--whats:hover,
#service-dialog .sd__actions .btn--whats:focus-visible {
  color: #fff;
  background: var(--v33-wine);
  border-color: var(--v33-wine);
}

@media (max-width: 720px) {
  .profile {
    min-height: 0;
    margin-bottom: 0;
    padding-bottom: 26px;
  }

  .profile::before {
    height: calc(100% + 6px);
  }

  .hero {
    padding-top: 6px;
  }

  .radar-stage .symptom {
    color: var(--v33-wine);
    background: rgba(248, 246, 242, 0.96);
    border-color: rgba(107, 31, 50, 0.3);
  }

  #service-dialog {
    width: min(560px, calc(100vw - 22px));
    max-height: min(90dvh, 780px);
    border-radius: 10px;
  }

  #service-dialog .dialog__inner {
    padding: 30px 20px 24px;
  }
}

/* ==========================================================================
   V45 | botões suaves + processo em três etapas + autoridade antes do conteúdo
   ========================================================================== */

:root {
  --v45-button-radius: 8px;
  --v45-whatsapp-soft: #dcebdd;
  --v45-whatsapp-soft-hover: #c9dfcd;
  --v45-whatsapp-ink: #285a3a;
  --v45-whatsapp-line: #a7c4ad;
}

.btn,
.about__link {
  border-radius: var(--v45-button-radius);
}

.pillars-section .service .btn--ghost {
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(107, 31, 50, 0.32);
  border-radius: 7px;
}

.pillars-section .service .btn--ghost:hover,
.pillars-section .service .btn--ghost:focus-visible {
  border-color: var(--v33-wine);
  background: rgba(107, 31, 50, 0.055);
}

#service-dialog .sd__actions .btn--whats {
  color: var(--v45-whatsapp-ink);
  background: var(--v45-whatsapp-soft);
  border-color: var(--v45-whatsapp-line);
  box-shadow: none;
}

#service-dialog .sd__actions .btn--whats:hover,
#service-dialog .sd__actions .btn--whats:focus-visible {
  color: #214b31;
  background: var(--v45-whatsapp-soft-hover);
  border-color: #8eae96;
}

.method-section {
  position: relative;
  width: 100%;
  margin: clamp(58px, 7vw, 88px) 0;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 82% 16%, rgba(183, 123, 112, 0.2), transparent 28rem),
    radial-gradient(circle at 12% 100%, rgba(107, 31, 50, 0.34), transparent 32rem),
    #2d2826;
}

.method-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.23;
  background-image:
    linear-gradient(115deg, transparent 0 52%, rgba(255, 255, 255, 0.035) 52.2% 52.5%, transparent 52.7%),
    radial-gradient(circle at 72% 48%, rgba(255, 255, 255, 0.1) 0 1px, transparent 1.5px);
  background-size: 100% 100%, 28px 28px;
}

.method__inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 48px), var(--v33-container));
  margin: 0 auto;
  padding: clamp(60px, 7vw, 88px) 0 clamp(68px, 8vw, 98px);
}

.method__intro {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 1.18fr);
  align-items: end;
  gap: clamp(34px, 7vw, 86px);
  margin-bottom: clamp(46px, 6vw, 70px);
}

.method__eyebrow {
  grid-column: 1;
  margin: 0 0 12px;
  color: #d8a79e;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.method__intro h2 {
  grid-column: 1;
  max-width: 13ch;
  margin: 0;
  font-family: var(--v33-display);
  font-size: clamp(34px, 4.2vw, 54px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.method__intro > p:last-child {
  grid-column: 2;
  align-self: end;
  max-width: 48ch;
  margin: 0 0 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.65;
}

.method__steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 5vw, 64px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.method__steps::before {
  content: "";
  position: absolute;
  top: 24px;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, #d8a79e, rgba(216, 167, 158, 0.18));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.1s cubic-bezier(0.16, 1, 0.3, 1) 180ms;
}

.method-section.is-in .method__steps::before {
  transform: scaleX(1);
}

.method__steps li {
  position: relative;
  padding-top: 70px;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 600ms ease,
    transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.method-section.is-in .method__steps li {
  opacity: 1;
  transform: none;
}

.method-section.is-in .method__steps li:nth-child(2) {
  transition-delay: 140ms;
}

.method-section.is-in .method__steps li:nth-child(3) {
  transition-delay: 280ms;
}

.method__number {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--v33-wine);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(20, 7, 11, 0.28);
  font-size: 11px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.method__steps h3 {
  margin: 0 0 10px;
  color: #fff;
  font-family: var(--v33-display);
  font-size: clamp(21px, 2.1vw, 27px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.method__steps p {
  max-width: 34ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  line-height: 1.58;
}

.about {
  margin-top: 0;
}

.about__link.btn {
  width: fit-content;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  padding: 0 18px;
  color: #fff;
  background: var(--v33-wine);
  border: 1px solid var(--v33-wine);
  text-decoration: none;
}

.about__link.btn:hover,
.about__link.btn:focus-visible {
  color: #fff;
  background: var(--v33-wine-dark);
  border-color: var(--v33-wine-dark);
  transform: translateY(-2px);
}

@media (max-width: 720px) {
  .method-section {
    margin: 50px 0;
  }

  .method__inner {
    width: min(calc(100% - 34px), var(--v33-container));
    padding: 54px 0 62px;
  }

  .method__intro {
    display: block;
    margin-bottom: 44px;
  }

  .method__intro h2 {
    max-width: 14ch;
    font-size: clamp(31px, 9vw, 40px);
  }

  .method__intro > p:last-child {
    max-width: 40ch;
    margin-top: 18px;
    font-size: 13.5px;
  }

  .method__steps {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-left: 4px;
  }

  .method__steps::before {
    top: 0;
    right: auto;
    bottom: 0;
    left: 24px;
    width: 1px;
    height: auto;
    transform: scaleY(0);
    transform-origin: top;
  }

  .method-section.is-in .method__steps::before {
    transform: scaleY(1);
  }

  .method__steps li {
    min-height: 96px;
    padding: 0 0 0 70px;
  }

  .method__number {
    top: 0;
  }

  .method__steps p {
    max-width: 38ch;
  }

  .about__link.btn {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .method__steps::before,
  .method__steps li {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ==========================================================================
   V46 | fluxo compacto, sem intervalo e retrato de autoridade menor
   ========================================================================== */

.pillars-section {
  margin-bottom: 0;
}

.method-section {
  margin: 0 0 clamp(48px, 6vw, 70px);
}

.method__inner {
  padding: clamp(40px, 4.8vw, 58px) 0 clamp(44px, 5.2vw, 64px);
}

.method__intro {
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 1.1fr);
  gap: clamp(28px, 5vw, 64px);
  margin-bottom: 30px;
}

.method__eyebrow {
  margin-bottom: 8px;
}

.method__intro h2 {
  max-width: 12ch;
  font-size: clamp(30px, 3.5vw, 44px);
}

.method__intro > p:last-child {
  max-width: 40ch;
  font-size: 13px;
  line-height: 1.55;
}

.method__steps {
  gap: clamp(22px, 4vw, 48px);
}

.method__steps::before {
  top: 28px;
  left: 34px;
}

.method__steps li {
  min-height: 148px;
  padding: 76px 0 0;
}

.method__icon {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: #f0b9ae;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(240, 185, 174, 0.34);
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(16, 6, 9, 0.2);
  animation: method-icon-float 3.6s ease-in-out infinite;
}

.method__steps li:nth-child(2) .method__icon {
  animation-delay: -1.2s;
}

.method__steps li:nth-child(3) .method__icon {
  animation-delay: -2.4s;
}

.method__icon svg {
  width: 34px;
  height: 34px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.method__icon-pulse {
  fill: var(--v33-wine);
  stroke: rgba(255, 255, 255, 0.72);
  stroke-width: 1;
  transform-box: fill-box;
  transform-origin: center;
  animation: method-icon-pulse 2s ease-in-out infinite;
}

.method__icon-ring {
  transform-box: fill-box;
  transform-origin: center;
  animation: method-icon-ring 3s ease-in-out infinite;
}

.method__icon-route {
  stroke-dasharray: 42;
  stroke-dashoffset: 42;
  animation: method-icon-draw 3s ease-in-out infinite;
}

.method__icon-check {
  stroke-dasharray: 30;
  stroke-dashoffset: 30;
  animation: method-icon-draw 2.8s ease-in-out infinite;
}

.method__number {
  top: 42px;
  left: 38px;
  width: 27px;
  height: 27px;
  font-size: 9px;
  border-width: 2px;
}

.method__steps h3 {
  margin-bottom: 7px;
  font-size: clamp(19px, 1.8vw, 23px);
}

.method__steps p {
  max-width: 31ch;
  font-size: 12.5px;
  line-height: 1.5;
}

@keyframes method-icon-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes method-icon-pulse {
  0%,
  100% {
    opacity: 0.42;
    transform: scale(0.72);
  }
  50% {
    opacity: 1;
    transform: scale(1.35);
  }
}

@keyframes method-icon-ring {
  0%,
  100% {
    opacity: 0.6;
    transform: rotate(0deg) scale(0.96);
  }
  50% {
    opacity: 1;
    transform: rotate(8deg) scale(1.04);
  }
}

@keyframes method-icon-draw {
  0%,
  18% {
    stroke-dashoffset: 42;
  }
  55%,
  80% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: -42;
  }
}

.about {
  width: min(calc(100% - 48px), 900px);
  grid-template-columns: minmax(180px, 250px) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 68px);
}

.about__portrait {
  width: 100%;
  max-width: 250px;
  justify-self: end;
  border-radius: 10px;
  box-shadow: 12px 12px 0 #d8cfc6;
}

.about__body h2 {
  font-size: clamp(36px, 4.4vw, 52px);
}

@media (max-width: 720px) {
  .method-section {
    margin: 0 0 44px;
  }

  .method__inner {
    padding: 38px 0 44px;
  }

  .method__intro {
    margin-bottom: 30px;
  }

  .method__intro h2 {
    font-size: clamp(28px, 8vw, 35px);
  }

  .method__intro > p:last-child {
    margin-top: 12px;
  }

  .method__steps {
    gap: 22px;
  }

  .method__steps::before {
    top: 28px;
    bottom: 26px;
    left: 28px;
  }

  .method__steps li {
    min-height: 92px;
    padding: 0 0 0 72px;
  }

  .method__icon {
    width: 56px;
    height: 56px;
  }

  .method__number {
    top: 42px;
    left: 38px;
  }

  .method__steps h3 {
    padding-top: 2px;
  }

  .method__steps p {
    max-width: 36ch;
  }

  .about {
    width: min(calc(100% - 34px), var(--v33-container));
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about__portrait {
    width: 156px;
    max-width: 156px;
    aspect-ratio: 4 / 5;
    justify-self: center;
    box-shadow: 8px 8px 0 #d8cfc6;
  }

  .about__body {
    text-align: center;
  }

  .about__body h2 {
    font-size: 36px;
  }

  .about__points {
    width: min(100%, 370px);
    margin-inline: auto;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .method__icon,
  .method__icon-pulse,
  .method__icon-ring,
  .method__icon-route,
  .method__icon-check {
    animation: none;
  }
}

/* ==========================================================================
   V47 | identificação rápida entre o Raio-X e os quatro pilares
   ========================================================================== */

.patient-path {
  --path-line: rgba(107, 31, 50, 0.24);
  --path-surface: rgba(250, 248, 244, 0.82);
  position: relative;
  width: 100%;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% -20%, rgba(255, 255, 255, 0.94), transparent 38rem),
    linear-gradient(180deg, #f3f1ed 0%, #eeebe6 100%);
  border-top: 1px solid rgba(107, 31, 50, 0.07);
}

.patient-path::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.48;
  background:
    radial-gradient(ellipse at 8% 76%, rgba(203, 185, 174, 0.16), transparent 26rem),
    radial-gradient(ellipse at 92% 18%, rgba(107, 31, 50, 0.035), transparent 24rem);
}

.patient-path__inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 48px), var(--v33-container));
  margin: 0 auto;
  padding: clamp(56px, 6vw, 78px) 0 clamp(48px, 5.5vw, 68px);
}

.patient-path__header {
  max-width: 820px;
  margin: 0 auto clamp(38px, 4.5vw, 54px);
  text-align: center;
}

.patient-path__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin: 0 0 15px;
  padding: 4px 13px;
  color: var(--v33-wine);
  background: rgba(107, 31, 50, 0.07);
  border: 1px solid rgba(107, 31, 50, 0.12);
  border-radius: 7px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.patient-path__header h2 {
  max-width: 23ch;
  margin: 0 auto;
  font-family: var(--v33-display);
  color: var(--v33-ink);
  font-size: clamp(32px, 4.25vw, 52px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.patient-path__header > p:last-child {
  max-width: 52ch;
  margin: 17px auto 0;
  color: var(--v33-muted);
  font-size: 14px;
  line-height: 1.6;
  text-wrap: pretty;
}

.patient-path__steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.patient-path__steps::before {
  content: "";
  position: absolute;
  top: 39px;
  right: 9%;
  left: 9%;
  z-index: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(107, 31, 50, 0.08),
    var(--path-line) 12% 88%,
    rgba(107, 31, 50, 0.08)
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.15s cubic-bezier(0.16, 1, 0.3, 1) 120ms;
}

.patient-path.is-in .patient-path__steps::before {
  transform: scaleX(1);
}

.patient-path__steps li {
  position: relative;
  z-index: 1;
  min-width: 0;
  text-align: center;
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.55s ease,
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.patient-path.is-in .patient-path__steps li {
  opacity: 1;
  transform: none;
}

.patient-path.is-in .patient-path__steps li:nth-child(2) { transition-delay: 90ms; }
.patient-path.is-in .patient-path__steps li:nth-child(3) { transition-delay: 180ms; }
.patient-path.is-in .patient-path__steps li:nth-child(4) { transition-delay: 270ms; }
.patient-path.is-in .patient-path__steps li:nth-child(5) { transition-delay: 360ms; }

.patient-path__marker {
  position: relative;
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  margin: 0 auto;
  color: var(--v33-wine);
  background:
    radial-gradient(circle at 34% 24%, #fff, transparent 60%),
    var(--path-surface);
  border: 1px solid rgba(107, 31, 50, 0.18);
  border-radius: 50%;
  box-shadow:
    0 14px 32px rgba(69, 52, 48, 0.08),
    inset 0 0 0 5px rgba(255, 255, 255, 0.38);
}

.patient-path__marker::after {
  content: "";
  position: absolute;
  inset: -1px;
  border: 1px solid transparent;
  border-top-color: rgba(107, 31, 50, 0.72);
  border-radius: inherit;
  animation: patient-path-orbit 5.4s linear infinite;
}

.patient-path__steps li:nth-child(2) .patient-path__marker::after { animation-delay: -1.08s; }
.patient-path__steps li:nth-child(3) .patient-path__marker::after { animation-delay: -2.16s; }
.patient-path__steps li:nth-child(4) .patient-path__marker::after { animation-delay: -3.24s; }
.patient-path__steps li:nth-child(5) .patient-path__marker::after { animation-delay: -4.32s; }

.patient-path__marker svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.patient-path__number {
  position: relative;
  z-index: 2;
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  margin: -12px auto 13px;
  color: #fff;
  background: var(--v33-wine);
  border: 3px solid #efede8;
  border-radius: 50%;
  font-size: 8px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.05em;
}

.patient-path__copy h3 {
  margin: 0;
  color: var(--v33-ink);
  font-family: var(--v33-display);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.patient-path__copy p {
  max-width: 19ch;
  margin: 8px auto 0;
  color: var(--v33-muted);
  font-size: 12.5px;
  line-height: 1.5;
  text-wrap: pretty;
}

.patient-path__closing {
  position: relative;
  width: fit-content;
  max-width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: clamp(36px, 4vw, 48px) auto 0;
  padding: 13px 18px;
  color: var(--v33-ink-soft);
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(107, 31, 50, 0.11);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  box-shadow: 0 10px 28px rgba(69, 52, 48, 0.045);
}

.patient-path__closing span {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  background: var(--v33-wine);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(107, 31, 50, 0.08);
}

.patient-path + .pillars-section {
  margin-top: 0;
}

@keyframes patient-path-orbit {
  to { transform: rotate(360deg); }
}

@media (max-width: 899px) {
  .patient-path__steps {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    row-gap: 30px;
  }

  .patient-path__steps li {
    grid-column: span 2;
  }

  .patient-path__steps li:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .patient-path__steps li:nth-child(5) {
    grid-column: 4 / span 2;
  }

  .patient-path__steps::before {
    display: none;
  }
}

@media (max-width: 720px) {
  .patient-path__inner {
    width: min(calc(100% - 34px), var(--v33-container));
    padding: 44px 0 42px;
  }

  .patient-path__header {
    margin-bottom: 30px;
  }

  .patient-path__eyebrow {
    margin-bottom: 12px;
    font-size: 9px;
    letter-spacing: 0.11em;
  }

  .patient-path__header h2 {
    max-width: 18ch;
    font-size: clamp(29px, 8.2vw, 36px);
    line-height: 1.06;
  }

  .patient-path__header > p:last-child {
    max-width: 31ch;
    margin-top: 13px;
    font-size: 13px;
    line-height: 1.5;
  }

  .patient-path__steps {
    width: min(100%, 390px);
    grid-template-columns: 1fr;
    gap: 0;
    margin-inline: auto;
  }

  .patient-path__steps::before {
    display: block;
    top: 31px;
    bottom: 31px;
    left: 31px;
    right: auto;
    width: 1px;
    height: auto;
    background: linear-gradient(
      180deg,
      rgba(107, 31, 50, 0.08),
      var(--path-line) 10% 90%,
      rgba(107, 31, 50, 0.08)
    );
    transform: scaleY(0);
    transform-origin: top;
  }

  .patient-path.is-in .patient-path__steps::before {
    transform: scaleY(1);
  }

  .patient-path__steps li {
    grid-column: 1;
    min-height: 76px;
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    align-items: center;
    gap: 15px;
    padding: 5px 0;
    text-align: left;
  }

  .patient-path__marker {
    grid-column: 1;
    grid-row: 1;
    width: 62px;
    height: 62px;
    margin: 0;
  }

  .patient-path__marker svg {
    width: 28px;
    height: 28px;
  }

  .patient-path__number {
    position: absolute;
    top: 46px;
    left: 44px;
    width: 23px;
    height: 23px;
    margin: 0;
    border-width: 2px;
    font-size: 7px;
  }

  .patient-path__copy {
    grid-column: 2;
    grid-row: 1;
    padding: 8px 0;
  }

  .patient-path__copy h3 {
    font-size: 17px;
  }

  .patient-path__copy p {
    max-width: 29ch;
    margin: 5px 0 0;
    font-size: 12.5px;
    line-height: 1.4;
  }

  .patient-path__closing {
    width: min(100%, 390px);
    justify-content: center;
    margin-top: 27px;
    padding: 12px 14px;
    text-align: center;
    font-size: 12px;
  }

  .patient-path + .pillars-section {
    padding-top: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .patient-path__steps::before,
  .patient-path__steps li,
  .patient-path__marker::after {
    animation: none;
    transition: none;
  }

  .patient-path__steps li {
    opacity: 1;
    transform: none;
  }
}

/* ==========================================================================
   V48: ritmo do radar e fluxo contínuo da jornada
   ========================================================================== */

/* Mais respiro na entrada do radar e menos sobra antes da próxima seção. */
.hero {
  padding-top: clamp(28px, 3vw, 40px);
  padding-bottom: clamp(16px, 1.8vw, 22px);
}

/* A ênfase percorre as etapas em sequência e reinicia continuamente. */
.patient-path__marker {
  animation: patient-path-stage-focus 7.5s ease-in-out infinite;
}

.patient-path__steps li:nth-child(2) .patient-path__marker {
  animation-delay: 1.5s;
}

.patient-path__steps li:nth-child(3) .patient-path__marker {
  animation-delay: 3s;
}

.patient-path__steps li:nth-child(4) .patient-path__marker {
  animation-delay: 4.5s;
}

.patient-path__steps li:nth-child(5) .patient-path__marker {
  animation-delay: 6s;
}

.patient-path__marker svg {
  transform-origin: center;
  animation: patient-path-icon-focus 7.5s ease-in-out infinite;
}

.patient-path__steps li:nth-child(2) .patient-path__marker svg {
  animation-delay: 1.5s;
}

.patient-path__steps li:nth-child(3) .patient-path__marker svg {
  animation-delay: 3s;
}

.patient-path__steps li:nth-child(4) .patient-path__marker svg {
  animation-delay: 4.5s;
}

.patient-path__steps li:nth-child(5) .patient-path__marker svg {
  animation-delay: 6s;
}

.patient-path__number {
  animation: patient-path-number-focus 7.5s ease-in-out infinite;
}

.patient-path__steps li:nth-child(2) .patient-path__number {
  animation-delay: 1.5s;
}

.patient-path__steps li:nth-child(3) .patient-path__number {
  animation-delay: 3s;
}

.patient-path__steps li:nth-child(4) .patient-path__number {
  animation-delay: 4.5s;
}

.patient-path__steps li:nth-child(5) .patient-path__number {
  animation-delay: 6s;
}

@keyframes patient-path-stage-focus {
  0%,
  16% {
    color: #fff;
    background:
      radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.18), transparent 58%),
      var(--v33-wine);
    border-color: var(--v33-wine);
    box-shadow:
      0 0 0 7px rgba(107, 31, 50, 0.08),
      0 18px 38px rgba(107, 31, 50, 0.2);
    transform: translateY(-3px);
  }

  24%,
  100% {
    color: var(--v33-wine);
    background:
      radial-gradient(circle at 34% 24%, #fff, transparent 60%),
      var(--path-surface);
    border-color: rgba(107, 31, 50, 0.18);
    box-shadow:
      0 14px 32px rgba(69, 52, 48, 0.08),
      inset 0 0 0 5px rgba(255, 255, 255, 0.38);
    transform: translateY(0);
  }
}

@keyframes patient-path-icon-focus {
  0%,
  16% {
    transform: scale(1.1);
  }

  24%,
  100% {
    transform: scale(1);
  }
}

@keyframes patient-path-number-focus {
  0%,
  16% {
    box-shadow:
      0 0 0 5px rgba(107, 31, 50, 0.1),
      0 8px 18px rgba(107, 31, 50, 0.2);
    transform: scale(1.08);
  }

  24%,
  100% {
    box-shadow: none;
    transform: scale(1);
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 22px;
    padding-bottom: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .patient-path__marker,
  .patient-path__marker svg,
  .patient-path__number {
    animation: none;
  }
}

/* ==========================================================================
   V49 | jornada legível no mobile e superfície contínua com os pilares
   ========================================================================== */

/* As duas seções formam um único capítulo visual. */
.patient-path,
.pillars-section {
  background:
    radial-gradient(circle at 12% 5%, rgba(255, 255, 255, 0.34), transparent 30rem),
    linear-gradient(112deg, #dcd9d5 0%, #d8d4d0 52%, #d1cdca 100%);
}

.patient-path {
  border-bottom: 0;
}

.patient-path + .pillars-section {
  border-top-color: rgba(23, 20, 15, 0.055);
}

@media (max-width: 720px) {
  .patient-path__steps {
    width: 100%;
    grid-template-columns: minmax(0, 1fr);
  }

  .patient-path__steps li,
  .patient-path__steps li:nth-child(4),
  .patient-path__steps li:nth-child(5) {
    grid-column: 1 / -1;
    width: 100%;
    min-width: 0;
    min-height: 94px;
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 16px;
    padding: 8px 0;
  }

  .patient-path__steps::before {
    left: 31px;
  }

  .patient-path__copy {
    width: 100%;
    min-width: 0;
    padding: 8px 2px 8px 0;
  }

  .patient-path__copy h3 {
    width: 100%;
    font-size: 18px;
    line-height: 1.18;
  }

  .patient-path__copy p {
    width: 100%;
    max-width: 31ch;
    margin-top: 6px;
    font-size: 13px;
    line-height: 1.45;
  }

  .patient-path__closing {
    width: 100%;
  }
}

/* ==========================================================================
   V50 | ordem editorial do radar e sintomas claros em celulares
   ========================================================================== */

@media (max-width: 720px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto auto auto;
    gap: 0;
    padding-top: 30px;
  }

  .hero__body {
    display: contents;
  }

  .hero__line {
    display: none;
  }

  .hero__body h1 {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    max-width: 17ch;
    margin: 0 auto;
    text-align: center;
  }

  .hero__body p {
    grid-column: 1;
    grid-row: 3;
    width: 100%;
    max-width: 31ch;
    margin: 22px auto 0;
    text-align: center;
  }

  .radar-stage {
    grid-column: 1;
    grid-row: 2;
    width: min(calc(100vw - 40px), 350px);
    margin: 24px auto 0;
    justify-self: center;
  }

  .hero__body .btn {
    grid-column: 1;
    grid-row: 4;
    width: min(100%, 360px);
    margin: 18px auto 0;
    justify-self: center;
  }

  html.touch-mobile .radar-stage .symptom {
    color: var(--v33-wine) !important;
    background: rgba(248, 246, 242, 0.96) !important;
    border-color: rgba(107, 31, 50, 0.3) !important;
    box-shadow: 0 8px 24px rgba(69, 52, 48, 0.06) !important;
    animation: sym-ping-light var(--sweep) linear infinite !important;
  }
}

/* ==========================================================================
   V51 | circuito contínuo entre as etapas
   ========================================================================== */

/* Os marcadores permanecem claros. A energia percorre somente a conexão. */
.patient-path__marker,
.patient-path__marker svg,
.patient-path__number {
  animation: none;
}

.patient-path__marker::after {
  display: none;
}

.patient-path__steps::after {
  content: "";
  position: absolute;
  top: 35px;
  left: 9%;
  z-index: 0;
  width: 9px;
  height: 9px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  background: var(--v33-wine);
  box-shadow:
    0 0 0 5px rgba(107, 31, 50, 0.09),
    0 0 18px 5px rgba(107, 31, 50, 0.32);
  opacity: 0;
  transform: translate(-50%, 0);
  animation: patient-path-current-horizontal 6s linear infinite;
}

@keyframes patient-path-current-horizontal {
  0% {
    left: 9%;
    opacity: 0;
  }

  4%,
  96% {
    opacity: 1;
  }

  100% {
    left: 91%;
    opacity: 0;
  }
}

@media (max-width: 899px) {
  .patient-path__steps::after {
    display: none;
  }
}

@media (max-width: 720px) {
  .patient-path__steps::after {
    top: 31px;
    bottom: auto;
    left: 27px;
    display: block;
    transform: translate(0, -50%);
    animation-name: patient-path-current-vertical;
  }
}

@keyframes patient-path-current-vertical {
  0% {
    top: 31px;
    opacity: 0;
  }

  4%,
  96% {
    opacity: 1;
  }

  100% {
    top: calc(100% - 31px);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .patient-path__steps::after {
    animation: none;
    opacity: 0;
  }
}

/* ==========================================================================
   V52 | etapas vinho e mapa responsivo em circuito
   ========================================================================== */

.patient-path__circuit {
  display: none;
}

.patient-path__marker {
  color: #f8f4ee;
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.11), transparent 56%),
    linear-gradient(145deg, #7b233b, var(--v33-wine));
  border: 1px solid rgba(74, 16, 35, 0.72);
  box-shadow:
    0 14px 30px rgba(107, 31, 50, 0.17),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  animation: patient-path-node-arrival 7.5s linear infinite;
}

.patient-path__marker svg {
  animation: patient-path-icon-arrival 7.5s linear infinite;
}

.patient-path__steps li:nth-of-type(2) .patient-path__marker,
.patient-path__steps li:nth-of-type(2) .patient-path__marker svg {
  animation-delay: 1.5s;
}

.patient-path__steps li:nth-of-type(3) .patient-path__marker,
.patient-path__steps li:nth-of-type(3) .patient-path__marker svg {
  animation-delay: 3s;
}

.patient-path__steps li:nth-of-type(4) .patient-path__marker,
.patient-path__steps li:nth-of-type(4) .patient-path__marker svg {
  animation-delay: 4.5s;
}

.patient-path__steps li:nth-of-type(5) .patient-path__marker,
.patient-path__steps li:nth-of-type(5) .patient-path__marker svg {
  animation-delay: 6s;
}

.patient-path__copy {
  margin-top: 14px;
}

@keyframes patient-path-node-arrival {
  0%,
  9% {
    border-color: rgba(255, 250, 244, 0.96);
    box-shadow:
      0 0 0 4px rgba(255, 250, 244, 0.7),
      0 0 0 9px rgba(107, 31, 50, 0.12),
      0 15px 34px rgba(107, 31, 50, 0.25);
    transform: scale(1.035);
  }

  15%,
  100% {
    border-color: rgba(74, 16, 35, 0.72);
    box-shadow:
      0 14px 30px rgba(107, 31, 50, 0.17),
      inset 0 1px 0 rgba(255, 255, 255, 0.18);
    transform: scale(1);
  }
}

@keyframes patient-path-icon-arrival {
  0%,
  4% {
    opacity: 0.76;
    transform: scale(0.97);
  }

  7% {
    opacity: 1;
    transform: scale(1.07);
  }

  12%,
  100% {
    opacity: 0.94;
    transform: scale(1);
  }
}

@media (min-width: 721px) and (max-width: 899px) {
  .patient-path__steps li:nth-of-type(1),
  .patient-path__steps li:nth-of-type(2),
  .patient-path__steps li:nth-of-type(3) {
    grid-column: span 2;
  }

  .patient-path__steps li:nth-of-type(4) {
    grid-column: 2 / span 2;
  }

  .patient-path__steps li:nth-of-type(5) {
    grid-column: 4 / span 2;
  }
}

@media (max-width: 720px) {
  .patient-path__steps {
    width: min(100%, 390px);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(3, 155px);
    gap: 18px 16px;
    margin-inline: auto;
  }

  .patient-path__steps::before,
  .patient-path__steps::after {
    display: none;
  }

  .patient-path__circuit {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    display: block;
    overflow: visible;
    pointer-events: none;
  }

  .patient-path__circuit-base,
  .patient-path__circuit-current {
    fill: none;
    vector-effect: non-scaling-stroke;
  }

  .patient-path__circuit-base {
    stroke: rgba(107, 31, 50, 0.26);
    stroke-width: 1.25;
  }

  .patient-path__circuit-current {
    stroke: #8c2844;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 7 93;
    filter: drop-shadow(0 0 5px rgba(107, 31, 50, 0.58));
    animation: patient-path-circuit-travel 7.5s linear infinite;
  }

  .patient-path__steps li,
  .patient-path__steps li:nth-child(4),
  .patient-path__steps li:nth-child(5) {
    position: relative;
    z-index: 1;
    width: 100%;
    min-width: 0;
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    padding: 0;
    text-align: center;
  }

  .patient-path__steps li:nth-of-type(1) {
    grid-column: 1;
    grid-row: 1;
  }

  .patient-path__steps li:nth-of-type(2) {
    grid-column: 2;
    grid-row: 1;
  }

  .patient-path__steps li:nth-of-type(3) {
    grid-column: 2;
    grid-row: 2;
  }

  .patient-path__steps li:nth-of-type(4) {
    grid-column: 1;
    grid-row: 2;
  }

  .patient-path__steps li:nth-of-type(5) {
    grid-column: 1 / -1;
    grid-row: 3;
    width: calc((100% - 16px) / 2);
    justify-self: center;
  }

  .patient-path__marker {
    flex: 0 0 auto;
    width: 62px;
    height: 62px;
    margin: 0;
  }

  .patient-path__copy {
    width: 100%;
    min-width: 0;
    margin-top: 10px;
    padding: 0;
  }

  .patient-path__copy h3 {
    width: 100%;
    font-size: 16px;
    line-height: 1.18;
    text-align: center;
  }

  .patient-path__copy p {
    width: 100%;
    max-width: 20ch;
    margin: 5px auto 0;
    font-size: 11.5px;
    line-height: 1.38;
    text-align: center;
  }
}

@keyframes patient-path-circuit-travel {
  to {
    stroke-dashoffset: -100;
  }
}

@media (prefers-reduced-motion: reduce) {
  .patient-path__marker,
  .patient-path__marker svg,
  .patient-path__circuit-current {
    animation: none;
  }
}

/* ==========================================================================
   V53 | capítulo dos pilares em vinho com profundidade editorial
   ========================================================================== */

.pillars-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 12%, rgba(255, 255, 255, 0.09), transparent 31rem),
    radial-gradient(circle at 12% 92%, rgba(183, 123, 112, 0.16), transparent 34rem),
    linear-gradient(120deg, #4e1828 0%, var(--v33-wine) 52%, #521626 100%);
  border-top-color: rgba(255, 255, 255, 0.08);
  border-bottom-color: rgba(61, 12, 29, 0.42);
}

.pillars-section::before {
  content: "";
  position: absolute;
  inset: -18%;
  z-index: 0;
  pointer-events: none;
  background:
    repeating-radial-gradient(
      ellipse at 18% 32%,
      transparent 0 46px,
      rgba(255, 246, 240, 0.055) 47px,
      transparent 49px 82px
    ),
    repeating-radial-gradient(
      ellipse at 84% 74%,
      transparent 0 58px,
      rgba(236, 190, 187, 0.045) 59px,
      transparent 61px 98px
    );
  opacity: 0.72;
  transform: translate3d(-1%, 0, 0) scale(1.03);
  will-change: transform;
  animation: pillars-topography-drift 22s ease-in-out infinite;
}

.pillars-section::after {
  content: "";
  position: absolute;
  top: -34%;
  left: -12%;
  z-index: 0;
  width: min(64vw, 820px);
  aspect-ratio: 1;
  pointer-events: none;
  background: radial-gradient(
    circle,
    rgba(237, 198, 190, 0.18) 0%,
    rgba(183, 123, 112, 0.08) 34%,
    transparent 68%
  );
  opacity: 0.72;
  transform: translate3d(0, 0, 0);
  will-change: transform, opacity;
  animation: pillars-halo-drift 15s ease-in-out infinite;
}

.pillars-section .section-label,
.pillars-section .services {
  position: relative;
  z-index: 1;
}

.pillars-section .section-label {
  color: #fbf7f2;
  text-shadow: 0 2px 18px rgba(48, 8, 22, 0.2);
}

.pillars-section .section-label::before {
  background: #d8aaa8;
  box-shadow: 0 0 14px rgba(216, 170, 168, 0.28);
}

@keyframes pillars-topography-drift {
  0%,
  100% {
    transform: translate3d(-1%, 0, 0) scale(1.03);
  }

  50% {
    transform: translate3d(2%, -1.5%, 0) scale(1.06);
  }
}

@keyframes pillars-halo-drift {
  0%,
  100% {
    opacity: 0.58;
    transform: translate3d(0, 0, 0) scale(0.94);
  }

  50% {
    opacity: 0.84;
    transform: translate3d(34vw, 9%, 0) scale(1.08);
  }
}

@media (max-width: 720px) {
  .pillars-section::before {
    inset: -10% -34%;
    opacity: 0.62;
  }

  .pillars-section::after {
    top: -8%;
    left: -52%;
    width: 130vw;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pillars-section::before,
  .pillars-section::after {
    animation: none;
  }
}

/* ==========================================================================
   V54 | corrente única que contorna cada etapa antes de seguir
   ========================================================================== */

/* Remove os focos antigos: circuito e marcador agora usam uma só linha do tempo. */
.patient-path__marker,
.patient-path__marker svg {
  animation: none !important;
}

.patient-path__marker::after,
.patient-path__steps::before,
.patient-path__steps::after {
  display: none !important;
}

.patient-path__circuit {
  position: absolute;
  z-index: 0;
  display: block;
  overflow: visible;
  pointer-events: none;
}

.patient-path__circuit--desktop {
  top: 0;
  left: 0;
  width: 100%;
  height: 78px;
}

.patient-path__circuit--mobile {
  display: none;
}

.patient-path__circuit-base,
.patient-path__circuit-current {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.patient-path__circuit-base {
  stroke: rgba(107, 31, 50, 0.24);
  stroke-width: 1.25;
}

.patient-path__circuit-current {
  stroke: #a84360;
  stroke-width: 4.5;
  stroke-linecap: round;
  stroke-dasharray: 1.8 98.2;
  filter:
    drop-shadow(0 0 3px rgba(107, 31, 50, 0.72))
    drop-shadow(0 0 8px rgba(168, 67, 96, 0.38));
  animation: patient-path-circuit-orbit 12.5s linear infinite;
}

@keyframes patient-path-circuit-orbit {
  to {
    stroke-dashoffset: -100;
  }
}

@media (max-width: 720px) {
  .patient-path__circuit--desktop {
    display: none;
  }

  .patient-path__circuit--mobile {
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
  }

  .patient-path__circuit-current {
    stroke-width: 4;
    stroke-dasharray: 2.1 97.9;
    animation-duration: 13.5s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .patient-path__circuit-current {
    animation: none;
    opacity: 0;
  }
}

/* ==========================================================================
   V55 | círculos exatos e circuito recalculado para desktop e mobile
   ========================================================================== */

.patient-path__circuit {
  inset: 0;
  width: 100%;
  height: 100%;
}

.patient-path__circuit-base {
  stroke: rgba(107, 31, 50, 0.25);
  stroke-width: 1.35;
}

.patient-path__circuit-current {
  stroke-width: 4.25;
  stroke-dasharray: 1.45 98.55;
  animation-duration: 13.5s;
}

@media (max-width: 720px) {
  .patient-path__circuit {
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
  }

  .patient-path__circuit-current {
    stroke-width: 4;
    stroke-dasharray: 1.7 98.3;
    animation-duration: 14.5s;
  }
}

/* ==========================================================================
   V56 | circuito estável no Safari e alinhado sem considerar transforms
   ========================================================================== */

.patient-path__circuit-current {
  animation: none !important;
}

@media (max-width: 720px) {
  .patient-path__circuit-current {
    stroke-dasharray: 1.55 98.45;
  }
}

@media (prefers-reduced-motion: reduce) {
  .patient-path__circuit-current {
    display: none;
  }
}

/* ==========================================================================
   V57 | circuito mobile independente + processo editorial em superfície clara
   ========================================================================== */

.patient-path__mobile-current {
  display: none;
  pointer-events: none;
}

@media (max-width: 720px) {
  .patient-path__circuit-current {
    display: block !important;
    opacity: 0;
  }

  .patient-path__mobile-current {
    display: block;
  }

  .patient-path__mobile-dot {
    fill: #a84360;
    stroke: rgba(255, 250, 246, 0.96);
    stroke-width: 1.4;
    vector-effect: non-scaling-stroke;
    filter: drop-shadow(0 0 5px rgba(107, 31, 50, 0.72));
  }

  .patient-path__mobile-dot--tail-2 {
    opacity: 0.28;
  }

  .patient-path__mobile-dot--tail-1 {
    opacity: 0.56;
  }

  .patient-path__mobile-dot--lead {
    opacity: 1;
    filter:
      drop-shadow(0 0 4px rgba(107, 31, 50, 0.86))
      drop-shadow(0 0 10px rgba(168, 67, 96, 0.5));
  }
}

.method-section {
  isolation: isolate;
  margin: 0;
  color: var(--v33-ink);
  background:
    radial-gradient(circle at 50% -18%, rgba(255, 255, 255, 0.96), transparent 38rem),
    radial-gradient(ellipse at 8% 82%, rgba(203, 185, 174, 0.15), transparent 28rem),
    linear-gradient(180deg, #f3f1ed 0%, #eeebe6 100%);
  border-top: 1px solid rgba(107, 31, 50, 0.07);
  border-bottom: 1px solid rgba(107, 31, 50, 0.07);
}

.method-section::before {
  opacity: 0.42;
  background:
    radial-gradient(ellipse at 92% 18%, rgba(107, 31, 50, 0.04), transparent 26rem),
    radial-gradient(circle at 18% 28%, rgba(255, 255, 255, 0.75) 0 1px, transparent 1.5px);
  background-size: auto, 30px 30px;
}

.method__inner {
  width: min(calc(100% - 48px), var(--v33-container));
  padding: clamp(58px, 6.2vw, 78px) 0 clamp(56px, 6vw, 76px);
}

.method__intro {
  display: block;
  max-width: 880px;
  margin: 0 auto clamp(48px, 5.4vw, 66px);
  text-align: center;
}

.method__eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  padding: 8px 17px;
  color: var(--v33-wine);
  background: rgba(107, 31, 50, 0.07);
  border: 1px solid rgba(107, 31, 50, 0.14);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.15em;
}

.method__intro h2 {
  max-width: 24ch;
  margin: 0 auto;
  color: var(--v33-ink);
  font-size: clamp(34px, 4.2vw, 52px);
  line-height: 1.04;
  text-wrap: balance;
}

.method__intro > p:last-child {
  max-width: 65ch;
  margin: 18px auto 0;
  color: var(--v33-muted);
  font-size: 14px;
  line-height: 1.65;
  text-wrap: pretty;
}

.method__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  padding: 52px 0 0;
}

.method__steps::before {
  display: none;
}

.method__steps li {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 72px 20px 26px;
  text-align: center;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.8), rgba(248, 244, 239, 0.68));
  border: 1px solid rgba(107, 31, 50, 0.13);
  border-radius: 14px;
  box-shadow:
    0 18px 38px rgba(75, 57, 52, 0.065),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.method__steps li::after {
  content: none;
  display: none;
}

.method__call {
  position: absolute;
  top: -50px;
  left: 50%;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--v33-wine);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  white-space: nowrap;
  transform: translateX(-50%);
}

.method__call svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.method__call--continuous {
  top: -54px;
  padding: 9px 14px;
  color: #fff;
  background: var(--v33-wine);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(107, 31, 50, 0.14);
}

.method__connector {
  position: absolute;
  top: 34%;
  right: -47px;
  z-index: 6;
  width: 70px;
  height: 40px;
  overflow: visible;
  fill: none;
  stroke: var(--v33-wine);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}

.method-section.is-in .method__steps li:nth-child(4) {
  transition-delay: 420ms;
}

.method__icon {
  position: relative;
  top: auto;
  left: auto;
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  margin: 0 auto 20px;
  color: var(--v33-wine);
  background:
    radial-gradient(circle at 32% 24%, #fff, transparent 60%),
    rgba(246, 239, 235, 0.88);
  border-color: rgba(107, 31, 50, 0.2);
  border-radius: 50%;
  box-shadow:
    0 12px 26px rgba(107, 31, 50, 0.08),
    inset 0 0 0 5px rgba(255, 255, 255, 0.38);
}

.method__icon svg {
  width: 36px;
  height: 36px;
}

.method__icon-pulse {
  fill: var(--v33-wine);
  stroke: #fff;
}

.method__number {
  top: -31px;
  left: 50%;
  z-index: 5;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--v33-wine);
  border: 4px solid #f1eee9;
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(107, 31, 50, 0.16);
  font-family: var(--v33-display);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  transform: translateX(-50%);
}

.method__steps h3 {
  margin: 0 0 10px;
  color: var(--v33-ink);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.12;
  text-wrap: balance;
}

.method__steps p {
  max-width: 31ch;
  margin: 0 auto;
  color: var(--v33-muted);
  font-size: 12.5px;
  line-height: 1.52;
  text-wrap: pretty;
}

.method__outcome {
  width: 100%;
  display: block;
  margin: auto 0 0;
  padding-top: 17px;
  color: var(--v33-wine);
  border-top: 1px solid rgba(107, 31, 50, 0.13);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}

.method__cta {
  min-width: 208px;
  min-height: 48px;
  display: flex;
  margin: 36px auto 0;
  border-radius: 10px;
}

@media (max-width: 720px) {
  .method-section {
    margin: 0;
  }

  .method__inner {
    width: min(calc(100% - 28px), var(--v33-container));
    padding: 48px 0 52px;
  }

  .method__intro {
    margin-bottom: 36px;
  }

  .method__eyebrow {
    margin-bottom: 14px;
    padding: 7px 14px;
    font-size: 9.5px;
  }

  .method__intro h2 {
    max-width: 17ch;
    font-size: clamp(29px, 8.5vw, 36px);
    line-height: 1.06;
  }

  .method__intro > p:last-child {
    max-width: 34ch;
    margin-top: 14px;
    font-size: 13px;
    line-height: 1.55;
  }

  .method__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 14px;
    row-gap: 66px;
    padding-top: 48px;
  }

  .method__steps li {
    min-height: 244px;
    padding: 62px 13px 20px;
  }

  .method__steps li:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
  }

  .method__steps li:nth-child(4) {
    grid-column: 1;
    grid-row: 2;
  }

  .method__call {
    top: -43px;
    gap: 5px;
    font-size: 8px;
    letter-spacing: 0.09em;
  }

  .method__call svg {
    width: 13px;
    height: 13px;
  }

  .method__call--continuous {
    top: -47px;
    padding: 8px 9px;
    font-size: 7.5px;
  }

  .method__connector {
    top: 38%;
    right: -27px;
    width: 39px;
    height: 27px;
    stroke-width: 1.7;
  }

  .method__steps li:nth-child(2) .method__connector {
    top: auto;
    right: auto;
    bottom: -47px;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
  }

  .method__steps li:nth-child(3) .method__connector {
    top: 38%;
    right: auto;
    left: -27px;
    transform: rotate(180deg);
  }

  .method__icon {
    width: 56px;
    height: 56px;
    margin-bottom: 15px;
  }

  .method__icon svg {
    width: 32px;
    height: 32px;
  }

  .method__number {
    top: -25px;
    left: 50%;
    width: 50px;
    height: 50px;
    border-width: 3px;
    font-size: 20px;
    transform: translateX(-50%);
  }

  .method__steps h3 {
    padding: 0;
    font-size: 17px;
  }

  .method__steps p {
    max-width: 21ch;
    font-size: 11.5px;
    line-height: 1.43;
  }

  .method__outcome {
    padding-top: 13px;
    font-size: 10px;
    line-height: 1.3;
  }

  .method__cta {
    width: min(100%, 360px);
    min-height: 50px;
    margin-top: 34px;
  }
}

@media (max-width: 350px) {
  .method__steps {
    grid-template-columns: 1fr;
    row-gap: 62px;
  }

  .method__steps li,
  .method__steps li:nth-child(3),
  .method__steps li:nth-child(4) {
    grid-column: 1;
    grid-row: auto;
    min-height: 210px;
  }

  .method__connector,
  .method__steps li:nth-child(2) .method__connector,
  .method__steps li:nth-child(3) .method__connector {
    top: auto;
    right: auto;
    bottom: -48px;
    left: 50%;
    width: 42px;
    transform: translateX(-50%) rotate(90deg);
  }

  .method__call,
  .method__call--continuous {
    font-size: 9px;
  }
}

/* ==========================================================================
   V61 | ritmo editorial e grade previsível no mobile
   ========================================================================== */

@media (max-width: 720px) {
  /* O subtítulo saiu de cima do radar; reduzimos o vazio sem comprimir o título. */
  .radar-stage {
    margin-top: 15px;
  }

  /* Cabeçalhos usam toda a largura editorial disponível, sem colunas estreitas. */
  .patient-path__header,
  .method__intro {
    width: 100%;
    max-width: none;
  }

  .patient-path__header h2,
  .method__intro h2 {
    width: 100%;
    max-width: none;
    margin-inline: auto;
  }

  .patient-path__header > p:last-child,
  .method__intro > p:last-child {
    width: 100%;
    max-width: 40ch;
    margin-inline: auto;
  }

  .section-label,
  .pillars-section .section-label {
    width: 100%;
    max-width: none;
    padding-inline: 0;
  }

  /* Sequência direta: 1 | 2 na primeira linha e 3 | 4 na segunda. */
  .method__steps li:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
  }

  .method__steps li:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
  }

  .method__steps li:nth-child(2) .method__connector {
    right: auto;
    bottom: -50px;
    left: 20%;
    width: 46px;
    transform: rotate(132deg);
  }

  .method__steps li:nth-child(3) .method__connector {
    top: 38%;
    right: -27px;
    bottom: auto;
    left: auto;
    width: 39px;
    transform: none;
  }
}

@media (max-width: 350px) {
  .method__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 10px;
    row-gap: 66px;
  }

  .method__steps li,
  .method__steps li:nth-child(3),
  .method__steps li:nth-child(4) {
    min-height: 276px;
  }

  .method__steps li:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }

  .method__steps li:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }

  .method__steps li:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
  }

  .method__steps li:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
  }

  .method__connector {
    top: 38%;
    right: -23px;
    bottom: auto;
    left: auto;
    width: 34px;
    transform: none;
  }

  .method__steps li:nth-child(2) .method__connector {
    right: auto;
    bottom: -49px;
    left: 16%;
    width: 44px;
    transform: rotate(132deg);
  }

  .method__steps li:nth-child(3) .method__connector {
    top: 38%;
    right: -23px;
    bottom: auto;
    left: auto;
    width: 34px;
    transform: none;
  }

  .method__call,
  .method__call--continuous {
    font-size: 7.5px;
  }
}

/* ==========================================================================
   V62 | autoridade em vinho + profundidade ambiental na capa
   ========================================================================== */

.profile::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
  width: 108vw;
  height: calc(100% + 28px);
  pointer-events: none;
  background:
    repeating-radial-gradient(
      ellipse at 18% 32%,
      transparent 0 46px,
      rgba(255, 246, 240, 0.055) 47px,
      transparent 49px 82px
    ),
    repeating-radial-gradient(
      ellipse at 84% 74%,
      transparent 0 58px,
      rgba(236, 190, 187, 0.045) 59px,
      transparent 61px 98px
    ),
    radial-gradient(circle at 14% 4%, rgba(237, 198, 190, 0.16), transparent 34%);
  border-radius: 0 0 50% 50% / 0 0 15% 15%;
  opacity: 0.68;
  transform: translate3d(-50%, 0, 0) scale(1.02);
  will-change: transform, opacity;
  animation: profile-topography-drift 20s ease-in-out infinite;
}

@keyframes profile-topography-drift {
  0%,
  100% {
    opacity: 0.58;
    transform: translate3d(-50%, 0, 0) scale(1.02);
  }

  50% {
    opacity: 0.8;
    transform: translate3d(-48%, -1.5%, 0) scale(1.055);
  }
}

.about {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0 0 clamp(56px, 6vw, 76px);
  padding: clamp(64px, 7vw, 86px) 24px clamp(68px, 7.5vw, 92px);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 82% 12%, rgba(255, 255, 255, 0.09), transparent 31rem),
    radial-gradient(circle at 12% 92%, rgba(183, 123, 112, 0.16), transparent 34rem),
    linear-gradient(120deg, #4e1828 0%, var(--v33-wine) 52%, #521626 100%);
}

.about::before {
  content: "";
  position: absolute;
  inset: -18%;
  z-index: 0;
  display: block;
  pointer-events: none;
  background:
    repeating-radial-gradient(
      ellipse at 18% 32%,
      transparent 0 46px,
      rgba(255, 246, 240, 0.055) 47px,
      transparent 49px 82px
    ),
    repeating-radial-gradient(
      ellipse at 84% 74%,
      transparent 0 58px,
      rgba(236, 190, 187, 0.045) 59px,
      transparent 61px 98px
    );
  opacity: 0.66;
  transform: translate3d(-1%, 0, 0) scale(1.03);
  will-change: transform;
  animation: pillars-topography-drift 22s ease-in-out infinite;
}

.about::after {
  content: "";
  position: absolute;
  top: -46%;
  left: -14%;
  z-index: 0;
  width: min(62vw, 760px);
  aspect-ratio: 1;
  display: block;
  pointer-events: none;
  background: radial-gradient(
    circle,
    rgba(237, 198, 190, 0.16) 0%,
    rgba(183, 123, 112, 0.07) 36%,
    transparent 68%
  );
  opacity: 0.68;
  will-change: transform, opacity;
  animation: pillars-halo-drift 16s ease-in-out infinite;
}

.about__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 900px);
  display: grid;
  grid-template-columns: minmax(150px, 190px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(34px, 6vw, 64px);
  margin: 0 auto;
}

.about__portrait {
  width: 100%;
  max-width: 190px;
  aspect-ratio: 3 / 4;
  justify-self: end;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  box-shadow: 0 18px 38px rgba(48, 8, 22, 0.22);
}

.about__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 24%;
  filter: saturate(0.86) contrast(0.97);
}

.about__body {
  max-width: 580px;
}

.about__eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

.about__body h2 {
  color: #fff;
  font-size: clamp(34px, 4vw, 48px);
}

.about__body > p:not(.about__eyebrow),
.about__points {
  color: rgba(255, 255, 255, 0.72);
}

.about__points {
  margin-top: 20px;
}

.about__points li::before {
  border-color: #d8aaa8;
}

.about__link.btn {
  color: var(--v33-wine);
  background: #f7f2ee;
  border-color: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 28px rgba(48, 8, 22, 0.16);
}

.about__link.btn:hover,
.about__link.btn:focus-visible {
  color: var(--v33-wine-dark);
  background: #fff;
  border-color: #fff;
}

@media (max-width: 720px) {
  .profile::after {
    width: 112vw;
    height: calc(100% + 6px);
    opacity: 0.62;
  }

  .about {
    margin-bottom: 48px;
    padding: 56px 17px 62px;
  }

  .about::before {
    inset: -10% -34%;
    opacity: 0.6;
  }

  .about::after {
    top: -8%;
    left: -54%;
    width: 132vw;
  }

  .about__inner {
    width: min(100%, 430px);
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about__portrait {
    width: 126px;
    max-width: 126px;
    justify-self: center;
    border-radius: 10px;
    box-shadow: 0 12px 26px rgba(48, 8, 22, 0.2);
  }

  .about__body {
    width: 100%;
    max-width: none;
    text-align: left;
  }

  .about__body h2 {
    font-size: 34px;
  }

  .about__points {
    width: 100%;
    max-width: none;
  }

  .about__link.btn {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .profile::after,
  .about::before,
  .about::after {
    animation: none;
  }
}

/* ==========================================================================
   V63 | circuitos legíveis no mobile + apresentação editorial com onda única
   ========================================================================== */

@media (max-width: 720px) {
  /* Os conectores horizontais passam apenas na faixa dos ícones. As mudanças
     de linha usam os corredores laterais calculados pelo JavaScript. */
  .patient-path__steps {
    width: min(calc(100% - 22px), 390px);
    grid-template-rows: repeat(3, 172px);
    column-gap: 20px;
    row-gap: 24px;
    overflow: visible;
  }

  .patient-path__copy {
    position: relative;
    z-index: 2;
    padding-inline: 4px;
  }

  .patient-path__copy p {
    max-width: 18ch;
  }

  .patient-path__circuit {
    z-index: 0;
    overflow: visible;
  }

  .patient-path__steps li {
    z-index: 1;
  }

  /* Setas do processo ocupam uma faixa funcional acima dos títulos. */
  .method__steps {
    column-gap: 22px;
    row-gap: 78px;
  }

  .method__connector {
    top: 104px;
    right: -31px;
    width: 40px;
    height: 24px;
  }

  .method__steps li:nth-child(2) .method__connector {
    top: auto;
    right: auto;
    bottom: -57px;
    left: -31px;
    width: 38px;
    height: 26px;
    transform: rotate(90deg);
  }

  .method__steps li:nth-child(3) .method__connector {
    top: 104px;
    right: -31px;
    bottom: auto;
    left: auto;
    width: 40px;
    height: 24px;
    transform: none;
  }
}

/* A seção volta à superfície clara. O vinho aparece em uma única onda
   assimétrica que ancora a fotografia sem invadir o bloco de leitura. */
.about {
  position: relative;
  margin: 0 0 clamp(56px, 6vw, 76px);
  padding: clamp(66px, 7vw, 88px) 24px clamp(70px, 7.5vw, 94px);
  color: var(--v33-ink);
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.9), transparent 28rem),
    radial-gradient(circle at 14% 86%, rgba(183, 123, 112, 0.07), transparent 26rem),
    linear-gradient(180deg, #f5f3ef 0%, #efebe6 100%);
  border-top: 1px solid rgba(107, 31, 50, 0.08);
  border-bottom: 1px solid rgba(107, 31, 50, 0.08);
}

.about::before {
  content: "";
  position: absolute;
  top: 50%;
  left: max(18px, calc(50% - 478px));
  z-index: 0;
  width: clamp(330px, 32vw, 430px);
  height: clamp(230px, 23vw, 310px);
  display: block;
  pointer-events: none;
  opacity: 1;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.14), transparent 38%),
    linear-gradient(135deg, #521626 0%, var(--v33-wine) 55%, #8c2844 100%);
  border-radius: 61% 39% 68% 32% / 48% 57% 43% 52%;
  transform: translateY(-50%) rotate(-6deg);
  box-shadow: 0 24px 58px rgba(72, 18, 35, 0.18);
  animation: about-wave-breathe 12s ease-in-out infinite;
}

.about::after {
  display: none;
}

.about__inner {
  width: min(100%, 920px);
  grid-template-columns: minmax(150px, 188px) minmax(0, 1fr);
  gap: clamp(46px, 7vw, 76px);
}

.about__portrait {
  position: relative;
  z-index: 1;
  max-width: 178px;
  border: 5px solid rgba(249, 245, 240, 0.94);
  border-radius: 14px;
  box-shadow: 0 20px 44px rgba(59, 13, 29, 0.2);
  transform: rotate(-1.5deg);
}

.about__portrait img {
  filter: saturate(0.9) contrast(0.98);
}

.about__body {
  max-width: 610px;
}

.about__eyebrow {
  color: var(--v33-wine);
}

.about__body h2 {
  color: var(--v33-ink);
}

.about__copy {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.about__body .about__copy p {
  max-width: 62ch;
  margin: 0;
  color: rgba(23, 20, 18, 0.72);
  font-size: 15px;
  line-height: 1.65;
  text-wrap: pretty;
}

.about__link.btn {
  margin-top: 24px;
  color: #fff;
  background: var(--v33-wine);
  border-color: var(--v33-wine);
  box-shadow: 0 13px 28px rgba(86, 20, 43, 0.18);
}

.about__link.btn:hover,
.about__link.btn:focus-visible {
  color: #fff;
  background: var(--v33-wine-dark);
  border-color: var(--v33-wine-dark);
}

@keyframes about-wave-breathe {
  0%,
  100% {
    transform: translateY(-50%) rotate(-6deg) scale(1);
  }

  50% {
    transform: translateY(-52%) rotate(-4deg) scale(1.025);
  }
}

@media (max-width: 720px) {
  .about {
    margin-bottom: 48px;
    padding: 58px 18px 64px;
  }

  .about::before {
    top: 114px;
    left: 50%;
    width: 274px;
    height: 176px;
    border-radius: 62% 38% 66% 34% / 46% 58% 42% 54%;
    transform: translate(-50%, -50%) rotate(-6deg);
  }

  .about__inner {
    width: min(100%, 430px);
    gap: 34px;
  }

  .about__portrait {
    width: 122px;
    max-width: 122px;
    border-width: 4px;
    border-radius: 12px;
    box-shadow: 0 16px 32px rgba(59, 13, 29, 0.2);
  }

  .about__body {
    text-align: left;
  }

  .about__copy {
    gap: 13px;
    margin-top: 14px;
  }

  .about__body .about__copy p {
    font-size: 14px;
    line-height: 1.62;
  }

  .about__link.btn {
    margin-top: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about::before {
    animation: none;
  }
}

/* ==========================================================================
   V64 | Quem organiza a estrutura
   Composição editorial responsiva inspirada no estudo aprovado no Canva:
   uma única faixa vinho curva, retrato sobreposto e leitura em superfície clara.
   ========================================================================== */

.about {
  --about-surface: #f6f3ef;
  position: relative;
  display: block;
  width: 100%;
  max-width: none;
  min-height: 570px;
  margin: 0;
  padding: 0 24px;
  overflow: hidden;
  color: var(--v33-ink);
  background:
    radial-gradient(circle at 78% 70%, rgba(255, 255, 255, 0.86), transparent 25rem),
    linear-gradient(180deg, var(--about-surface) 0%, #f1ede8 100%);
  border: 0;
  isolation: isolate;
}

.about::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 0;
  width: 100%;
  height: 178px;
  opacity: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.09), transparent 19rem),
    linear-gradient(110deg, #641c30 0%, #76243c 56%, #6b1f32 100%);
  border-radius: 0;
  box-shadow: none;
  transform: none;
  animation: none;
}

.about::after {
  content: none;
  display: none;
}

.about__inner {
  position: relative;
  z-index: 2;
  width: min(100%, 940px);
  min-height: 570px;
  display: grid;
  grid-template-columns: minmax(220px, 292px) minmax(0, 1fr);
  align-items: end;
  gap: clamp(44px, 6vw, 72px);
  margin: 0 auto;
  padding: 24px 0 32px;
}

.about__portrait {
  align-self: end;
  width: 100%;
  max-width: 282px;
  height: 492px;
  margin: 0;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transform: none;
}

.about__portrait img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 18px 24px rgba(48, 13, 24, 0.14));
}

.about__body {
  align-self: start;
  max-width: 590px;
  padding: 198px 0 18px;
  text-align: left;
}

.about__body h2 {
  max-width: 18ch;
  margin: 0;
  color: var(--v33-ink);
  font-family: var(--v33-display);
  font-size: clamp(30px, 3.25vw, 45px);
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.about__copy {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.about__body .about__copy p {
  max-width: 58ch;
  margin: 0;
  color: rgba(23, 20, 18, 0.74);
  font-size: 15px;
  line-height: 1.62;
  letter-spacing: 0;
  text-wrap: pretty;
}

.about__link.btn {
  width: min(100%, 390px);
  min-height: 50px;
  margin-top: 25px;
  justify-content: center;
  color: #fff;
  background: var(--v33-wine);
  border: 1px solid var(--v33-wine);
  border-radius: 14px;
  box-shadow: 0 13px 27px rgba(82, 18, 39, 0.18);
}

.about__link.btn:hover,
.about__link.btn:focus-visible {
  color: #fff;
  background: var(--v33-wine-dark);
  border-color: var(--v33-wine-dark);
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .about {
    min-height: 540px;
    padding-inline: 22px;
  }

  .about::before {
    height: 154px;
  }

  .about__inner {
    min-height: 540px;
    grid-template-columns: minmax(200px, 250px) minmax(0, 1fr);
    gap: 34px;
    padding-top: 22px;
  }

  .about__portrait {
    max-width: 246px;
    height: 446px;
  }

  .about__body {
    padding-top: 174px;
  }

  .about__body h2 {
    font-size: clamp(29px, 4vw, 38px);
  }

  .about__body .about__copy p {
    font-size: 14px;
    line-height: 1.58;
  }
}

@media (max-width: 620px) {
  .about {
    min-height: 0;
    margin: 0;
    padding: 0 18px 32px;
  }

  .about::before {
    height: 116px;
  }

  .about__inner {
    width: min(100%, 430px);
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 12px 0 0;
  }

  .about__portrait {
    justify-self: center;
    width: min(62vw, 220px);
    max-width: 220px;
    height: 274px;
  }

  .about__portrait img {
    filter: drop-shadow(0 14px 20px rgba(48, 13, 24, 0.14));
  }

  .about__body {
    width: 100%;
    max-width: 390px;
    justify-self: center;
    padding: 6px 0 0;
  }

  .about__body h2 {
    max-width: 320px;
    margin-inline: auto;
    font-size: clamp(28px, 8.5vw, 35px);
    line-height: 1.06;
    text-align: center;
  }

  .about__copy {
    gap: 13px;
    margin-top: 18px;
  }

  .about__body .about__copy p {
    font-size: 14px;
    line-height: 1.6;
  }

  .about__link.btn {
    width: 100%;
    margin-top: 22px;
    border-radius: 13px;
  }
}

@media (max-width: 380px) {
  .about {
    padding-inline: 16px;
  }

  .about__portrait {
    width: 202px;
    height: 254px;
  }

  .about__body h2 {
    font-size: 28px;
  }
}

/* A seção de apresentação permanece estática em todos os formatos. */
.about.reveal,
.about.reveal.is-visible {
  opacity: 1;
  transform: none;
  transition: none;
}

.about,
.about::before,
.about__portrait,
.about__portrait img,
.about__body {
  animation: none !important;
}

/* V68 | faixa mínima no desktop e foto de perfil no mobile */
@media (min-width: 621px) {
  .about::before {
    height: 48px;
  }

  .about__body {
    padding-top: 112px;
  }
}

@media (min-width: 901px) {
  .about::before {
    height: 44px;
  }

  .about__body {
    padding-top: 104px;
  }
}

@media (max-width: 620px) {
  .about::before {
    height: 92px;
  }

  .about__portrait,
  .about__portrait img {
    width: 180px;
    height: 180px;
  }

  .about__portrait {
    position: relative;
    max-width: 180px;
    overflow: hidden;
    border: 6px solid var(--about-surface);
    border-radius: 50%;
    background: linear-gradient(
      180deg,
      var(--v33-wine) 0 50%,
      var(--about-surface) 50% 100%
    );
    box-shadow: 0 10px 24px rgba(48, 13, 24, 0.16);
  }

  .about__portrait img {
    display: block;
    object-fit: cover;
    object-position: center 18%;
    filter: none;
  }
}

@media (max-width: 380px) {
  .about__portrait,
  .about__portrait img {
    width: 164px;
    height: 164px;
  }

  .about__portrait {
    max-width: 164px;
  }
}

/* ==========================================================================
   V69 | Quem organiza
   Seção reconstruída como uma única composição: fundo vinho e card claro.
   ========================================================================== */

.about {
  --about-section: #681c33;
  --about-section-deep: #571427;
  --about-card: #f4eeeb;
  --about-card-soft: #eadfdd;
  --about-card-ink: #1d1819;
  min-height: 0;
  padding: clamp(54px, 6vw, 78px) 24px clamp(62px, 7vw, 88px);
  overflow: hidden;
  color: var(--about-card-ink);
  background:
    radial-gradient(circle at 14% 12%, rgba(255, 255, 255, 0.07), transparent 24rem),
    radial-gradient(circle at 88% 82%, rgba(255, 255, 255, 0.04), transparent 26rem),
    linear-gradient(135deg, var(--about-section-deep) 0%, var(--about-section) 58%, #74223a 100%);
}

.about::before,
.about::after {
  content: none;
  display: none;
}

.about__inner {
  width: min(100%, 1060px);
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(190px, 236px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(34px, 5vw, 58px);
  margin: 0 auto;
  padding: clamp(26px, 3vw, 34px);
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 8%, rgba(255, 255, 255, 0.72), transparent 18rem),
    var(--about-card);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  box-shadow: 0 24px 54px rgba(54, 9, 25, 0.24);
}

.about__portrait {
  align-self: center;
  justify-self: center;
  width: 100%;
  max-width: 226px;
  height: 330px;
  margin: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 24%, rgba(255, 255, 255, 0.86), transparent 8rem),
    linear-gradient(180deg, #eadfdd 0%, #ddcdca 100%);
  border: 0;
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(72, 26, 39, 0.13);
}

.about__portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: none;
}

.about__body {
  align-self: center;
  width: 100%;
  max-width: 650px;
  padding: 0;
  text-align: left;
}

.about__body h2 {
  max-width: 19ch;
  margin: 0;
  color: var(--about-card-ink);
  font-family: var(--v33-display);
  font-size: clamp(31px, 3.2vw, 43px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.about__copy {
  display: grid;
  gap: 13px;
  margin-top: 20px;
}

.about__body .about__copy p {
  max-width: 62ch;
  margin: 0;
  color: rgba(29, 24, 25, 0.72);
  font-size: 15px;
  line-height: 1.62;
  text-wrap: pretty;
}

.about__link.btn {
  width: min(100%, 360px);
  min-height: 50px;
  margin-top: 23px;
  justify-content: center;
  color: #fff;
  background: var(--v33-wine);
  border: 1px solid var(--v33-wine);
  border-radius: 13px;
  box-shadow: 0 12px 24px rgba(82, 18, 39, 0.17);
}

.about__link.btn:hover,
.about__link.btn:focus-visible {
  color: #fff;
  background: var(--v33-wine-dark);
  border-color: var(--v33-wine-dark);
  transform: translateY(-2px);
}

.about__link.btn:active {
  transform: translateY(0) scale(0.985);
}

@media (max-width: 760px) {
  .about {
    padding: 42px 16px 50px;
  }

  .about__inner {
    width: min(100%, 480px);
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 22px 18px 24px;
    border-radius: 20px;
  }

  .about__portrait {
    width: min(52vw, 182px);
    max-width: 182px;
    height: 242px;
    border-radius: 16px;
  }

  .about__body {
    max-width: none;
    padding: 0;
  }

  .about__body h2 {
    max-width: 340px;
    margin-inline: auto;
    font-size: clamp(28px, 8vw, 34px);
    line-height: 1.07;
    text-align: center;
  }

  .about__copy {
    gap: 12px;
    margin-top: 18px;
  }

  .about__body .about__copy p {
    font-size: 14px;
    line-height: 1.6;
  }

  .about__link.btn {
    width: 100%;
    margin-top: 21px;
  }
}

@media (max-width: 380px) {
  .about {
    padding-inline: 13px;
  }

  .about__inner {
    padding-inline: 16px;
  }

  .about__portrait {
    width: 158px;
    max-width: 158px;
    height: 214px;
  }

  .about__portrait img {
    width: 100%;
    height: 100%;
  }

  .about__body h2 {
    font-size: 27px;
  }
}

/* ==========================================================================
   V70 | fechamento editorial, conteúdos e curvas discretas
   ========================================================================== */

/* Curvas rasas apenas na saída dos capítulos em vinho. Elas são elementos
   próprios para não interferirem nas animações de fundo já existentes. */
.section-curve {
  position: absolute;
  left: 50%;
  bottom: -1px;
  z-index: 4;
  width: 112%;
  height: clamp(24px, 2.5vw, 36px);
  display: block;
  pointer-events: none;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  transform: translateX(-50%);
}

.section-curve--pillars {
  background: #f1eee9;
}

.section-curve--about {
  background: #d8d4d0;
}

.pillars-section {
  padding-bottom: calc(clamp(54px, 7vw, 88px) + 18px);
}

.about__inner {
  position: relative;
  z-index: 1;
}

.about__link.btn {
  width: min(100%, 420px);
  min-height: 54px;
  padding-inline: 25px;
  font-weight: 700;
  box-shadow:
    0 14px 28px rgba(82, 18, 39, 0.2),
    0 2px 0 rgba(255, 255, 255, 0.08) inset;
}

.about__link .icon--whatsapp {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  fill: currentColor;
  stroke: none;
}

/* A última dobra reúne conteúdos e rodapé na mesma superfície. */
.content-end {
  position: relative;
  width: 100%;
  padding: clamp(66px, 7vw, 90px) 0 0;
  overflow: hidden;
  color: var(--v33-ink);
  background:
    radial-gradient(circle at 12% 5%, rgba(255, 255, 255, 0.42), transparent 31rem),
    radial-gradient(circle at 88% 72%, rgba(125, 111, 104, 0.08), transparent 26rem),
    linear-gradient(112deg, #dcd9d5 0%, #d8d4d0 52%, #d1cdca 100%);
}

.content-end::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.24;
  background:
    linear-gradient(115deg, transparent 0 48%, rgba(255, 255, 255, 0.18) 50%, transparent 52%),
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.46) 0 1px, transparent 1.5px);
  background-size: auto, 34px 34px;
}

.content-end > * {
  position: relative;
  z-index: 1;
}

.content-end > .section-label {
  width: min(calc(100% - 48px), var(--v33-container));
  max-width: 980px;
  margin: 0 auto clamp(30px, 3.5vw, 42px);
  color: var(--v33-ink);
  text-align: center;
}

.content-end > .section-label::before {
  background: var(--v33-wine);
}

.content-end .contents {
  width: min(calc(100% - 48px), 980px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: row;
  grid-auto-columns: auto;
  gap: clamp(14px, 1.5vw, 19px);
  margin: 0 auto;
  padding: 0;
  overflow: visible;
}

.content-end .social-post {
  min-width: 0;
  color: #f8f3ef;
  border: 1px solid rgba(71, 56, 57, 0.18);
  border-radius: 15px;
  background: #171214;
  box-shadow: 0 14px 30px rgba(57, 45, 43, 0.13);
}

.content-end .social-post:hover,
.content-end .social-post:focus-visible {
  border-color: rgba(107, 31, 50, 0.42);
  box-shadow: 0 20px 38px rgba(57, 45, 43, 0.2);
}

.content-end .social-post--pending {
  opacity: 0.72;
}

.content-end .social-post__media {
  width: 100%;
  aspect-ratio: 3 / 4;
}

.content-end .social-post__body {
  min-height: 49px;
  padding: 12px 13px;
  background: #171214;
}

.content-end .social-post__actions {
  gap: 9px;
}

.content-end .social-post__action {
  color: #eee8e5;
}

.content-end .social-post__action--liked {
  color: #ef315d;
}

.content-end .social-post__action--liked svg {
  fill: currentColor;
  stroke: currentColor;
}

.contents__mobile-hint {
  display: none;
}

.content-end .footer {
  width: min(calc(100% - 48px), var(--v33-container));
  max-width: 980px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: clamp(48px, 6vw, 68px) auto 0;
  padding: 24px 0 30px;
  color: var(--v33-ink);
  background: transparent;
  border-top: 1px solid rgba(23, 20, 15, 0.13);
  text-align: left;
}

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

.footer__identity strong {
  color: var(--v33-ink);
  font-family: var(--v33-display);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.footer__identity span {
  color: rgba(23, 20, 15, 0.62);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.content-end .footer__socials {
  margin: 0;
  gap: 8px;
}

.content-end .footer__socials .social {
  width: 40px;
  height: 40px;
  color: var(--v33-wine);
  background: rgba(248, 246, 242, 0.42);
  border-color: rgba(107, 31, 50, 0.22);
  box-shadow: 0 7px 16px rgba(64, 49, 47, 0.08);
}

.content-end .footer__socials .social:hover,
.content-end .footer__socials .social:focus-visible {
  color: #fff;
  background: var(--v33-wine);
  border-color: var(--v33-wine);
  transform: translateY(-2px);
}

@media (max-width: 720px) {
  .section-curve {
    width: 124%;
    height: 20px;
  }

  .pillars-section {
    padding-bottom: calc(48px + 12px);
  }

  .about__link.btn {
    min-height: 52px;
  }

  .content-end {
    padding-top: 52px;
  }

  .content-end > .section-label {
    width: calc(100% - 36px);
    margin-bottom: 27px;
    text-align: left;
  }

  .content-end .contents {
    width: 100%;
    grid-template-columns: none;
    grid-auto-columns: min(72vw, 274px);
    grid-auto-flow: column;
    gap: 14px;
    margin: 0;
    padding: 0 18px 10px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 18px;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .content-end .contents::-webkit-scrollbar {
    display: none;
  }

  .content-end .social-post {
    scroll-snap-align: start;
  }

  .contents__mobile-hint {
    width: calc(100% - 36px);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 7px;
    margin: 8px auto 0;
    color: rgba(23, 20, 15, 0.5);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .contents__mobile-hint svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
    animation: contents-hint-slide 1.8s ease-in-out infinite;
  }

  .content-end .footer {
    width: calc(100% - 36px);
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    margin-top: 42px;
    padding: 23px 0 28px;
    text-align: center;
  }

  .footer__identity {
    justify-items: center;
  }
}

@keyframes contents-hint-slide {
  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(4px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .contents__mobile-hint svg {
    animation: none;
  }
}

/* ==========================================================================
   V71 | ritmo vertical entre o radar e a jornada no desktop
   ========================================================================== */

@media (min-width: 900px) {
  .hero {
    margin-bottom: clamp(22px, 2vw, 30px);
    padding-bottom: clamp(10px, 1vw, 14px);
  }

  .patient-path__inner {
    padding-top: clamp(38px, 3.4vw, 48px);
  }
}

/* ==========================================================================
   V72 | curva vinho correta na transição para "Como funciona"
   ========================================================================== */

/* A curva anterior era uma sobreposição clara voltada para cima. A própria
   seção vinho agora forma a divisória e avança discretamente sobre a próxima. */
.section-curve--pillars {
  display: none;
}

.pillars-section {
  z-index: 2;
  margin-bottom: -26px;
  border-bottom: 0;
  border-bottom-right-radius: 50% 26px;
  border-bottom-left-radius: 50% 26px;
}

.method-section {
  position: relative;
  z-index: 1;
  border-top: 0;
}

@media (max-width: 720px) {
  .pillars-section {
    margin-bottom: -18px;
    border-bottom-right-radius: 50% 18px;
    border-bottom-left-radius: 50% 18px;
  }
}

/* ==========================================================================
   V73 | vitrine editorial de conteúdos + divisória final vinho
   ========================================================================== */

/* A própria seção vinho forma a curva. Isso elimina a faixa intermediária
   que criava uma diferença de cor entre "Quem organiza" e os conteúdos. */
.about {
  z-index: 2;
  margin-bottom: -28px;
  border-bottom-right-radius: 50% 28px;
  border-bottom-left-radius: 50% 28px;
}

.section-curve--about {
  display: none;
}

.content-end {
  z-index: 1;
  padding-top: calc(clamp(66px, 7vw, 90px) + 28px);
  background:
    radial-gradient(circle at 12% 5%, rgba(255, 255, 255, 0.58), transparent 31rem),
    radial-gradient(circle at 88% 72%, rgba(107, 31, 50, 0.045), transparent 26rem),
    linear-gradient(180deg, #f5f2ed 0%, #eee9e3 100%);
}

.content-end .contents {
  align-items: stretch;
  gap: clamp(13px, 1.45vw, 18px);
}

.content-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: var(--v33-ink);
  background: rgba(250, 247, 242, 0.9);
  border: 1px solid rgba(40, 31, 28, 0.12);
  border-radius: 16px;
  box-shadow: 0 15px 34px rgba(57, 45, 43, 0.1);
  text-decoration: none;
  scroll-snap-align: start;
  transition:
    transform 320ms var(--ease-out),
    border-color 320ms ease,
    box-shadow 320ms ease;
}

a.content-card:hover,
a.content-card:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(107, 31, 50, 0.34);
  box-shadow: 0 22px 44px rgba(57, 45, 43, 0.16);
}

.content-card__cover {
  position: relative;
  min-height: 0;
  display: flex;
  aspect-ratio: 4 / 5;
  flex-direction: column;
  justify-content: space-between;
  padding: 17px;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
}

.content-card__cover::before,
.content-card__cover::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.content-card__cover::before {
  width: 76%;
  aspect-ratio: 1;
  top: -19%;
  right: -28%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  box-shadow:
    0 0 0 26px rgba(255, 255, 255, 0.035),
    0 0 0 54px rgba(255, 255, 255, 0.02);
}

.content-card__cover::after {
  inset: 0;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 30px 30px;
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 86%);
  mask-image: linear-gradient(to bottom, #000, transparent 86%);
}

.content-card__cover--captacao {
  background:
    radial-gradient(circle at 84% 15%, rgba(224, 168, 151, 0.25), transparent 44%),
    linear-gradient(145deg, #2b171d 0%, #6b1f32 65%, #8f314d 100%);
}

.content-card__cover--controle {
  background:
    radial-gradient(circle at 12% 8%, rgba(230, 221, 210, 0.22), transparent 42%),
    linear-gradient(145deg, #1b1919 0%, #38302e 58%, #6a514c 100%);
}

.content-card__cover--atendimento {
  background:
    radial-gradient(circle at 86% 12%, rgba(249, 224, 215, 0.2), transparent 44%),
    linear-gradient(145deg, #4d1828 0%, #7d2942 58%, #a14b60 100%);
}

.content-card__cover--processo {
  background:
    radial-gradient(circle at 15% 84%, rgba(216, 189, 178, 0.19), transparent 46%),
    linear-gradient(145deg, #171414 0%, #2d2726 62%, #563d3a 100%);
}

.content-card__index {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.27);
  border-radius: 50%;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.content-card__cover-copy {
  display: grid;
  gap: 8px;
}

.content-card__cover-copy small {
  color: rgba(255, 255, 255, 0.67);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.content-card__cover-copy strong {
  max-width: 13ch;
  color: #fff;
  font-family: var(--v33-display);
  font-size: clamp(19px, 2vw, 25px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.content-card__body {
  min-height: 154px;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 17px 16px 16px;
}

.content-card__body > small {
  margin-bottom: 8px;
  color: var(--v33-wine);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.content-card__body > strong {
  color: var(--v33-ink);
  font-family: var(--v33-display);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.content-card__action {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  padding-top: 18px;
  color: var(--v33-wine);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.content-card__action svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 260ms ease;
}

a.content-card:hover .content-card__action svg,
a.content-card:focus-visible .content-card__action svg {
  transform: translateX(3px);
}

.content-card__action--pending {
  color: rgba(23, 20, 15, 0.45);
}

.content-card--pending {
  box-shadow: 0 12px 28px rgba(57, 45, 43, 0.07);
}

.content-end .footer {
  margin-top: clamp(42px, 5vw, 58px);
  padding-block: 20px 24px;
}

@media (max-width: 720px) {
  .about {
    margin-bottom: -18px;
    border-bottom-right-radius: 50% 18px;
    border-bottom-left-radius: 50% 18px;
  }

  .content-end {
    padding-top: calc(52px + 18px);
  }

  .content-end .contents {
    grid-auto-columns: min(79vw, 292px);
  }

  .content-card__cover {
    padding: 18px;
  }

  .content-card__cover-copy strong {
    font-size: 24px;
  }

  .content-card__body {
    min-height: 148px;
  }

  .content-end .footer {
    margin-top: 34px;
    padding-block: 20px 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .content-card,
  .content-card__action svg {
    transition: none;
  }
}

/* ==========================================================================
   V74 | compatibilidade da vitrine com a marcação atual
   A reformulação visual fica isolada no CSS e não toca no bloco de analytics.
   ========================================================================== */

.content-end .social-post {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: var(--v33-ink);
  background: rgba(250, 247, 242, 0.9);
  border: 1px solid rgba(40, 31, 28, 0.12);
  border-radius: 16px;
  box-shadow: 0 15px 34px rgba(57, 45, 43, 0.1);
}

.content-end a.social-post:hover,
.content-end a.social-post:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(107, 31, 50, 0.34);
  box-shadow: 0 22px 44px rgba(57, 45, 43, 0.16);
}

.content-end .social-post--pending {
  opacity: 1;
  box-shadow: 0 12px 28px rgba(57, 45, 43, 0.07);
}

.content-end .social-post__media {
  aspect-ratio: 4 / 5;
  justify-content: flex-end;
  padding: 18px;
  color: #fff;
}

.content-end .social-post__media--ai {
  background-image:
    radial-gradient(circle at 86% 12%, rgba(249, 224, 215, 0.2), transparent 44%),
    linear-gradient(145deg, #4d1828 0%, #7d2942 58%, #a14b60 100%);
}

.content-end .social-post__media--process {
  background-image:
    radial-gradient(circle at 15% 84%, rgba(216, 189, 178, 0.19), transparent 46%),
    linear-gradient(145deg, #171414 0%, #2d2726 62%, #563d3a 100%);
}

.content-end .social-post__media::before {
  z-index: 3;
  width: 34px;
  height: 34px;
  top: 17px;
  left: 17px;
  right: auto;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.78);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.27);
  border-radius: 50%;
  box-shadow: none;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.content-end .contents > .social-post:nth-child(1) .social-post__media::before {
  content: "01";
}

.content-end .contents > .social-post:nth-child(2) .social-post__media::before {
  content: "02";
}

.content-end .contents > .social-post:nth-child(3) .social-post__media::before {
  content: "03";
}

.content-end .contents > .social-post:nth-child(4) .social-post__media::before {
  content: "04";
}

.content-end .social-post__media::after {
  z-index: 2;
  inset: auto 18px 18px;
  opacity: 1;
  color: #fff;
  background: none;
  -webkit-mask-image: none;
  mask-image: none;
  font-family: var(--v33-display);
  font-size: clamp(19px, 2vw, 25px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.035em;
  white-space: pre-line;
  text-wrap: balance;
}

.content-end .social-post__media--traffic::after {
  content: "CAPTAÇÃO\A Agenda cheia não deveria depender de indicação.";
}

.content-end .social-post__media--crm::after {
  content: "CONTROLE\A Sem CRM, oportunidades somem sem ninguém perceber.";
}

.content-end .social-post__media--traffic::first-line,
.content-end .social-post__media--crm::first-line {
  font-size: 9px;
  letter-spacing: 0.14em;
}

.content-end .social-post__media--ai::after,
.content-end .social-post__media--process::after {
  content: none;
}

.content-end .social-post__media > small,
.content-end .social-post__media > strong {
  z-index: 2;
  color: #fff;
  background: transparent;
}

.content-end .social-post__media > small {
  margin-bottom: 8px;
  font-size: 8px;
  letter-spacing: 0.16em;
}

.content-end .social-post__media > strong {
  max-width: 13ch;
  font-size: clamp(19px, 2vw, 25px);
}

.content-end .social-post__status,
.content-end .social-post__type,
.content-end .social-post__visual {
  display: none;
}

.content-end .social-post__body {
  min-height: 154px;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 17px 16px 16px;
  color: var(--v33-ink);
  background: rgba(250, 247, 242, 0.96);
}

.content-end .social-post__body::before {
  margin-bottom: 8px;
  color: var(--v33-wine);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.content-end .social-post__body::after {
  color: var(--v33-ink);
  font-family: var(--v33-display);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.content-end .contents > .social-post:nth-child(1) .social-post__body::before {
  content: "CAPTAÇÃO PREVISÍVEL";
}

.content-end .contents > .social-post:nth-child(1) .social-post__body::after {
  content: "Como parar de depender de indicação";
}

.content-end .contents > .social-post:nth-child(2) .social-post__body::before {
  content: "CONTROLE E GESTÃO";
}

.content-end .contents > .social-post:nth-child(2) .social-post__body::after {
  content: "O que acontece depois que o cliente chama?";
}

.content-end .contents > .social-post:nth-child(3) .social-post__body::before {
  content: "ATENDIMENTO QUE CONVERTE";
}

.content-end .contents > .social-post:nth-child(3) .social-post__body::after {
  content: "O interesse esfria enquanto a resposta demora";
}

.content-end .contents > .social-post:nth-child(4) .social-post__body::before {
  content: "PROCESSO AUTOMATIZADO";
}

.content-end .contents > .social-post:nth-child(4) .social-post__body::after {
  content: "Quando a rotina depende da memória, ela falha";
}

.content-end .social-post__actions {
  width: 100%;
  display: flex;
  margin-top: auto;
  padding-top: 18px;
}

.content-end .social-post__actions > * {
  display: none;
}

.content-end .social-post__actions::after {
  content: "VER CONTEÚDO  →";
  color: var(--v33-wine);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.content-end .social-post--pending .social-post__actions::after {
  content: "EM BREVE";
  color: rgba(23, 20, 15, 0.45);
}

@media (max-width: 720px) {
  .content-end .social-post__media {
    padding: 18px;
  }

  .content-end .social-post__media::after,
  .content-end .social-post__media > strong {
    font-size: 24px;
  }

  .content-end .social-post__body {
    min-height: 148px;
  }
}

/* ==========================================================================
   V75 | capas reais, títulos principais e ação direta para o Instagram
   ========================================================================== */

.content-end .social-post__media {
  aspect-ratio: 3 / 4;
  padding: 0;
  background-color: #2b2222;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

/* As duas capas já salvas em content-covers.css voltam a assumir o card.
   A proporção 3:4 evita o corte que acontecia no layout anterior. */
.content-end .social-post__media--traffic {
  background-position: center center;
}

.content-end .social-post__media--crm {
  background-position: center center;
}

/* Capa do novo conteúdo de Atendimento, obtida pelo endereço público do post.
   O gradiente permanece como fallback caso o Instagram demore a responder. */
.content-end .social-post__media--ai {
  background-color: #6b1f32;
  background-image:
    url("https://www.instagram.com/p/DbajSU0owUq/media/?size=l"),
    linear-gradient(145deg, #4d1828 0%, #7d2942 58%, #a14b60 100%);
  background-position: center center;
  background-size: cover;
}

/* Sem números ou textos sobrepostos às capas reais. */
.content-end .social-post__media::before {
  content: none !important;
  display: none !important;
}

.content-end .social-post__media--traffic::after,
.content-end .social-post__media--crm::after,
.content-end .social-post__media--ai::after {
  content: none;
  display: none;
}

.content-end .social-post__media--ai > small,
.content-end .social-post__media--ai > strong,
.content-end .social-post__media--ai > .social-post__visual,
.content-end .social-post__status,
.content-end .social-post__type {
  display: none;
}

/* A parte textual fica reduzida ao título principal e à única ação. */
.content-end .social-post__body {
  min-height: 142px;
  padding: 18px 17px 16px;
}

.content-end .social-post__body::before {
  content: none !important;
  display: none;
}

.content-end .social-post__body::after {
  order: 1;
  max-width: 18ch;
  color: var(--v33-ink);
  font-family: var(--v33-display);
  font-size: clamp(19px, 1.65vw, 23px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.032em;
  text-wrap: balance;
}

.content-end .contents > .social-post:nth-child(1) .social-post__body::after {
  content: "Como parar de depender de indicação";
}

.content-end .contents > .social-post:nth-child(2) .social-post__body::after {
  content: "O que acontece depois que o cliente chama?";
}

.content-end .contents > .social-post:nth-child(3) .social-post__body::after {
  content: "Responder rápido também faz parte da venda";
}

.content-end .contents > .social-post:nth-child(4) .social-post__body::after {
  content: "O que ainda depende de alguém lembrar?";
}

.content-end .social-post__actions {
  order: 2;
  align-items: center;
  min-height: 28px;
  margin-top: auto;
  padding-top: 18px;
}

.content-end .social-post__actions::before {
  content: "VER CONTEÚDO  →";
  color: var(--v33-wine);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.content-end .social-post__actions::after {
  content: "";
  width: 23px;
  height: 23px;
  flex: 0 0 23px;
  margin-left: auto;
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b1f32' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2.5' y='2.5' width='19' height='19' rx='5'/%3E%3Ccircle cx='12' cy='12' r='4.2'/%3E%3Ccircle cx='17.4' cy='6.6' r='1' fill='%236b1f32' stroke='none'/%3E%3C/svg%3E");
}

.content-end .social-post--pending .social-post__actions::before {
  content: "EM BREVE";
  color: rgba(23, 20, 15, 0.45);
}

.content-end .social-post--pending .social-post__actions::after {
  display: none;
}

.content-end .social-post--linked {
  position: relative;
  cursor: pointer;
}

.content-end .social-post__overlay-link {
  position: absolute;
  inset: 0;
  z-index: 12;
  border-radius: inherit;
}

.content-end .social-post__overlay-link:focus-visible {
  outline: 3px solid rgba(107, 31, 50, 0.45);
  outline-offset: -3px;
}

@media (max-width: 720px) {
  .content-end .social-post__body {
    min-height: 140px;
    padding: 18px 17px 16px;
  }

  .content-end .social-post__body::after {
    font-size: 22px;
  }
}

/* ==========================================================================
   V76 | título mobile centralizado + pilares nos cards
   ========================================================================== */

.content-end .contents > .social-post:nth-child(1) .social-post__body::after {
  content: "Captação previsível";
}

.content-end .contents > .social-post:nth-child(2) .social-post__body::after {
  content: "Controle e gestão";
}

.content-end .contents > .social-post:nth-child(3) .social-post__body::after {
  content: "Atendimento que converte";
}

.content-end .contents > .social-post:nth-child(4) .social-post__body::after {
  content: "Processo automatizado";
}

@media (max-width: 720px) {
  .content-end > .section-label {
    text-align: center;
  }
}



/* ==========================================================================
   V77 | Raio-X claro e integrado à identidade
   ========================================================================== */

#quiz-dialog {
  width: min(580px, calc(100vw - 32px));
  max-height: min(90dvh, 820px);
  border: 1px solid rgba(107, 31, 50, 0.18);
  border-radius: 16px;
  background:
    radial-gradient(circle at 8% 4%, rgba(255, 255, 255, 0.98), transparent 42%),
    radial-gradient(circle at 96% 88%, rgba(203, 185, 174, 0.24), transparent 48%),
    var(--v33-paper);
  color: var(--v33-ink);
  box-shadow:
    0 34px 90px rgba(52, 42, 38, 0.26),
    0 0 0 1px rgba(255, 255, 255, 0.58);
}

#quiz-dialog::before {
  height: 100%;
  background:
    radial-gradient(ellipse at 18% 12%, rgba(107, 31, 50, 0.045), transparent 34%),
    radial-gradient(ellipse at 82% 84%, rgba(130, 130, 130, 0.075), transparent 42%);
  mask-image: none;
  -webkit-mask-image: none;
}

#quiz-dialog::after {
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--v33-wine) 0 20%,
    rgba(107, 31, 50, 0.2) 20% 100%
  );
}

#quiz-dialog::backdrop {
  background: rgba(41, 35, 33, 0.48);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
}

#quiz-dialog .dialog__inner {
  padding: 36px 30px 32px;
}

#quiz-dialog .dialog__close {
  color: var(--v33-wine);
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(107, 31, 50, 0.2);
}

#quiz-dialog .dialog__close:hover,
#quiz-dialog .dialog__close:focus-visible {
  color: #fff;
  background: var(--v33-wine);
  border-color: var(--v33-wine);
}

#quiz-dialog .quiz__progress {
  height: 5px;
  margin: 2px 54px 30px 0;
  background: rgba(107, 31, 50, 0.12);
}

#quiz-dialog .quiz__progress span {
  background: linear-gradient(90deg, var(--v33-wine-dark), var(--v33-wine));
}

#quiz-dialog .qz__step {
  color: var(--v33-wine);
}

#quiz-dialog .qz__question,
#quiz-dialog .qz__result-title,
#quiz-dialog .qz__form-title,
#quiz-dialog .qz__success h3 {
  color: var(--v33-ink);
}

#quiz-dialog .qz__question {
  max-width: 22ch;
  font-family: var(--v33-display);
  font-size: clamp(24px, 4.2vw, 30px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

#quiz-dialog .qz__options {
  gap: 11px;
}

#quiz-dialog .qz__opt {
  min-height: 58px;
  padding: 15px 17px;
  border-color: rgba(107, 31, 50, 0.18);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--v33-ink);
  box-shadow: 0 8px 22px rgba(69, 52, 48, 0.045);
}

#quiz-dialog .qz__opt::before {
  border-color: rgba(107, 31, 50, 0.42);
}

#quiz-dialog .qz__opt:hover,
#quiz-dialog .qz__opt:focus-visible {
  border-color: rgba(107, 31, 50, 0.52);
  background: #fff;
  box-shadow: 0 10px 26px rgba(107, 31, 50, 0.09);
  transform: translateY(-1px);
}

#quiz-dialog .qz__opt.is-picked {
  color: #fff;
  border-color: var(--v33-wine);
  background: var(--v33-wine);
  box-shadow: 0 12px 28px rgba(107, 31, 50, 0.2);
}

#quiz-dialog .qz__opt.is-picked::before {
  border-color: rgba(255, 255, 255, 0.9);
  background: #fff;
  box-shadow: inset 0 0 0 4px var(--v33-wine);
}

#quiz-dialog .qz__back {
  color: var(--v33-muted);
}

#quiz-dialog .qz__back:hover,
#quiz-dialog .qz__back:focus-visible {
  color: var(--v33-wine);
}

#quiz-dialog .qz__badge {
  color: var(--v33-wine);
  border-color: rgba(107, 31, 50, 0.22);
  background: rgba(107, 31, 50, 0.06);
}

#quiz-dialog .qz__result-title {
  font-family: var(--v33-display);
  font-size: clamp(27px, 4.5vw, 34px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

#quiz-dialog .qz__result-title em {
  color: var(--v33-wine);
}

#quiz-dialog .qz__result-text,
#quiz-dialog .qz__form-support,
#quiz-dialog .qz__privacy,
#quiz-dialog .qz__success p {
  color: var(--v33-muted);
}

#quiz-dialog .qz__next-step {
  color: var(--v33-ink);
  border-color: rgba(107, 31, 50, 0.18);
  border-left: 4px solid var(--v33-wine);
  border-radius: 10px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.68), transparent 42%),
    rgba(107, 31, 50, 0.065);
}

#quiz-dialog .qz__next-step strong {
  color: var(--v33-wine);
}

#quiz-dialog .qz__form-intro {
  border-top-color: rgba(107, 31, 50, 0.16);
}

#quiz-dialog .qz__field label {
  color: var(--v33-ink-soft);
}

#quiz-dialog .qz__field label b {
  color: var(--v33-wine);
}

#quiz-dialog .qz__field input {
  min-height: 52px;
  color: var(--v33-ink);
  border-color: rgba(107, 31, 50, 0.2);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.78);
}

#quiz-dialog .qz__field input::placeholder {
  color: rgba(73, 68, 63, 0.48);
}

#quiz-dialog .qz__field input:focus {
  border-color: var(--v33-wine);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(107, 31, 50, 0.11);
}

#quiz-dialog .qz__field input.is-invalid {
  border-color: #a94343;
}

#quiz-dialog .qz__error {
  color: #9c3434;
}

#quiz-dialog .btn--whats {
  min-height: 50px;
  color: #fff;
  background: var(--v33-wine);
  border-color: var(--v33-wine);
  box-shadow: 0 12px 26px rgba(107, 31, 50, 0.18);
}

#quiz-dialog .btn--whats:hover,
#quiz-dialog .btn--whats:focus-visible {
  color: #fff;
  background: var(--v33-wine-dark);
  border-color: var(--v33-wine-dark);
}

#quiz-dialog .qz__success-icon {
  color: var(--v33-wine);
  border-color: rgba(107, 31, 50, 0.24);
  background: rgba(107, 31, 50, 0.07);
}

@media (max-width: 720px) {
  #quiz-dialog {
    width: calc(100vw - 12px);
    max-height: calc(100dvh - 12px);
    margin: auto auto 0;
    border-radius: 18px 18px 0 0;
  }

  #quiz-dialog .dialog__inner {
    padding: 28px 18px calc(24px + env(safe-area-inset-bottom));
  }

  #quiz-dialog .quiz__progress {
    margin-right: 52px;
    margin-bottom: 26px;
  }

  #quiz-dialog .qz__question {
    max-width: none;
    font-size: 25px;
  }

  #quiz-dialog .qz__opt {
    min-height: 56px;
    padding: 14px 15px;
    font-size: 14px;
  }
}


/* ==========================================================================
   V78 | conteúdos temporariamente ocultos
   Mantém os cards no código para reativação futura e preserva o rodapé.
   ========================================================================== */

.content-end > #conteudos,
.content-end > .contents,
.content-end > .contents__mobile-hint {
  display: none !important;
}

.content-end {
  padding-top: 18px;
}

.content-end .footer {
  margin-top: 0;
}


/* ==========================================================================
   V79 | centralização do Raio-X no mobile
   O modal volta a se comportar como diálogo centralizado; a rolagem continua
   restrita ao conteúdo interno em telas com pouca altura.
   ========================================================================== */

@media (max-width: 720px) {
  #quiz-dialog {
    width: calc(100vw - 24px);
    max-height: calc(100dvh - 24px);
    margin: auto;
    border-radius: 18px;
  }

  #quiz-dialog .dialog__inner {
    overscroll-behavior: contain;
  }
}
