:root {
  --paper: #fbf6ee;
  --paper-soft: #f4eadc;
  --milk: #fffdf8;
  --sand: #d8c9b7;
  --sage: #8a9a7b;
  --sage-deep: #55644d;
  --wine: #4b1923;
  --wine-soft: #774751;
  --rose: #b76d68;
  --charcoal: #282727;
  --ink: #2c2a27;
  --muted: #756d65;
  --line: rgba(44, 42, 39, 0.14);
  --line-strong: rgba(44, 42, 39, 0.24);
  --shadow: 0 28px 70px rgba(75, 25, 35, 0.13);
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Onest", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #fffaf2 0%, var(--paper) 42%, #f6eddf 100%);
  font-family: var(--sans);
  line-height: 1.5;
  overflow-x: hidden;
  text-rendering: geometricPrecision;
}

main {
  overflow-x: clip;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(183, 109, 104, 0.09) 0 14%, transparent 14% 100%),
    linear-gradient(101deg, transparent 0 69%, rgba(138, 154, 123, 0.1) 69% 77%, transparent 77% 100%);
}

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

a {
  color: inherit;
}

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

h1,
h2,
h3,
.section-heading strong {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 18px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--milk);
  background: var(--wine);
  transform: translateY(-150%);
}

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

.site-header {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.nav-shell {
  width: min(900px, calc(100% - 34px));
  min-height: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr 70px 1fr 1fr;
  align-items: center;
  gap: 8px;
  padding: 7px;
  background: rgba(255, 253, 248, 0.86);
  border: 1px solid rgba(44, 42, 39, 0.12);
  border-radius: 999px;
  box-shadow: 0 16px 42px rgba(44, 42, 39, 0.08);
  backdrop-filter: blur(16px);
  pointer-events: auto;
  transition: background 180ms ease, box-shadow 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.site-header.is-scrolled .nav-shell {
  background: rgba(255, 253, 248, 0.94);
  border-color: rgba(44, 42, 39, 0.18);
  box-shadow: 0 18px 48px rgba(44, 42, 39, 0.12);
}

.nav-shell a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.nav-shell a:hover {
  color: var(--wine);
  background: rgba(75, 25, 35, 0.07);
  transform: translateY(-1px);
}

.nav-shell .nav-mark {
  width: 54px;
  min-height: 54px;
  justify-self: center;
  padding: 0;
  color: var(--milk);
  background: var(--wine);
  box-shadow: 0 10px 24px rgba(75, 25, 35, 0.23);
}

.nav-mark span {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.hero-section,
.pain-section,
.habits-section,
.about-section,
.help-section,
.how-section,
.living-section,
.process-section,
.final-section,
.site-footer {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

#inicio,
#habitos,
#sobre,
#funciona,
#vivendo,
#processo,
#contato {
  scroll-margin-top: 96px;
}

.hero-section {
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: 70px;
  padding: 138px 0 76px;
}

.eyebrow {
  color: var(--wine-soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 690px;
  font-size: 72px;
  line-height: 0.98;
}

h1 span {
  color: var(--wine-soft);
  font-style: italic;
}

.hero-lead {
  max-width: 610px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

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

.primary-button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  color: var(--milk);
  background: var(--wine);
  border: 1px solid var(--wine);
  border-radius: 13px;
  box-shadow: 0 16px 32px rgba(75, 25, 35, 0.2);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.primary-button:hover {
  background: #5d2230;
  box-shadow: 0 20px 40px rgba(75, 25, 35, 0.25);
  transform: translateY(-2px);
}

.primary-button:active {
  transform: scale(0.985);
}

.primary-button.light {
  color: var(--wine);
  background: var(--milk);
  border-color: var(--milk);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

.primary-button.light:hover {
  background: #f6eee4;
}

.quiet-note {
  max-width: 190px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero-media {
  position: relative;
  justify-self: end;
  width: min(430px, 100%);
}

.hero-photo {
  position: relative;
  overflow: hidden;
  background: var(--sand);
  border: 1px solid rgba(44, 42, 39, 0.12);
  border-radius: 160px 160px 16px 16px;
  box-shadow: var(--shadow);
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 68%, rgba(75, 25, 35, 0.12));
  pointer-events: none;
}

.hero-photo img {
  aspect-ratio: 0.76;
  height: auto;
  object-fit: cover;
  object-position: center top;
}

.rotating-seal {
  position: absolute;
  right: -36px;
  bottom: 42px;
  width: 132px;
  height: 132px;
  display: grid;
  place-items: center;
  color: var(--wine);
  background: rgba(255, 253, 248, 0.92);
  border: 1px solid rgba(75, 25, 35, 0.2);
  border-radius: 50%;
  box-shadow: 0 18px 42px rgba(44, 42, 39, 0.14);
  animation: rotateSeal 16s linear infinite;
}

.rotating-seal::after {
  content: "R";
  position: absolute;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--milk);
  background: var(--wine);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 26px;
}

.seal-word {
  position: absolute;
  left: 50%;
  top: 50%;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transform-origin: center;
}

.seal-top {
  transform: translate(-50%, -48px);
}

.seal-right {
  transform: translate(24px, -50%) rotate(90deg);
}

.seal-bottom {
  transform: translate(-50%, 41px) rotate(180deg);
}

.seal-left {
  transform: translate(-64px, -50%) rotate(-90deg);
}

.pain-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 24px 0 86px;
}

.pain-card {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid #e2d8cd;
  border-radius: 12px;
  box-shadow: 0 16px 36px rgba(44, 42, 39, 0.04);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.pain-card:hover {
  border-color: rgba(75, 25, 35, 0.24);
  box-shadow: 0 22px 46px rgba(75, 25, 35, 0.09);
  transform: translateY(-4px);
}

.pain-card span {
  color: var(--rose);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.pain-card p {
  max-width: 270px;
  color: #514b46;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.35;
}

.color-stripe {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  width: 100%;
  height: 14px;
  overflow: hidden;
}

.color-stripe span:nth-child(1) { background: var(--wine-soft); }
.color-stripe span:nth-child(2) { background: var(--wine); }
.color-stripe span:nth-child(3) { background: var(--sand); }
.color-stripe span:nth-child(4) { background: var(--paper-soft); }
.color-stripe span:nth-child(5) { background: var(--charcoal); }
.color-stripe span:nth-child(6) { background: var(--sage); }

.numbered-section {
  padding: 112px 0;
}

.habits-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(330px, 1fr);
  gap: 62px;
  align-items: center;
  padding: 112px 0 92px;
  border-bottom: 1px solid var(--line);
}

.habits-copy .eyebrow {
  margin-bottom: 16px;
}

.habits-copy h2 {
  max-width: 740px;
  font-size: 58px;
  line-height: 1.02;
}

.habits-copy p:not(.eyebrow) {
  max-width: 660px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.habit-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

.habit-cards article {
  min-height: 182px;
  padding: 28px;
  background: rgba(255, 253, 248, 0.76);
}

.habit-cards p {
  color: #514b46;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.45;
}

.about-section,
.how-section {
  display: grid;
  align-items: center;
  gap: 74px;
}

.about-section {
  grid-template-columns: minmax(300px, 0.52fr) minmax(0, 1fr);
}

.how-section {
  grid-template-columns: minmax(0, 0.82fr) minmax(330px, 1fr);
}

.about-photo {
  overflow: hidden;
  background: var(--sand);
  border: 1px solid rgba(44, 42, 39, 0.14);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.about-photo img {
  aspect-ratio: 0.76;
  height: auto;
  object-fit: cover;
  object-position: center top;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  gap: 18px;
  margin-bottom: 24px;
}

.section-heading.centered {
  max-width: 760px;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading strong {
  color: var(--wine-soft);
  font-size: 96px;
  line-height: 0.78;
}

.section-heading p {
  padding-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-content h2,
.section-intro h2,
.final-section h2,
.process-panel h2 {
  max-width: 780px;
  font-size: 58px;
  line-height: 1.02;
}

.section-content > p,
.process-panel > p {
  max-width: 720px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.credential-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

.credential-grid article {
  min-height: 154px;
  padding: 24px;
  background: rgba(255, 253, 248, 0.74);
}

.credential-grid span,
.habit-cards span,
.how-cards span,
.process-grid span,
.contact-box strong {
  display: block;
  margin-bottom: 12px;
  color: var(--rose);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.credential-grid h3 {
  color: var(--wine);
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.25;
}

.help-section {
  padding: 106px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-intro {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-intro .eyebrow {
  margin-bottom: 16px;
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

.help-grid article {
  min-height: 176px;
  padding: 26px;
  background: rgba(255, 253, 248, 0.76);
}

.help-grid span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  color: var(--milk);
  background: var(--sage-deep);
  border-radius: 50%;
  font-weight: 900;
}

.help-grid p {
  color: #514b46;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.42;
}

.how-cards {
  display: grid;
  gap: 18px;
}

.how-cards article {
  min-height: 170px;
  padding: 28px;
  background: rgba(255, 253, 248, 0.78);
  border: 1px solid #e2d8cd;
  border-radius: 12px;
  box-shadow: 0 12px 34px rgba(44, 42, 39, 0.04);
}

.how-cards h3 {
  margin-bottom: 12px;
  color: var(--wine);
  font-size: 30px;
  line-height: 1.04;
}

.how-cards p {
  color: var(--muted);
  font-size: 16px;
}

.living-section {
  padding-top: 80px;
}

.living-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.living-track article {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  background: rgba(255, 253, 248, 0.74);
  border: 1px solid #e2d8cd;
  border-radius: 12px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.living-track article:hover {
  border-color: rgba(75, 25, 35, 0.25);
  box-shadow: 0 22px 46px rgba(44, 42, 39, 0.08);
  transform: translateY(-4px);
}

.living-track h3 {
  max-width: 290px;
  color: var(--wine);
  font-size: 27px;
  line-height: 1.08;
}

.living-track p {
  margin-top: 26px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.process-section {
  padding-top: 78px;
}

.process-panel {
  padding: 58px;
  color: var(--milk);
  background:
    linear-gradient(140deg, rgba(75, 25, 35, 0.98), rgba(119, 71, 81, 0.98) 48%, rgba(85, 100, 77, 0.96)),
    var(--wine);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.process-panel .section-heading strong,
.process-panel .section-heading p,
.process-panel h2 {
  color: var(--milk);
}

.process-panel > p {
  color: rgba(255, 253, 248, 0.76);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 42px 0 34px;
  background: rgba(255, 253, 248, 0.22);
  border: 1px solid rgba(255, 253, 248, 0.22);
  border-radius: 12px;
  overflow: hidden;
}

.process-grid article {
  min-height: 164px;
  padding: 24px;
  background: rgba(255, 253, 248, 0.09);
}

.process-grid span {
  color: #f0c9bd;
}

.process-grid p {
  color: rgba(255, 253, 248, 0.8);
  font-size: 15px;
  line-height: 1.55;
}

.final-section {
  display: block;
  padding: 40px 0 64px;
}

.final-section .eyebrow {
  margin-bottom: 16px;
}

.contact-box {
  padding: 28px;
  background: rgba(255, 253, 248, 0.78);
  border: 1px solid #e2d8cd;
  border-radius: 12px;
  box-shadow: 0 18px 44px rgba(44, 42, 39, 0.07);
}

.contact-box a {
  display: block;
  margin-bottom: 18px;
  color: var(--wine);
  font-size: 25px;
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.15;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.contact-box small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 38;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: var(--milk);
  background: var(--sage-deep);
  border: 1px solid rgba(255, 253, 248, 0.24);
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(44, 42, 39, 0.2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
}

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

.floating-whatsapp:hover {
  background: #617556;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 0 0 34px;
  color: var(--muted);
  font-size: 12px;
}

.site-footer strong {
  color: var(--ink);
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity 760ms ease, transform 760ms cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: var(--delay, 0ms);
}

.reveal-ready [data-reveal="left"] {
  transform: translate3d(-26px, 0, 0);
}

.reveal-ready [data-reveal="right"] {
  transform: translate3d(26px, 0, 0);
}

.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@keyframes rotateSeal {
  to {
    transform: rotate(360deg);
  }
}

@media (min-width: 1180px) {
  h1 {
    font-size: 78px;
  }
}

@media (max-width: 980px) {
  .nav-shell {
    grid-template-columns: 1fr 1fr 62px 1fr 1fr;
  }

  .nav-shell a {
    font-size: 10px;
  }

  .hero-section {
    grid-template-columns: 1fr;
    gap: 42px;
    min-height: auto;
    padding-top: 118px;
  }

  .hero-media {
    order: -1;
    justify-self: center;
    width: min(430px, 100%);
  }

  .hero-copy {
    text-align: center;
  }

  .hero-lead {
    margin-left: auto;
    margin-right: auto;
  }

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

  h1 {
    max-width: 760px;
    margin: 0 auto;
    font-size: 58px;
  }

  .pain-section,
  .help-grid,
  .living-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-section,
  .habits-section,
  .how-section,
  .final-section {
    grid-template-columns: 1fr;
  }

  .about-photo {
    width: min(430px, 100%);
  }

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

@media (max-width: 720px) {
  .site-header {
    top: 10px;
  }

  .nav-shell {
    width: calc(100% - 20px);
    min-height: 56px;
    display: flex;
    justify-content: space-between;
    padding: 6px;
  }

  .nav-shell a:not(.nav-mark):not(:last-child) {
    display: none;
  }

  .nav-shell a:last-child {
    flex: 1;
    min-width: 0;
    font-size: 10px;
  }

  .nav-shell .nav-mark {
    width: 48px;
    min-height: 48px;
    order: -1;
  }

  .hero-section,
  .pain-section,
  .habits-section,
  .about-section,
  .help-section,
  .how-section,
  .living-section,
  .process-section,
  .final-section,
  .site-footer {
    width: min(100% - 28px, 1120px);
  }

  .hero-section {
    padding: 92px 0 50px;
  }

  .hero-photo {
    border-radius: 118px 118px 12px 12px;
  }

  .rotating-seal {
    right: 8px;
    bottom: -24px;
    width: 106px;
    height: 106px;
  }

  .rotating-seal::after {
    width: 40px;
    height: 40px;
    font-size: 22px;
  }

  .rotating-seal span {
    font-size: 8px;
    letter-spacing: 0.12em;
  }

  body::before {
    background:
      linear-gradient(115deg, rgba(183, 109, 104, 0.07) 0 18%, transparent 18% 100%),
      linear-gradient(101deg, transparent 0 70%, rgba(138, 154, 123, 0.08) 70% 79%, transparent 79% 100%);
  }

  h1 {
    font-size: 45px;
    line-height: 1;
  }

  .hero-lead {
    margin-top: 22px;
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
    gap: 12px;
  }

  .primary-button {
    width: 100%;
    min-height: 56px;
    padding: 0 18px;
    font-size: 12px;
  }

  .quiet-note {
    max-width: none;
  }

  .pain-section {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-bottom: 56px;
  }

  .pain-card {
    min-height: 142px;
    padding: 22px;
  }

  .pain-card p {
    max-width: none;
    font-size: 18px;
  }

  .color-stripe {
    height: 10px;
  }

  .numbered-section,
  .habits-section,
  .help-section {
    padding: 74px 0;
  }

  .about-section,
  .habits-section,
  .how-section {
    gap: 34px;
  }

  .about-photo {
    width: 100%;
  }

  .section-heading {
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
  }

  .section-heading strong {
    font-size: 70px;
  }

  .section-heading p {
    padding-bottom: 0;
    padding-top: 8px;
  }

  .section-content h2,
  .habits-copy h2,
  .section-intro h2,
  .final-section h2,
  .process-panel h2 {
    font-size: 38px;
    line-height: 1.05;
  }

  .section-content > p,
  .habits-copy p:not(.eyebrow),
  .process-panel > p {
    margin-top: 18px;
    font-size: 16px;
  }

  .credential-grid,
  .habit-cards,
  .help-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .credential-grid article,
  .help-grid article {
    min-height: auto;
    padding: 22px;
  }

  .help-section {
    padding-top: 70px;
  }

  .section-intro {
    margin-bottom: 30px;
  }

  .how-cards article {
    min-height: auto;
    padding: 24px;
  }

  .how-cards h3 {
    font-size: 27px;
  }

  .living-section {
    width: 100%;
    padding-left: 14px;
    padding-right: 0;
  }

  .living-section .section-heading {
    width: calc(100% - 14px);
  }

  .living-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(276px, 82vw);
    grid-template-columns: none;
    gap: 12px;
    overflow-x: auto;
    padding: 0 14px 12px 0;
    scroll-padding-left: 14px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .living-track article {
    min-height: 282px;
    padding: 24px;
    scroll-snap-align: start;
  }

  .living-track h3 {
    font-size: 25px;
  }

  .process-section {
    padding-top: 52px;
  }

  .process-panel {
    padding: 30px 22px;
  }

  .process-grid {
    margin: 30px 0 28px;
  }

  .process-grid article {
    min-height: auto;
    padding: 20px;
  }

  .final-section {
    gap: 30px;
    padding-top: 12px;
  }

  .contact-box {
    padding: 24px;
  }

  .contact-box a {
    font-size: 23px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
  }

  .site-footer {
    display: grid;
    padding-bottom: 84px;
  }
}

@media (max-width: 390px) {
  h1 {
    font-size: 40px;
  }

  .section-content h2,
  .section-intro h2,
  .final-section h2,
  .process-panel h2 {
    font-size: 34px;
  }

  .nav-shell a:last-child {
    font-size: 9px;
  }
}

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

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

  .reveal-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
