:root {
  --ivory: #f8f3ed;
  --porcelain: #fffdfb;
  --sand: #eee2d7;
  --wine: #51262d;
  --wine-deep: #3e1d23;
  --copper: #b7785f;
  --copper-soft: #d9ad98;
  --ink: #30272b;
  --taupe: #766a67;
  --line: rgba(81, 38, 45, 0.16);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Segoe UI", Arial, sans-serif;
  --shadow: 0 22px 60px rgba(62, 29, 35, 0.14);
  --header-height: 96px;
}

/* Locais de atendimento: grade estática até dois itens e carrossel a partir do terceiro. */
.footer-clinic-carousel { margin-top: 18px; }
.footer-clinic-carousel.is-static .footer-clinic-track { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; align-items: stretch; }
.footer-clinic-carousel.is-static .footer-clinic { display: flex; flex-direction: column; height: 100%; }
.footer-clinic-carousel.is-static .footer-schedule { margin-top: auto; align-self: flex-start; }
.footer-clinic-carousel.is-carousel { overflow: hidden; }
.footer-clinic-carousel.is-carousel .footer-clinic-track { display: flex; gap: 22px; transition: transform .45s ease; will-change: transform; }
.footer-clinic-carousel.is-carousel .footer-clinic { flex: 0 0 calc((100% - 22px) / 2); min-width: 0; }
.footer-clinic-controls { display: flex; align-items: center; justify-content: flex-end; gap: 12px; margin-top: 18px; color: var(--color-sand, #e8c1b1); font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-clinic-controls button { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; background: transparent; color: inherit; cursor: pointer; }
.footer-clinic-controls button:disabled { opacity: .35; cursor: default; }
.footer-clinic-controls button:focus-visible { outline: 2px solid currentColor; outline-offset: 3px; }
.footer-schedule { cursor: pointer; }
@media (max-width: 720px) {
  .footer-clinic-carousel.is-static .footer-clinic-track { grid-template-columns: minmax(0, 1fr); }
  .footer-clinic-carousel.is-carousel .footer-clinic { flex-basis: 100%; }
  .footer-clinic-controls { justify-content: flex-start; }
}

/* Materiais prioritarios: capas editoriais verticais e hierarquia acima dos artigos. */
.priority-materials {
  position: relative;
  z-index: 2;
  padding-block: clamp(68px, 8vw, 112px);
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 5%, rgba(196, 114, 116, .24), transparent 30%),
    linear-gradient(135deg, #431d27 0%, #662c3c 100%);
  color: #fffaf5;
}

.priority-materials::after {
  position: absolute;
  right: -170px;
  bottom: -290px;
  width: 540px;
  height: 540px;
  border: 1px solid rgba(255, 248, 241, .12);
  border-radius: 50%;
  content: '';
  pointer-events: none;
}

.priority-materials-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 480px);
  align-items: end;
  gap: clamp(30px, 6vw, 90px);
  margin-bottom: clamp(34px, 5vw, 58px);
}

.priority-materials-heading .eyebrow {
  color: #e7a18d;
}

.priority-materials-heading h2 {
  max-width: 760px;
  margin: 10px 0 0;
  color: #fffaf5;
  font-family: var(--serif);
  font-size: clamp(2.45rem, 4.2vw, 4.45rem);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: .98;
}

.priority-materials-heading > p {
  margin: 0;
  color: rgba(255, 248, 241, .72);
  font-size: .92rem;
  line-height: 1.75;
}

.priority-materials-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 24px;
}

.priority-materials-grid--multiple {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.priority-materials-grid--single {
  max-width: 980px;
}

.priority-material-card {
  min-width: 0;
}

.priority-material-card > a {
  display: grid;
  grid-template-columns: minmax(175px, 34%) minmax(0, 1fr);
  min-height: 390px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 4px 26px 4px 26px;
  color: var(--ink);
  background: #fffaf6;
  box-shadow: 0 30px 70px rgba(24, 8, 13, .24);
  text-decoration: none;
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.priority-material-card > a:hover,
.priority-material-card > a:focus-visible {
  box-shadow: 0 38px 82px rgba(24, 8, 13, .34);
  transform: translateY(-6px);
}

.priority-material-card > a:focus-visible {
  outline: 3px solid #e7a18d;
  outline-offset: 4px;
}

.priority-material-cover {
  display: grid;
  min-width: 0;
  margin: 0;
  padding: clamp(20px, 2.3vw, 30px);
  place-items: center;
  background: linear-gradient(150deg, #f1dfd9, #e6c8bf);
}

.priority-material-cover img {
  display: block;
  width: 100%;
  max-width: 235px;
  height: auto;
  max-height: 340px;
  aspect-ratio: 17 / 22;
  object-fit: contain;
  background: #fff;
  box-shadow: 0 18px 35px rgba(58, 25, 31, .22);
  transition: transform 320ms ease;
}

.priority-material-card > a:hover .priority-material-cover img,
.priority-material-card > a:focus-visible .priority-material-cover img {
  transform: scale(1.025);
}

.priority-material-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: clamp(28px, 3.5vw, 48px);
}

.priority-material-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-bottom: 18px;
  color: var(--copper);
  font-size: .66rem;
  font-weight: 750;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.priority-material-meta span + span::before {
  margin-right: 16px;
  content: '•';
}

.priority-material-copy h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3.25rem);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: 1;
}

.priority-material-copy > p {
  display: -webkit-box;
  margin: 18px 0 26px;
  overflow: hidden;
  color: var(--taupe);
  font-size: .88rem;
  line-height: 1.72;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

.priority-material-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: auto;
  padding-top: 19px;
  border-top: 1px solid rgba(183, 120, 95, .24);
  color: var(--wine);
  font-size: .69rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.priority-material-action i {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(91, 35, 47, .25);
  border-radius: 50%;
  font-size: 1rem;
  font-style: normal;
}

.home-articles-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(183, 120, 95, .22);
}

.home-articles-heading h2 {
  margin: 7px 0 0;
  color: var(--ink);
  font-size: clamp(2.2rem, 3.5vw, 3.5rem);
}

.home-articles-heading > a {
  flex: 0 0 auto;
  padding-bottom: 5px;
  color: var(--wine);
  font-size: .7rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}

/* Single de materiais: capa integral e download como acao primaria. */
.material-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(270px, 390px);
  gap: clamp(48px, 7vw, 108px);
}

.material-hero h1 {
  font-size: clamp(2.85rem, 4.45vw, 4.85rem);
}

.material-hero-cover {
  width: 100%;
  max-width: 390px;
  margin: 0;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.material-hero-cover img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 610px;
  object-fit: contain;
  background: #fff;
  box-shadow: 0 30px 65px rgba(75, 39, 45, .2);
}

.material-primary-download {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
  padding: 14px;
  border: 1px solid rgba(91, 35, 47, .14);
  border-radius: 6px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 14px 32px rgba(75, 39, 45, .08);
}

.material-primary-download-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--wine);
  font-size: 1.35rem;
}

.material-primary-download strong,
.material-primary-download small {
  display: block;
}

.material-primary-download strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
}

.material-primary-download small {
  margin-top: 3px;
  color: var(--taupe);
  font-size: .76rem;
}

.material-primary-download .material-download {
  margin-top: 0;
  white-space: nowrap;
}

.material-primary-download.is-pending {
  grid-template-columns: 48px minmax(0, 1fr);
  border-style: dashed;
  box-shadow: none;
}

.material-primary-download.is-pending .material-primary-download-icon {
  color: var(--wine);
  background: #f0ddd7;
}

@media (max-width: 980px) {
  .priority-materials-grid--multiple {
    grid-template-columns: minmax(0, 1fr);
  }

  .priority-material-card > a {
    grid-template-columns: minmax(170px, 30%) minmax(0, 1fr);
  }

  .priority-materials-heading {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  .priority-materials-heading > p {
    max-width: 620px;
  }

  .material-primary-download {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .material-primary-download .material-download {
    grid-column: 1 / -1;
    justify-content: center;
  }
}

@media (max-width: 720px) {
  .priority-materials {
    padding-block: 58px;
  }

  .priority-material-card > a {
    grid-template-columns: 118px minmax(0, 1fr);
    min-height: 300px;
    border-radius: 3px 20px 3px 20px;
  }

  .priority-material-cover {
    padding: 14px;
  }

  .priority-material-cover img {
    max-height: 230px;
  }

  .priority-material-copy {
    padding: 24px 20px;
  }

  .priority-material-copy h3 {
    font-size: clamp(1.65rem, 7vw, 2.25rem);
  }

  .priority-material-copy > p {
    margin: 13px 0 18px;
    font-size: .78rem;
    -webkit-line-clamp: 4;
  }

  .priority-material-meta {
    margin-bottom: 12px;
  }

  .priority-material-meta span + span {
    display: none;
  }

  .priority-material-action {
    font-size: .61rem;
  }

  .priority-material-action i {
    display: none;
  }

  .home-articles-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .material-hero-cover {
    max-width: 310px;
    justify-self: center;
  }

  .material-hero-cover img {
    height: auto;
    max-height: none;
  }
}

@media (max-width: 430px) {
  .priority-material-card > a {
    grid-template-columns: 98px minmax(0, 1fr);
  }

  .priority-material-cover {
    padding: 10px;
  }

  .priority-material-copy {
    padding: 20px 16px;
  }

  .priority-material-copy > p {
    -webkit-line-clamp: 3;
  }

  .material-primary-download {
    padding: 13px;
  }
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 36px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--porcelain);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--copper);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: white;
  background: var(--wine);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.shell {
  width: min(1160px, calc(100% - 48px));
  margin-inline: auto;
}

.shell-narrow {
  width: min(520px, calc(100% - 48px));
  margin-left: max(24px, calc((100vw - 1160px) / 2));
}

.section {
  padding-block: clamp(76px, 9vw, 132px);
}

.study-notice {
  padding: 7px 20px;
  color: #fff8f3;
  background: var(--wine-deep);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(81, 38, 45, 0.08);
  background: rgba(255, 253, 251, 0.94);
  backdrop-filter: blur(16px);
  transition: box-shadow 200ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(62, 29, 35, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 210px;
  color: var(--wine);
  text-decoration: none;
}

.brand-symbol {
  display: block;
  flex: 0 0 210px;
  width: 210px;
  height: 88px;
  overflow: hidden;
}

.brand-symbol img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.brand--stacked .brand-symbol {
  flex-basis: 190px;
  width: 190px;
  height: 108px;
}

.brand--stacked .brand-symbol img {
  object-fit: cover;
  object-position: center 37%;
}

body.draelisa-logo-stacked {
  --header-height: 120px;
}

.brand-copy {
  display: none;
  line-height: 1.05;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 500;
}

.brand-copy small {
  margin-top: 7px;
  color: var(--copper);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
}

.site-nav > a {
  position: relative;
  color: #4c4142;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
}

.site-nav > a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--copper);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav > a:hover::after,
.site-nav > a[aria-current="true"]::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 27px;
  border: 1px solid var(--wine);
  border-radius: 2px;
  color: #fffaf6;
  background: var(--wine);
  box-shadow: none;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.07em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  background: var(--wine-deep);
  box-shadow: 0 10px 28px rgba(62, 29, 35, 0.2);
  transform: translateY(-2px);
}

.button-small {
  min-height: 44px;
  padding: 11px 22px;
}

.button-outline-light {
  border-color: rgba(255, 244, 235, 0.48);
  color: #fff8f1;
  background: transparent;
}

.button-outline-light:hover {
  border-color: #fff8f1;
  background: rgba(255, 248, 241, 0.08);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding-block: 7px;
  border-bottom: 1px solid var(--copper-soft);
  color: var(--wine);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.05em;
  line-height: 1.35;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span {
  color: var(--copper);
  font-size: 1.1rem;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  color: var(--copper);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 1px;
  background: currentColor;
  content: "";
}

.hero {
  position: relative;
  min-height: clamp(560px, 48vw, 720px);
  overflow: hidden;
  isolation: isolate;
  background: var(--ivory);
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding-block: clamp(76px, 7vw, 112px);
}

.hero h1,
.about h2,
.care-areas h2,
.content-hub h2,
.schedule-dialog h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.04;
}

.hero h1 {
  max-width: 580px;
  font-size: clamp(3.8rem, 5.3vw, 5.9rem);
}

.hero-credentials {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin: 17px 0 0;
  color: var(--wine);
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero-credentials i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--copper);
}

.title-rule {
  display: block;
  width: 62px;
  height: 2px;
  margin-block: 34px 30px;
  background: var(--copper-soft);
}

.hero-credentials + .title-rule {
  margin-top: 22px;
}

.hero-lead {
  max-width: 500px;
  margin: 0;
  color: #665b5b;
  font-size: clamp(1.06rem, 1.5vw, 1.24rem);
  font-weight: 520;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px 34px;
  margin-top: 34px;
}

.hero-media {
  position: absolute;
  z-index: 0;
  inset: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #d9c6b4;
  pointer-events: none;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 253, 250, 0.98) 0%, rgba(255, 251, 247, 0.92) 24%, rgba(255, 250, 246, 0.64) 43%, rgba(255, 250, 246, 0.18) 64%, rgba(255, 250, 246, 0.02) 82%);
  content: "";
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 28%;
}

.validation-note {
  margin-top: 18px;
  color: #8c807c;
  font-size: 0.7rem;
  text-align: right;
}

.about {
  display: grid;
  grid-template-columns: minmax(420px, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: clamp(52px, 8vw, 112px);
}

.about-visual {
  position: relative;
  margin: 0;
  height: clamp(340px, 30vw, 440px);
  min-height: 0;
  overflow: hidden;
  border-radius: 48px 0 48px 0;
  box-shadow: var(--shadow);
  background: #d8c0b0;
}

.about-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(51, 30, 32, 0.36));
  content: "";
  pointer-events: none;
}

.about-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center 25%;
}

.about-visual figcaption {
  position: absolute;
  z-index: 1;
  right: 20px;
  bottom: 20px;
  margin: 0;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 2px 18px 2px 18px;
  background: rgba(255, 253, 252, 0.84);
  box-shadow: 0 12px 26px rgba(45, 25, 28, 0.13);
  color: var(--wine);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.about-visual figcaption strong,
.about-visual figcaption span {
  display: block;
}

.about-visual figcaption strong {
  font-size: 0.76rem;
}

.about-visual figcaption span {
  margin-top: 2px;
  color: var(--taupe);
  font-size: 0.6rem;
}

.about-copy h2 {
  font-size: clamp(2.6rem, 4vw, 4.2rem);
}

.about-copy > p:not(.eyebrow) {
  max-width: 590px;
  margin: 24px 0 0;
  color: var(--taupe);
}

.about-copy .text-link {
  margin-top: 30px;
}

.care-areas {
  padding-block: clamp(74px, 8vw, 112px);
  color: #fff8f1;
  background:
    radial-gradient(circle at 18% 8%, rgba(183, 120, 95, 0.15), transparent 26%),
    linear-gradient(120deg, var(--wine-deep), var(--wine));
}

.section-heading-centered {
  max-width: 730px;
  margin-inline: auto;
  text-align: center;
}

.section-heading-centered .eyebrow {
  justify-content: center;
}

.eyebrow-light {
  color: var(--copper-soft);
}

.care-areas h2 {
  font-size: clamp(2.5rem, 4.4vw, 4.4rem);
}

.section-heading-centered > p:last-child {
  margin: 20px auto 0;
  color: rgba(255, 248, 241, 0.68);
  font-size: 0.8rem;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-top: 64px;
  border-block: 1px solid rgba(255, 248, 241, 0.14);
}

.areas-grid article {
  min-height: 154px;
  padding: 30px 18px;
  border-right: 1px solid rgba(255, 248, 241, 0.14);
  text-align: center;
}

.areas-grid article:last-child {
  border-right: 0;
}

.areas-grid article > span {
  display: grid;
  width: 42px;
  height: 42px;
  margin: 0 auto 19px;
  place-items: center;
  border: 1px solid rgba(217, 173, 152, 0.68);
  border-radius: 50%;
  color: var(--copper-soft);
  font-family: var(--serif);
  font-size: 1.05rem;
}

.areas-grid h3 {
  margin: 0;
  font-size: 0.74rem;
  letter-spacing: 0.045em;
  line-height: 1.45;
  text-transform: uppercase;
}

.centered-action {
  display: flex;
  justify-content: center;
  margin-top: 38px;
}

.content-hub {
  position: relative;
  overflow: hidden;
  padding-bottom: clamp(82px, 8vw, 118px);
  background: linear-gradient(112deg, #fffdfa 0%, #f9f3ed 52%, #fffdfb 100%);
}

.content-hub-decoration {
  position: absolute;
  border: 1px solid rgba(183, 120, 95, 0.55);
  border-radius: 50%;
  pointer-events: none;
}

.content-hub-decoration-top {
  top: -210px;
  right: 2.5vw;
  width: 390px;
  height: 390px;
}

.content-hub-decoration-bottom {
  bottom: -210px;
  left: -190px;
  width: 410px;
  height: 410px;
}

.content-hub-intro {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 430px;
  padding-block: clamp(64px, 6vw, 92px);
}

.content-hub-hero {
  position: relative;
  width: 100%;
  min-height: 430px;
  overflow: hidden;
  background: #f5ece3;
}

.content-hub-backdrop {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.content-hub-hero::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 253, 250, 0.99) 0%, rgba(255, 253, 250, 0.93) 28%, rgba(255, 253, 250, 0.52) 47%, rgba(255, 253, 250, 0.1) 68%, rgba(255, 253, 250, 0.02) 100%),
    linear-gradient(0deg, rgba(249, 243, 237, 0.54), rgba(249, 243, 237, 0.04));
  content: "";
  pointer-events: none;
}

.content-hub-hero::after {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 105px;
  background: linear-gradient(to bottom, transparent, #fbf6f0);
  content: "";
  pointer-events: none;
}

.content-hub-copy {
  position: relative;
  z-index: 3;
  max-width: 690px;
}

.content-hub h2 {
  max-width: 680px;
  font-size: clamp(3rem, 5vw, 5.1rem);
}

.content-hub-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--taupe);
  font-size: 1.02rem;
  line-height: 1.75;
}

.newsletter-card {
  position: relative;
  z-index: 4;
  align-self: center;
  justify-self: end;
  width: min(100%, 370px);
  padding: 34px;
  border: 1px solid rgba(183, 120, 95, 0.26);
  border-radius: 18px 18px 5px 18px;
  background: linear-gradient(145deg, rgba(255, 253, 251, 0.98), rgba(247, 237, 229, 0.96));
  box-shadow:
    0 32px 80px rgba(62, 29, 35, 0.17),
    0 5px 18px rgba(62, 29, 35, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
}

.newsletter-card::before {
  position: absolute;
  top: 0;
  right: 34px;
  width: 72px;
  height: 3px;
  border-radius: 0 0 3px 3px;
  background: var(--copper);
  content: "";
}

.newsletter-card-heading {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 17px;
  align-items: center;
}

.newsletter-card-mark {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(183, 120, 95, 0.34);
  border-radius: 50%;
  color: var(--wine);
  background: linear-gradient(145deg, #f7e9df, #fffaf6);
  box-shadow: 0 8px 22px rgba(81, 38, 45, 0.1);
  font-size: 1.25rem;
}

.newsletter-card .eyebrow {
  margin-bottom: 7px;
  font-size: 0.65rem;
}

.newsletter-card .eyebrow::before {
  width: 21px;
}

.newsletter-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.18;
}

.newsletter-card > p {
  margin: 22px 0 0;
  color: var(--taupe);
  font-size: 0.88rem;
  line-height: 1.65;
}

.newsletter-card .button {
  width: 100%;
  margin-top: 24px;
  padding-inline: 16px;
}

.content-browser {
  position: relative;
  z-index: 5;
  margin-top: 48px;
}

.content-tabs {
  display: flex;
  width: min(100%, 690px);
  border-bottom: 1px solid rgba(183, 120, 95, 0.3);
}

.content-tabs button {
  position: relative;
  min-width: 0;
  padding: 15px 24px 17px;
  border: 0;
  color: var(--taupe);
  background: transparent;
  cursor: pointer;
  font-size: 0.73rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease;
}

.content-tabs button:first-child {
  padding-left: 4px;
}

.content-tabs button::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--wine);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.content-tabs button[aria-selected="true"] {
  color: var(--wine);
}

.content-tabs button[aria-selected="true"]::after {
  transform: scaleX(1);
}

.content-panel[hidden] {
  display: none;
}

.content-panel:not(.content-panel-message) {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.content-browser > .content-panel {
  margin-top: 0;
}

.home-articles-carousel {
  position: relative;
}

.home-articles-carousel.is-carousel .content-panel {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.home-articles-carousel.is-carousel .content-panel::-webkit-scrollbar {
  display: none;
}

.home-articles-carousel.is-carousel .content-card {
  flex: 0 0 calc((100% - 54px) / 4);
  min-width: 0;
  scroll-snap-align: start;
}

.home-articles-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 13px;
  margin-top: 24px;
}

.home-articles-carousel-controls button {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(81, 38, 45, 0.32);
  border-radius: 50%;
  color: var(--wine);
  background: rgba(255, 253, 251, 0.72);
  box-shadow: 0 8px 22px rgba(62, 29, 35, 0.07);
  cursor: pointer;
  font-size: 1rem;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.home-articles-carousel-controls button:hover:not(:disabled),
.home-articles-carousel-controls button:focus-visible {
  border-color: var(--wine);
  color: #fffaf5;
  background: var(--wine);
  transform: translateY(-2px);
}

.home-articles-carousel-controls button:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 3px;
}

.home-articles-carousel-controls button:disabled {
  opacity: 0.34;
  cursor: default;
}

.home-articles-carousel-controls .home-articles-carousel-toggle {
  width: 34px;
  height: 34px;
  flex-basis: 34px;
  margin-left: 2px;
  border-color: rgba(81, 38, 45, 0.2);
  box-shadow: none;
  font-family: var(--sans);
  font-size: 0.62rem;
}

.home-articles-carousel-toggle[aria-pressed="true"] {
  color: #fffaf5;
  background: var(--wine);
}

.home-articles-carousel-progress {
  position: relative;
  width: min(108px, 13vw);
  height: 1px;
  overflow: hidden;
  background: rgba(81, 38, 45, 0.2);
}

.home-articles-carousel-progress i {
  position: absolute;
  inset: 0;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-articles-carousel-status {
  min-width: 80px;
  color: var(--taupe);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 1080px) {
  .home-articles-carousel.is-carousel .content-card {
    flex-basis: calc((100% - 18px) / 2);
  }
}

@media (max-width: 720px) {
  .home-articles-carousel.is-carousel .content-panel {
    margin-right: -16px;
    padding-right: 16px;
  }

  .home-articles-carousel.is-carousel .content-card {
    flex-basis: min(82vw, 360px);
  }

  .home-articles-carousel-controls {
    justify-content: flex-start;
  }

  .home-articles-carousel-progress {
    flex: 1;
    width: auto;
  }
}

.content-card {
  position: relative;
  display: flex;
  min-height: 380px;
  overflow: hidden;
  border-radius: 12px 12px 3px 3px;
  color: #fffaf5;
  isolation: isolate;
  background-image: url("assets/conteudos-ginecologia-cards-v2.png");
  background-repeat: no-repeat;
  background-size: 400% 100%;
  box-shadow: 0 18px 42px rgba(62, 29, 35, 0.12);
  text-decoration: none;
  transition: transform 280ms ease, box-shadow 280ms ease;
}

.content-card:hover,
.content-card:focus-visible,
.content-card h3,
.content-card-action {
  text-decoration: none;
}

.content-card::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, rgba(47, 23, 28, 0.04) 12%, rgba(47, 23, 28, 0.18) 40%, rgba(38, 22, 23, 0.92) 100%);
  content: "";
  transition: background 280ms ease;
}

.content-card::after {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: inherit;
  content: "";
  transform: scale(1.001);
  transition: transform 700ms cubic-bezier(0.2, 0.65, 0.25, 1);
}

.content-card-one {
  background-position: 0 center;
}

.content-card-two {
  background-position: 33.333% center;
}

.content-card-three {
  background-position: 66.666% center;
}

.content-card-four {
  background-position: 100% center;
}

.content-card:hover,
.content-card:focus-within,
.content-card:focus-visible {
  z-index: 2;
  box-shadow: 0 26px 62px rgba(62, 29, 35, 0.24);
  transform: translateY(-10px);
}

.content-card:hover::before,
.content-card:focus-within::before,
.content-card:focus-visible::before {
  background: linear-gradient(180deg, rgba(47, 23, 28, 0.02), rgba(47, 23, 28, 0.12) 34%, rgba(38, 22, 23, 0.95) 100%);
}

.content-card:hover::after,
.content-card:focus-within::after,
.content-card:focus-visible::after {
  transform: scale(1.075);
}

.content-card-type {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 250, 245, 0.7);
  border-radius: 999px;
  background: rgba(62, 29, 35, 0.25);
  backdrop-filter: blur(5px);
  font-size: 0.61rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.content-card-copy {
  display: flex;
  align-self: end;
  flex: 1;
  flex-direction: column;
  min-height: 228px;
  padding: 28px 22px 20px;
}

.content-card-status {
  color: var(--copper-soft);
  font-size: 0.59rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.content-card h3 {
  margin: 11px 0 0;
  font-family: var(--serif);
  font-size: clamp(1.38rem, 1.7vw, 1.75rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.content-card p {
  max-height: 0;
  margin: 0;
  overflow: hidden;
  color: rgba(255, 250, 245, 0.74);
  font-size: 0.72rem;
  opacity: 0;
  transform: translateY(8px);
  transition: max-height 250ms ease, margin 250ms ease, opacity 200ms ease, transform 250ms ease;
}

.content-card:hover p,
.content-card:focus-within p,
.content-card:focus-visible p {
  max-height: 60px;
  margin-top: 10px;
  opacity: 1;
  transform: translateY(0);
}

.content-card-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: auto;
  padding: 15px 0 0;
  border: 0;
  border-top: 1px solid rgba(255, 250, 245, 0.24);
  color: #fffaf5;
  background: transparent;
  cursor: pointer;
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.content-card-action b {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(255, 250, 245, 0.72);
  border-radius: 50%;
  font-size: 0.95rem;
  font-weight: 400;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.content-card:hover .content-card-action b,
.content-card:focus-within .content-card-action b {
  color: var(--wine);
  background: #fffaf5;
  transform: translateX(3px);
}

.content-panel-message {
  display: flex;
  align-items: center;
  min-height: 254px;
  gap: 30px;
  margin-top: 34px;
  padding: 52px;
  border: 1px solid rgba(183, 120, 95, 0.26);
  background: rgba(255, 253, 251, 0.65);
}

.content-panel-message > span {
  display: grid;
  flex: 0 0 70px;
  width: 70px;
  height: 70px;
  place-items: center;
  border: 1px solid var(--copper-soft);
  border-radius: 50%;
  color: var(--copper);
  font-family: var(--serif);
  font-size: 2rem;
}

.content-panel-message h3,
.content-hub-cta h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 400;
}

.content-panel-message p,
.content-hub-cta p {
  margin: 8px 0 0;
  color: var(--taupe);
}

.content-hub-cta {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  margin-top: 56px;
  padding: 34px 0 0;
  border-top: 1px solid rgba(183, 120, 95, 0.27);
}

.content-hub-cta-mark {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid var(--copper-soft);
  border-radius: 50%;
  color: var(--copper);
  font-family: var(--serif);
  font-size: 1.5rem;
}

.content-hub-cta .button {
  gap: 20px;
  white-space: nowrap;
}

.location-strip {
  color: #fff8f1;
  background:
    radial-gradient(circle at 82% 4%, rgba(183, 120, 95, 0.2), transparent 28%),
    linear-gradient(112deg, var(--wine-deep), var(--wine));
}

.location-strip-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr auto;
  align-items: center;
  gap: clamp(30px, 5vw, 76px);
  min-height: 220px;
  padding-block: 46px;
}

.location-strip .eyebrow {
  color: var(--copper-soft);
}

.location-strip h2 {
  max-width: 520px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.1vw, 3.2rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.06;
}

.location-strip-inner > p {
  margin: 0;
  color: rgba(255, 248, 241, 0.68);
  font-size: 0.86rem;
}

.location-strip .button {
  white-space: nowrap;
}

.newsletter-dialog {
  width: min(700px, calc(100% - 32px));
  padding: 54px;
  border: 1px solid rgba(183, 120, 95, 0.5);
  border-radius: 4px;
  color: var(--ink);
  background: var(--porcelain);
  box-shadow: var(--shadow);
}

.newsletter-dialog::backdrop {
  background: rgba(47, 23, 28, 0.72);
  backdrop-filter: blur(4px);
}

.newsletter-dialog h2 {
  max-width: 590px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.newsletter-dialog-copy {
  max-width: 590px;
  margin: 22px 0 30px;
  color: var(--taupe);
}

.newsletter-form > label:first-child {
  display: block;
  margin-bottom: 8px;
  color: var(--wine);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.newsletter-field-row {
  display: grid;
  grid-template-columns: 1fr auto;
}

.newsletter-field-row input {
  min-width: 0;
  min-height: 54px;
  padding: 13px 16px;
  border: 1px solid rgba(81, 38, 45, 0.28);
  border-right: 0;
  border-radius: 2px 0 0 2px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.newsletter-field-row input::placeholder {
  color: #998d89;
}

.newsletter-field-row input[aria-invalid="true"] {
  border-color: #9d3445;
  background: #fff8f8;
}

.newsletter-field-row .button {
  min-height: 54px;
  border-radius: 0 2px 2px 0;
}

.consent-field {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-top: 20px;
  color: var(--taupe);
  cursor: pointer;
  font-size: 0.76rem;
  line-height: 1.55;
}

.consent-field input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--wine);
}

.field-error {
  display: block;
  min-height: 20px;
  margin-top: 5px;
  color: #9d3445;
  font-size: 0.72rem;
}

.newsletter-success {
  text-align: center;
}

.newsletter-success > span {
  display: grid;
  width: 76px;
  height: 76px;
  margin: 0 auto 26px;
  place-items: center;
  border: 1px solid var(--copper-soft);
  border-radius: 50%;
  color: var(--wine);
  background: var(--sand);
  font-size: 2rem;
}

.newsletter-success .eyebrow {
  justify-content: center;
}

.newsletter-success p:not(.eyebrow) {
  max-width: 520px;
  margin: 22px auto 28px;
  color: var(--taupe);
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding-block: clamp(68px, 7vw, 104px) 24px;
  color: rgba(255, 248, 241, 0.8);
  background:
    radial-gradient(circle at 82% 8%, rgba(190, 111, 123, 0.18), transparent 30%),
    linear-gradient(135deg, #32171d 0%, #4a2029 58%, #35171e 100%);
}

.site-footer::before {
  position: absolute;
  top: -170px;
  left: -120px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(220, 163, 146, 0.14);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.footer-main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(230px, 0.78fr) minmax(130px, 0.42fr) minmax(520px, 1.7fr);
  align-items: start;
  gap: clamp(42px, 5vw, 78px);
}

.footer-intro {
  max-width: 330px;
}

.footer-kicker,
.footer-clinics-heading > p {
  margin: 0 0 15px;
  color: #d79b8a;
  font-size: 0.67rem !important;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-intro h2,
.footer-clinics-heading h2,
.footer-nav h2,
.footer-clinic h3 {
  margin: 0;
  color: #fff8f1;
  font-family: var(--serif);
  font-weight: 400;
}

.footer-intro h2 {
  font-size: clamp(2rem, 2.5vw, 2.8rem);
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.footer-intro > p:not(.footer-kicker) {
  max-width: 310px;
  margin: 22px 0 0;
  color: rgba(255, 248, 241, 0.67);
  font-size: 0.86rem;
  line-height: 1.7;
}

.footer-instagram {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  color: #fff8f1;
  font-size: 0.76rem;
  font-weight: 650;
  text-decoration: none;
}

.footer-instagram span {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border: 1px solid rgba(215, 155, 138, 0.5);
  border-radius: 50%;
  color: #dca28f;
}

.footer-nav h2 {
  font-size: clamp(1.4rem, 1.55vw, 1.72rem);
  letter-spacing: -0.02em;
}

.footer-nav ul {
  display: grid;
  gap: 15px;
  margin: 27px 0 0;
  padding: 0;
  list-style: none;
}

.footer-nav a {
  display: inline-block;
  color: rgba(255, 248, 241, 0.68);
  font-size: 0.84rem;
  line-height: 1.45;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: #fff8f1;
  transform: translateX(3px);
}

.footer-clinics-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(255, 248, 241, 0.13);
}

.footer-clinics-heading > p {
  margin: 0;
  white-space: normal;
}

.footer-clinics-heading h2 {
  max-width: 650px;
  font-size: clamp(1.8rem, 2.35vw, 2.5rem);
  letter-spacing: -0.025em;
  line-height: 1.06;
}

.footer-clinic-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.footer-clinic {
  position: relative;
  min-width: 0;
  padding: 25px;
  border: 1px solid rgba(255, 248, 241, 0.13);
  border-radius: 3px 24px 3px 24px;
  background: rgba(255, 251, 247, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.footer-clinic h3 {
  font-size: 1.48rem;
}

.footer-clinic dl {
  display: grid;
  gap: 15px;
  margin: 24px 0 0;
}

.footer-clinic dl > div {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 12px;
}

.footer-clinic dt {
  color: #d79b8a;
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-clinic dd {
  min-width: 0;
  margin: 0;
  color: rgba(255, 248, 241, 0.76);
  font-size: 0.74rem;
  line-height: 1.55;
}

.footer-clinic dd a {
  color: inherit;
  text-decoration: none;
}

.footer-schedule {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  padding: 0 0 7px;
  border: 0;
  border-bottom: 1px solid rgba(215, 155, 138, 0.55);
  color: #fff8f1;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(190px, 0.9fr) minmax(280px, 1.5fr) auto;
  align-items: center;
  gap: 34px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 248, 241, 0.12);
}

.footer-bottom p,
.footer-bottom a {
  margin: 0;
  color: rgba(255, 248, 241, 0.46);
  font-size: 0.65rem;
  line-height: 1.5;
  text-decoration: none;
}

.footer-bottom .medical-notice {
  max-width: 620px;
  justify-self: center;
  text-align: center;
}

.footer-bottom-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  white-space: nowrap;
}

.footer-bottom .footer-developer {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 11px;
  border: 1px solid rgba(232, 193, 177, 0.36);
  border-radius: 999px;
  color: rgba(255, 248, 241, 0.74);
  background: rgba(255, 248, 241, 0.06);
  font-size: 0.68rem;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.footer-bottom .footer-developer strong {
  color: var(--copper-soft);
  font-weight: 700;
}

.footer-bottom .footer-developer:hover,
.footer-bottom .footer-developer:focus-visible,
.footer-bottom .footer-back-to-top:hover,
.footer-bottom .footer-back-to-top:focus-visible {
  color: #fffaf5;
}

.footer-bottom .footer-developer:hover,
.footer-bottom .footer-developer:focus-visible {
  border-color: var(--copper-soft);
  background: rgba(232, 193, 177, 0.13);
  transform: translateY(-2px);
}

.footer-bottom .footer-developer:focus-visible,
.footer-bottom .footer-back-to-top:focus-visible {
  outline: 2px solid var(--copper-soft);
  outline-offset: 4px;
}

.footer-bottom .footer-back-to-top {
  color: rgba(255, 248, 241, 0.72);
}

.schedule-dialog {
  width: min(520px, calc(100% - 32px));
  padding: 46px;
  border: 1px solid rgba(183, 120, 95, 0.5);
  border-radius: 3px;
  color: var(--ink);
  background: var(--porcelain);
  box-shadow: var(--shadow);
}

.schedule-dialog::backdrop {
  background: rgba(47, 23, 28, 0.72);
  backdrop-filter: blur(4px);
}

.schedule-dialog h2 {
  font-size: 2.8rem;
}

.schedule-dialog > p:not(.eyebrow) {
  margin: 22px 0 28px;
  color: var(--taupe);
}

.dialog-close {
  position: absolute;
  top: 11px;
  right: 14px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  color: var(--wine);
  background: transparent;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
}

@media (max-width: 1080px) {
  :root {
    --header-height: 88px;
  }

  .brand-symbol {
    flex-basis: 170px;
    width: 170px;
    height: 72px;
  }

  .brand--stacked .brand-symbol {
    flex-basis: 158px;
    width: 158px;
    height: 96px;
  }

  .site-nav {
    gap: 18px;
  }

  .site-nav > a {
    font-size: 0.8rem;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 5.4vw, 4.6rem);
  }

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

  .areas-grid article:nth-child(3) {
    border-right: 0;
  }

  .areas-grid article:nth-child(n + 4) {
    border-top: 1px solid rgba(255, 248, 241, 0.14);
  }

  .content-hub-intro {
    min-height: 410px;
  }

  .content-panel:not(.content-panel-message) {
    grid-template-columns: repeat(2, 1fr);
  }

  .content-card {
    min-height: 420px;
  }

  .content-card h3 {
    font-size: 1.85rem;
  }

  .location-strip-inner {
    grid-template-columns: 1fr 0.85fr;
  }

  .location-strip .button {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .footer-main {
    grid-template-columns: minmax(240px, 0.8fr) minmax(150px, 0.4fr);
  }

  .footer-clinics {
    grid-column: 1 / -1;
  }
}

@media (max-width: 960px) {
  .brand {
    min-width: 0;
  }

  .menu-toggle {
    position: relative;
    z-index: 60;
    display: grid;
    width: 48px;
    height: 48px;
    padding: 0;
    place-content: center;
    gap: 7px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--porcelain);
    cursor: pointer;
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 20px;
    height: 1px;
    background: var(--wine);
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    z-index: 55;
    inset: var(--header-height) 0 auto;
    display: grid;
    gap: 0;
    max-height: 0;
    padding: 0 24px;
    overflow: hidden;
    border-bottom: 0 solid var(--line);
    background: var(--porcelain);
    box-shadow: 0 28px 45px rgba(62, 29, 35, 0.12);
    opacity: 0;
    visibility: hidden;
    transition: max-height 240ms ease, opacity 180ms ease, visibility 180ms ease, padding 240ms ease;
  }

  .site-nav.is-open {
    max-height: calc(100vh - var(--header-height));
    padding-block: 24px 30px;
    border-bottom-width: 1px;
    opacity: 1;
    visibility: visible;
  }

  .site-nav > a {
    padding: 15px 4px;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: 1.35rem;
    font-weight: 400;
  }

  .site-nav > a::after {
    content: none;
  }

  .site-nav .button {
    width: 100%;
    margin-top: 22px;
  }

  .hero {
    display: block;
    min-height: clamp(620px, 98vw, 720px);
  }

  .hero-copy {
    position: relative;
    z-index: 2;
    width: min(680px, calc(100% - 48px));
    margin-inline: auto;
    padding-block: 72px 64px;
  }

  .hero-media {
    position: absolute;
    inset: 0;
    min-height: 0;
  }

  .hero-media img {
    object-position: 79% 27%;
  }

  .hero-media::after {
    background: linear-gradient(180deg, rgba(255, 253, 250, 0.97) 0%, rgba(255, 251, 247, 0.89) 42%, rgba(255, 250, 246, 0.56) 66%, rgba(255, 250, 246, 0.12) 100%);
  }

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

  .about-visual {
    height: 400px;
  }

  .about-visual img {
    min-height: 0;
  }

  .content-hub-intro {
    min-height: 0;
  }

  .content-hub-hero {
    min-height: 0;
  }

  .content-hub-hero::before {
    background: linear-gradient(180deg, rgba(255, 253, 250, 0.98) 0%, rgba(255, 253, 250, 0.8) 58%, rgba(255, 253, 250, 0.4) 100%);
  }

  .content-hub-backdrop {
    object-position: 66% center;
  }

  .newsletter-card {
    justify-self: auto;
    width: min(100%, 540px);
    margin: 40px auto 0;
  }

  .content-browser {
    margin-top: 58px;
  }

  .content-tabs {
    width: 100%;
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .content-tabs button {
    flex: 0 0 auto;
  }

  .content-hub-cta {
    grid-template-columns: auto 1fr;
  }

  .content-hub-cta .button {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .location-strip-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .location-strip .button {
    grid-column: auto;
  }

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

  .footer-grid > a {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  body.draelisa-logo-stacked { --header-height: 104px; }

  .shell,
  .hero-copy {
    width: min(100% - 32px, 1160px);
  }

  .study-notice {
    padding-inline: 12px;
    font-size: 0.61rem;
    line-height: 1.45;
  }

  .brand-symbol { flex-basis: 138px; width: 138px; height: 62px; }

  .brand--stacked .brand-symbol { flex-basis: 142px; width: 142px; height: 88px; }

  .brand-copy strong {
    font-size: 1rem;
  }

  .brand-copy small {
    font-size: 0.55rem;
  }

  .hero-copy {
    display: flex;
    min-height: 740px;
    flex-direction: column;
    justify-content: flex-end;
    padding-block: 300px 38px;
  }

  .hero {
    min-height: 740px;
  }

  .hero h1 {
    max-width: 9ch;
    font-size: clamp(2.85rem, 13.2vw, 3.65rem);
    line-height: .94;
  }

  .hero .eyebrow {
    margin-bottom: 13px;
  }

  .hero .title-rule {
    margin-block: 21px 18px;
  }

  .hero-lead {
    max-width: 31ch;
    font-size: 1rem;
    line-height: 1.48;
  }

  .hero-actions {
    gap: 17px;
    margin-top: 25px;
    align-items: flex-start;
    flex-direction: column;
  }

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

  .hero-media img {
    object-position: 76% 24%;
  }

  .hero-media::after {
    background:
      radial-gradient(ellipse 48% 34% at 76% 24%, transparent 0%, transparent 54%, rgba(255, 251, 247, .08) 78%, rgba(255, 251, 247, .22) 100%),
      linear-gradient(180deg, rgba(255, 253, 250, .06) 0%, rgba(255, 252, 249, .08) 31%, rgba(255, 251, 247, .56) 48%, rgba(255, 250, 246, .9) 62%, rgba(255, 250, 246, .97) 100%);
  }

  .validation-note {
    margin-top: 8px;
    text-align: left;
  }

  .section {
    padding-block: 76px;
  }

  .about-visual {
    height: 360px;
    border-radius: 30px 0 30px 0;
  }

  .about-visual img {
    min-height: 0;
    object-position: center 22%;
  }

  .about-copy h2 {
    font-size: 2.65rem;
  }

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

  .areas-grid article:nth-child(3) {
    border-right: 1px solid rgba(255, 248, 241, 0.14);
  }

  .areas-grid article:nth-child(2n) {
    border-right: 0;
  }

  .areas-grid article:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 248, 241, 0.14);
  }

  .areas-grid article {
    min-height: 172px;
    padding-inline: 13px;
  }

  .content-hub {
    padding-bottom: 76px;
  }

  .content-hub h2 {
    font-size: clamp(2.75rem, 13vw, 4rem);
  }

  .content-hub-copy > p:not(.eyebrow) {
    font-size: 0.94rem;
  }

  .content-hub-intro {
    padding-block: 60px;
  }

  .newsletter-card {
    padding: 24px;
    border-radius: 16px 16px 4px 16px;
  }

  .newsletter-card-heading {
    grid-template-columns: 50px 1fr;
    gap: 14px;
  }

  .newsletter-card-mark {
    width: 50px;
    height: 50px;
  }

  .content-tabs button {
    padding-inline: 17px;
    font-size: 0.65rem;
  }

  .content-tabs button:first-child {
    padding-left: 2px;
  }

  .content-panel:not(.content-panel-message) {
    display: flex;
    gap: 14px;
    margin-right: -16px;
    padding-right: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .content-card {
    flex: 0 0 82vw;
    min-height: 440px;
    scroll-snap-align: start;
  }

  .content-card h3 {
    font-size: 1.75rem;
  }

  .content-panel-message {
    align-items: flex-start;
    flex-direction: column;
    min-height: 300px;
    padding: 34px 24px;
  }

  .content-panel-message h3,
  .content-hub-cta h3 {
    font-size: 1.55rem;
  }

  .content-hub-cta {
    grid-template-columns: 1fr;
  }

  .content-hub-cta .button {
    grid-column: auto;
    width: 100%;
    white-space: normal;
  }

  .content-hub-decoration-top {
    top: -120px;
    right: -120px;
    width: 270px;
    height: 270px;
  }

  .location-strip-inner {
    padding-block: 58px;
  }

  .location-strip .button {
    width: 100%;
  }

  .newsletter-dialog {
    padding: 46px 24px 30px;
  }

  .newsletter-field-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .newsletter-field-row input {
    border-right: 1px solid rgba(81, 38, 45, 0.28);
    border-radius: 2px;
  }

  .newsletter-field-row .button {
    width: 100%;
    border-radius: 2px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .footer-intro {
    max-width: none;
  }

  .footer-nav ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-clinics {
    grid-column: auto;
  }

  .footer-clinics-heading {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .footer-clinics-heading > p {
    white-space: normal;
  }

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

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 28px;
  }

  .footer-bottom .medical-notice {
    justify-self: start;
    text-align: left;
  }

  .footer-bottom-meta {
    justify-content: flex-start;
    flex-wrap: wrap;
    white-space: normal;
  }

  .schedule-dialog {
    padding: 42px 26px 30px;
  }

  .schedule-dialog h2 {
    font-size: 2.3rem;
  }
}

/* Navegação em cascata — cuidados */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  align-self: stretch;
}

.nav-dropdown-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: 0;
  color: #4c4142;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 600;
}

.nav-dropdown-toggle::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--copper);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-dropdown-toggle > span {
  color: var(--copper);
  font-size: 0.86rem;
  transition: transform 180ms ease;
}

.nav-dropdown-toggle:hover::after,
.nav-dropdown-toggle[aria-current="page"]::after,
.nav-dropdown.is-open .nav-dropdown-toggle::after {
  transform: scaleX(1);
}

.nav-dropdown-toggle[aria-current="page"] {
  color: var(--wine);
}

.nav-dropdown.is-open .nav-dropdown-toggle > span {
  transform: rotate(180deg);
}

.nav-dropdown::after {
  position: absolute;
  top: 100%;
  right: -20px;
  left: -20px;
  height: 18px;
  content: "";
}

.nav-dropdown-menu {
  position: absolute;
  z-index: 80;
  top: calc(100% + 14px);
  right: -310px;
  width: min(760px, calc(100vw - 48px));
  padding: 20px;
  border: 1px solid rgba(101, 42, 53, 0.12);
  border-radius: 4px 26px 4px 26px;
  background: rgba(255, 252, 249, 0.985);
  box-shadow: 0 28px 68px rgba(64, 27, 35, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  visibility: hidden;
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 180ms ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.nav-dropdown-overview {
  display: grid;
  gap: 5px;
  padding: 18px 20px 20px;
  border-radius: 3px 18px 3px 18px;
  color: var(--ivory);
  background:
    radial-gradient(circle at 90% 12%, rgba(210, 140, 154, 0.23), transparent 34%),
    linear-gradient(135deg, #49202a, #682d3c);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.nav-dropdown-overview:hover,
.nav-dropdown-overview:focus-visible {
  box-shadow: 0 15px 28px rgba(67, 28, 36, 0.2);
  transform: translateY(-2px);
}

.nav-dropdown-overview span,
.nav-dropdown-groups section > p {
  font-size: 0.61rem;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-dropdown-overview span {
  color: #e5aa99;
}

.nav-dropdown-overview strong {
  font-family: var(--serif);
  font-size: 1.32rem;
  font-weight: 400;
}

.nav-dropdown-overview small {
  color: rgba(255, 248, 241, 0.7);
  font-size: 0.7rem;
}

.nav-dropdown-groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 15px;
}

.nav-dropdown-groups section {
  min-width: 0;
  padding: 12px 18px 8px;
  border-right: 1px solid rgba(183, 120, 95, 0.16);
}

.nav-dropdown-groups section:last-child {
  border-right: 0;
}

.nav-dropdown-groups section > p {
  margin: 0 0 10px;
  color: var(--copper);
  font-family: var(--sans);
}

.nav-dropdown-groups a {
  display: block;
  padding: 7px 0;
  color: #57484a;
  font-size: 0.76rem;
  line-height: 1.35;
  text-decoration: none;
  transition: color 160ms ease, transform 160ms ease;
}

.nav-dropdown-groups a:hover,
.nav-dropdown-groups a:focus-visible {
  color: var(--wine);
  transform: translateX(3px);
}

.nav-content-dropdown .nav-dropdown-menu { right: -245px; width: min(690px, calc(100vw - 48px)); }
.nav-content-groups { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.nav-dropdown-groups .nav-dropdown-all { margin-top: 8px; padding-top: 11px; border-top: 1px solid rgba(183,120,95,.18); color: var(--wine); font-size: .67rem; font-weight: 750; letter-spacing: .06em; text-transform: uppercase; }
.nav-dropdown-empty { display: block; padding: 7px 0; color: var(--taupe); font-size: .74rem; }

/* Página interna — cuidados ginecológicos */
.page-care {
  background: #fffdfb;
}

.care-page-hero {
  position: relative;
  min-height: clamp(650px, 66vw, 800px);
  padding: calc(var(--header-height) + clamp(50px, 5vw, 76px)) 0 clamp(76px, 7vw, 104px);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 10% 18%, rgba(231, 197, 185, 0.42), transparent 27%),
    radial-gradient(circle at 88% 14%, rgba(177, 76, 105, 0.14), transparent 30%),
    linear-gradient(137deg, #fffaf6 0%, #f3e6e1 60%, #fffdfb 100%);
}

.care-page-hero::before {
  position: absolute;
  inset: var(--header-height) 0 auto;
  z-index: -1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(169, 79, 104, 0.32), transparent);
  content: "";
}

.care-page-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(183, 120, 95, 0.2);
  border-radius: 50%;
  pointer-events: none;
}

.care-page-orbit-one {
  top: 110px;
  right: -150px;
  width: 390px;
  height: 390px;
}

.care-page-orbit-two {
  bottom: -300px;
  left: -210px;
  width: 570px;
  height: 570px;
}

.care-page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(370px, 0.78fr);
  align-items: center;
  gap: clamp(60px, 8vw, 126px);
}

.care-page-hero-copy {
  max-width: 760px;
}

.care-page-hero-copy h1 {
  max-width: 750px;
  margin: 24px 0 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(3.45rem, 4.7vw, 5.65rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.care-page-hero-copy h1 em {
  display: block;
  margin-top: 8px;
  color: #ad4f6b;
  font-weight: 400;
}

.care-page-hero-copy > p:not(.eyebrow) {
  max-width: 610px;
  margin: 34px 0 0;
  color: #6d5a58;
  font-size: clamp(1rem, 1.15vw, 1.15rem);
  line-height: 1.75;
}

.care-page-hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 34px;
}

.care-page-hero-actions .text-link {
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

.care-hero-index {
  display: grid;
  gap: 10px;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid rgba(183, 120, 95, 0.18);
  border-radius: 4px 42px 4px 42px;
  background: rgba(255, 253, 250, 0.84);
  box-shadow: 0 32px 66px rgba(79, 41, 47, 0.13);
  backdrop-filter: blur(14px);
}

.care-hero-index > p {
  margin: 0 0 8px;
  color: var(--copper);
  font-size: 0.65rem;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.care-hero-index > a {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(183, 120, 95, 0.18);
  color: var(--ink);
  text-decoration: none;
}

.care-hero-index > a:last-child {
  border-bottom: 0;
}

.care-hero-index-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  background: #fff7f2;
}

.care-hero-index-icon img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.care-hero-index > a > span:nth-child(2) {
  display: grid;
  gap: 4px;
}

.care-hero-index strong {
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 500;
}

.care-hero-index small {
  color: var(--taupe);
  font-size: 0.72rem;
}

.care-hero-index b {
  color: var(--copper);
  font-weight: 400;
  transition: transform 180ms ease;
}

.care-hero-index a:hover b,
.care-hero-index a:focus-visible b {
  transform: translateX(4px);
}

.care-page-intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1fr);
  gap: clamp(60px, 9vw, 150px);
  padding-block: clamp(92px, 9vw, 145px);
}

.care-page-intro h2 {
  max-width: 570px;
  margin: 22px 0 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2.65rem, 4vw, 4.4rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
}

.care-page-intro > div:last-child {
  align-self: end;
  max-width: 650px;
}

.care-page-intro > div:last-child p {
  margin: 0;
  color: #695653;
  font-size: 0.98rem;
  line-height: 1.82;
}

.care-page-intro > div:last-child p + p {
  margin-top: 18px;
  color: var(--copper);
  font-size: 0.82rem;
}

.care-category {
  position: relative;
  padding-block: clamp(94px, 9vw, 145px);
  scroll-margin-top: calc(var(--header-height) + 18px);
}

#contracepcao {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.care-category-light {
  border-block: 1px solid rgba(183, 120, 95, 0.13);
  background: #fbf6f2;
}

.care-category-rose {
  background:
    radial-gradient(circle at 93% 10%, rgba(184, 94, 113, 0.13), transparent 30%),
    linear-gradient(145deg, #fffdfb, #f7eae6);
}

.care-category-wine {
  color: #fff8f1;
  background:
    radial-gradient(circle at 82% 12%, rgba(194, 100, 123, 0.26), transparent 32%),
    linear-gradient(135deg, #3d1822, #642b3a 64%, #4b1e2a);
}

.care-category-heading {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  align-items: start;
  gap: clamp(30px, 4vw, 58px);
  max-width: 990px;
}

.care-category-icon {
  display: grid;
  width: 108px;
  height: 108px;
  place-items: center;
  border: 1px solid rgba(184, 94, 113, 0.2);
  border-radius: 50%;
  background: rgba(255, 252, 249, 0.7);
  box-shadow: 0 18px 38px rgba(91, 42, 51, 0.09);
}

.care-category-icon img {
  width: 88px;
  height: 88px;
  object-fit: contain;
}

.care-category-heading h2 {
  max-width: 820px;
  margin: 20px 0 0;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 4.3vw, 4.75rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.care-category-heading > div > p:not(.eyebrow) {
  max-width: 680px;
  margin: 26px 0 0;
  color: #705c59;
  line-height: 1.75;
}

.care-category-wine .eyebrow {
  color: #e1a290;
}

.care-category-wine .care-category-heading > div > p:not(.eyebrow) {
  color: rgba(255, 248, 241, 0.7);
}

.treatment-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(54px, 6vw, 84px);
}

.treatment-detail-grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.treatment-detail-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 250px;
  padding: clamp(25px, 2.5vw, 36px);
  border: 1px solid rgba(101, 42, 53, 0.12);
  border-radius: 3px 28px 3px 28px;
  background: rgba(255, 253, 250, 0.84);
  box-shadow: 0 18px 38px rgba(75, 39, 45, 0.07);
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.treatment-detail-card:hover,
.treatment-detail-card:focus-within {
  border-color: rgba(169, 79, 104, 0.3);
  outline: 3px solid transparent;
  box-shadow: 0 28px 48px rgba(75, 39, 45, 0.13);
  transform: translateY(-7px);
}

.treatment-detail-card:focus-within {
  outline-color: rgba(169, 79, 104, 0.42);
  outline-offset: 4px;
}

.treatment-detail-card h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2vw, 2.15rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.06;
}

.treatment-detail-card p {
  margin: 20px 0 28px;
  color: #745f5c;
  font-size: 0.83rem;
  line-height: 1.68;
}

.treatment-detail-action {
  position: static;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  margin-top: auto;
  padding: 13px 0 0;
  border: 0;
  border-top: 1px solid rgba(183, 120, 95, 0.2);
  color: var(--wine);
  background: transparent;
  font: inherit;
  font-size: 0.65rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-align: left;
  text-transform: uppercase;
}

.treatment-detail-action::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  border-radius: inherit;
  content: "";
}

.treatment-detail-actions {
  display: grid;
  gap: 10px;
  margin-top: auto;
}

.treatment-material-link {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  border: 1px solid rgba(116, 50, 65, 0.2);
  border-radius: 999px;
  color: var(--wine);
  background: rgba(255, 255, 255, 0.58);
  font-size: 0.64rem;
  font-weight: 760;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.treatment-material-link:hover,
.treatment-material-link:focus-visible {
  border-color: var(--wine);
  color: #fffaf6;
  background: var(--wine);
  outline: none;
  transform: translateY(-2px);
}

.treatment-detail-action span {
  color: var(--copper);
  font-size: 0.95rem;
  transition: transform 180ms ease;
}

.treatment-detail-card:hover .treatment-detail-action span,
.treatment-detail-card:focus-within .treatment-detail-action span {
  transform: translateX(4px);
}

.treatment-detail-card-wide {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 94px minmax(0, 1fr);
  align-items: center;
  gap: 28px;
  min-height: 0;
}

.treatment-detail-card-wide > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 0.55fr);
  align-items: center;
  gap: 18px 38px;
}

.treatment-detail-card-wide p {
  margin: 0;
}

.treatment-detail-card-wide .treatment-detail-actions {
  grid-column: 2;
  grid-row: 1 / 3;
}

.treatment-card-icon {
  display: grid;
  width: 94px;
  height: 94px;
  place-items: center;
  border-radius: 50%;
  background: #fff4ef;
}

.treatment-card-icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.care-category-wine .treatment-detail-card {
  border-color: rgba(255, 248, 241, 0.13);
  background: rgba(255, 250, 247, 0.07);
  box-shadow: none;
}

.care-category-wine .treatment-detail-card:hover {
  border-color: rgba(230, 164, 145, 0.45);
  background: rgba(255, 250, 247, 0.11);
}

.care-category-wine .treatment-detail-card h3,
.care-category-wine .treatment-detail-action {
  color: #fff8f1;
}

.care-category-wine .treatment-detail-card p {
  color: rgba(255, 248, 241, 0.68);
}

.care-category-wine .treatment-detail-action {
  border-top-color: rgba(255, 248, 241, 0.15);
}

.care-category-wine .treatment-material-link {
  border-color: rgba(255, 248, 241, 0.28);
  color: #fff8f1;
  background: rgba(255, 255, 255, 0.08);
}

.care-category-wine .treatment-material-link:hover,
.care-category-wine .treatment-material-link:focus-visible {
  border-color: #fff8f1;
  color: var(--wine);
  background: #fff8f1;
}

.care-editorial-quote {
  position: relative;
  padding-block: clamp(105px, 11vw, 175px);
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 148, 137, 0.22), transparent 38%),
    #fffaf6;
}

.care-editorial-quote .shell {
  display: grid;
  justify-items: center;
}

.care-editorial-quote h2 {
  max-width: 1120px;
  margin: 28px 0 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2.85rem, 4.6vw, 5.2rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1;
}

.care-editorial-quote > .shell > p:last-child {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--taupe);
  line-height: 1.7;
}

.care-page-cta {
  border-top: 1px solid rgba(183, 120, 95, 0.14);
  background: #f8eee8;
}

.care-page-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.62fr);
  align-items: end;
  gap: clamp(55px, 8vw, 130px);
  padding-block: clamp(76px, 8vw, 120px);
}

.care-page-cta h2 {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2.8rem, 4.3vw, 4.8rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.care-page-cta-inner > div:last-child p {
  margin: 0 0 28px;
  color: var(--taupe);
  line-height: 1.7;
}

@media (max-width: 1080px) {
  .nav-dropdown-toggle {
    font-size: 0.8rem;
  }

  .nav-dropdown-menu {
    right: -280px;
    width: min(700px, calc(100vw - 36px));
  }

  .care-page-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
    gap: 48px;
  }

  .care-page-hero-copy h1 {
    font-size: clamp(3.15rem, 5vw, 4.55rem);
  }

  .treatment-detail-grid-four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .nav-dropdown {
    display: grid;
    align-self: auto;
    border-bottom: 1px solid var(--line);
  }

  .nav-dropdown::after {
    content: none;
  }

  .nav-dropdown-toggle {
    justify-content: space-between;
    width: 100%;
    padding: 15px 4px;
    color: #4c4142;
    font-family: var(--serif);
    font-size: 1.35rem;
    font-weight: 400;
  }

  .nav-dropdown-toggle::after {
    content: none;
  }

  .nav-dropdown-menu {
    position: static;
    width: 100%;
    max-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    overflow: hidden;
    pointer-events: none;
    transform: none;
    visibility: hidden;
    transition: max-height 260ms ease, padding 220ms ease, visibility 180ms ease;
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    max-height: 0;
    padding: 0;
    pointer-events: none;
  }

  .nav-dropdown.is-open .nav-dropdown-menu {
    max-height: 760px;
    padding: 10px 0 18px;
    pointer-events: auto;
    visibility: visible;
  }

  .nav-dropdown-overview {
    padding: 16px 18px;
  }

  .nav-dropdown-groups {
    grid-template-columns: 1fr;
  }

  .nav-dropdown-groups section {
    padding: 15px 18px 7px;
    border-right: 0;
    border-bottom: 1px solid rgba(183, 120, 95, 0.14);
  }

  .nav-dropdown-groups section:last-child {
    border-bottom: 0;
  }

  .nav-dropdown-groups a {
    padding: 6px 0;
  }

  .care-page-hero-grid {
    grid-template-columns: 1fr;
  }

  .care-page-hero-copy {
    max-width: 720px;
  }

  .care-page-hero-copy h1 {
    font-size: clamp(3.15rem, 7.7vw, 4.65rem);
  }

  .care-hero-index {
    width: min(100%, 690px);
  }

  .care-page-intro,
  .care-page-cta-inner {
    grid-template-columns: 1fr;
    gap: 45px;
  }

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

  .treatment-detail-card-wide {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .treatment-detail-card-wide > div {
    grid-template-columns: 1fr;
  }

  .treatment-detail-card-wide .treatment-detail-actions {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 620px) {
  .care-page-hero {
    min-height: auto;
    padding: calc(var(--header-height) + 42px) 0 82px;
  }

  .care-page-hero-copy h1 {
    font-size: clamp(2.75rem, 11.8vw, 3.85rem);
    line-height: 0.96;
  }

  .care-page-hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .care-page-hero-actions .button,
  .care-page-hero-actions .text-link {
    width: 100%;
    justify-content: center;
  }

  .care-hero-index {
    padding: 21px;
    border-radius: 3px 28px 3px 28px;
  }

  .care-hero-index > a {
    grid-template-columns: 46px minmax(0, 1fr) auto;
    gap: 11px;
  }

  .care-hero-index-icon {
    width: 46px;
    height: 46px;
  }

  .care-hero-index-icon img {
    width: 40px;
    height: 40px;
  }

  .care-page-intro {
    padding-block: 82px;
  }

  .care-page-intro h2,
  .care-category-heading h2,
  .care-page-cta h2 {
    font-size: clamp(2.55rem, 11vw, 3.55rem);
  }

  .care-category-heading {
    grid-template-columns: 1fr;
  }

  .care-category-icon {
    width: 88px;
    height: 88px;
  }

  .care-category-icon img {
    width: 74px;
    height: 74px;
  }

  .treatment-detail-grid,
  .treatment-detail-grid-four {
    grid-template-columns: 1fr;
  }

  .treatment-detail-card {
    min-height: 220px;
  }

  .treatment-detail-card-wide {
    gap: 20px;
  }

  .care-editorial-quote h2 {
    font-size: clamp(2.55rem, 11vw, 3.7rem);
  }
}

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

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

/* Proposta 03 — áreas de cuidado com linguagem orgânica e editorial */
.care-areas {
  position: relative;
  overflow: hidden;
  padding-block: clamp(90px, 8vw, 132px) clamp(118px, 10vw, 164px);
  color: var(--ink);
  isolation: isolate;
  background:
    radial-gradient(circle at 13% 9%, rgba(231, 198, 187, 0.34), transparent 22%),
    radial-gradient(circle at 88% 48%, rgba(218, 184, 173, 0.2), transparent 25%),
    linear-gradient(145deg, #fffaf7 0%, #f8ede8 48%, #fffdfb 100%);
}

.care-areas::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background:
    radial-gradient(ellipse at 8% 18%, rgba(255, 255, 255, 0.92), transparent 26%),
    radial-gradient(ellipse at 76% 22%, rgba(255, 255, 255, 0.54), transparent 31%),
    linear-gradient(118deg, transparent 0 38%, rgba(255, 255, 255, 0.3) 46%, transparent 58%);
  content: "";
  opacity: 0.85;
  pointer-events: none;
}

.care-organic-shape {
  position: absolute;
  z-index: 0;
  display: block;
  background: linear-gradient(135deg, #4a2028, #7b2d41 62%, #9f4058);
  pointer-events: none;
}

.care-organic-shape-top {
  top: -225px;
  right: -115px;
  width: 520px;
  height: 310px;
  border-radius: 42% 0 58% 62%;
  transform: rotate(8deg);
}

.care-organic-shape-bottom {
  bottom: -285px;
  left: -7%;
  width: 114%;
  height: 390px;
  border-radius: 47% 58% 0 0 / 48% 62% 0 0;
  transform: rotate(-3.2deg);
}

.care-organic-shape-bottom::after {
  position: absolute;
  top: 23px;
  right: 7%;
  width: 58%;
  height: 1px;
  background: rgba(239, 206, 191, 0.68);
  content: "";
  transform: rotate(-7deg);
}

.care-orbit {
  position: absolute;
  z-index: 1;
  display: block;
  border: 1px solid rgba(183, 120, 95, 0.32);
  border-radius: 50%;
  pointer-events: none;
}

.care-orbit-left {
  bottom: -105px;
  left: -92px;
  width: 290px;
  height: 290px;
}

.care-orbit-right {
  top: 155px;
  right: -105px;
  width: 250px;
  height: 250px;
}

.care-areas-inner {
  position: relative;
  z-index: 2;
  width: min(1420px, calc(100% - 48px));
}

.care-areas-heading {
  width: min(1120px, 100%);
  margin-inline: auto;
  text-align: center;
}

.care-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 0 0 24px;
  color: #a45263;
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.care-kicker span {
  position: relative;
  width: 34px;
  height: 1px;
  background: rgba(164, 82, 99, 0.5);
}

.care-kicker span::after {
  position: absolute;
  top: -2px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #a45263;
  content: "";
}

.care-kicker span:first-child::after {
  right: 0;
}

.care-kicker span:last-child::after {
  left: 0;
}

.care-areas h2 {
  margin: 0;
  color: #4b2029;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 3.8vw, 4.4rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.care-areas h2 em {
  display: block;
  margin-top: 5px;
  color: #a94f68;
  font-weight: 400;
}

.care-heading-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: min(470px, 68%);
  margin: 22px auto 16px;
  color: #a94f68;
}

.care-heading-divider::before,
.care-heading-divider::after {
  flex: 1;
  height: 1px;
  background: rgba(169, 79, 104, 0.24);
  content: "";
}

.care-heading-divider span {
  font-size: 0.75rem;
}

.care-areas-heading > p:last-child {
  max-width: 560px;
  margin: 0 auto;
  color: #6f6161;
  font-size: clamp(0.92rem, 1vw, 1rem);
  line-height: 1.55;
}

.care-areas .areas-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(42px, 4vw, 58px);
  border: 0;
}

.care-card {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 0;
  min-height: 286px;
  padding: 24px 16px 22px;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 34px;
  color: var(--ink);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.78), rgba(255, 250, 247, 0.56));
  box-shadow:
    0 28px 48px -34px rgba(77, 31, 42, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  cursor: pointer;
  font: inherit;
  text-align: center;
  backdrop-filter: blur(12px);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease, background 260ms ease;
}

.care-card:hover,
.care-card:focus-visible {
  border-color: rgba(184, 94, 113, 0.34);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.94), rgba(252, 240, 237, 0.82));
  box-shadow:
    0 35px 58px -30px rgba(77, 31, 42, 0.5),
    0 10px 28px rgba(118, 54, 70, 0.1),
    inset 0 1px 0 #fff;
  transform: translateY(-12px);
}

.care-areas .areas-grid .care-card-icon {
  display: block;
  width: 82px;
  height: 82px;
  margin: 0 0 18px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  box-shadow: 0 10px 24px rgba(111, 45, 61, 0.07);
  line-height: 1;
  transition: transform 230ms ease, filter 230ms ease;
}

.care-card-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.care-card:hover .care-card-icon,
.care-card:focus-visible .care-card-icon {
  filter: saturate(1.08) brightness(0.92);
  transform: scale(1.06) rotate(-1deg);
}

.care-card strong {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  margin-top: 0;
  font-size: 0.75rem;
  font-weight: 760;
  letter-spacing: 0.04em;
  line-height: 1.42;
  text-transform: uppercase;
}

.care-areas .areas-grid .care-card-line {
  display: block;
  width: 34px;
  height: 1px;
  margin: 13px 0 0;
  border: 0;
  border-radius: 0;
  background: #c17482;
  transition: width 220ms ease;
}

.care-card:hover .care-card-line,
.care-card:focus-visible .care-card-line {
  width: 56px;
}

.care-areas .areas-grid .care-card-arrow {
  display: grid;
  width: 38px;
  height: 38px;
  margin: 16px 0 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #fffaf7;
  background: linear-gradient(145deg, #a64d63, #642237);
  box-shadow: 0 9px 20px rgba(91, 31, 47, 0.22);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.care-card:hover .care-card-arrow,
.care-card:focus-visible .care-card-arrow {
  box-shadow: 0 12px 24px rgba(91, 31, 47, 0.32);
  transform: translateX(4px);
}

.care-areas-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(390px, 100%);
  min-height: 62px;
  gap: 18px;
  margin: 52px auto 0;
  padding: 16px 30px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #fffaf6;
  background: linear-gradient(105deg, #a84f64, #6c293d);
  box-shadow: 0 18px 36px rgba(83, 31, 44, 0.22);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.care-areas-cta:hover,
.care-areas-cta:focus-visible {
  background: linear-gradient(105deg, #973f57, #541e30);
  box-shadow: 0 22px 42px rgba(83, 31, 44, 0.32);
  transform: translateY(-3px);
}

.care-areas-cta span {
  font-size: 1.05rem;
}

.care-dialog {
  width: min(560px, calc(100% - 32px));
  padding: 50px;
  border: 1px solid rgba(169, 79, 104, 0.38);
  border-radius: 22px 22px 6px 22px;
  color: var(--ink);
  background: linear-gradient(145deg, #fffdfb, #f8ebe7);
  box-shadow: var(--shadow);
}

.article-reading-progress { position: fixed; z-index: 120; top: 0; right: 0; left: 0; height: 3px; pointer-events: none; }
.article-reading-progress span { display: block; width: 0; height: 100%; background: linear-gradient(90deg, var(--rose), var(--wine)); transition: width 80ms linear; }
.content-single { background: #fffdfa; }
.content-article-hero { position: relative; padding: calc(var(--header-height) + clamp(28px, 4vw, 52px)) 0 clamp(42px, 4vw, 62px); overflow: hidden; background: radial-gradient(circle at 14% 15%, rgba(212, 148, 137, .2), transparent 34%), linear-gradient(135deg, #fffaf6 0%, #f7e9e5 100%); }
.content-article-orbit { position: absolute; top: 15%; right: -150px; width: 430px; height: 430px; border: 1px solid rgba(183, 120, 95, .2); border-radius: 50%; }
.content-article-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(340px, .72fr); align-items: center; gap: clamp(48px, 7vw, 112px); }
.content-article-header { min-width: 0; max-width: 730px; }
.content-breadcrumb { display: flex; align-items: center; gap: 10px; margin-bottom: clamp(30px, 4vw, 48px); color: var(--taupe); font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; }
.content-breadcrumb a { color: inherit; transition: color 180ms ease; }
.content-breadcrumb a:hover { color: var(--wine); }
.content-article-header h1 { margin: 14px 0 24px; color: var(--ink); font-family: var(--serif); font-size: clamp(3.15rem, 4.7vw, 5.25rem); font-weight: 400; letter-spacing: -.055em; line-height: .96; }
.content-article-lead { max-width: 650px; margin: 0 0 28px; color: #6e5956; font-size: clamp(1.05rem, 1.4vw, 1.28rem); line-height: 1.7; overflow-wrap: anywhere; }
.content-article-meta { display: flex; flex-wrap: wrap; gap: 8px 12px; color: var(--copper); font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.content-article-cover { position: relative; margin: 0; overflow: hidden; border-radius: 220px 220px 16px 16px; box-shadow: 0 34px 70px rgba(75, 39, 45, .18); }
.content-article-cover::after { position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.48); border-radius: inherit; content: ''; }
.content-article-cover img { display: block; width: 100%; height: clamp(390px, 34vw, 460px); object-fit: cover; }
.content-article-layout { display: grid; grid-template-columns: 245px minmax(0, 720px); justify-content: center; gap: clamp(55px, 8vw, 120px); padding-block: clamp(80px, 10vw, 145px); }
.content-article-rail { align-self: start; position: sticky; top: calc(var(--header-height) + 28px); }
.article-toc { padding: 0 0 25px; border-bottom: 1px solid rgba(183,120,95,.22); }
.article-toc > p { margin: 0 0 20px; color: var(--ink); font-family: var(--serif); font-size: 1.35rem; }
.article-toc ol { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.article-toc a { display: grid; grid-template-columns: 18px 1fr; gap: 10px; color: var(--taupe); font-size: .78rem; line-height: 1.45; transition: color 180ms ease; }
.article-toc a::before { width: 18px; height: 1px; margin-top: .72em; background: var(--copper-soft); content: ''; transition: width 180ms ease, background-color 180ms ease; }
.article-toc a:hover::before, .article-toc a.is-active::before { width: 26px; background: var(--wine); }
.article-toc a:hover, .article-toc a.is-active { color: var(--wine); }
.article-responsible-note { display: flex; gap: 12px; margin-top: 24px; color: var(--taupe); font-size: .73rem; line-height: 1.55; }
.article-responsible-note span { display: grid; flex: 0 0 26px; width: 26px; height: 26px; place-items: center; border: 1px solid var(--copper-soft); border-radius: 50%; color: var(--wine); font-family: var(--serif); }
.article-responsible-note p { margin: 0; }
.content-article-main { min-width: 0; }
.content-article-body { color: #584b49; font-size: clamp(1.03rem, 1.15vw, 1.12rem); line-height: 1.9; }
.content-article-body > p:first-child { color: var(--ink); font-family: var(--serif); font-size: clamp(1.35rem, 2vw, 1.72rem); line-height: 1.55; }
.content-article-body h2, .content-article-body h3 { scroll-margin-top: calc(var(--header-height) + 32px); margin: 2.3em 0 .65em; color: var(--ink); font-family: var(--serif); font-weight: 400; letter-spacing: -.025em; line-height: 1.16; }
.content-article-body h2 { position: relative; padding-top: 24px; font-size: clamp(2rem, 3vw, 2.65rem); }
.content-article-body h2::before { position: absolute; top: 0; left: 0; width: 46px; height: 1px; background: var(--copper); content: ''; }
.content-article-body h3 { font-size: 1.55rem; }
.content-article-body p { margin: 0 0 1.35em; }
.content-article-body ul, .content-article-body ol { display: grid; gap: .55em; margin: 0 0 1.6em; padding-left: 1.4em; }
.content-article-body blockquote { margin: 2.3em 0; padding: 25px 30px; border-left: 3px solid var(--rose); color: var(--wine); background: #fbefeb; font-family: var(--serif); font-size: 1.35rem; line-height: 1.5; }
.content-article-body a { color: var(--wine); text-decoration: underline; text-decoration-color: var(--copper-soft); text-underline-offset: 4px; }
.content-author-card { display: grid; grid-template-columns: 112px 1fr; gap: 24px; margin-top: 70px; padding: 28px; border: 1px solid rgba(183,120,95,.2); border-radius: 4px 28px 4px 28px; background: linear-gradient(135deg, #fffaf6, #f8e9e5); }
.content-author-card img { width: 112px; height: 112px; border-radius: 50%; object-fit: cover; object-position: center 26%; }
.content-author-card .eyebrow { margin: 0 0 5px; }
.content-author-card h2 { margin: 0; color: var(--ink); font-family: var(--serif); font-size: 1.7rem; font-weight: 400; }
.content-author-card p:not(.eyebrow) { margin: 8px 0 12px; color: var(--taupe); font-size: .85rem; line-height: 1.55; }
.content-author-card a { color: var(--wine); font-size: .7rem; font-weight: 750; letter-spacing: .07em; text-transform: uppercase; }
.content-article-footer { display: flex; align-items: center; justify-content: space-between; gap: 28px; margin-top: 42px; padding: 32px; border-radius: 4px 24px 4px 24px; color: #fff8f1; background: var(--wine); }
.content-article-footer strong { font-family: var(--serif); font-size: 1.35rem; font-weight: 400; }
.content-article-footer p { margin: 7px 0 0; color: rgba(255,248,241,.72); font-size: .82rem; }
.content-article-footer .button { flex: 0 0 auto; border-color: rgba(255,255,255,.3); background: #fff8f1; color: var(--wine); }

/* Arquivo editorial */
.content-archive { background: #fffdfa; }
.content-archive-hero { position: relative; padding: calc(var(--header-height) + clamp(30px, 4vw, 54px)) 0 clamp(36px, 5vw, 66px); overflow: hidden; background: radial-gradient(circle at 82% 20%, rgba(218, 156, 143, .24), transparent 24%), radial-gradient(circle at 10% 80%, rgba(236, 208, 197, .58), transparent 32%), linear-gradient(135deg, #fffdfb 0%, #f8ebe7 100%); }
.content-archive-orbit { position: absolute; top: 10%; right: -170px; width: 520px; height: 520px; border: 1px solid rgba(183, 120, 95, .2); border-radius: 50%; }
.content-archive-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(330px, .74fr); align-items: center; gap: clamp(48px, 8vw, 132px); }
.content-archive-intro { max-width: 700px; }
.content-archive-intro .content-breadcrumb { margin-bottom: clamp(22px, 2.6vw, 32px); }
.content-archive-intro h1 { max-width: 620px; margin: 16px 0 25px; color: var(--ink); font-family: var(--serif); font-size: clamp(3.15rem, 5.1vw, 5.75rem); font-weight: 400; letter-spacing: -.055em; line-height: .94; }
.content-archive-intro > p:not(.eyebrow) { max-width: 600px; margin: 0; color: #6d5955; font-size: clamp(1.02rem, 1.35vw, 1.22rem); line-height: 1.72; }
.content-archive-featured-image { position: relative; margin: 0; overflow: hidden; border-radius: 220px 220px 12px 12px; box-shadow: 0 32px 70px rgba(75,39,45,.16); }
.content-archive-featured-image::after { position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.5); border-radius: inherit; content: ''; }
.content-archive-featured-image img { display: block; width: 100%; height: clamp(270px, 23vw, 340px); object-fit: cover; object-position: center; }
.content-archive-listing { padding-block: clamp(72px, 9vw, 130px); }
.content-archive-listing-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 30px; }
.content-archive-listing-heading h2 { margin: 10px 0 0; color: var(--ink); font-family: var(--serif); font-size: clamp(2.5rem, 4vw, 4.35rem); font-weight: 400; letter-spacing: -.045em; line-height: 1; }
.content-archive-listing-heading > p { margin: 0 0 7px; color: var(--copper); font-size: .7rem; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.content-archive-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: clamp(38px, 5vw, 62px); padding-top: 25px; border-top: 1px solid rgba(183,120,95,.2); }
.content-archive-filters a { padding: 10px 16px; border: 1px solid rgba(116,50,65,.19); border-radius: 999px; color: var(--wine); font-size: .72rem; font-weight: 750; letter-spacing: .045em; text-decoration: none; transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease; }
.content-archive-filters a:hover, .content-archive-filters a:focus-visible, .content-archive-filters a.is-active { border-color: var(--wine); color: #fffaf5; background: var(--wine); transform: translateY(-2px); }
.content-archive-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(18px, 2.4vw, 32px); }
.content-archive-results {
  min-height: 220px;
  transition: opacity 180ms ease, transform 180ms ease;
}
.content-archive-results.is-filtering { opacity: .38; pointer-events: none; transform: translateY(5px); }
.content-archive-results.is-filtered { animation: content-filter-enter 360ms cubic-bezier(.22, 1, .36, 1) both; }
@keyframes content-filter-enter {
  from { opacity: .35; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.content-archive-card { min-width: 0; overflow: hidden; border: 1px solid rgba(183,120,95,.15); border-radius: 5px 28px 5px 28px; background: #fff; box-shadow: 0 16px 34px rgba(75,39,45,.07); transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease; }
.content-archive-card > a { display: block; height: 100%; color: var(--ink); text-decoration: none; }
.content-archive-card:hover, .content-archive-card:focus-within { border-color: rgba(116,50,65,.34); box-shadow: 0 25px 48px rgba(75,39,45,.15); transform: translateY(-7px); }
.content-archive-card > a > figure { height: clamp(135px, 12vw, 165px); margin: 0; overflow: hidden; background: #f2e4df; }
.content-archive-card > a > figure > img { display: block; width: 100%; height: 100%; max-height: 165px; object-fit: cover; object-position: center 58%; transition: transform 480ms cubic-bezier(.2,.75,.25,1); }
.content-archive-card:hover img, .content-archive-card:focus-within img { transform: scale(1.045); }
.content-archive-card-copy { display: flex; flex-direction: column; align-items: flex-start; min-height: 244px; padding: 26px 26px 22px; }
.content-archive-card-copy > p { margin: 0 0 12px; color: var(--copper); font-size: .65rem; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.content-archive-card h3 { margin: 0; color: var(--ink); font-family: var(--serif); font-size: clamp(1.65rem, 2.1vw, 2rem); font-weight: 400; letter-spacing: -.028em; line-height: 1.05; }
.content-archive-card-summary { margin: 13px 0 20px; color: var(--taupe); font-size: .86rem; line-height: 1.62; }
.content-archive-card-action { display: flex; align-items: center; justify-content: space-between; width: 100%; gap: 16px; margin-top: auto; padding-top: 17px; border-top: 1px solid rgba(183,120,95,.18); color: var(--wine); font-size: .68rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.content-archive-card-action b { font-size: 1rem; font-weight: 400; transition: transform 180ms ease; }
.content-archive-card:hover .content-archive-card-action b, .content-archive-card:focus-within .content-archive-card-action b { transform: translateX(4px); }
.content-archive .navigation.pagination { display: flex; justify-content: center; margin-top: 54px; }
.content-archive .nav-links { display: flex; flex-wrap: wrap; gap: 8px; }
.content-archive .page-numbers { display: grid; min-width: 40px; height: 40px; place-items: center; border: 1px solid rgba(183,120,95,.25); border-radius: 50%; color: var(--wine); font-size: .78rem; text-decoration: none; }
.content-archive .page-numbers.current, .content-archive .page-numbers:hover, .content-archive .page-numbers:focus-visible { color: #fffaf5; background: var(--wine); }
.content-archive-empty { max-width: 650px; padding: clamp(45px, 7vw, 80px); border: 1px solid rgba(183,120,95,.2); border-radius: 5px 30px 5px 30px; background: #f9eeea; text-align: center; }
.content-archive-empty .eyebrow { justify-content: center; }
.content-archive-empty h2 { margin: 13px 0; color: var(--ink); font-family: var(--serif); font-size: clamp(2rem, 3vw, 3.1rem); font-weight: 400; line-height: 1; }
.content-archive-empty > p:not(.eyebrow) { margin: 0; color: var(--taupe); line-height: 1.65; }
.content-archive-empty .button { margin-top: 26px; }

/* Materiais, e-books e guias */
.materials-hub { position: relative; padding-block: clamp(76px, 9vw, 130px); overflow: hidden; background: linear-gradient(135deg, #411b26 0%, #6c2a3d 100%); }
.materials-hub::before { position: absolute; top: -260px; right: -120px; width: 500px; height: 500px; border: 1px solid rgba(255,248,241,.12); border-radius: 50%; content: ''; }
.materials-hub-heading { position: relative; z-index: 1; display: flex; align-items: end; justify-content: space-between; gap: 36px; margin-bottom: 46px; color: #fffaf5; }
.materials-hub-heading .eyebrow { color: #e5a18e; }
.materials-hub-heading h2 { max-width: 760px; margin: 10px 0 16px; color: #fffaf5; font-family: var(--serif); font-size: clamp(2.65rem, 4.5vw, 4.75rem); font-weight: 400; letter-spacing: -.05em; line-height: .96; }
.materials-hub-heading > div > p:not(.eyebrow) { max-width: 610px; margin: 0; color: rgba(255,248,241,.72); line-height: 1.7; }
.materials-hub-icon { display: grid; flex: 0 0 66px; width: 66px; height: 66px; place-items: center; border: 1px solid rgba(255,248,241,.28); border-radius: 50%; color: #fffaf5; font-family: var(--serif); font-size: 1.75rem; }
.materials-hub-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.material-card { overflow: hidden; border: 1px solid rgba(255,248,241,.15); border-radius: 5px 28px 5px 28px; background: #fffaf6; box-shadow: 0 20px 46px rgba(28,10,15,.18); transition: transform 220ms ease, box-shadow 220ms ease; }
.material-card > a { display: block; height: 100%; color: var(--ink); text-decoration: none; }
.material-card:hover, .material-card:focus-within { box-shadow: 0 30px 56px rgba(28,10,15,.3); transform: translateY(-7px); }
.material-card figure { height: 220px; margin: 0; overflow: hidden; background: #eedbd4; }
.material-card img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform 420ms cubic-bezier(.2,.75,.25,1); }
.material-card:hover img, .material-card:focus-within img { transform: scale(1.045); }
.material-card > a > div { display: flex; flex-direction: column; min-height: 230px; padding: 26px; }
.material-card p { margin: 0 0 12px; color: var(--copper); font-size: .65rem; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.material-card h3 { margin: 0; font-family: var(--serif); font-size: 2rem; font-weight: 400; letter-spacing: -.035em; line-height: 1.04; }
.material-card > a > div > span { margin: 13px 0 22px; color: var(--taupe); font-size: .85rem; line-height: 1.62; }
.material-card strong { display: flex; justify-content: space-between; width: 100%; margin-top: auto; padding-top: 16px; border-top: 1px solid rgba(183,120,95,.2); color: var(--wine); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; }
.material-card strong b { font-size: 1rem; font-weight: 400; }
.materials-hub-empty { position: relative; z-index: 1; max-width: 760px; padding: clamp(34px, 5vw, 56px); border: 1px solid rgba(255,248,241,.19); border-radius: 5px 28px 5px 28px; color: #fffaf5; background: rgba(255,255,255,.06); }
.materials-hub-empty .eyebrow { color: #e5a18e; }
.materials-hub-empty h3 { margin: 12px 0; font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.7rem); font-weight: 400; line-height: 1; }
.materials-hub-empty p:not(.eyebrow) { max-width: 580px; margin: 0; color: rgba(255,248,241,.72); line-height: 1.7; }
.material-single { background: #fffdfa; }
.material-hero { padding: calc(var(--header-height) + clamp(42px, 6vw, 88px)) 0 clamp(58px, 8vw, 110px); background: radial-gradient(circle at 12% 10%, rgba(220,157,143,.22), transparent 30%), linear-gradient(135deg, #fffdfb, #f8e9e4); }
.material-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr); align-items: center; gap: clamp(48px, 8vw, 128px); }
.material-hero-copy { max-width: 690px; }
.material-hero-copy .content-breadcrumb { margin-bottom: 35px; }
.material-hero h1 { margin: 14px 0 22px; color: var(--ink); font-family: var(--serif); font-size: clamp(3.1rem, 5.1vw, 5.6rem); font-weight: 400; letter-spacing: -.055em; line-height: .95; }
.material-hero-lead { margin: 0; color: var(--taupe); font-size: clamp(1.04rem, 1.35vw, 1.22rem); line-height: 1.7; }
.material-meta { display: flex; flex-wrap: wrap; gap: 8px 12px; margin-top: 24px; color: var(--copper); font-size: .7rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.material-download { margin-top: 30px; gap: 12px; }
.material-download span { font-size: 1.2rem; }
.material-hero-cover { margin: 0; overflow: hidden; border-radius: 180px 180px 10px 10px; box-shadow: 0 34px 70px rgba(75,39,45,.17); }
.material-hero-cover img { display: block; width: 100%; height: clamp(360px, 34vw, 500px); object-fit: cover; }
.material-article-layout { display: grid; grid-template-columns: 235px minmax(0, 720px); justify-content: center; gap: clamp(52px, 8vw, 120px); padding-block: clamp(80px, 10vw, 140px); }
.material-article-note { display: flex; gap: 12px; align-self: start; color: var(--taupe); font-size: .76rem; line-height: 1.6; }
.material-article-note span { display: grid; flex: 0 0 26px; width: 26px; height: 26px; place-items: center; border: 1px solid var(--copper-soft); border-radius: 50%; color: var(--wine); font-family: var(--serif); }
.material-article-note p { margin: 0; }
.material-article-body { color: #584b49; font-size: clamp(1.03rem, 1.15vw, 1.12rem); line-height: 1.9; }
.material-article-body > p:first-child { color: var(--ink); font-family: var(--serif); font-size: clamp(1.35rem, 2vw, 1.7rem); line-height: 1.55; }
.material-article-body h2, .material-article-body h3 { margin: 2.2em 0 .65em; color: var(--ink); font-family: var(--serif); font-weight: 400; line-height: 1.15; }
.material-article-body h2 { font-size: clamp(2rem, 3vw, 2.65rem); }.material-article-body h3 { font-size: 1.55rem; }.material-article-body p { margin: 0 0 1.35em; }.material-article-body ul, .material-article-body ol { display: grid; gap: .55em; margin: 0 0 1.6em; padding-left: 1.4em; }
.material-download-box { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 60px; padding: 32px; border-radius: 5px 28px 5px 28px; background: #f8e9e4; }
.material-download-box .eyebrow { margin: 0 0 8px; }.material-download-box h2 { margin: 0; font-size: 2rem; }.material-download-box p:not(.eyebrow) { max-width: 420px; margin: 8px 0 0; color: var(--taupe); font-size: .86rem; line-height: 1.6; }.material-download-box .button { flex: 0 0 auto; }
.related-content { padding-block: clamp(80px, 9vw, 130px); background: #f7ebe7; }
.related-content-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 42px; }
.related-content-heading h2 { max-width: 650px; margin: 8px 0 0; color: var(--ink); font-family: var(--serif); font-size: clamp(2.3rem, 4vw, 4rem); font-weight: 400; letter-spacing: -.04em; line-height: 1; }
.related-content-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.related-content-card { overflow: hidden; border-radius: 5px 24px 5px 24px; color: var(--ink); background: #fffdfa; box-shadow: 0 18px 36px rgba(75,39,45,.08); text-decoration: none; transition: transform 220ms ease, box-shadow 220ms ease; }
.related-content-card:hover, .related-content-card:focus-visible, .related-content-card h3, .related-content-card p, .related-content-card span { text-decoration: none; }
.related-content-card:hover, .related-content-card:focus-visible { box-shadow: 0 26px 45px rgba(75,39,45,.15); transform: translateY(-7px); }
.related-content-card img { display: block; width: 100%; aspect-ratio: 1.65; object-fit: cover; }
.related-content-card > div { padding: 24px; }
.related-content-card p { margin: 0 0 9px; color: var(--copper); font-size: .65rem; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.related-content-card h3 { margin: 0 0 22px; font-family: var(--serif); font-size: 1.65rem; font-weight: 400; line-height: 1.08; }
.related-content-card span { display: flex; justify-content: space-between; padding-top: 15px; border-top: 1px solid rgba(183,120,95,.18); color: var(--wine); font-size: .68rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
@media (max-width: 980px) { .content-article-hero-grid { grid-template-columns: 1fr .68fr; gap: 38px; } .content-article-layout { grid-template-columns: 1fr; max-width: 760px; } .content-article-rail { position: static; } .article-responsible-note { max-width: 460px; } .related-content-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 980px) { .content-archive-hero-grid { grid-template-columns: minmax(0, 1fr) minmax(280px, .7fr); gap: 42px; } .content-archive-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 980px) { .materials-hub-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .material-hero-grid { grid-template-columns: minmax(0, 1fr) minmax(280px, .7fr); gap: 42px; } .material-article-layout { grid-template-columns: 1fr; max-width: 760px; } .material-article-note { max-width: 440px; } }
@media (max-width: 720px) { .content-article-hero { padding-top: calc(var(--header-height) + 32px); } .content-article-hero-grid { grid-template-columns: minmax(0, 1fr); } .content-article-header, .content-article-main, .content-article-body { min-width: 0; width: 100%; } .content-article-header h1 { max-width: 100%; font-size: clamp(2.65rem, 11vw, 3.7rem); overflow-wrap: break-word; } .content-article-lead, .content-article-body p { max-width: 100%; } .content-article-cover { max-width: 440px; border-radius: 190px 190px 12px 12px; } .content-article-cover img { height: min(110vw, 420px); } .content-article-meta { gap: 7px; } .content-article-layout { grid-template-columns: minmax(0, 1fr); width: 100%; padding-block: 70px; } .content-author-card { grid-template-columns: 78px minmax(0, 1fr); padding: 22px; } .content-author-card img { width: 78px; height: 78px; } .content-article-footer { align-items: flex-start; flex-direction: column; } .related-content-heading { align-items: flex-start; flex-direction: column; } .related-content-grid { grid-template-columns: minmax(0, 1fr); } }
@media (max-width: 720px) { .content-archive-hero { padding-top: calc(var(--header-height) + 30px); } .content-archive-hero-grid { grid-template-columns: minmax(0, 1fr); } .content-archive-intro h1 { font-size: clamp(2.75rem, 11.7vw, 4rem); } .content-archive-featured-image { max-width: 430px; } .content-archive-featured-image img { height: min(70vw, 300px); } .content-archive-listing-heading { align-items: flex-start; flex-direction: column; } .content-archive-listing-heading > p { margin: 0; } .content-archive-grid { grid-template-columns: minmax(0, 1fr); } .content-archive-card-copy { min-height: 0; } .content-archive-card > a > figure { height: 165px; } }
@media (max-width: 720px) { .materials-hub-heading { align-items: flex-start; flex-direction: column; }.materials-hub-icon { display: none; }.materials-hub-grid { grid-template-columns: minmax(0, 1fr); }.material-card figure { height: 185px; }.material-hero { padding-top: calc(var(--header-height) + 34px); }.material-hero-grid { grid-template-columns: minmax(0, 1fr); }.material-hero h1 { font-size: clamp(2.75rem, 11.5vw, 4rem); }.material-hero-cover { max-width: 420px; }.material-hero-cover img { height: min(88vw, 390px); }.material-article-layout { padding-block: 70px; }.material-download-box { align-items: flex-start; flex-direction: column; }.material-download-box .button { width: 100%; justify-content: center; } }

.site-nav a.button,
.site-nav a.button:hover,
.site-nav a.button:focus-visible { color: #fffaf6; }

.care-dialog::backdrop {
  background: rgba(47, 23, 28, 0.7);
  backdrop-filter: blur(5px);
}

.care-dialog-icon {
  display: grid;
  width: 70px;
  height: 70px;
  margin: 18px 0;
  place-items: center;
  border: 1px solid rgba(169, 79, 104, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.62);
}

.care-dialog-icon[hidden] {
  display: none;
}

.care-dialog-icon img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.care-dialog h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 3.7rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.care-dialog > p:not(.eyebrow) {
  margin: 22px 0 30px;
  color: var(--taupe);
}

.care-dialog .care-dialog-summary {
  margin-bottom: 0;
  font-size: 1.02rem;
  line-height: 1.65;
}

.care-dialog-content {
  max-height: min(46vh, 430px);
  margin: 22px 0 30px;
  padding-right: 8px;
  overflow-y: auto;
  color: var(--taupe);
}

.care-dialog-content p {
  margin: 0 0 14px;
}

.care-dialog-content h3 {
  margin: 22px 0 8px;
  color: var(--wine);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
}

.care-dialog-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.care-dialog-material {
  gap: 10px;
  text-decoration: none;
}

.care-dialog-material[hidden] {
  display: none;
}

.care-dialog-secondary {
  min-height: 48px;
  padding: 10px 4px;
  border: 0;
  border-bottom: 1px solid var(--copper-soft);
  color: var(--wine);
  background: transparent;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 1220px) {
  .care-areas .areas-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    width: min(920px, 100%);
    margin-inline: auto;
  }

  .care-card {
    min-height: 286px;
  }
}

@media (max-width: 700px) {
  .care-areas {
    padding-block: 76px 112px;
  }

  .care-areas-inner {
    width: min(100% - 32px, 1420px);
  }

  .care-kicker {
    gap: 14px;
    font-size: 0.69rem;
  }

  .care-kicker span {
    width: 24px;
  }

  .care-areas h2 {
    font-size: clamp(2.25rem, 9.2vw, 3.35rem);
    line-height: 1.04;
  }

  .care-heading-divider {
    width: 78%;
  }

  .care-areas .areas-grid {
    display: flex;
    width: auto;
    margin: 46px -16px 0 0;
    padding: 12px 16px 30px 0;
    gap: 14px;
    overflow-x: auto;
    scroll-padding-left: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .care-card {
    flex: 0 0 min(76vw, 292px);
    min-height: 286px;
    scroll-snap-align: start;
  }

  .care-areas-cta {
    margin-top: 34px;
  }

  .care-organic-shape-top {
    top: -178px;
    right: -180px;
    width: 390px;
    height: 250px;
  }

  .care-organic-shape-bottom {
    bottom: -245px;
    left: -20%;
    width: 145%;
    height: 330px;
  }

  .care-dialog {
    padding: 46px 25px 30px;
  }

  .care-dialog-actions .button,
  .care-dialog-secondary {
    width: 100%;
  }
}

/* Assistente flutuante de agendamento */
.booking-chat {
  position: fixed;
  right: 24px;
  bottom: 98px;
  z-index: 140;
  display: flex;
  flex-direction: column;
  width: min(390px, calc(100vw - 32px));
  max-height: min(620px, calc(100vh - 126px));
  overflow: hidden;
  border: 1px solid rgba(101, 42, 53, 0.14);
  border-radius: 24px 24px 6px 24px;
  visibility: hidden;
  opacity: 0;
  background: #fffdfa;
  box-shadow: 0 28px 72px rgba(54, 24, 31, 0.24), 0 8px 24px rgba(54, 24, 31, 0.12);
  pointer-events: none;
  transform: translateY(16px) scale(0.975);
  transform-origin: bottom right;
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    visibility 220ms ease;
}

.booking-chat.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.booking-chat-header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 18px 18px 17px;
  color: #fffaf6;
  background:
    radial-gradient(circle at 85% 0%, rgba(216, 151, 133, 0.28), transparent 44%),
    linear-gradient(130deg, #4b2029, #672b39);
}

.booking-chat-avatar {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 250, 246, 0.42);
  border-radius: 50%;
  color: #fffaf6;
  background: rgba(255, 255, 255, 0.1);
  font-family: var(--serif);
  font-size: 0.92rem;
  letter-spacing: 0.06em;
}

.booking-chat-identity {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.booking-chat-identity strong {
  overflow: hidden;
  font-size: 0.81rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.booking-chat-identity small {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 250, 246, 0.72);
  font-size: 0.67rem;
}

.booking-chat-identity i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #79d49c;
  box-shadow: 0 0 0 3px rgba(121, 212, 156, 0.15);
}

.booking-chat-header > button {
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #fffaf6;
  background: transparent;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.6rem;
  line-height: 1;
  transition: background 180ms ease;
}

.booking-chat-header > button:hover,
.booking-chat-header > button:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.booking-chat-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 9px;
  min-height: 0;
  padding: 18px;
  overflow-y: auto;
  background:
    linear-gradient(rgba(255, 253, 250, 0.94), rgba(255, 253, 250, 0.94)),
    radial-gradient(circle at 10% 10%, var(--sand) 0 2px, transparent 2.5px);
  background-size: auto, 22px 22px;
  overscroll-behavior: contain;
}

.booking-chat-time {
  margin: 0 0 4px;
  color: #9b8882;
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.booking-message {
  width: fit-content;
  max-width: 88%;
  padding: 11px 13px;
  color: #4f4040;
  font-size: 0.76rem;
  line-height: 1.5;
}

.booking-message-assistant {
  border: 1px solid rgba(183, 120, 95, 0.13);
  border-radius: 4px 15px 15px 15px;
  background: #f8eee8;
}

.booking-clinic-options {
  display: grid;
  gap: 8px;
  margin-top: 7px;
}

.booking-clinic-options button {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 2px 10px;
  width: 100%;
  padding: 12px 13px;
  border: 1px solid rgba(101, 42, 53, 0.16);
  border-radius: 13px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.booking-clinic-options button:hover,
.booking-clinic-options button:focus-visible,
.booking-clinic-options button[aria-pressed="true"] {
  border-color: rgba(101, 42, 53, 0.48);
  background: #fffaf6;
  transform: translateY(-1px);
}

.booking-clinic-options strong {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.1;
}

.booking-clinic-options small {
  color: var(--taupe);
  font-size: 0.64rem;
}

.booking-clinic-options b {
  grid-column: 2;
  grid-row: 1 / 3;
  color: var(--copper);
  font-weight: 500;
}

.booking-result {
  display: grid;
  gap: 9px;
  margin-top: 5px;
  padding-top: 13px;
  border-top: 1px solid rgba(101, 42, 53, 0.12);
}

.booking-result[hidden] {
  display: none;
}

.booking-message-user {
  justify-self: end;
  border-radius: 15px 4px 15px 15px;
  color: #fffaf6;
  background: var(--wine);
}

.booking-result-meta {
  display: block;
  margin-top: 7px;
  color: #7b635e;
  font-size: 0.68rem;
}

.booking-whatsapp-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  margin-top: 4px;
  padding: 10px 15px;
  border-radius: 12px;
  color: #fff;
  background: #217a4b;
  box-shadow: 0 9px 22px rgba(33, 122, 75, 0.2);
  font-size: 0.69rem;
  font-weight: 750;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.booking-whatsapp-link:hover,
.booking-whatsapp-link:focus-visible {
  background: #17633c;
  transform: translateY(-1px);
}

.booking-whatsapp-link span {
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  flex: 0 0 22px;
}

.booking-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 141;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 8px 20px 8px 9px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: #217a4b;
  box-shadow: 0 14px 32px rgba(33, 122, 75, 0.28), 0 4px 12px rgba(45, 25, 29, 0.16);
  cursor: pointer;
  font: inherit;
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.booking-fab:hover,
.booking-fab:focus-visible {
  background: #17633c;
  box-shadow: 0 16px 36px rgba(33, 122, 75, 0.34), 0 5px 14px rgba(45, 25, 29, 0.18);
  transform: translateY(-2px);
}

.booking-fab-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.booking-whatsapp-icon {
  display: block;
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.booking-fab-label {
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 620px) {
  .booking-chat {
    right: 12px;
    bottom: 82px;
    width: calc(100vw - 24px);
    max-height: calc(100dvh - 104px);
    border-radius: 20px 20px 5px 20px;
  }

  .booking-chat-body {
    padding: 15px;
  }

  .booking-fab {
    right: 14px;
    bottom: 14px;
    width: 56px;
    height: 56px;
    min-height: 56px;
    padding: 8px;
    justify-content: center;
  }

  .booking-fab-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  .booking-chat,
  .booking-fab,
  .booking-clinic-options button,
  .booking-whatsapp-link {
    scroll-behavior: auto;
    transition: none;
  }
}

/* Sistema progressivo de movimento e revelação */
.motion-enabled .reveal-item {
  --reveal-delay: 0ms;
  --reveal-x: 0px;
  --reveal-y: 28px;
  --reveal-scale: 1;
  opacity: 0;
  filter: blur(6px);
  translate: var(--reveal-x) var(--reveal-y);
  scale: var(--reveal-scale);
  will-change: opacity, filter, translate, scale;
}

.motion-enabled .reveal-item.reveal-left {
  --reveal-x: -38px;
  --reveal-y: 0px;
}

.motion-enabled .reveal-item.reveal-right {
  --reveal-x: 38px;
  --reveal-y: 0px;
}

.motion-enabled .reveal-item.reveal-scale {
  --reveal-y: 18px;
  --reveal-scale: 0.965;
}

.motion-enabled .reveal-item.reveal-fade {
  --reveal-y: 0px;
  filter: blur(3px);
}

.motion-enabled .reveal-item.is-visible {
  animation: reveal-element 820ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay) both;
}

.motion-enabled .reveal-item.reveal-complete {
  will-change: auto;
}

@keyframes reveal-element {
  from {
    opacity: 0;
    filter: blur(6px);
    translate: var(--reveal-x) var(--reveal-y);
    scale: var(--reveal-scale);
  }

  to {
    opacity: 1;
    filter: blur(0);
    translate: 0 0;
    scale: 1;
  }
}

@media (max-width: 700px) {
  .motion-enabled .reveal-item {
    --reveal-y: 20px;
  }

  .motion-enabled .reveal-item.reveal-left,
  .motion-enabled .reveal-item.reveal-right {
    --reveal-x: 0px;
    --reveal-y: 22px;
  }

  .motion-enabled .reveal-item.reveal-scale {
    --reveal-y: 14px;
    --reveal-scale: 0.98;
  }
}

@media (prefers-reduced-motion: reduce) {
  .motion-enabled .reveal-item,
  .motion-enabled .reveal-item.is-visible {
    opacity: 1;
    filter: none;
    translate: none;
    scale: 1;
    animation: none;
    transition: none;
  }
}

/* Página interna — Quem sou */
.site-nav a[aria-current="page"] {
  color: var(--wine);
}

.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.page-about {
  background: #fffdfb;
}

.internal-hero {
  position: relative;
  min-height: clamp(660px, 62vw, 800px);
  padding: calc(var(--header-height) + clamp(48px, 5vw, 72px)) 0 clamp(68px, 6vw, 94px);
  overflow: hidden;
  color: var(--ink);
  isolation: isolate;
  background:
    radial-gradient(circle at 13% 22%, rgba(230, 194, 182, 0.32), transparent 26%),
    radial-gradient(circle at 81% 18%, rgba(184, 106, 125, 0.12), transparent 29%),
    linear-gradient(135deg, #fffaf6 0%, #f5e9e3 58%, #fffdfb 100%);
}

.internal-hero::before {
  position: absolute;
  inset: var(--header-height) auto auto 0;
  z-index: -1;
  width: 44%;
  height: 1px;
  background: linear-gradient(90deg, rgba(169, 79, 104, 0.42), transparent);
  content: "";
}

.internal-hero-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(183, 120, 95, 0.22);
  border-radius: 50%;
  pointer-events: none;
}

.internal-hero-orbit-one {
  top: 16%;
  right: -120px;
  width: 360px;
  height: 360px;
}

.internal-hero-orbit-two {
  bottom: -250px;
  left: -180px;
  width: 520px;
  height: 520px;
}

.internal-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.68fr);
  align-items: center;
  gap: clamp(48px, 6vw, 92px);
}

.internal-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

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

.internal-hero-copy h1 {
  max-width: 740px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.35rem, 4.45vw, 5.35rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.internal-hero-copy h1 em {
  display: block;
  margin-top: 8px;
  color: #ad4f6b;
  font-weight: 400;
}

.internal-hero-lead {
  max-width: 600px;
  margin: clamp(32px, 4vw, 50px) 0 0;
  color: #6e5b58;
  font-size: clamp(1rem, 1.22vw, 1.2rem);
  line-height: 1.75;
}

.internal-hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 34px;
}

.internal-hero-actions .text-link {
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

.internal-hero-signature {
  display: grid;
  gap: 3px;
  margin: 54px 0 0;
  padding-left: 22px;
  border-left: 1px solid var(--copper-soft);
}

.internal-hero-signature strong {
  font-family: var(--serif);
  font-size: 1.16rem;
  font-weight: 500;
}

.internal-hero-signature span {
  color: var(--copper);
  font-size: 0.64rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.internal-hero-visual {
  position: relative;
  width: min(100%, 500px);
  margin: 0;
  justify-self: end;
}

.internal-hero-visual::before {
  position: absolute;
  top: -26px;
  right: -28px;
  z-index: -1;
  width: 72%;
  height: 56%;
  border: 1px solid rgba(169, 79, 104, 0.28);
  border-radius: 0 90px 0 0;
  content: "";
}

.internal-photo-frame {
  position: absolute;
  bottom: -20px;
  left: -20px;
  z-index: -1;
  width: 48%;
  height: 45%;
  background: linear-gradient(145deg, #8b334d, #5c2432);
}

.internal-hero-visual > img {
  display: block;
  width: 100%;
  height: clamp(520px, 44vw, 610px);
  object-fit: cover;
  object-position: center 28%;
  border-radius: 0 76px 0 76px;
  box-shadow: 0 32px 74px rgba(77, 42, 46, 0.22);
}

.credentials-band {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(183, 120, 95, 0.18);
  border-bottom: 1px solid rgba(183, 120, 95, 0.18);
  background: #fffdfb;
}

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

.credentials-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: 0;
  min-height: 132px;
  padding: 28px clamp(24px, 3vw, 46px);
  border-right: 1px solid rgba(183, 120, 95, 0.18);
}

.credentials-item:last-child {
  border-right: 0;
}

.credentials-item > div {
  display: grid;
  gap: 5px;
}

.credentials-item p {
  margin: 0;
  color: var(--copper);
  font-size: 0.61rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.credentials-item strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1rem, 1.25vw, 1.28rem);
  font-weight: 500;
  line-height: 1.25;
}

.about-story {
  display: grid;
  grid-template-columns: minmax(290px, 0.65fr) minmax(0, 1.35fr);
  align-items: start;
  gap: clamp(70px, 10vw, 160px);
  padding-block: clamp(100px, 10vw, 160px);
}

.story-intro {
  position: sticky;
  top: calc(var(--header-height) + 42px);
}

.story-intro h2 {
  max-width: 480px;
  margin: 22px 0 0;
  font-family: var(--serif);
  font-size: clamp(2.9rem, 4.3vw, 4.7rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.story-intro > p:not(.eyebrow) {
  max-width: 420px;
  margin: 30px 0 0;
  color: var(--taupe);
  line-height: 1.75;
}

.story-intro-line {
  display: block;
  width: 74px;
  height: 1px;
  margin-top: 36px;
  background: var(--copper-soft);
}

.story-content {
  display: grid;
}

.story-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  padding: 0 0 clamp(52px, 6vw, 76px);
  border-top: 1px solid rgba(183, 120, 95, 0.22);
}

.story-block + .story-block {
  padding-top: clamp(50px, 6vw, 72px);
}

.story-kicker {
  margin: 0 0 16px;
  color: var(--copper);
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.story-block h3 {
  max-width: 650px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3.25rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.04;
}

.story-block p:not(.story-kicker) {
  max-width: 720px;
  margin: 25px 0 0;
  color: #695653;
  font-size: 0.93rem;
  line-height: 1.78;
}

.philosophy-section {
  position: relative;
  padding-block: clamp(90px, 9vw, 140px);
  overflow: hidden;
  color: #fffaf5;
  background:
    radial-gradient(circle at 85% 15%, rgba(217, 145, 126, 0.2), transparent 28%),
    linear-gradient(135deg, #35171e 0%, #5b2633 62%, #3d1a22 100%);
}

.philosophy-section::before {
  position: absolute;
  top: -220px;
  left: -170px;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(255, 248, 241, 0.12);
  border-radius: 50%;
  content: "";
}

.philosophy-card {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
}

.philosophy-mark {
  height: 54px;
  color: rgba(225, 162, 143, 0.55);
  font-family: var(--serif);
  font-size: 6rem;
  line-height: 0.8;
}

.philosophy-card .eyebrow {
  justify-content: center;
  margin-top: 16px;
  color: #dda18f;
}

.philosophy-card h2 {
  max-width: 1040px;
  margin: 26px auto 0;
  color: #fffaf5;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 5.7rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
}

.philosophy-card > p:not(.eyebrow) {
  max-width: 670px;
  margin: 30px auto 0;
  color: rgba(255, 248, 241, 0.7);
  line-height: 1.7;
}

.care-areas-internal {
  padding-top: clamp(95px, 8vw, 130px);
}

.about-page-cta {
  position: relative;
  padding-block: clamp(92px, 9vw, 140px);
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 80%, rgba(227, 188, 176, 0.32), transparent 24%),
    linear-gradient(135deg, #fffdfb, #f5e8e2);
}

.about-page-cta::after {
  position: absolute;
  right: -90px;
  bottom: -190px;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(169, 79, 104, 0.18);
  border-radius: 50%;
  content: "";
}

.about-page-cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
}

.about-page-cta-inner .eyebrow {
  justify-content: center;
}

.about-page-cta-inner h2 {
  max-width: 850px;
  margin: 24px 0 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 5.2rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.about-page-cta-inner > p:not(.eyebrow) {
  max-width: 600px;
  margin: 26px 0 0;
  color: var(--taupe);
  line-height: 1.7;
}

.about-page-cta-inner .button {
  margin-top: 32px;
}

@media (max-width: 1080px) {
  .internal-hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
    gap: 46px;
  }

  .internal-hero-copy h1 {
    font-size: clamp(3.15rem, 5vw, 4.55rem);
  }

  .internal-hero-visual > img {
    height: 540px;
  }

  .about-story {
    grid-template-columns: minmax(250px, 0.55fr) minmax(0, 1.25fr);
    gap: 70px;
  }
}

@media (max-width: 960px) {
  .internal-hero {
    padding-top: calc(var(--header-height) + 52px);
  }

  .internal-hero-grid {
    grid-template-columns: 1fr;
  }

  .internal-hero-copy {
    max-width: 720px;
  }

  .internal-hero-copy h1 {
    font-size: clamp(3.15rem, 7.7vw, 4.65rem);
  }

  .internal-hero-visual {
    width: min(78vw, 520px);
    justify-self: center;
  }

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

  .credentials-item {
    min-height: 108px;
    border-right: 0;
    border-bottom: 1px solid rgba(183, 120, 95, 0.18);
  }

  .credentials-item:last-child {
    border-bottom: 0;
  }

  .about-story {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .story-intro {
    position: static;
  }

  .story-intro h2 {
    max-width: 670px;
  }
}

@media (max-width: 620px) {
  .internal-hero {
    min-height: auto;
    padding: calc(var(--header-height) + 42px) 0 82px;
  }

  .internal-hero-grid {
    gap: 62px;
  }

  .internal-hero-copy h1 {
    font-size: clamp(2.75rem, 11.8vw, 3.85rem);
    line-height: 0.95;
  }

  .internal-hero-lead {
    font-size: 0.95rem;
  }

  .internal-hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .internal-hero-actions .button,
  .internal-hero-actions .text-link {
    width: 100%;
    justify-content: center;
  }

  .internal-hero-signature {
    margin-top: 40px;
  }

  .internal-hero-visual {
    width: calc(100% - 18px);
  }

  .internal-hero-visual > img {
    height: 530px;
    border-radius: 0 46px 0 46px;
  }

  .credentials-item {
    padding-inline: 6px;
  }

  .about-story {
    padding-block: 88px;
  }

  .story-intro h2 {
    font-size: clamp(2.7rem, 12vw, 4rem);
  }

  .story-block {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .story-block h3 {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .story-block p:not(.story-kicker) {
    font-size: 0.88rem;
  }

  .philosophy-card h2 {
    font-size: clamp(2.55rem, 11vw, 4rem);
  }

  .about-page-cta-inner h2 {
    font-size: clamp(2.75rem, 12vw, 4rem);
  }

  .about-page-cta-inner .button {
    width: 100%;
  }
}

/* Garantias de cascata para os componentes editoriais inseridos na Home. */
.content-hub .priority-materials-heading h2 {
  max-width: 760px;
  margin: 10px 0 0;
  color: #fffaf5;
  font-size: clamp(2.45rem, 4.2vw, 4.45rem);
  line-height: .98;
}

.content-hub .priority-material-copy h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 3vw, 3.25rem);
  line-height: 1;
}

.content-hub .home-articles-heading h2 {
  margin: 7px 0 0;
  color: var(--ink);
  font-size: clamp(2.2rem, 3.5vw, 3.5rem);
  line-height: 1;
}

.material-single .material-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(270px, 390px);
  gap: clamp(48px, 7vw, 108px);
}

.material-single,
.material-single .material-article,
.material-single .material-hero-copy {
  min-width: 0;
  max-width: 100%;
}

.material-single {
  overflow-x: clip;
}

.material-single .material-hero h1,
.material-single .material-hero-lead {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.material-single .material-hero h1 {
  font-size: clamp(2.85rem, 4.45vw, 4.85rem);
}

.material-single .material-hero-cover {
  width: 100%;
  max-width: 390px;
  margin: 0;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.material-single .material-hero-cover img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 610px;
  object-fit: contain;
  background: #fff;
  box-shadow: 0 30px 65px rgba(75, 39, 45, .2);
}

@media (max-width: 980px) {
  .material-single .material-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(250px, .68fr);
    gap: 42px;
  }
}

@media (max-width: 720px) {
  .material-single .material-hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .material-single .material-hero-cover {
    max-width: 310px;
    justify-self: center;
  }

  .material-single .material-hero-cover img {
    height: auto;
    max-height: none;
  }

  .material-single .material-hero-copy,
  .material-single .material-primary-download {
    width: 100%;
  }
}

/* E-books integrados ao fluxo editorial claro: compactos, prioritarios e responsivos. */
.priority-materials,
.content-hub .priority-materials {
  position: relative;
  z-index: 4;
  padding: clamp(54px, 6vw, 82px) 0 clamp(38px, 4vw, 58px);
  overflow: visible;
  color: var(--ink);
  background: transparent;
}

.content-archive > .priority-materials {
  background: linear-gradient(180deg, #fffdfa 0%, #fcf7f2 100%);
}

.priority-materials::after {
  display: none;
}

.priority-materials-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 470px);
  align-items: end;
  gap: clamp(28px, 5vw, 76px);
  margin-bottom: clamp(26px, 3vw, 38px);
  padding-bottom: clamp(22px, 2.5vw, 30px);
  border-bottom: 1px solid rgba(183, 120, 95, .22);
}

.priority-materials-heading .eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--copper);
}

.priority-materials-label {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 5px 10px;
  border-radius: 999px;
  color: #fffaf5;
  background: var(--wine);
  font-size: .6rem;
  letter-spacing: .1em;
}

.priority-materials-heading .eyebrow::before {
  display: none;
}

.priority-materials-heading h2,
.content-hub .priority-materials-heading h2 {
  max-width: 720px;
  margin: 10px 0 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2.25rem, 3.4vw, 3.75rem);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .98;
}

.priority-materials-heading > p,
.priority-materials-heading-side > p {
  max-width: 470px;
  margin: 0;
  color: var(--taupe);
  font-size: .9rem;
  line-height: 1.72;
}

.priority-materials-heading-side { display: grid; justify-items: start; gap: 15px; }
.priority-materials-all { display: inline-flex; align-items: center; gap: 12px; padding-bottom: 6px; border-bottom: 1px solid rgba(81,38,45,.28); color: var(--wine); font-size: .7rem; font-weight: 750; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.priority-materials-all span { transition: transform 180ms ease; }
.priority-materials-all:hover span, .priority-materials-all:focus-visible span { transform: translateX(4px); }

.priority-materials-grid,
.priority-materials-grid--multiple,
.priority-materials-grid--single {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.1vw, 28px);
  max-width: none;
}

.priority-material-card {
  min-width: 0;
}

.priority-material-card > a {
  display: flex;
  height: 100%;
  min-height: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(183, 120, 95, .18);
  border-radius: 5px 24px 5px 24px;
  color: var(--ink);
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 16px 38px rgba(75, 39, 45, .08);
  text-decoration: none;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.priority-material-card > a:hover,
.priority-material-card > a:focus-visible {
  border-color: rgba(116, 50, 65, .34);
  box-shadow: 0 25px 52px rgba(75, 39, 45, .15);
  transform: translateY(-6px);
}

.priority-material-card > a:focus-visible {
  outline: 3px solid rgba(183, 120, 95, .62);
  outline-offset: 4px;
}

.priority-material-cover {
  display: grid;
  height: clamp(220px, 19vw, 286px);
  min-width: 0;
  margin: 0;
  padding: clamp(18px, 2vw, 26px);
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, .86), transparent 43%),
    linear-gradient(145deg, #f4e7e1, #ead3cc);
}

.priority-material-cover img {
  display: block;
  width: auto;
  max-width: 72%;
  height: 100%;
  max-height: none;
  aspect-ratio: auto;
  object-fit: contain;
  background: #fff;
  box-shadow: 0 14px 30px rgba(58, 25, 31, .18);
  transition: transform 320ms ease;
}

.priority-material-card > a:hover .priority-material-cover img,
.priority-material-card > a:focus-visible .priority-material-cover img {
  transform: translateY(-3px) scale(1.018);
}

.priority-material-copy {
  display: flex;
  min-width: 0;
  flex: 1 1 auto;
  flex-direction: column;
  padding: clamp(22px, 2.3vw, 30px);
}

.priority-material-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-bottom: 14px;
  color: var(--copper);
  font-size: .64rem;
  font-weight: 750;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.priority-material-badge {
  padding: 6px 9px;
  border: 1px solid rgba(116, 50, 65, .14);
  border-radius: 999px;
  color: var(--wine);
  background: #f8ebe7;
}

.priority-material-meta .priority-material-badge + span::before {
  margin-right: 12px;
  content: '•';
}

.priority-material-copy h3,
.content-hub .priority-material-copy h3 {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.1vw, 2.15rem);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1.02;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.priority-material-copy > p {
  display: -webkit-box;
  margin: 14px 0 20px;
  overflow: hidden;
  color: var(--taupe);
  font-size: .84rem;
  line-height: 1.62;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.priority-material-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(183, 120, 95, .2);
  color: var(--wine);
  font-size: .66rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.priority-material-action i {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  place-items: center;
  border: 1px solid rgba(91, 35, 47, .22);
  border-radius: 50%;
  font-size: .95rem;
  font-style: normal;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.priority-material-card > a:hover .priority-material-action i,
.priority-material-card > a:focus-visible .priority-material-action i {
  color: #fff;
  background: var(--wine);
  transform: translateX(3px);
}

.content-hub .priority-materials + .content-browser {
  margin-top: 0;
  padding-top: clamp(34px, 4vw, 54px);
}

.content-hub .priority-materials {
  padding-top: clamp(28px, 3vw, 44px);
}

.content-archive > .priority-materials + .content-archive-listing {
  padding-top: clamp(44px, 5vw, 72px);
  border-top: 1px solid rgba(183, 120, 95, .14);
}

@media (max-width: 980px) {
  .priority-materials-grid,
  .priority-materials-grid--multiple,
  .priority-materials-grid--single {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .priority-materials-heading {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }

  .priority-materials-heading > p,
  .priority-materials-heading-side > p {
    max-width: 650px;
  }

  .priority-material-cover {
    height: 255px;
  }
}

@media (max-width: 640px) {
  .priority-materials,
  .content-hub .priority-materials {
    padding: 46px 0 28px;
  }

  .priority-materials-heading {
    margin-bottom: 22px;
  }

  .priority-materials-heading h2,
  .content-hub .priority-materials-heading h2 {
    font-size: clamp(2.05rem, 10vw, 2.8rem);
  }

  .priority-materials-grid,
  .priority-materials-grid--multiple,
  .priority-materials-grid--single {
    grid-template-columns: minmax(0, 1fr);
  }

  .priority-material-card > a {
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr);
    min-height: 252px;
  }

  .priority-material-cover {
    width: 100%;
    height: 100%;
    min-height: 252px;
    padding: 16px 12px;
  }

  .priority-material-cover img {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 205px;
  }

  .priority-material-copy {
    padding: 21px 18px;
  }

  .priority-material-copy h3,
  .content-hub .priority-material-copy h3 {
    font-size: clamp(1.45rem, 7.2vw, 1.9rem);
  }

  .priority-material-copy > p {
    margin: 11px 0 15px;
    font-size: .77rem;
    -webkit-line-clamp: 3;
  }

  .priority-material-meta {
    margin-bottom: 10px;
  }

  .priority-material-meta span + span {
    display: inline;
  }

  .priority-material-action {
    font-size: .59rem;
  }

  .priority-material-action i {
    display: none;
  }
}

@media (max-width: 400px) {
  .priority-material-card > a {
    grid-template-columns: 102px minmax(0, 1fr);
  }

  .priority-material-copy {
    padding-inline: 15px;
  }

  .priority-material-meta .priority-material-badge + span {
    display: none;
  }
}
