/* ==========================================================================
   MASTERLIFE — DESIGN SYSTEM & GLOBAL STYLES
   ========================================================================== */

/* --- VARIÁVEIS DE TEMA (DARK DEFAULTS) --- */
:root {
  --ml-bg-dark: #0D0D0D;
  --ml-bg-card: rgba(255, 255, 255, 0.02);
  --ml-bg-header: rgba(13, 13, 13, 0.85);
  --ml-bg-header-scrolled: rgba(13, 13, 13, 0.95);
  --ml-text-primary: #FFFFFF;
  --ml-text-muted: #888888;
  --ml-gold: #C5A059;
  --ml-gold-light: #E2C285;
  --ml-border-dark: rgba(255, 255, 255, 0.1);
  --ml-border-gold: rgba(197, 160, 89, 0.3);

  --ml-font-editorial: 'Cormorant Garamond', Georgia, serif;
  --ml-font-sans: 'Plus Jakarta Sans', -apple-system, sans-serif;
  --ml-transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);

  /* Aliases para compatibilidade */
  --ml-font-serif: var(--ml-font-editorial);
  --ml-text-secondary: var(--ml-text-muted);
}

/* --- TEMA CLARO (EDITORIAL / LINHO NOBRE) --- */
body.ml-light-theme {
  --ml-bg-dark: #F7F5F0;
  --ml-bg-card: #FFFFFF;
  --ml-bg-header: rgba(247, 245, 240, 0.85);
  --ml-bg-header-scrolled: rgba(247, 245, 240, 0.95);
  --ml-text-primary: #1A1A1A;
  --ml-text-muted: #666666;
  --ml-gold: #A37F35;
  --ml-gold-light: #C5A059;
  --ml-border-dark: rgba(0, 0, 0, 0.08);
  --ml-border-gold: rgba(163, 127, 53, 0.3);
}

/* --- RESET & BASE --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--ml-bg-dark);
  color: var(--ml-text-primary);
  font-family: var(--ml-font-sans);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  transition: background-color 0.4s ease, color 0.4s ease;
}

.ml-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 3rem;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.ml-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--ml-bg-header);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ml-border-dark);
  transition: var(--ml-transition);
}

.ml-header--scrolled {
  background-color: var(--ml-bg-header-scrolled);
  border-bottom-color: var(--ml-border-gold);
}

.ml-header__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 1.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--ml-transition);
}

.ml-header--scrolled .ml-header__container {
  padding: 1rem 3rem;
}

.ml-header__brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--ml-text-primary);
}

.ml-header__logo-text {
  font-family: var(--ml-font-editorial);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ml-text-primary);
  transition: var(--ml-transition);
}

.ml-header__tagline {
  font-family: var(--ml-font-sans);
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--ml-gold);
  margin-top: 2px;
}

.ml-header__brand:hover .ml-header__logo-text {
  color: var(--ml-gold);
}

.ml-header__nav {
  display: flex;
  align-items: center;
}

.ml-header__menu {
  display: flex;
  list-style: none;
  gap: 3rem;
}

.ml-header__link {
  font-family: var(--ml-font-sans);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ml-text-muted);
  text-decoration: none;
  position: relative;
  padding: 0.5rem 0;
  transition: var(--ml-transition);
}

.ml-header__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background-color: var(--ml-gold);
  transition: var(--ml-transition);
  transform: translateX(-50%);
}

.ml-header__link:hover,
.ml-header__link--active {
  color: var(--ml-text-primary);
}

.ml-header__link:hover::after,
.ml-header__link--active::after {
  width: 100%;
}

.ml-header__actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.ml-header__btn-private {
  font-family: var(--ml-font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ml-gold);
  text-decoration: none;
  padding: 0.65rem 1.4rem;
  border: 1px solid var(--ml-border-gold);
  position: relative;
  overflow: hidden;
  transition: var(--ml-transition);
}

.ml-header__btn-private:hover {
  border-color: var(--ml-gold);
  color: var(--ml-text-primary);
  box-shadow: 0 0 15px rgba(197, 160, 89, 0.15);
}

/* --- TOGGLE MOBILE --- */
.ml-header__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 1200;
}

.ml-header__toggle-line {
  width: 24px;
  height: 1px;
  background-color: var(--ml-text-primary);
  transition: var(--ml-transition);
}

body.ml-menu-open .ml-header__toggle {
  display: flex;
}

body.ml-menu-open .ml-header__toggle-line:nth-child(1) {
  transform: rotate(45deg) translate(3px, 3px);
}

body.ml-menu-open .ml-header__toggle-line:nth-child(2) {
  transform: rotate(-45deg) translate(3px, -3px);
}

/* --- MENU MOBILE --- */
.ml-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--ml-bg-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 2rem 4rem 2rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--ml-transition);
  z-index: 1100;
  overflow-y: auto;
}

.ml-mobile-menu--open {
  opacity: 1;
  visibility: visible;
}

.ml-mobile-menu__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.ml-mobile-menu__link {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  text-decoration: none;
}

.ml-mobile-menu__num {
  font-size: 0.75rem;
  color: var(--ml-gold);
  letter-spacing: 0.1em;
}

.ml-mobile-menu__text {
  font-family: var(--ml-font-editorial);
  font-size: 2.25rem;
  font-weight: 300;
  color: var(--ml-text-primary);
  letter-spacing: 0.05em;
  transition: var(--ml-transition);
}

.ml-mobile-menu__footer {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--ml-border-dark);
}

.ml-mobile-menu__btn {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ml-gold);
  text-decoration: none;
}

.ml-mobile-menu__motto {
  font-family: var(--ml-font-editorial);
  font-style: italic;
  color: var(--ml-text-muted);
  margin-top: 0.5rem;
}

/* ==========================================================================
   MAIN CONTENT & HERO
   ========================================================================== */
.ml-main-content {
  padding-top: 80px;
}

.ml-hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 6rem 0;
}

.ml-hero__content {
  max-width: 900px;
}

.ml-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--ml-gold);
  display: block;
  margin-bottom: 1.5rem;
}

.ml-hero__title {
  font-family: var(--ml-font-editorial);
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

.ml-hero__sub {
  font-size: 1.15rem;
  color: var(--ml-text-muted);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 3rem;
  max-width: 750px;
}

/* --- HERO SUBPAGE --- */
.ml-hero__container--center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 auto;
  max-width: 900px;
}

.ml-hero__eyebrow {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--ml-gold);
  display: block;
  margin-bottom: 1.5rem;
}

.ml-hero__subtitle {
  font-size: 1.15rem;
  color: var(--ml-text-muted);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 3rem;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.ml-btn-gold {
  display: inline-block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #0D0D0D;
  background-color: var(--ml-gold);
  padding: 1rem 2.5rem;
  text-decoration: none;
  font-weight: 500;
  transition: var(--ml-transition);
}

.ml-btn-gold:hover {
  background-color: var(--ml-gold-light);
  color: #0D0D0D;
}

/* ==========================================================================
   SEÇÕES & LAYOUT
   ========================================================================== */
.ml-section {
  padding: 8rem 0;
  border-top: 1px solid var(--ml-border-dark);
}

.ml-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.ml-heading {
  font-family: var(--ml-font-editorial);
  font-size: 2.75rem;
  font-weight: 300;
  line-height: 1.2;
}

.ml-text-lead {
  font-size: 1.25rem;
  color: var(--ml-text-primary);
  font-weight: 300;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.ml-text {
  font-size: 1rem;
  color: var(--ml-text-muted);
  font-weight: 300;
  line-height: 1.8;
}

.ml-text strong {
  color: var(--ml-text-primary);
  font-weight: 400;
}

/* --- PROCESSO (8 PASSOS) --- */
.ml-process {
  background-color: var(--ml-bg-dark);
}

.ml-process__header {
  max-width: 750px;
  margin-bottom: 5rem;
}

.ml-process__intro {
  font-size: 1.15rem;
  color: var(--ml-text-muted);
  font-weight: 300;
  margin-top: 1.5rem;
  line-height: 1.7;
}

.ml-process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.ml-process__card {
  background: var(--ml-bg-card);
  border: 1px solid var(--ml-border-dark);
  padding: 2.5rem 2rem;
  transition: var(--ml-transition);
  display: flex;
  flex-direction: column;
}

.ml-process__card:hover {
  border-color: var(--ml-border-gold);
  transform: translateY(-4px);
}

.ml-process__card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--ml-border-dark);
}

.ml-process__step {
  font-family: var(--ml-font-editorial);
  font-size: 1.75rem;
  color: var(--ml-gold);
  font-weight: 400;
}

.ml-process__phase {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ml-text-muted);
}

.ml-process__title {
  font-family: var(--ml-font-editorial);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--ml-text-primary);
  margin-bottom: 1rem;
}

.ml-process__desc {
  font-size: 0.875rem;
  color: var(--ml-text-muted);
  font-weight: 300;
  line-height: 1.7;
}

/* --- PILARES --- */
.ml-pillars {
  background-color: var(--ml-bg-dark);
}

.ml-pillars__header {
  max-width: 750px;
  margin-bottom: 5rem;
}

.ml-pillars__intro {
  font-size: 1.15rem;
  color: var(--ml-text-muted);
  font-weight: 300;
  margin-top: 1.5rem;
  line-height: 1.7;
}

.ml-pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.ml-pillars__card {
  background: var(--ml-bg-card);
  border: 1px solid var(--ml-border-dark);
  padding: 3.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  transition: var(--ml-transition);
  position: relative;
}

.ml-pillars__card:hover {
  border-color: var(--ml-border-gold);
  transform: translateY(-6px);
}

.ml-pillars__card--featured {
  border-color: var(--ml-border-gold);
}

.ml-pillars__card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
}

.ml-pillars__num {
  font-family: var(--ml-font-editorial);
  font-size: 2rem;
  color: var(--ml-gold);
  font-weight: 300;
}

.ml-pillars__tag {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ml-text-muted);
}

.ml-pillars__title {
  font-family: var(--ml-font-editorial);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--ml-text-primary);
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

.ml-pillars__desc {
  font-size: 0.95rem;
  color: var(--ml-text-muted);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.ml-pillars__list {
  list-style: none;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: auto;
}

.ml-pillars__list li {
  font-size: 0.85rem;
  color: var(--ml-text-primary);
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ml-pillars__list li::before {
  content: '';
  width: 4px;
  height: 4px;
  background-color: var(--ml-gold);
  border-radius: 50%;
  display: inline-block;
}

.ml-pillars__link {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ml-gold);
  text-decoration: none;
  font-weight: 500;
  transition: var(--ml-transition);
}

.ml-pillars__link:hover {
  color: var(--ml-gold-light);
  padding-left: 6px;
}

/* --- EXPANSÃO --- */
.ml-expansion {
  background-color: var(--ml-bg-dark);
}

.ml-expansion__header {
  max-width: 750px;
  margin-bottom: 5rem;
}

.ml-expansion__intro {
  font-size: 1.15rem;
  color: var(--ml-text-muted);
  font-weight: 300;
  margin-top: 1.5rem;
  line-height: 1.7;
}

.ml-expansion__chain {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.ml-expansion__step {
  background: var(--ml-bg-card);
  border: 1px solid var(--ml-border-dark);
  padding: 2rem 1.5rem;
  transition: var(--ml-transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.ml-expansion__step:hover {
  border-color: var(--ml-border-gold);
}

.ml-expansion__node {
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--ml-border-dark);
}

.ml-expansion__num {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--ml-gold);
  display: block;
  margin-bottom: 0.25rem;
}

.ml-expansion__title {
  font-family: var(--ml-font-editorial);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ml-text-primary);
}

.ml-expansion__desc {
  font-size: 0.8rem;
  color: var(--ml-text-muted);
  font-weight: 300;
  line-height: 1.6;
}

.ml-expansion__divider {
  display: none;
}

/* --- CTA --- */
.ml-cta {
  background-color: var(--ml-bg-dark);
  padding-bottom: 10rem;
}

.ml-cta__box {
  background: var(--ml-bg-card);
  border: 1px solid var(--ml-border-gold);
  padding: 5rem 4rem;
  position: relative;
  overflow: hidden;
}

.ml-cta__box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ml-gold), transparent);
}

.ml-cta__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.ml-cta__title {
  font-family: var(--ml-font-editorial);
  font-size: 3.25rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--ml-text-primary);
}

.ml-cta__desc {
  font-size: 1.1rem;
  color: var(--ml-text-muted);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 3.5rem;
}

.ml-cta__features {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3.5rem;
  border-top: 1px solid var(--ml-border-dark);
  border-bottom: 1px solid var(--ml-border-dark);
  padding: 1.5rem 0;
}

.ml-cta__feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ml-cta__feature-num {
  font-family: var(--ml-font-editorial);
  font-size: 1.25rem;
  color: var(--ml-gold);
}

.ml-cta__feature-text {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ml-text-primary);
  font-weight: 400;
}

.ml-cta__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.ml-cta__note {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--ml-text-muted);
  text-transform: uppercase;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.ml-footer {
  background-color: var(--ml-bg-dark);
  color: var(--ml-text-primary);
  border-top: 1px solid var(--ml-border-dark);
  padding: 6rem 0 3rem 0;
}

.ml-footer__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 3rem;
}

.ml-footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--ml-border-dark);
  margin-bottom: 5rem;
}

.ml-footer__manifesto {
  max-width: 700px;
}

.ml-footer__subtitle {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--ml-gold);
  display: block;
  margin-bottom: 1rem;
}

.ml-footer__quote {
  font-family: var(--ml-font-editorial);
  font-size: 2.25rem;
  font-weight: 300;
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

.ml-footer__chain {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--ml-text-muted);
  text-transform: uppercase;
  display: block;
  margin:25px 0px;
}

.ml-footer__back-top {
  background: none;
  border: 1px solid var(--ml-border-dark);
  color: var(--ml-text-muted);
  cursor: pointer;
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  transition: var(--ml-transition);
}

.ml-footer__back-top:hover {
  border-color: var(--ml-gold);
  color: var(--ml-gold);
}

.ml-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid var(--ml-border-dark);
}

.ml-footer__brand {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  margin-bottom: 1.5rem;
}

.ml-footer__logo-text {
  font-family: var(--ml-font-editorial);
  font-size: 1.6rem;
  letter-spacing: 0.25em;
  color: var(--ml-text-primary);
}

.ml-footer__tagline {
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  color: var(--ml-gold);
  margin-top: 2px;
}

.ml-footer__desc {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--ml-text-muted);
  font-weight: 300;
}

.ml-footer__title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ml-text-primary);
  margin-bottom: 1.75rem;
  font-weight: 500;
}

.ml-footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ml-footer__link {
  font-size: 0.85rem;
  color: var(--ml-text-muted);
  text-decoration: none;
  font-weight: 300;
  transition: var(--ml-transition);
}

.ml-footer__link:hover {
  color: var(--ml-text-primary);
  padding-left: 4px;
}

.ml-footer__link--gold {
  color: var(--ml-gold);
}

.ml-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2.5rem;
  font-size: 0.75rem;
  color: var(--ml-text-muted);
}

.ml-footer__tagline-bottom {
  font-family: var(--ml-font-editorial);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ml-gold);
}

/* ==========================================================================
   PÁGINA PERSONAL
   ========================================================================== */
.ml-hero--personal {
  padding: 8rem 0 6rem 0;
  background: linear-gradient(180deg, rgba(197, 160, 89, 0.03) 0%, rgba(13, 13, 13, 0) 100%);
}

body.ml-light-theme .ml-hero--personal {
  background: linear-gradient(180deg, rgba(163, 127, 53, 0.05) 0%, rgba(247, 245, 240, 0) 100%);
}

.ml-personal-manifesto {
  background-color: var(--ml-bg-dark);
}

/* --- RETIROS PRIVADOS --- */
.ml-retreats {
  background-color: var(--ml-bg-dark);
  border-top: 1px solid var(--ml-border-dark);
}

.ml-retreats__header {
  max-width: 800px;
  margin-bottom: 5rem;
}

.ml-retreats__intro {
  font-size: 1.15rem;
  color: var(--ml-text-muted);
  font-weight: 300;
  margin-top: 1.5rem;
  line-height: 1.7;
}

.ml-retreats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-bottom: 6rem;
}

.ml-retreats__card {
  background: var(--ml-bg-card);
  border: 1px solid var(--ml-border-dark);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  transition: var(--ml-transition);
}

.ml-retreats__card:hover {
  border-color: var(--ml-border-gold);
  transform: translateY(-6px);
}

.ml-retreats__card--featured {
  border-color: var(--ml-border-gold);
}

.ml-retreats__badge {
  display: inline-block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ml-gold);
  border: 1px solid var(--ml-border-gold);
  padding: 0.3rem 0.8rem;
  margin-bottom: 1.5rem;
  align-self: flex-start;
}

.ml-retreats__card-title {
  font-family: var(--ml-font-editorial);
  font-size: 2rem;
  font-weight: 300;
  color: var(--ml-text-primary);
  margin-bottom: 1rem;
}

.ml-retreats__card-desc {
  font-size: 0.9rem;
  color: var(--ml-text-muted);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.ml-retreats__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
  margin-top: auto;
}

.ml-retreats__list li {
  font-size: 0.85rem;
  color: var(--ml-text-primary);
  font-weight: 300;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.ml-retreats__list li::before {
  content: '';
  width: 4px;
  height: 4px;
  background-color: var(--ml-gold);
  border-radius: 50%;
  display: inline-block;
  margin-top: 0.6rem;
  flex-shrink: 0;
}

.ml-retreats__meta {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--ml-border-dark);
  padding-top: 1.25rem;
  font-size: 0.75rem;
  color: var(--ml-text-muted);
  margin-top: auto;
}

.ml-retreats__meta strong {
  color: var(--ml-text-primary);
  font-weight: 400;
}

.ml-retreats__includes {
  margin-bottom: 6rem;
}

.ml-retreats__includes-header {
  max-width: 700px;
  margin-bottom: 3.5rem;
}

.ml-retreats__includes-title {
  font-family: var(--ml-font-editorial);
  font-size: 2.25rem;
  font-weight: 300;
  color: var(--ml-text-primary);
  line-height: 1.2;
  margin-top: 1rem;
}

.ml-retreats__includes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.ml-retreats__include {
  border-top: 1px solid var(--ml-border-gold);
  padding-top: 1.5rem;
}

.ml-retreats__include-num {
  font-family: var(--ml-font-editorial);
  font-size: 1.5rem;
  color: var(--ml-gold);
  display: block;
  margin-bottom: 0.75rem;
}

.ml-retreats__include-title {
  font-family: var(--ml-font-editorial);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--ml-text-primary);
  margin-bottom: 0.75rem;
}

.ml-retreats__include-desc {
  font-size: 0.875rem;
  color: var(--ml-text-muted);
  font-weight: 300;
  line-height: 1.7;
}

.ml-retreats__process {
  background: var(--ml-bg-card);
  border: 1px solid var(--ml-border-gold);
  padding: 4rem 3rem;
}

.ml-retreats__process-header {
  max-width: 700px;
  margin-bottom: 3rem;
}

.ml-retreats__process-title {
  font-family: var(--ml-font-editorial);
  font-size: 2.25rem;
  font-weight: 300;
  color: var(--ml-text-primary);
  line-height: 1.2;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.ml-retreats__process-intro {
  font-size: 1rem;
  color: var(--ml-text-muted);
  font-weight: 300;
  line-height: 1.7;
}

.ml-retreats__process-grid {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.ml-retreats__process-step {
  flex: 1;
  border-top: 1px solid var(--ml-border-dark);
  padding-top: 1.5rem;
}

.ml-retreats__process-num {
  font-family: var(--ml-font-editorial);
  font-size: 1.5rem;
  color: var(--ml-gold);
  display: block;
  margin-bottom: 0.75rem;
}

.ml-retreats__process-step-title {
  font-family: var(--ml-font-editorial);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--ml-text-primary);
  margin-bottom: 0.5rem;
}

.ml-retreats__process-step-desc {
  font-size: 0.875rem;
  color: var(--ml-text-muted);
  font-weight: 300;
  line-height: 1.6;
}

.ml-retreats__process-arrow {
  font-family: var(--ml-font-editorial);
  font-size: 1.5rem;
  color: var(--ml-gold);
  flex-shrink: 0;
}

/* --- FORMULÁRIO DE APLICAÇÃO --- */
.ml-application {
  background-color: var(--ml-bg-dark);
}

.ml-application__wrapper {
  max-width: 860px;
  margin: 0 auto;
  background: var(--ml-bg-card);
  border: 1px solid var(--ml-border-gold);
  padding: 4rem 3.5rem;
}

.ml-application__header {
  margin-bottom: 3rem;
  text-align: center;
}

.ml-application__header .ml-heading {
  font-size: 2.5rem;
}

.ml-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  margin-bottom: 2rem;
}

.ml-form__group--full {
  grid-column: span 2;
}

.ml-form__label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ml-text-primary);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.ml-form__input,
.ml-form__select,
.ml-form__textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--ml-border-dark);
  color: var(--ml-text-primary);
  padding: 0.9rem 1.2rem;
  font-family: var(--ml-font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  transition: var(--ml-transition);
  outline: none;
}

body.ml-light-theme .ml-form__input,
body.ml-light-theme .ml-form__select,
body.ml-light-theme .ml-form__textarea {
  background: #FFFFFF;
}

.ml-form__input:focus,
.ml-form__select:focus,
.ml-form__textarea:focus {
  border-color: var(--ml-gold);
  box-shadow: 0 0 10px rgba(197, 160, 89, 0.15);
}

.ml-form__select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%20c5a059' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1em;
  padding-right: 2.5rem;
}

.ml-form__select option {
  background-color: var(--ml-bg-dark);
  color: var(--ml-text-primary);
}

.ml-application__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--ml-border-dark);
}

.ml-application__confidential {
  font-size: 0.75rem;
  color: var(--ml-text-muted);
  text-align: center;
  max-width: 500px;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* ==========================================================================
   PÁGINA BUSINESS
   ========================================================================== */
.ml-hero--business {
  padding: 8rem 0 6rem 0;
  background: linear-gradient(180deg, rgba(197, 160, 89, 0.04) 0%, rgba(13, 13, 13, 0) 100%);
}

body.ml-light-theme .ml-hero--business {
  background: linear-gradient(180deg, rgba(163, 127, 53, 0.06) 0%, rgba(247, 245, 240, 0) 100%);
}

.ml-business-manifesto {
  background-color: var(--ml-bg-dark);
}

.ml-business-method {
  background-color: var(--ml-bg-dark);
  border-top: 1px solid var(--ml-border-dark);
}

.ml-business-method__cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ml-business-method__card {
  background: var(--ml-bg-card);
  border: 1px solid var(--ml-border-dark);
  padding: 2rem;
  transition: var(--ml-transition);
}

.ml-business-method__card:hover {
  border-color: var(--ml-border-gold);
  transform: translateX(6px);
}

.ml-business-method__step {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ml-gold);
  display: block;
  margin-bottom: 0.5rem;
}

.ml-business-method__title {
  font-family: var(--ml-font-editorial);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--ml-text-primary);
  margin-bottom: 0.5rem;
}

.ml-business-method__desc {
  font-size: 0.875rem;
  color: var(--ml-text-muted);
  font-weight: 300;
  line-height: 1.6;
}

/* --- CULTURA, PARCERIAS E INVESTIMENTO --- */
.ml-business-culture {
  background-color: var(--ml-bg-dark);
  border-top: 1px solid var(--ml-border-dark);
}

.ml-business-culture__header {
  max-width: 800px;
  margin-bottom: 5rem;
}

.ml-business-culture__intro {
  font-size: 1.15rem;
  color: var(--ml-text-muted);
  font-weight: 300;
  margin-top: 1.5rem;
  line-height: 1.7;
}

.ml-business-culture__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.ml-business-culture__card {
  background: var(--ml-bg-card);
  border: 1px solid var(--ml-border-dark);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  transition: var(--ml-transition);
}

.ml-business-culture__card:hover {
  border-color: var(--ml-border-gold);
  transform: translateY(-6px);
}

.ml-business-culture__card--featured {
  border-color: var(--ml-border-gold);
}

.ml-business-culture__card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--ml-border-dark);
}

.ml-business-culture__num {
  font-family: var(--ml-font-editorial);
  font-size: 2rem;
  color: var(--ml-gold);
  font-weight: 300;
}

.ml-business-culture__label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ml-text-muted);
}

.ml-business-culture__title {
  font-family: var(--ml-font-editorial);
  font-size: 2rem;
  font-weight: 300;
  color: var(--ml-text-primary);
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

.ml-business-culture__desc {
  font-size: 0.95rem;
  color: var(--ml-text-muted);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.ml-business-culture__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: auto;
}

.ml-business-culture__list li {
  font-size: 0.85rem;
  color: var(--ml-text-primary);
  font-weight: 300;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.ml-business-culture__list li::before {
  content: '';
  width: 4px;
  height: 4px;
  background-color: var(--ml-gold);
  border-radius: 50%;
  display: inline-block;
  margin-top: 0.6rem;
  flex-shrink: 0;
}

.ml-business-culture__footer {
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--ml-border-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.ml-business-culture__note {
  font-size: 0.95rem;
  color: var(--ml-text-muted);
  font-weight: 300;
  max-width: 600px;
  line-height: 1.7;
}

/* ==========================================================================
   PÁGINA NETWORK
   ========================================================================== */
.ml-hero--network {
  padding: 8rem 0 6rem 0;
  background: linear-gradient(180deg, rgba(197, 160, 89, 0.05) 0%, rgba(13, 13, 13, 0) 100%);
}

body.ml-light-theme .ml-hero--network {
  background: linear-gradient(180deg, rgba(163, 127, 53, 0.07) 0%, rgba(247, 245, 240, 0) 100%);
}

.ml-network-manifesto {
  background-color: var(--ml-bg-dark);
}

.ml-network-dynamics {
  background-color: var(--ml-bg-dark);
  border-top: 1px solid var(--ml-border-dark);
}

.ml-network-dynamics__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ml-network-dynamics__item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: var(--ml-bg-card);
  border: 1px solid var(--ml-border-dark);
  padding: 1.75rem;
  transition: var(--ml-transition);
}

.ml-network-dynamics__item:hover {
  border-color: var(--ml-border-gold);
  transform: translateY(-3px);
}

.ml-network-dynamics__icon {
  font-size: 1.8rem;
  line-height: 1;
}

.ml-network-dynamics__title {
  font-family: var(--ml-font-editorial);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--ml-text-primary);
  margin-bottom: 0.35rem;
}

.ml-network-dynamics__desc {
  font-size: 0.875rem;
  color: var(--ml-text-muted);
  font-weight: 300;
  line-height: 1.6;
}

.ml-network-membership {
  background-color: var(--ml-bg-dark);
  border-top: 1px solid var(--ml-border-dark);
}

.ml-network-membership__box {
  background: var(--ml-bg-card);
  border: 1px solid var(--ml-border-gold);
  padding: 5rem 4rem;
  position: relative;
  overflow: hidden;
}

.ml-network-membership__box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ml-gold), transparent);
}

.ml-network-membership__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.ml-network-membership__title {
  font-family: var(--ml-font-editorial);
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--ml-text-primary);
}

.ml-network-membership__desc {
  font-size: 1.05rem;
  color: var(--ml-text-muted);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.ml-network-membership__features {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  border-top: 1px solid var(--ml-border-dark);
  border-bottom: 1px solid var(--ml-border-dark);
  padding: 1.5rem 0;
}

.ml-network-membership__feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ml-network-membership__feature-num {
  font-family: var(--ml-font-editorial);
  font-size: 1.25rem;
  color: var(--ml-gold);
}

.ml-network-membership__feature-text {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ml-text-primary);
  font-weight: 400;
}

/* ==========================================================================
   PÁGINA PRIVATE ACCESS
   ========================================================================== */
.ml-hero--private-access {
  padding: 8rem 0 6rem 0;
  background: linear-gradient(180deg, rgba(197, 160, 89, 0.05) 0%, rgba(13, 13, 13, 0) 100%);
}

body.ml-light-theme .ml-hero--private-access {
  background: linear-gradient(180deg, rgba(163, 127, 53, 0.07) 0%, rgba(247, 245, 240, 0) 100%);
}

.ml-private-process {
  background-color: var(--ml-bg-dark);
  border-top: 1px solid var(--ml-border-dark);
}

.ml-private-process__header {
  max-width: 800px;
  margin-bottom: 5rem;
}

.ml-private-process__intro {
  font-size: 1.15rem;
  color: var(--ml-text-muted);
  font-weight: 300;
  margin-top: 1.5rem;
  line-height: 1.7;
}

.ml-private-process__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.ml-private-process__step {
  background: var(--ml-bg-card);
  border: 1px solid var(--ml-border-dark);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  transition: var(--ml-transition);
}

.ml-private-process__step:hover {
  border-color: var(--ml-border-gold);
  transform: translateY(-6px);
}

.ml-private-process__step--featured {
  border-color: var(--ml-border-gold);
}

.ml-private-process__step-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--ml-border-dark);
}

.ml-private-process__num {
  font-family: var(--ml-font-editorial);
  font-size: 2rem;
  color: var(--ml-gold);
  font-weight: 300;
}

.ml-private-process__label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ml-text-muted);
}

.ml-private-process__title {
  font-family: var(--ml-font-editorial);
  font-size: 2rem;
  font-weight: 300;
  color: var(--ml-text-primary);
  margin-bottom: 1.25rem;
}

.ml-private-process__desc {
  font-size: 0.95rem;
  color: var(--ml-text-muted);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.ml-private-process__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: auto;
}

.ml-private-process__list li {
  font-size: 0.85rem;
  color: var(--ml-text-primary);
  font-weight: 300;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.ml-private-process__list li::before {
  content: '';
  width: 4px;
  height: 4px;
  background-color: var(--ml-gold);
  border-radius: 50%;
  display: inline-block;
  margin-top: 0.6rem;
  flex-shrink: 0;
}

.ml-private-domains {
  background-color: var(--ml-bg-dark);
  border-top: 1px solid var(--ml-border-dark);
}

.ml-private-domains__header {
  max-width: 800px;
  margin-bottom: 5rem;
}

.ml-private-domains__intro {
  font-size: 1.15rem;
  color: var(--ml-text-muted);
  font-weight: 300;
  margin-top: 1.5rem;
  line-height: 1.7;
}

.ml-private-domains__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.ml-private-domains__card {
  background: var(--ml-bg-card);
  border: 1px solid var(--ml-border-dark);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  transition: var(--ml-transition);
}

.ml-private-domains__card:hover {
  border-color: var(--ml-border-gold);
  transform: translateY(-6px);
}

.ml-private-domains__card--featured {
  border-color: var(--ml-border-gold);
}

.ml-private-domains__card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--ml-border-dark);
}

.ml-private-domains__num {
  font-family: var(--ml-font-editorial);
  font-size: 2rem;
  color: var(--ml-gold);
  font-weight: 300;
}

.ml-private-domains__label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ml-text-muted);
}

.ml-private-domains__title {
  font-family: var(--ml-font-editorial);
  font-size: 2rem;
  font-weight: 300;
  color: var(--ml-text-primary);
  margin-bottom: 1.25rem;
}

.ml-private-domains__desc {
  font-size: 0.95rem;
  color: var(--ml-text-muted);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  flex-grow: 1;
}

.ml-private-domains__link {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ml-gold);
  text-decoration: none;
  font-weight: 500;
  transition: var(--ml-transition);
}

.ml-private-domains__link:hover {
  color: var(--ml-gold-light);
  padding-left: 6px;
}

.ml-private-principles {
  background-color: var(--ml-bg-dark);
  border-top: 1px solid var(--ml-border-dark);
}

.ml-private-principles__header {
  max-width: 800px;
  margin-bottom: 5rem;
}

.ml-private-principles__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.ml-private-principles__item {
  border-top: 1px solid var(--ml-border-gold);
  padding-top: 1.5rem;
}

.ml-private-principles__num {
  font-family: var(--ml-font-editorial);
  font-size: 1.5rem;
  color: var(--ml-gold);
  display: block;
  margin-bottom: 0.75rem;
}

.ml-private-principles__title {
  font-family: var(--ml-font-editorial);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--ml-text-primary);
  margin-bottom: 0.75rem;
}

.ml-private-principles__desc {
  font-size: 0.875rem;
  color: var(--ml-text-muted);
  font-weight: 300;
  line-height: 1.7;
}

/* ==========================================================================
   PÁGINA SOBRE
   ========================================================================== */
.ml-hero--sobre {
  padding: 8rem 0 6rem 0;
  background: linear-gradient(180deg, rgba(197, 160, 89, 0.04) 0%, rgba(13, 13, 13, 0) 100%);
}

body.ml-light-theme .ml-hero--sobre {
  background: linear-gradient(180deg, rgba(163, 127, 53, 0.06) 0%, rgba(247, 245, 240, 0) 100%);
}

.ml-sobre-vision,
.ml-sobre-change,
.ml-sobre-cycles,
.ml-sobre-tech,
.ml-sobre-origin {
  background-color: var(--ml-bg-dark);
  border-top: 1px solid var(--ml-border-dark);
}

.ml-sobre-cycles__header,
.ml-sobre-tech__header {
  max-width: 800px;
  margin-bottom: 5rem;
}

.ml-sobre-cycles__intro,
.ml-sobre-tech__intro {
  font-size: 1.15rem;
  color: var(--ml-text-muted);
  font-weight: 300;
  margin-top: 1.5rem;
  line-height: 1.7;
}

.ml-sobre-cycles__grid,
.ml-sobre-tech__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.ml-sobre-cycles__item,
.ml-sobre-tech__item {
  border-top: 1px solid var(--ml-border-gold);
  padding-top: 1.5rem;
}

.ml-sobre-cycles__title,
.ml-sobre-tech__title {
  font-family: var(--ml-font-editorial);
  font-size: 1.75rem;
  font-weight: 300;
  color: var(--ml-text-primary);
  margin-bottom: 1rem;
}

.ml-sobre-cycles__desc,
.ml-sobre-tech__desc {
  font-size: 0.95rem;
  color: var(--ml-text-muted);
  font-weight: 300;
  line-height: 1.7;
}

.ml-sobre-tech__num {
  font-family: var(--ml-font-editorial);
  font-size: 1.5rem;
  color: var(--ml-gold);
  display: block;
  margin-bottom: 0.75rem;
}

/* ==========================================================================
   PÁGINAS LEGAIS / INSTITUCIONAIS
   ========================================================================== */
.ml-hero--subpage {
  padding: 8rem 0 4rem;
  text-align: center;
}

.ml-hero--subpage .ml-hero__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.ml-hero--subpage .ml-hero__subtitle {
  margin-left: auto;
  margin-right: auto;
}

.ml-legal-content {
  padding: 4rem 0 8rem;
}

.ml-legal-content__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.ml-legal-content__meta {
  font-family: var(--ml-font-sans);
  font-size: 0.8rem;
  color: var(--ml-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--ml-border-gold);
}

.ml-legal-content__block {
  margin-bottom: 3rem;
}

.ml-legal-content__block h2 {
  font-family: var(--ml-font-editorial);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--ml-text-primary);
  margin-bottom: 1rem;
}

.ml-legal-content__block p,
.ml-legal-content__block li {
  font-family: var(--ml-font-sans);
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--ml-text-muted);
}

.ml-legal-content__block ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-top: 0.75rem;
}

.ml-legal-content__block li {
  margin-bottom: 0.5rem;
}

.ml-legal-content__email a {
  color: var(--ml-gold);
  text-decoration: none;
  font-weight: 500;
  transition: var(--ml-transition);
}

.ml-legal-content__email a:hover {
  text-decoration: underline;
}

/* ==========================================================================
   JOURNAL / BLOG
   ========================================================================== */
.ml-journal {
  padding: 4rem 0 8rem;
}

.ml-journal__filters {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 4rem;
}

.ml-journal__filter-btn {
  background: transparent;
  border: 1px solid var(--ml-border-dark);
  color: var(--ml-text-muted);
  padding: 0.5rem 1.25rem;
  font-family: var(--ml-font-sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: var(--ml-transition);
}

.ml-journal__filter-btn:hover,
.ml-journal__filter-btn--active {
  border-color: var(--ml-gold);
  color: var(--ml-gold);
}

.ml-journal__featured {
  background: var(--ml-bg-card);
  border: 1px solid var(--ml-border-gold);
  padding: 3rem;
  margin-bottom: 4rem;
}

.ml-journal__featured-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.ml-journal__date {
  font-size: 0.8rem;
  color: var(--ml-text-muted);
}

.ml-journal__featured-title {
  font-family: var(--ml-font-editorial);
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.ml-journal__featured-title a {
  color: var(--ml-text-primary);
  text-decoration: none;
  transition: var(--ml-transition);
}

.ml-journal__featured-title a:hover {
  color: var(--ml-gold);
}

.ml-journal__featured-excerpt {
  color: var(--ml-text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 900px;
}

.ml-journal__featured-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--ml-border-dark);
  padding-top: 1.5rem;
}

.ml-journal__author {
  font-size: 0.85rem;
  color: var(--ml-text-muted);
}

.ml-journal__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.ml-journal__card {
  background: var(--ml-bg-card);
  border: 1px solid var(--ml-border-dark);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--ml-transition);
}

.ml-journal__card:hover {
  border-color: var(--ml-border-gold);
  transform: translateY(-3px);
}

.ml-journal__card-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ml-journal__category {
  color: var(--ml-gold);
}

.ml-journal__card-title {
  font-family: var(--ml-font-editorial);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

.ml-journal__card-title a {
  color: var(--ml-text-primary);
  text-decoration: none;
}

.ml-journal__card-excerpt {
  color: var(--ml-text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.ml-journal__read-more {
  color: var(--ml-gold);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
}

/* ==========================================================================
   ARTIGO INDIVIDUAL
   ========================================================================== */
.ml-container--narrow {
  max-width: 760px;
  margin: 0 auto;
}

.ml-article-header {
  padding: 8rem 0 3rem;
  border-bottom: 1px solid var(--ml-border-dark);
}

.ml-article-header__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.ml-article-header__back {
  color: var(--ml-gold);
  text-decoration: none;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: var(--ml-transition);
}

.ml-article-header__back:hover {
  opacity: 0.8;
}

.ml-article-header__title {
  font-family: var(--ml-font-editorial);
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.25;
  color: var(--ml-text-primary);
  margin-bottom: 1.25rem;
}

.ml-article-header__subtitle {
  font-family: var(--ml-font-sans);
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--ml-text-muted);
  margin-bottom: 2.5rem;
}

.ml-article-header__author-bar {
  font-size: 0.85rem;
  color: var(--ml-text-muted);
}

.ml-article-body {
  padding: 4rem 0 6rem;
}

.ml-article-body__content p {
  font-family: var(--ml-font-sans);
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--ml-text-muted);
  margin-bottom: 2rem;
}

.ml-article-body__lead {
  font-size: 1.2rem !important;
  color: var(--ml-text-primary) !important;
  line-height: 1.8 !important;
}

.ml-article-body__content h2 {
  font-family: var(--ml-font-editorial);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--ml-text-primary);
  margin: 3rem 0 1.25rem;
}

.ml-article-body__quote {
  border-left: 2px solid var(--ml-gold);
  padding: 1.5rem 0 1.5rem 2rem;
  margin: 3rem 0;
  font-family: var(--ml-font-editorial);
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--ml-gold);
}

.ml-article-body__content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 2rem;
}

.ml-article-body__content li {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ml-text-muted);
  margin-bottom: 0.75rem;
}

.ml-article-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
  border-top: 1px solid var(--ml-border-dark);
  border-bottom: 1px solid var(--ml-border-dark);
  margin-top: 4rem;
  font-size: 0.85rem;
  color: var(--ml-text-muted);
}

.ml-article-footer a {
  color: var(--ml-gold);
  text-decoration: none;
  margin-left: 0.5rem;
}

.ml-article-author-card {
  background: var(--ml-bg-card);
  border: 1px solid var(--ml-border-dark);
  padding: 2.5rem;
  margin-top: 3rem;
}

.ml-article-author-card__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--ml-gold);
  letter-spacing: 0.1em;
}

.ml-article-author-card__title {
  font-family: var(--ml-font-editorial);
  font-size: 1.3rem;
  font-weight: 400;
  margin: 0.5rem 0;
}

.ml-article-author-card__bio {
  font-size: 0.9rem;
  color: var(--ml-text-muted);
  line-height: 1.6;
}

.ml-related-articles {
  border-top: 1px solid var(--ml-border-dark);
  padding: 6rem 0;
}

.ml-related-articles__title {
  font-family: var(--ml-font-editorial);
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 3rem;
  text-align: center;
}

/* ==========================================================================
   RESPONSIVIDADE
   ========================================================================== */

/* --- TABLET (≤ 1024px) --- */
@media (max-width: 1024px) {
  /* Header */
  .ml-header__nav { display: none; }
  .ml-header__toggle { display: flex; }
  .ml-header__btn-private { display: none; }

  .ml-header__container {
    padding: 1.25rem 2rem;
    padding-right: 4.5rem;
  }

  .ml-header--scrolled .ml-header__container {
    padding: 1rem 2rem;
    padding-right: 4.5rem;
  }

  /* Layout */
  .ml-grid-2col { grid-template-columns: 1fr; gap: 2.5rem; }
  .ml-pillars__grid { grid-template-columns: 1fr; }
  .ml-footer__grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .ml-hero__title { font-size: 2.5rem; }

  .ml-process__grid { grid-template-columns: repeat(2, 1fr); }
  .ml-expansion__chain { grid-template-columns: repeat(3, 1fr); gap: 2rem; }

  /* Retiros */
  .ml-retreats__grid { grid-template-columns: 1fr; }
  .ml-retreats__includes-grid { grid-template-columns: repeat(2, 1fr); }
  .ml-retreats__process-grid { flex-direction: column; align-items: flex-start; }
  .ml-retreats__process-arrow { transform: rotate(90deg); }

  /* Business */
  .ml-business-culture__grid { grid-template-columns: 1fr; }

  /* Private Access */
  .ml-private-process__grid,
  .ml-private-domains__grid { grid-template-columns: 1fr; }
  .ml-private-principles__grid { grid-template-columns: repeat(2, 1fr); }

  /* Sobre */
  .ml-sobre-cycles__grid,
  .ml-sobre-tech__grid { grid-template-columns: 1fr; }
}

/* --- MOBILE (≤ 768px) --- */
@media (max-width: 768px) {
  /* Container */
  .ml-container,
  .ml-footer__container {
    padding: 0 1.5rem;
  }

  /* Header */
  .ml-header__container {
    padding: 1.25rem 1.5rem;
    padding-right: 4.5rem;
  }

  .ml-header--scrolled .ml-header__container {
    padding: 1rem 1.5rem;
    padding-right: 4.5rem;
  }

  /* Footer */
  .ml-footer__top { flex-direction: column; align-items: flex-start; gap: 2rem; }
  .ml-footer__grid { grid-template-columns: 1fr; }
  .ml-footer__bottom { flex-direction: column; gap: 1rem; align-items: flex-start; }

  /* CTA */
  .ml-cta__box { padding: 3rem 1.5rem; }
  .ml-cta__title { font-size: 2.25rem; }
  .ml-cta__features { flex-direction: column; gap: 1rem; align-items: flex-start; }

  /* Formulário */
  .ml-application__wrapper { padding: 2.5rem 1.5rem; }
  .ml-form__grid { grid-template-columns: 1fr; }
  .ml-form__group--full { grid-column: span 1; }

  /* Retiros */
  .ml-retreats__includes-grid { grid-template-columns: 1fr; }
  .ml-retreats__process { padding: 2.5rem 1.5rem; }

  /* Network */
  .ml-network-membership__box { padding: 3rem 1.5rem; }
  .ml-network-membership__title { font-size: 2.25rem; }
  .ml-network-membership__features { flex-direction: column; gap: 1rem; align-items: flex-start; }

  /* Private Access */
  .ml-private-principles__grid { grid-template-columns: 1fr; }
  .ml-private-process__step,
  .ml-private-domains__card { padding: 2.5rem 1.5rem; }

  /* Business */
  .ml-business-culture__footer { flex-direction: column; align-items: flex-start; }
}

/* --- MOBILE PEQUENO (≤ 640px) --- */
@media (max-width: 640px) {
  .ml-process__grid,
  .ml-expansion__chain {
    grid-template-columns: 1fr;
  }
}



/* Conteúdo Gutenberg dentro de ml-legal-content__body */
.ml-legal-content__body h2 {
  font-family: var(--ml-font-editorial);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--ml-text-primary);
  margin: 2.5rem 0 1rem;
}

.ml-legal-content__body h3 {
  font-family: var(--ml-font-editorial);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--ml-text-primary);
  margin: 2rem 0 0.75rem;
}

.ml-legal-content__body p,
.ml-legal-content__body li {
  font-family: var(--ml-font-sans);
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--ml-text-muted);
}

.ml-legal-content__body p {
  margin-bottom: 1rem;
}

.ml-legal-content__body ul,
.ml-legal-content__body ol {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 1rem 0;
}

.ml-legal-content__body ol {
  list-style: decimal;
}

.ml-legal-content__body li {
  margin-bottom: 0.5rem;
}

.ml-legal-content__body a {
  color: var(--ml-gold);
  text-decoration: none;
  font-weight: 500;
  transition: var(--ml-transition);
}

.ml-legal-content__body a:hover {
  text-decoration: underline;
}

.ml-legal-content__body strong {
  color: var(--ml-text-primary);
  font-weight: 500;
}

.ml-legal-content__body blockquote {
  border-left: 2px solid var(--ml-gold);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--ml-text-primary);
}







/* ==========================================================================
   CONTEÚDO GUTENBERG EM PÁGINAS LEGAIS (Termos, Privacidade, etc.)
   ==========================================================================
   O editor Gutenberg gera HTML sem os wrappers .ml-legal-content__block.
   Estas regras garantem que o conteúdo fica estilizado corretamente.
   ========================================================================== */

.ml-legal-content__body > * {
  margin-bottom: 1rem;
}

.ml-legal-content__body > *:last-child {
  margin-bottom: 0;
}

.ml-legal-content__body h2 {
  font-family: var(--ml-font-editorial);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--ml-text-primary);
  margin: 2.5rem 0 1rem;
}

.ml-legal-content__body h2:first-child {
  margin-top: 0;
}

.ml-legal-content__body h3 {
  font-family: var(--ml-font-editorial);
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--ml-text-primary);
  margin: 2rem 0 0.75rem;
}

.ml-legal-content__body h4 {
  font-family: var(--ml-font-editorial);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--ml-text-primary);
  margin: 1.75rem 0 0.5rem;
}

.ml-legal-content__body p,
.ml-legal-content__body li {
  font-family: var(--ml-font-sans);
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--ml-text-muted);
  font-weight: 300;
}

.ml-legal-content__body p {
  margin-bottom: 1rem;
}

.ml-legal-content__body ul,
.ml-legal-content__body ol {
  padding-left: 1.25rem;
  margin: 1rem 0 1.5rem;
}

.ml-legal-content__body ul {
  list-style: disc;
}

.ml-legal-content__body ol {
  list-style: decimal;
}

.ml-legal-content__body li {
  margin-bottom: 0.5rem;
}

.ml-legal-content__body li::marker {
  color: var(--ml-gold);
}

.ml-legal-content__body a {
  color: var(--ml-gold);
  text-decoration: none;
  font-weight: 500;
  transition: var(--ml-transition);
}

.ml-legal-content__body a:hover {
  text-decoration: underline;
}

.ml-legal-content__body strong {
  color: var(--ml-text-primary);
  font-weight: 500;
}

.ml-legal-content__body em {
  font-style: italic;
  color: var(--ml-text-primary);
}

.ml-legal-content__body blockquote {
  border-left: 2px solid var(--ml-gold);
  padding: 0.5rem 0 0.5rem 1.5rem;
  margin: 2rem 0;
  font-family: var(--ml-font-editorial);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--ml-gold);
}

.ml-legal-content__body blockquote p {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
}

.ml-legal-content__body hr {
  border: none;
  border-top: 1px solid var(--ml-border-dark);
  margin: 2.5rem 0;
}

.ml-legal-content__body img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1.5rem 0;
}

.ml-legal-content__body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9rem;
}

.ml-legal-content__body th,
.ml-legal-content__body td {
  padding: 0.75rem 1rem;
  border: 1px solid var(--ml-border-dark);
  text-align: left;
  color: var(--ml-text-muted);
}

.ml-legal-content__body th {
  background: var(--ml-bg-card);
  color: var(--ml-text-primary);
  font-weight: 500;
}








/* ==========================================================================
   PAGINAÇÃO DO JOURNAL
   ========================================================================== */

.ml-pagination {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
}

.ml-pagination ul {
  list-style: none;
  display: flex;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
}

.ml-pagination li {
  display: inline-block;
}

.ml-pagination a,
.ml-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.75rem;
  font-family: var(--ml-font-sans);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--ml-text-muted);
  text-decoration: none;
  border: 1px solid var(--ml-border-dark);
  transition: var(--ml-transition);
}

.ml-pagination a:hover {
  border-color: var(--ml-gold);
  color: var(--ml-gold);
}

.ml-pagination .current {
  background-color: var(--ml-gold);
  color: #0D0D0D;
  border-color: var(--ml-gold);
  font-weight: 500;
}

.ml-pagination .prev,
.ml-pagination .next {
  padding: 0 1.25rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Estado vazio */
.ml-journal__empty {
  font-size: 0.95rem;
  color: var(--ml-text-muted);
  font-style: italic;
  text-align: center;
  grid-column: 1 / -1;
  padding: 3rem 0;
}


/* ==========================================================================
   ARTIGO — TAGS E SHARE
   ========================================================================== */

.ml-article-footer__tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.ml-article-footer__tags > span {
  font-size: 0.85rem;
  color: var(--ml-text-muted);
  margin-right: 0.25rem;
}

.ml-article-footer__tags a {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ml-text-muted);
  text-decoration: none;
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--ml-border-dark);
  transition: var(--ml-transition);
}

.ml-article-footer__tags a:hover {
  border-color: var(--ml-gold);
  color: var(--ml-gold);
}

.ml-article-footer__share {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ml-article-footer__share > span {
  font-size: 0.85rem;
  color: var(--ml-text-muted);
}

.ml-article-footer__share a {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ml-gold);
  text-decoration: none;
  transition: var(--ml-transition);
}

.ml-article-footer__share a:hover {
  color: var(--ml-gold-light);
}

/* Responsividade */
@media (max-width: 640px) {
  .ml-article-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}



/* ==========================================================================
   ARQUIVO (Categoria, Tag, Autor, Data)
   ========================================================================== */

.ml-archive__count {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ml-text-muted);
  margin-top: 1rem;
}

.ml-archive__empty {
  text-align: center;
  padding: 3rem 0;
}

.ml-archive__empty-actions {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}



/* ==========================================================================
   FORMULÁRIOS — FEEDBACK, ERROS E LOADING
   ========================================================================== */

/* --- Honeypot (escondido mas presente no DOM) --- */
.ml-hp {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* --- Campos com erro --- */
.ml-form__input--error,
.ml-form__select--error,
.ml-form__textarea--error {
  border-color: #C0392B !important;
  box-shadow: 0 0 10px rgba(192, 57, 43, 0.15) !important;
}

/* --- Mensagem de erro por baixo do campo --- */
.ml-form__error {
  display: block;
  font-size: 0.75rem;
  color: #C0392B;
  margin-top: 0.4rem;
  letter-spacing: 0.02em;
  font-weight: 400;
}

body.ml-light-theme .ml-form__error {
  color: #A93226;
}

/* --- Bloco de feedback geral --- */
.ml-form__feedback {
  display: block;
  margin-top: 1.5rem;
  padding: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  text-align: center;
  transition: var(--ml-transition);
}

.ml-form__feedback:empty {
  display: none;
}

.ml-form__feedback--success {
  padding: 1rem 1.5rem;
  border: 1px solid rgba(197, 160, 89, 0.4);
  background: rgba(197, 160, 89, 0.05);
  color: var(--ml-gold);
  border-radius: 2px;
}

.ml-form__feedback--error {
  padding: 1rem 1.5rem;
  border: 1px solid rgba(192, 57, 43, 0.4);
  background: rgba(192, 57, 43, 0.05);
  color: #C0392B;
  border-radius: 2px;
}

body.ml-light-theme .ml-form__feedback--error {
  color: #A93226;
}

/* --- Botão em estado de loading --- */
.ml-btn-gold--loading {
  opacity: 0.6;
  cursor: wait;
  pointer-events: none;
}

.ml-btn-gold--loading::after {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 0.75rem;
  border: 2px solid rgba(13, 13, 13, 0.2);
  border-top-color: #0D0D0D;
  border-radius: 50%;
  animation: ml-spin 0.7s linear infinite;
  vertical-align: middle;
}

@keyframes ml-spin {
  to {
    transform: rotate(360deg);
  }
}




/* ==========================================================================
   PESQUISA
   ========================================================================== */

/* --- Formulário de busca --- */
.ml-search-form {
  display: flex;
  gap: 0;
  max-width: 520px;
  margin: 2rem auto 0;
  width: 100%;
}

.ml-search-form__input {
  flex: 1;
  background: var(--ml-bg-card);
  border: 1px solid var(--ml-border-dark);
  border-right: none;
  color: var(--ml-text-primary);
  padding: 0.9rem 1.25rem;
  font-family: var(--ml-font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  outline: none;
  transition: var(--ml-transition);
  border-radius: 0;
  appearance: none;
}

.ml-search-form__input:focus {
  border-color: var(--ml-gold);
}

.ml-search-form__input::placeholder {
  color: var(--ml-text-muted);
}

.ml-search-form__button {
  background: var(--ml-gold);
  color: #0D0D0D;
  border: 1px solid var(--ml-gold);
  padding: 0.9rem 1.75rem;
  font-family: var(--ml-font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--ml-transition);
  border-radius: 0;
  white-space: nowrap;
}

.ml-search-form__button:hover {
  background: var(--ml-gold-light);
  border-color: var(--ml-gold-light);
}

/* --- Estado vazio da busca --- */
.ml-search-empty {
  max-width: 640px;
  margin: 3rem auto;
  text-align: center;
}

.ml-search-empty .ml-heading {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}

.ml-search-empty__actions {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
}

/* --- Responsividade --- */
@media (max-width: 640px) {
  .ml-search-form {
    flex-direction: column;
  }

  .ml-search-form__input {
    border-right: 1px solid var(--ml-border-dark);
    border-bottom: none;
  }

  .ml-search-form__button {
    padding: 1rem 1.75rem;
  }
}

/* --- Utilitário de acessibilidade --- */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}


/* ==========================================================================
   PÁGINA 404
   ========================================================================== */

.ml-404-hero .ml-hero__title {
  font-size: 3rem;
}

.ml-404-paths {
  padding-bottom: 8rem;
}

.ml-404-paths__header {
  max-width: 700px;
  margin-bottom: 4rem;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.ml-404-paths__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* --- Card de caminho --- */
.ml-404-path {
  display: flex;
  flex-direction: column;
  padding: 2.25rem 2rem;
  background: var(--ml-bg-card);
  border: 1px solid var(--ml-border-dark);
  text-decoration: none;
  transition: var(--ml-transition);
  position: relative;
  overflow: hidden;
}

.ml-404-path::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--ml-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.ml-404-path:hover {
  border-color: var(--ml-border-gold);
  transform: translateY(-4px);
}

.ml-404-path:hover::before {
  transform: scaleX(1);
}

.ml-404-path--gold {
  border-color: var(--ml-border-gold);
}

/* --- Numeração --- */
.ml-404-path__num {
  font-family: var(--ml-font-editorial);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--ml-gold);
  margin-bottom: 1.25rem;
  display: block;
}

/* --- Título --- */
.ml-404-path__title {
  font-family: var(--ml-font-editorial);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--ml-text-primary);
  margin-bottom: 0.5rem;
  display: block;
}

/* --- Descrição --- */
.ml-404-path__desc {
  font-family: var(--ml-font-sans);
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--ml-text-muted);
  display: block;
}

/* --- CTA --- */
.ml-404-actions {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
}

/* --- Responsividade --- */
@media (max-width: 1024px) {
  .ml-404-paths__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .ml-404-paths__grid {
    grid-template-columns: 1fr;
  }

  .ml-404-hero .ml-hero__title {
    font-size: 2.25rem;
  }

  .ml-404-path {
    padding: 1.75rem 1.5rem;
  }
}