/* MyWay Landing — tokens do Figma */
:root {
  --mw-cream: #fffbf0;
  --mw-cream-soft: #f9f5e8;
  --mw-divider: #ede8d9;
  --mw-text: #362d27;
  --mw-text-soft: #3e332b;
  --mw-sage: #7b8b78;
  --mw-sage-dark: #6e7e6b;
  --mw-blue: #587489;
  --mw-white: #ffffff;
  --mw-black: #2a2a2a;
  --mw-star: #f5c842;
  --mw-radius: 12px;
  --mw-pill: 50px;
  --mw-max: 1314px;
  --mw-font: 'Ubuntu', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--mw-font);
  background: var(--mw-cream);
  color: var(--mw-text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: clip;
}
body.mw-nav-lock { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.mw-container {
  width: min(100% - 48px, var(--mw-max));
  margin-inline: auto;
}

/* Buttons */
.mw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 32px;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  border-radius: var(--mw-pill);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1;
  box-sizing: border-box;
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
}
.mw-btn:hover { transform: translateY(-2px); }
.mw-btn--white { background: var(--mw-white); color: var(--mw-black); }
.mw-btn--dark { background: #1a1a1a; color: var(--mw-white); }
.mw-btn--header {
  background: #557084;
  color: var(--mw-cream);
  padding: 12px 26px;
  font-family: 'Catamaran', var(--mw-font);
  font-weight: 700;
}
.mw-btn--sage { background: var(--mw-sage); color: var(--mw-white); }
.mw-btn--blue { background: var(--mw-blue); color: var(--mw-white); }
.mw-btn--cream { background: var(--mw-cream); color: var(--mw-blue); }
.mw-btn--outline {
  background: transparent;
  border: 1px solid var(--mw-divider);
  color: var(--mw-text);
}

/* Header — sage green como no Figma */
.mw-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--mw-sage-dark);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.mw-header.is-scrolled {
  box-shadow: 0 4px 20px rgba(54,45,39,.18);
}
.mw-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 90px;
  gap: 24px;
  padding-block: 22px;
}
.mw-logo {
  display: flex;
  align-items: center;
  width: 130px;
  height: 40px;
  overflow: hidden;
  flex-shrink: 0;
}
.mw-logo img {
  width: 130px;
  height: 40px;
  object-fit: contain;
  mix-blend-mode: screen;
}
.mw-nav {
  display: flex;
  align-items: center;
  gap: 0;
  font-family: 'Catamaran', var(--mw-font);
}
.mw-nav a {
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: #fff;
  border-radius: 0;
  transition: opacity .2s;
}
.mw-nav a:hover, .mw-nav a.is-active { background: transparent; opacity: .8; color: #fff; }
.mw-nav__login { display: none; }
.mw-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}
.mw-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  transition: .25s;
}

/* Hero */
.mw-hero {
  position: relative;
  min-height: 618px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}
.mw-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  will-change: transform;
}
.mw-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.65) 0%, rgba(0,0,0,.3) 50%, rgba(0,0,0,.1) 100%);
}
.mw-hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  padding: 80px 0 60px;
  width: min(100% - 48px, 1194px);
  margin-inline: auto;
}
.mw-hero h1 {
  margin: 0;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1;
  letter-spacing: -1px;
  font-weight: 700;
  max-width: 462px;
}
.mw-hero__right { display: flex; flex-direction: column; gap: 22px; align-items: flex-start; }
.mw-hero__right p {
  margin: 0;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 400;
  max-width: 347px;
}
.mw-rating { display: flex; align-items: center; gap: 12px; }
.mw-rating__faces { display: flex; }
.mw-rating__faces img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #fff;
  object-fit: cover;
  margin-right: -10px;
}
.mw-rating__faces img:last-child { margin-right: 0; }
.mw-rating__meta { display: flex; flex-direction: column; gap: 2px; }
.mw-rating__stars { color: var(--mw-star); font-size: 18px; letter-spacing: 2px; line-height: 1; }
.mw-rating__label { font-size: 14px; font-weight: 300; letter-spacing: .5px; }

/* Solutions cards */
.mw-solutions,
.mw-about,
.mw-protocol,
.mw-how,
.mw-results,
.mw-pricing,
.mw-faq,
.mw-blog,
.mw-cta,
.mw-gallery {
  scroll-margin-top: 96px;
}
.mw-solutions {
  padding: 24px 0 80px;
}
.mw-solutions__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 24px;
  padding-right: 40px;
}
.mw-solutions__head h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.2;
  font-weight: 700;
}
.mw-solutions__head p {
  margin: 0;
  max-width: 327px;
  color: var(--mw-text-soft);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.5;
}
.mw-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 410px));
  gap: 24px;
  justify-content: start;
}
.mw-card {
  background: var(--mw-cream-soft);
  border: 1px solid var(--mw-divider);
  border-radius: 16px;
  padding: 33px;
  min-height: 214px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .35s ease, box-shadow .35s ease;
}
.mw-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(54,45,39,.1);
}
.mw-card h3 {
  margin: 8px 0 0;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
}
.mw-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 300;
  color: var(--mw-text-soft);
  flex: 1;
}
.mw-card .mw-btn { align-self: flex-start; }

/* About / Quem somos */
.mw-about {
  background: var(--mw-sage-dark);
  color: #fff;
  padding: 80px 0 60px;
  scroll-margin-top: 100px;
}
.mw-about__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 64px;
}
.mw-about__img {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 10px 4px 24px rgba(0,0,0,.55);
  max-width: 446px;
  width: 100%;
  aspect-ratio: 3 / 4;
}
.mw-about__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.mw-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.mw-eyebrow__line {
  width: 140px;
  height: 1px;
  background: var(--mw-divider);
  flex-shrink: 0;
}
.mw-about h2 {
  margin: 0 0 16px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.2;
}
.mw-about p { font-weight: 300; font-size: 14px; line-height: 1.5; margin: 0; }
.mw-about__experts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.mw-expert h3 {
  margin: 0 0 12px;
  font-size: clamp(24px, 2.5vw, 40px);
  line-height: 1.2;
}
.mw-expert .mw-role {
  font-weight: 400;
  margin-bottom: 8px;
}

/* Gallery */
.mw-gallery {
  padding: 40px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: min(100% - 48px, 1388px);
  margin-inline: auto;
}
.mw-gallery__item {
  position: relative;
  border-radius: var(--mw-radius);
  overflow: hidden;
  aspect-ratio: 9 / 16;
}
.mw-gallery__item > img,
.mw-gallery__item > video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
}
.mw-gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, #587489);
  opacity: .85;
}

/* Protocol grid */
.mw-protocol {
  padding: 80px 0 100px;
}
.mw-section-head {
  text-align: center;
  margin-bottom: 44px;
}
.mw-section-head .mw-eyebrow { justify-content: center; }
.mw-section-head h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 40px);
}
.mw-section-head p {
  margin: 16px auto 0;
  max-width: 600px;
  font-weight: 300;
  color: var(--mw-text-soft);
  font-size: 14px;
}
.mw-proto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.mw-proto-card {
  position: relative;
  isolation: isolate;
  border-radius: var(--mw-radius);
  overflow: hidden;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  padding: 24px;
}
.mw-proto-card img {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.mw-proto-card:hover img { transform: scale(1.06); }
/* Degradê do Figma: escurece a base para o texto branco ficar legível */
.mw-proto-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, .85) 0%,
    rgba(0, 0, 0, .5) 40%,
    rgba(0, 0, 0, .2) 70%,
    rgba(0, 0, 0, 0) 100%
  );
}
.mw-proto-card__shade { display: none; }
.mw-proto-card > *:not(img):not(.mw-proto-card__shade) { position: relative; z-index: 1; }
.mw-proto-card h3 { margin: 0 0 6px; font-size: 24px; font-weight: 400; }
.mw-proto-card p {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,.7);
  max-width: 334px;
}

/* How it works */
.mw-how {
  padding: 60px 0 80px;
  scroll-margin-top: 100px;
}
.mw-how__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.mw-how__steps { display: flex; flex-direction: column; gap: 24px; margin-top: 24px; }
.mw-how__step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.mw-how__step img { width: 22px; height: 22px; margin-top: 6px; flex-shrink: 0; }
.mw-how__step h3 { margin: 0 0 4px; font-size: 18px; }
.mw-how__step p { margin: 0; font-size: 13px; font-weight: 300; color: var(--mw-text-soft); }
.mw-how__img {
  position: relative;
  border-radius: var(--mw-radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  max-height: 680px;
}
.mw-how__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
}

/* Results */
.mw-results { padding: 40px 0 80px; }
.mw-results h2 {
  margin: 0 0 24px;
  font-size: clamp(28px, 3vw, 40px);
}
.mw-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.mw-stat {
  background: var(--mw-cream-soft);
  border: 1px solid var(--mw-divider);
  border-radius: var(--mw-radius);
  padding: 40px 24px 25px;
  text-align: center;
}
.mw-stat__num {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--mw-text-soft);
}
.mw-stat__label {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--mw-text-soft);
}
.mw-results__caption {
  text-align: center;
  font-family: 'Catamaran', var(--mw-font);
  font-size: 24px;
  font-weight: 300;
  margin: 0 0 24px;
  color: var(--mw-text-soft);
}
.mw-results__photos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: start;
}
.mw-results__photo {
  position: relative;
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #d9d9d9;
  aspect-ratio: 739 / 712;
  box-shadow: 0 8px 24px rgba(54, 45, 39, .12);
}
.mw-results__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* CTA banner */
.mw-cta {
  position: relative;
  padding: 72px 0;
  min-height: 254px;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.mw-cta__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mw-cta__overlay {
  position: absolute;
  inset: 0;
  background: rgba(54,45,39,.65);
}
.mw-cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.mw-cta__copy {
  flex: 1 1 auto;
  min-width: 0;
}
.mw-cta h2 {
  margin: 14px 0 0;
  font-size: clamp(26px, 3.2vw, 44px);
  line-height: 1.15;
}
.mw-cta .mw-btn {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
}
.mw-cta .mw-eyebrow { color: rgba(255,255,255,.8); margin-bottom: 0; }

/* Pricing */
.mw-pricing { padding: 100px 0; }
.mw-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  align-items: stretch;
  margin-top: 60px;
}
.mw-plan {
  background: var(--mw-cream);
  border: 1px solid var(--mw-divider);
  padding: 31px;
  display: flex;
  flex-direction: column;
}
.mw-plan:first-child { border-radius: 12px 0 0 12px; border-right: 0; }
.mw-plan:last-child { border-radius: 0 12px 12px 0; border-left: 0; }
.mw-plan--featured {
  background: var(--mw-blue);
  color: var(--mw-cream);
  border-radius: 12px !important;
  border: 1px solid var(--mw-divider);
  box-shadow: 0 8px 32px rgba(54,45,39,.12);
  transform: scale(1.02);
  z-index: 1;
  padding-top: 40px;
  padding-bottom: 40px;
}
.mw-plan h3 {
  margin: 0 0 16px;
  font-size: 24px;
  font-weight: 400;
}
.mw-plan__price {
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
  margin: 20px 0;
}
.mw-plan__price span {
  font-size: 16px;
  font-weight: 400;
  opacity: .8;
}
.mw-plan__desc {
  font-size: 13px;
  font-weight: 300;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--mw-divider);
}
.mw-plan--featured .mw-plan__desc {
  border-bottom-color: rgba(255,251,240,.22);
}
.mw-plan__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  margin-bottom: 32px;
}
.mw-plan__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  font-weight: 300;
}
.mw-plan__highlight {
  font-weight: 700;
}
.mw-plan__note {
  font-size: 11px;
  font-weight: 300;
  opacity: .72;
  margin: -16px 0 20px;
  line-height: 1.4;
}
.mw-plan__list img { width: 16px; height: 16px; flex-shrink: 0; }
.mw-plan .mw-btn { width: 100%; }

/* FAQ */
.mw-faq {
  padding: 80px 0 100px;
}
.mw-faq__grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
}
.mw-faq h2 {
  margin: 16px 0;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.2;
}
.mw-faq__intro {
  font-weight: 300;
  font-size: 14px;
  color: var(--mw-text-soft);
}
.mw-accordion { display: flex; flex-direction: column; gap: 12px; }
.mw-acc {
  border: 1px solid var(--mw-divider);
  border-radius: var(--mw-radius);
  background: var(--mw-cream);
  overflow: hidden;
}
.mw-acc__btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  font-size: 15px;
  font-weight: 500;
  color: var(--mw-text);
}
.mw-acc__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--mw-divider);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--mw-text-soft);
  transition: background .25s, color .25s, border-color .25s, transform .25s;
}
.mw-acc__icon::before {
  content: '⌄';
  font-size: 16px;
  line-height: 1;
}
.mw-acc.is-open .mw-acc__icon {
  background: var(--mw-cream);
  color: var(--mw-text);
  border-color: var(--mw-divider);
  transform: rotate(180deg);
}
.mw-acc__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.mw-acc.is-open .mw-acc__panel { max-height: 480px; }
.mw-acc__panel p {
  margin: 0;
  padding: 0 24px 20px 76px;
  font-size: 14px;
  font-weight: 300;
  color: var(--mw-text-soft);
}

/* Blog section / pages */
.mw-blog { padding: 100px 0; }
.mw-blog__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 16px;
}
.mw-blog__head h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
}
.mw-blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 24px;
  margin-top: 32px;
}
.mw-blog-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}
.mw-blog-card__img {
  border-radius: var(--mw-radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.mw-blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.mw-blog-card:hover .mw-blog-card__img img { transform: scale(1.05); }
.mw-blog-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 300;
  color: var(--mw-text-soft);
  margin-bottom: 12px;
}
.mw-blog-card__meta img { width: 14px; height: 14px; }
.mw-blog-card h2,
.mw-blog-card h3 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
}
.mw-blog-card h2 a,
.mw-blog-card h3 a { color: inherit; }
.mw-blog-card__excerpt {
  font-size: 14px;
  font-weight: 300;
  color: var(--mw-text-soft);
  margin: 0 0 12px;
}
.mw-blog-card .mw-read {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}

/* Blog listing / post */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.mw-crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  font-weight: 300;
  color: var(--mw-text-soft);
  margin-bottom: 20px;
}
.mw-crumbs a { text-decoration: underline; text-underline-offset: 2px; }
.mw-page-hero {
  padding: 48px 0 32px;
  text-align: center;
}
.mw-page-hero .mw-crumbs { justify-content: center; }
.mw-page-hero h1 {
  margin: 16px 0 12px;
  font-size: clamp(32px, 4vw, 48px);
}
.mw-page-hero__lead {
  font-weight: 300;
  color: var(--mw-text-soft);
  max-width: 560px;
  margin: 0 auto 24px;
}
.mw-blog-search {
  display: flex;
  gap: 8px;
  justify-content: center;
  max-width: 480px;
  margin: 0 auto;
}
.mw-blog-search input {
  flex: 1;
  min-width: 0;
  border: 1px solid var(--mw-divider);
  background: #fff;
  border-radius: var(--mw-pill);
  padding: 12px 18px;
  font: inherit;
  color: var(--mw-text);
}
.mw-blog-empty {
  grid-column: 1 / -1;
  text-align: center;
  font-weight: 300;
  color: var(--mw-text-soft);
  padding: 40px 0 80px;
}
.mw-blog-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  padding-bottom: 48px;
}
.mw-blog-card--featured {
  grid-column: 1 / -1;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
}
.mw-blog-card--featured h2 { font-size: clamp(24px, 3vw, 32px); }
.mw-pager {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 24px 80px;
}
.mw-post {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 24px 60px;
}
.mw-post__header h1 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  margin: 0 0 12px;
}
.mw-post__byline {
  font-size: 14px;
  font-weight: 300;
  color: var(--mw-text-soft);
  margin: 0 0 24px;
}
.mw-post__cover {
  border-radius: var(--mw-radius);
  overflow: hidden;
  margin: 0 0 32px;
  aspect-ratio: 16/9;
}
.mw-post__cover img { width: 100%; height: 100%; object-fit: cover; }
.mw-post__lead {
  font-size: 18px;
  font-weight: 300;
  color: var(--mw-text-soft);
  margin: 0 0 28px;
}
.mw-post__content { font-size: 17px; font-weight: 300; line-height: 1.7; color: var(--mw-text-soft); }
.mw-post__content h2 { color: var(--mw-text); font-weight: 700; margin: 32px 0 12px; font-size: 28px; }
.mw-post__content h3 { color: var(--mw-text); font-weight: 700; margin: 24px 0 10px; font-size: 22px; }
.mw-post__content p { margin: 0 0 16px; }
.mw-post__content ul, .mw-post__content ol { padding-left: 24px; margin: 0 0 16px; }
.mw-post__content ul { list-style: disc; }
.mw-post__content ol { list-style: decimal; }
.mw-post__content li { margin-bottom: 8px; }
.mw-post__content a { text-decoration: underline; color: var(--mw-blue); }
.mw-post__content img { border-radius: var(--mw-radius); margin: 16px 0; }
.mw-post__content blockquote {
  margin: 0 0 16px;
  padding: 12px 20px;
  border-left: 3px solid var(--mw-sage);
  font-style: italic;
}
.mw-share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 40px 0 0;
  font-size: 13px;
  font-weight: 500;
}
.mw-share a {
  border: 1px solid var(--mw-divider);
  border-radius: var(--mw-pill);
  padding: 8px 14px;
  font-size: 13px;
}
.mw-share a:hover { background: var(--mw-cream-soft); }
.mw-post__cta {
  margin: 48px 0 0;
  padding: 32px;
  border-radius: var(--mw-radius);
  background: var(--mw-sage-dark);
  color: #fff;
}
.mw-post__cta h2 { margin: 0 0 8px; font-size: 24px; color: #fff; }
.mw-post__cta p { margin: 0 0 20px; font-weight: 300; opacity: .9; }
.mw-related { margin-top: 56px; }
.mw-related h2 { font-size: 24px; margin: 0 0 20px; }
.mw-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.mw-related h3 { font-size: 16px; font-weight: 500; margin: 12px 0 0; line-height: 1.3; }
.mw-post__back { margin-top: 40px; }
.mw-notfound {
  padding: 80px 24px;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.mw-notfound h1 { margin-bottom: 12px; }

/* Footer — azul-ardósia como no Figma */
.mw-footer {
  background: var(--mw-blue);
  color: #fff;
  padding-top: 21px;
  border-top: none;
}
.mw-footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.mw-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  font-size: 14px;
}
.mw-footer__nav a { color: #fff; opacity: .9; }
.mw-footer__nav a:hover { opacity: 1; text-decoration: underline; }
.mw-footer__top h3 {
  margin: 4px 0 20px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}
.mw-social {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 19px;
  background: rgba(255,255,255,.12);
  transition: background .2s;
}
.mw-social img { width: 15px; height: 15px; display: block; }
.mw-social:hover { background: rgba(255,255,255,.22); }
.mw-footer__copy {
  margin-top: 11px;
  padding: 23px 0 22px;
  border-top: 1px solid rgba(255,255,255,.14);
  font-size: 13px;
  font-weight: 300;
  color: #fff;
}
.mw-footer__copy p { margin: 0; }

/* Reveal animations */
.mw-reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .8s cubic-bezier(.22,1,.36,1), transform .8s cubic-bezier(.22,1,.36,1);
}
.mw-reveal.is-visible {
  opacity: 1;
  transform: none;
}
.mw-reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .8s cubic-bezier(.22,1,.36,1), transform .8s cubic-bezier(.22,1,.36,1);
}
.mw-reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .8s cubic-bezier(.22,1,.36,1), transform .8s cubic-bezier(.22,1,.36,1);
}
.mw-reveal-left.is-visible,
.mw-reveal-right.is-visible {
  opacity: 1;
  transform: none;
}
.mw-stagger > * { opacity: 0; transform: translateY(28px); }
.mw-stagger.is-visible > * {
  opacity: 1;
  transform: none;
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
}
.mw-stagger.is-visible > *:nth-child(1) { transition-delay: .05s; }
.mw-stagger.is-visible > *:nth-child(2) { transition-delay: .15s; }
.mw-stagger.is-visible > *:nth-child(3) { transition-delay: .25s; }
.mw-stagger.is-visible > *:nth-child(4) { transition-delay: .35s; }
.mw-stagger.is-visible > *:nth-child(5) { transition-delay: .45s; }
.mw-stagger.is-visible > *:nth-child(6) { transition-delay: .55s; }

@media (prefers-reduced-motion: reduce) {
  .mw-reveal, .mw-reveal-left, .mw-reveal-right, .mw-stagger > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  html { scroll-behavior: auto; }
}

/* Responsive */
@media (max-width: 1100px) {
  .mw-hero__content { grid-template-columns: 1fr; }
  .mw-cards, .mw-proto-grid, .mw-stats, .mw-pricing-grid { grid-template-columns: 1fr 1fr; }
  .mw-plan:first-child, .mw-plan:last-child { border-radius: var(--mw-radius); border: 1px solid var(--mw-divider); }
  .mw-plan--featured { transform: none; }
  .mw-pricing-grid { gap: 16px; }
  .mw-about__top, .mw-about__experts, .mw-how__grid, .mw-faq__grid, .mw-blog-grid { grid-template-columns: 1fr; }
  .mw-cta__inner { flex-wrap: wrap; }
  .mw-blog-card, .mw-blog-card--featured { grid-template-columns: 140px 1fr; }
  .mw-related__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .mw-results__photos { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .mw-container {
    width: min(100% - 32px, var(--mw-max));
  }
  .mw-header {
    padding-top: env(safe-area-inset-top);
  }
  .mw-header__inner {
    min-height: 72px;
    padding-block: 12px;
    gap: 12px;
    position: relative;
  }
  .mw-logo,
  .mw-logo img {
    width: 120px;
    height: 44px;
  }
  .mw-logo { overflow: visible; }
  .mw-nav-toggle { display: flex; z-index: 2; }
  .mw-nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .mw-nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .mw-nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .mw-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--mw-sage-dark);
    flex-direction: column;
    align-items: stretch;
    padding: 8px 20px 24px;
    border-bottom: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 16px 32px rgba(54,45,39,.22);
  }
  .mw-nav.is-open { display: flex; }
  .mw-nav a {
    color: #fff;
    padding: 14px 8px;
    font-size: 16px;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .mw-nav__login {
    display: inline-flex;
    align-self: stretch;
    justify-content: center;
    margin-top: 8px;
    height: 46px;
  }
  .mw-header__cta { display: none; }
  .mw-hero {
    min-height: 0;
  }
  .mw-hero__content {
    width: min(100% - 32px, 1194px);
    padding: 28px 0 48px;
    gap: 20px;
  }
  .mw-hero h1 {
    font-size: clamp(28px, 8vw, 36px);
    line-height: 1.12;
    letter-spacing: -0.5px;
    max-width: none;
  }
  .mw-hero__right p {
    font-size: 16px;
    max-width: none;
  }
  .mw-hero__right .mw-btn { align-self: flex-start; }
  .mw-solutions { padding: 28px 0 48px; }
  .mw-solutions__head {
    padding-right: 0;
    gap: 12px;
    margin-bottom: 16px;
  }
  .mw-cards, .mw-proto-grid, .mw-pricing-grid, .mw-blog-list { grid-template-columns: 1fr; }
  .mw-stats { grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 28px; }
  .mw-stat { padding: 22px 12px 18px; }
  .mw-stat__num { font-size: 16px; margin-bottom: 6px; }
  .mw-stat__label { font-size: 16px; }
  .mw-results__photos { grid-template-columns: 1fr 1fr; gap: 10px; }
  .mw-results__photo { border-radius: 12px; }
  .mw-results { padding: 28px 0 48px; }
  .mw-results h2 { margin-bottom: 16px; }
  .mw-results__caption { font-size: 16px; margin-bottom: 16px; }
  .mw-blog-card, .mw-blog-card--featured { grid-template-columns: 1fr; }
  .mw-related__grid { grid-template-columns: 1fr; }
  .mw-blog-search { flex-direction: column; align-items: stretch; }
  .mw-blog-search input { font-size: 16px; }
  .mw-solutions__head { flex-direction: column; align-items: flex-start; }
  .mw-cta { padding: 40px 0; min-height: 0; }
  .mw-cta__inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .mw-cta h2 { font-size: clamp(24px, 7vw, 32px); }
  .mw-cta .mw-btn { width: auto; }
  .mw-blog__head { flex-direction: column; align-items: flex-start; }
  .mw-acc__btn { padding: 16px; font-size: 14px; gap: 12px; }
  .mw-acc__panel p { padding: 0 16px 16px 16px; }
  .mw-gallery {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    width: auto;
    margin-inline: 0;
    padding: 24px 16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .mw-gallery::-webkit-scrollbar { display: none; }
  .mw-gallery__item {
    flex: 0 0 42%;
    width: 42%;
    scroll-snap-align: start;
  }
  .mw-proto-card {
    min-height: 260px;
    padding: 18px;
  }
  .mw-proto-card h3 { font-size: 20px; }
  .mw-protocol { padding: 48px 0 56px; }
  .mw-section-head { margin-bottom: 24px; }
  .mw-about { padding: 48px 0 40px; }
  .mw-about__top { gap: 24px; margin-bottom: 32px; }
  .mw-about__img { aspect-ratio: 4 / 5; max-width: none; }
  .mw-about__experts { gap: 28px; }
  .mw-expert h3 { font-size: 26px; }
  .mw-how { padding: 40px 0 48px; }
  .mw-how__img { max-height: 280px; aspect-ratio: 4 / 3; }
  .mw-eyebrow { gap: 10px; font-size: 12px; letter-spacing: 1.4px; }
  .mw-eyebrow__line { width: 40px; }
  .mw-pricing { padding: 48px 0 56px; }
  .mw-pricing-grid { margin-top: 28px; }
  .mw-plan { padding: 24px; }
  .mw-plan__price { font-size: 40px; margin: 12px 0; }
  .mw-plan--featured { padding-top: 28px; padding-bottom: 28px; }
  .mw-faq { padding: 48px 0 56px; }
  .mw-blog { padding: 48px 0 56px; }
  .mw-blog-grid { gap: 28px 16px; margin-top: 20px; }
  .mw-page-hero { padding: 28px 0 20px; }
  .mw-page-hero h1 { font-size: clamp(26px, 8vw, 36px); }
  .mw-post { padding: 28px 16px 48px; }
  .mw-post__content { font-size: 16px; }
  .mw-post__content h2 { font-size: 22px; }
  .mw-footer__top { gap: 20px; }
  .mw-footer__nav { gap: 12px 16px; }
  .mw-footer__copy { padding: 16px 0 calc(16px + env(safe-area-inset-bottom)); font-size: 12px; }
  .mw-checkout-modal { padding: 12px; padding-bottom: calc(12px + env(safe-area-inset-bottom)); }
  .mw-checkout-modal__box { padding: 28px 18px 20px; border-radius: 18px; max-height: 92vh; }
  .mw-checkout-modal .form-group input[type="text"],
  .mw-checkout-modal .form-group input[type="email"],
  .mw-checkout-modal .form-group input[type="tel"],
  .mw-checkout-modal .form-group input[type="password"] { font-size: 16px; }
  .mw-solutions,
  .mw-about,
  .mw-protocol,
  .mw-how,
  .mw-results,
  .mw-pricing,
  .mw-faq,
  .mw-blog,
  .mw-cta,
  .mw-gallery {
    scroll-margin-top: 84px;
  }
}

@media (max-width: 480px) {
  .mw-stat__label { font-size: 14px; }
  .mw-card { padding: 22px; min-height: 0; }
  .mw-hero h1 { font-size: 28px; }
}

@media (hover: none) {
  .mw-btn:hover { transform: none; }
  .mw-card:hover { transform: none; box-shadow: none; }
  .mw-proto-card:hover img { transform: none; }
}

.mw-checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(54, 45, 39, .55);
  overflow-y: auto;
}
.mw-checkout-modal__box {
  background: var(--mw-cream);
  color: var(--mw-text);
  border-radius: 24px;
  padding: 36px 28px 28px;
  max-width: 480px;
  width: 100%;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 16px 48px rgba(54, 45, 39, .25);
}
.mw-checkout-modal__close {
  position: absolute;
  top: 12px;
  right: 14px;
  border: 0;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  color: var(--mw-text-soft);
  cursor: pointer;
  width: 40px;
  height: 40px;
}
.mw-checkout-modal .checkout-modal-title {
  margin: 0 0 8px;
  font-size: 26px;
  text-align: center;
}
.mw-checkout-modal .checkout-modal-subtitle {
  margin: 0 0 22px;
  font-size: 14px;
  text-align: center;
  color: var(--mw-text-soft);
}
.mw-checkout-modal .form-group {
  margin-bottom: 14px;
}
.mw-checkout-modal .form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
}
.mw-checkout-modal .form-group input[type="text"],
.mw-checkout-modal .form-group input[type="email"],
.mw-checkout-modal .form-group input[type="tel"],
.mw-checkout-modal .form-group input[type="password"] {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--mw-divider);
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px;
  background: #fff;
  color: var(--mw-text);
}
.mw-checkout-modal .form-group input.error {
  border-color: #c0392b;
}
.mw-checkout-modal .form-error {
  color: #c0392b;
  font-size: 12px;
  margin-top: 4px;
}
.mw-checkout-modal .form-group-checkbox {
  margin-top: 8px;
}
.mw-checkout-modal .checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.45;
  cursor: pointer;
}
.mw-checkout-modal .checkbox-label input {
  margin-top: 3px;
  flex-shrink: 0;
}
.mw-checkout-modal .checkbox-label a {
  color: var(--mw-blue);
  text-decoration: underline;
}
