:root {
  --teal: #193f51;
  --teal-2: #1f434d;
  --gold: #cfa865;
  --gold-2: #efc975;
  --mint: #e0ebe9;
  --cream: #fefdfb;
  --text: #5c5c5d;
  --white: #ffffff;
  --soft: #f9f9f9;
  --gray: #7c7c7c;
  --beige: #ebe0cd;
  --navy: #1f434d;
  --blush: #f5ede5;
  --sand: #f5efea;
  --container: 1140px;
  --header-h: 115px;
  --radius: 20px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--gold);
  color: #fff;
  padding: 8px 12px;
  z-index: 2000;
}
.skip-link:focus { left: 8px; }

.dourado { color: var(--gold); }
.azul { color: var(--teal); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--teal);
  min-height: var(--header-h);
}
.page-inner .site-header {
  border-bottom: 10px solid var(--gold);
}

.nav-inner {
  display: flex;
  align-items: center;
  min-height: var(--header-h);
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 25%;
  min-width: 220px;
}

.brand img { width: 80px; height: auto; }

.brand-text { display: flex; flex-direction: column; }
.brand-text .name {
  font-family: Cormorant, serif;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  line-height: 1;
  margin: 0 0 2px;
}
.brand-text .role {
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1;
}

.nav-desktop {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 19px;
  flex: 1;
}

.nav-desktop a,
.nav-desktop .has-sub > button {
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  background: none;
  border: 0;
  padding: 13px 0;
  cursor: pointer;
  line-height: 20px;
}

.nav-desktop a:hover,
.nav-desktop a[aria-current="page"],
.nav-desktop .has-sub > button:hover { color: var(--gold); }

.has-sub { position: relative; }
.has-sub > button { display: inline-flex; align-items: center; gap: 6px; }
.has-sub svg { width: 10px; height: 10px; fill: currentColor; }

.submenu {
  display: none;
  position: absolute;
  top: calc(100% + 15px);
  right: 0;
  min-width: 280px;
  background: var(--gold);
  box-shadow: 0 15px 20px rgba(0,0,0,.1);
  z-index: 20;
}
.has-sub:hover .submenu,
.has-sub:focus-within .submenu,
.has-sub.open .submenu { display: block; }

.submenu a {
  display: block;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 10px;
  border-bottom: 1px solid #eee;
}
.submenu a:hover { color: var(--teal); }

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 4px;
  background: #fff;
  color: #16163f;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  margin: 4px auto;
}

.mobile-panel {
  display: none;
  background: var(--gold);
  padding: 8px 20px 20px;
}
.mobile-panel.open { display: block; }
.mobile-panel a {
  display: block;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  padding: 11px 10px;
  border-bottom: 1px solid rgba(255,255,255,.25);
  text-transform: uppercase;
}
.mobile-panel a:hover { color: var(--teal); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: max-content;
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 15px;
  padding: 12px 24px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: .2s background, .2s color, .2s border-color;
}
.btn svg { width: 16px; height: 16px; fill: currentColor; }
.btn-gold { background: #cfa865; color: #fff; border-color: #efc975; }
.btn-gold:hover { background: #fff; color: var(--gold); border-color: var(--gold); }
.btn-teal { background: var(--teal); color: #fff; border-color: transparent; }
.btn-teal:hover { background: #fff; color: var(--teal); border-color: #fff; }
.hero .btn-teal { border-color: rgba(255,255,255,.45); }
.dual-card.dark .btn {
  background: #cfa865;
  color: #fff;
  border: 1px solid #efc975;
}
.dual-card.dark .btn:hover { background: #fff; color: var(--teal); }
.dual-card.gold .btn {
  background: #193f51;
  color: #fff;
  border: 0;
}
.dual-card.gold .btn:hover { background: #fff; color: var(--teal); }
.btn-white { background: #fff; color: #193f51; border-color: #5c5c5d; }
.btn-white:hover { background: var(--teal); color: #fff; }
.btn-outline { background: var(--teal); color: #fff; border-color: var(--gold); }
.btns { display: flex; flex-wrap: wrap; gap: 12px; }

/* Hero */
.hero {
  background: var(--teal);
  overflow: hidden;
}
.about, .approach, .rpp, .dual { overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: 440px 1fr;
  gap: 40px;
  align-items: stretch;
  min-height: 608px;
}
.hero-photo { margin: 0; }
.hero-photo img {
  width: 440px;
  height: 608px;
  object-fit: cover;
  object-position: top center;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 0 50px;
  max-width: 660px;
}
.hero-icon { width: 93px; height: 93px; margin-bottom: 8px; }
.hero h1,
.hero-copy h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 80px;
  font-weight: 700;
  line-height: 80px;
  color: #fff;
  margin: 0 0 16px;
}
.hero-lead {
  font-size: 19px;
  line-height: 1.6;
  color: #fff;
  margin: 0 0 12px;
}
.hero-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
  max-width: 462px;
  margin: 0 0 24px;
}

/* About */
.about {
  background: var(--cream) url("/assets/img/bg-home.webp") 0 50% / cover fixed;
  padding: 80px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-photos { position: relative; width: max-content; max-width: 100%; }
.about-photos .main {
  width: 500px;
  max-width: 100%;
  height: auto;
  max-height: 622px;
  object-fit: cover;
  border-radius: 10%;
}
.about-photos .marca {
  position: absolute;
  right: 0;
  bottom: 24px;
  width: 153px;
  height: 153px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px double var(--gold-2);
}
.kicker {
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 8px;
}
.about h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 56px;
  margin: 0 0 4px;
  color: var(--teal);
}
.about h2.line2 { color: var(--gold); margin-bottom: 20px; }
.about p {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 24px;
}

/* Approach */
.approach {
  background: var(--mint);
  padding: 70px 0;
}
.approach-grid {
  display: grid;
  grid-template-columns: 288px 1fr;
  gap: 48px;
  align-items: start;
}
.approach h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 56px;
  color: var(--gold);
  margin: 0 0 16px;
}
.approach h2 .azul { color: var(--teal); }
.approach .lead {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
}
.icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 24px;
}
.icon-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}
.icon-item .ico {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  color: var(--gold);
}
.icon-item .ico svg { width: 36px; height: 36px; fill: currentColor; }
.icon-item h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 3px;
  color: var(--text);
}
.icon-item p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
}

/* RPP band */
.rpp {
  position: relative;
  background-color: #193f51;
  color: #fff;
  padding: 70px 0;
  overflow: hidden;
}
.rpp::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 350px;
  background: url("/assets/img/bg-lado2.webp") right center / 350px auto no-repeat;
  pointer-events: none;
}
.rpp-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 342px 1fr;
  gap: 60px;
  align-items: center;
}
.rpp-photo { width: 342px; margin: 0; }
.rpp-photo img {
  width: 342px;
  height: auto;
  object-fit: cover;
  object-position: top center;
  border-radius: 10%;
  border: 2px solid #fff;
}
.rpp-copy {
  padding: 0 100px 0 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.rpp-copy .btn { align-self: flex-start; margin-top: 8px; }
.rpp h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 56px;
  margin: 0 0 8px;
  color: #fff;
}
.rpp .kicker { margin: 0 0 14px; }
.rpp .lead {
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
  margin: 0 0 16px;
}
.rpp-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
  margin: 0 0 20px;
  width: 100%;
  max-width: 520px;
}
.rpp-icons .ico { color: var(--gold); margin: 0 auto 8px; width: 36px; height: 36px; }
.rpp-icons .ico svg { width: 36px; height: 36px; fill: currentColor; }
.rpp-icons h3 {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
  color: #fff;
}

/* Therapy cards */
.paths { padding: 70px 0 30px; background: #fff; }
.paths .kicker { text-align: center; margin-bottom: 0; }
.paths h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.05;
  color: var(--teal);
  text-align: center;
  margin: 0;
}
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 0 0 70px;
  background: #fff;
}
.tcard {
  background: #fff;
  padding: 30px 20px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  border-radius: 25px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.37);
}
.tcard .ico { color: var(--gold); width: 70px; height: 70px; }
.tcard .ico svg { width: 70px; height: 70px; fill: currentColor; }
.tcard h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8em;
  font-weight: 700;
  line-height: 1.2;
  color: var(--teal);
  margin: 0;
}
.tcard p { font-size: 15px; line-height: 1.5; margin: 0; }
.tcard .btn {
  margin-top: 8px;
  background: #fff;
  color: #193f51;
  border: 1px solid #5c5c5d;
}

/* Dual CTA */
.dual {
  position: relative;
  background: #f9f9f9;
  padding: 60px 0 90px;
}
.dual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/assets/img/avatar-overlay.webp");
  background-repeat: repeat-x;
  background-position: 0 50%;
  background-size: auto;
  opacity: 0.1;
  pointer-events: none;
}
.dual-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.dual-card {
  padding: 40px 30px 30px;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 15px;
  border-radius: 25px;
  position: relative;
  overflow: hidden;
}
.dual-card.dark {
  background: var(--teal) url("/assets/img/icon.webp") 250px 50px / auto no-repeat;
  color: #fff;
}
.dual-card.gold {
  background: var(--gold) url("/assets/img/icon-deco.webp") 250px 50px / auto no-repeat;
  color: #fff;
}
.dual-card .ico {
  width: 36px;
  height: 36px;
  color: #fff;
}
.dual-card .ico svg { width: 36px; height: 36px; fill: currentColor; }
.dual-copy { margin-right: 140px; }
.dual-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5em;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 8px;
  color: #fff;
}
.dual-card p { font-size: 16px; color: #fff; margin: 0; }

/* Footer */
.site-footer { background: var(--teal); color: #fff; }
.footer-main {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 32px;
  padding: 48px 0 32px;
}
.footer-brand img { width: 100px; margin-bottom: 16px; }
.footer-brand p {
  font-size: 16px;
  font-weight: 300;
  color: #fff;
  max-width: 335px;
}
.site-footer h3 {
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 16px;
}
.site-footer li { margin-bottom: 10px; }
.site-footer li a,
.site-footer li span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 14px;
}
.site-footer svg { width: 16px; height: 16px; fill: var(--gold); flex: 0 0 16px; }
.footer-copy {
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  font-size: 14px;
  font-weight: 300;
  color: var(--mint);
}
.footer-copy a { color: var(--mint); }

.wa-float {
  position: fixed;
  right: 25px;
  bottom: 10px;
  z-index: 9999;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(37,211,102,.35);
}
.wa-float svg { width: 32px; height: 32px; fill: #fff; }
.wa-float:hover { background: #1ebe57; }

/* Inner pages */
.page-banner {
  background: linear-gradient(180deg, var(--mint) 0%, #f5f5f5 100%);
  padding: 10px 0 20px;
}
.page-banner h1 {
  font-family: Cormorant, "Cormorant Garamond", serif;
  font-size: 40px;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--teal);
  display: inline-block;
  margin: 0;
  padding: 0 5px 0 50px;
  border-bottom: 6px double var(--gold);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.split img { border-radius: 10%; }
.split.rev { direction: rtl; }
.split.rev > * { direction: ltr; }

.prose h2, .split h2, .block h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--teal);
  margin: 0 0 16px;
}
.prose h3, .block h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--teal);
  margin: 24px 0 12px;
}
.prose p, .split p, .block p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 1em;
}

.section { padding: 64px 0; }
.section.mint { background: var(--mint); }
.section.teal { background: var(--teal); color: #fff; }
.section.teal h2, .section.teal h3 { color: #fff; }
.section.soft { background: var(--soft); }
.section.cream { background: var(--cream); }

.check-list li,
.dot-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 16px;
}
.check-list svg,
.dot-list svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  fill: var(--gold);
  margin-top: 3px;
}

.form-title {
  font-family: Cormorant, "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  color: var(--gold);
  margin: 0 0 20px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  text-align: center;
  justify-items: center;
}
.form-grid figure { margin: 0; max-width: 140px; }
.form-grid img { margin: 0 auto 8px; width: 100px; height: 100px; object-fit: contain; }
.form-grid h3 {
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
  margin: 8px 0 0;
}

/* Página Rosangela Arias */
.sobre-hero { padding: 10px 0 20px; }
.sobre-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.sobre-photo { position: relative; }
.sobre-photo .main {
  width: 100%;
  max-width: 515px;
  height: auto;
  border-radius: 10%;
}
.sobre-photo .marca {
  position: absolute;
  right: -12px;
  bottom: 8px;
  width: 153px;
  height: 153px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px double var(--gold-2);
}
.sobre-copy { padding: 24px 0; }
.sobre-copy .kicker { margin-bottom: 8px; }
.sobre-copy h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  color: var(--teal);
  margin: 0 0 20px;
}
.sobre-copy p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  margin: 0 0 14px;
}

.formacoes { padding: 30px 0 40px; }
.form-note {
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  padding: 16px 15% 0;
  margin: 0;
}

.olhar { padding: 20px 0 40px; }
.olhar-box {
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 16px;
  align-items: center;
  background: var(--mint);
  border-radius: 20px;
  padding: 20px;
}
.olhar-copy .kicker { margin-bottom: 8px; }
.olhar-copy h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  color: var(--teal);
  margin: 0 0 16px;
}
.olhar-copy p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  margin: 0 0 14px;
}
.olhar-art { margin: 0; }
.olhar-art img {
  width: 310px;
  max-width: 100%;
  height: auto;
  border-radius: 0;
}

.orienta { padding: 20px 0 40px; background: #fff; }
.orienta h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 41px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--teal);
  text-align: center;
  margin: 0 0 28px;
}
.orienta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}
.orienta .check-list span {
  font-size: 18px;
  line-height: 1.5;
  color: var(--text);
}

.proposito { padding: 0 0 40px; }
.proposito-card {
  background: var(--teal);
  color: #fff;
  text-align: center;
  padding: 36px 80px 40px;
  border-radius: 20px;
}
.proposito-card img {
  width: 91px;
  height: 91px;
  margin: 0 auto 12px;
  object-fit: contain;
}
.proposito-card h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 45px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  margin: 0 0 16px;
}
.proposito-card p {
  font-size: 18px;
  line-height: 1.6;
  color: #fff;
  margin: 0 auto 12px;
  max-width: 720px;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 28px;
}
.mini-grid h3 { font-size: 18px; margin: 0 0 6px; color: var(--teal); }
.mini-grid p { font-size: 15px; margin: 0; }

.tarot-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.tarot-card {
  background: #fff;
  border: 1px solid var(--mint);
  padding: 20px 22px;
}
.tarot-card h3 { margin-top: 0; font-size: 20px; }

/* Terapeutas Parceiras */
.tp {
  background: #fff;
  padding: 10px 0 0;
}
.tp-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 63px;
  font-weight: 700;
  line-height: 1;
  color: var(--teal);
  text-align: left;
  margin: 0;
}
.tp-role {
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0;
  color: var(--gold);
  text-align: left;
  margin: -8px 0 20px;
}
.tp-panel {
  background: #efefef;
  padding: 50px 30px 40px;
}
.tp-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}
.tp-split-bio {
  grid-template-columns: 40% 1fr;
  align-items: center;
}
.tp-photo {
  width: 100%;
  display: block;
  border-radius: 25px;
  object-fit: fill;
  object-position: center;
}
.tp-photo-manu {
  height: 800px;
  object-fit: cover;
}
.tp-photo-service { height: 480px; }
.tp-photo-mid { height: 400px; }
.tp-photo-tarot {
  height: 500px;
  width: 317px;
  max-width: 100%;
  object-fit: fill;
  margin-inline: auto;
}
.tp-bio h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 46.8px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--teal);
  margin: 0 0 16px;
}
.tp-bio p,
.tp-split p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  margin: 0 0 1em;
}
.tp-split p:last-child { margin-bottom: 0; }
.tp-section-title {
  font-family: Cormorant, "Cormorant Garamond", serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  text-align: center;
  margin: 28px 0 24px;
}
.tp-service {
  font-family: Cormorant, "Cormorant Garamond", serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--teal);
  margin: 0 0 16px;
  line-height: 1.2;
}
.tp-lead {
  font-family: Cormorant, "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--teal);
  margin: 12px 0 18px;
}
.tp-lead-pull { margin-top: 12px; }
.tp-block { margin-top: 20px; }
.tp-close {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  margin: 16px 0 0;
}
.tp-lead + .tp-items,
.tp-split + .tp-items {
  margin-top: 0;
}
.tp-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 40px;
  margin: 0 0 8px;
}
.tp-items article {
  display: flex;
  align-items: flex-start;
  gap: 5px;
}
.tp-items .ico {
  flex: 0 0 27px;
  width: 27px;
  color: var(--gold);
  margin-top: 3px;
}
.tp-items .ico svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
  display: block;
}
.tp-items h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--teal);
  margin: 0 0 5px;
  line-height: 1.2;
}
.tp-items p {
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  margin: 0;
  line-height: 1.6;
}

/* Terapias */
.tx-band { padding: 0; }
.tx-psi { background: var(--mint); }
.tx-theta { background: #efefef; }
.tx-apo { background: var(--beige); }
.tx-psi > .container { padding: 40px 0 0; }
.tx-quote > .container { padding: 16px 0 40px; }
.tx-theta { margin-top: 50px; }
.tx-theta > .container { padding: 40px 0 0; }
.tx-theta-mid { padding: 25px 0 0 !important; }
.tx-apo { margin-top: 35px; }
.tx-apo > .container { padding: 30px 0 0; }
.tx-apo-mid { padding: 40px 0 20px !important; }
.tx-case-wrap { padding: 25px 0 50px !important; }
.tx-apo > .tx-case-wrap { padding: 40px 0 20px !important; }
.tx-faq { padding: 20px 0 !important; }
.tx-cols { padding: 30px 0 50px !important; }

.tx-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.tx-copy p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text);
  margin: 0 0 1em;
}
.tx-copy p:last-child { margin-bottom: 0; }
.tx-copy .tx-kicker,
p.tx-kicker {
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--gold);
  margin: 0;
}
.tx-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--teal);
  line-height: 1.05;
  margin: -12px 0 12px;
}
.tx-copy .tx-lead,
p.tx-lead {
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--teal);
  margin: 0 0 16px;
}
.tx-copy .tx-lead-gold,
p.tx-lead-gold { color: var(--gold); }
.tx-h {
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--teal);
  margin: 16px 0 12px;
}
.tx-h-600 { font-weight: 600; }
.tx-img {
  max-width: 100%;
  height: auto;
  border-radius: 25px;
  object-fit: cover;
}
.tx-img:not(.tx-img-psi) { width: 100%; }
.tx-img-psi {
  width: 450px;
  max-width: 100%;
  border-radius: 10%;
  justify-self: end;
}
.tx-quote p {
  font-family: Cormorant, "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--teal);
  text-align: center;
  line-height: 1.35;
  padding: 2% 12%;
  margin: 0;
}
.tx-case {
  background: #193f5126;
  padding: 30px;
  border-radius: 25px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
}
.tx-case p { margin: 0 0 1em; }
.tx-case p:last-child { margin-bottom: 0; }
.tx-case-gold {
  background: #cfa8657d;
  padding: 20px;
}
.tx-copy .dot-list li { margin-bottom: 10px; font-size: 16px; }
.tx-copy .dot-list svg {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  fill: var(--gold);
  margin-top: 5px;
}
.chev-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 10px;
  font-size: 16px;
  color: var(--text);
}
.chev-list svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  fill: var(--teal);
  margin-top: 1px;
}
.tx-faq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.tx-faq article {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.tx-faq .ico {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
}
.tx-faq .ico svg {
  width: 42px;
  height: 42px;
  fill: var(--gold);
}
.tx-faq h3 {
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--gold);
  margin: 0 0 5px;
  line-height: 1.3;
}
.tx-faq p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
}
.tx-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.tx-cols .tx-h { margin-top: 0; }
.tx-cols .dot-list svg {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  fill: var(--gold);
  margin-top: 5px;
}

.contact-page {
  padding: 50px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  background: var(--mint);
  padding: 40px 25px;
}
.contact-grid > img { border-radius: 25px; }
.contact-page h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  color: var(--teal);
  margin: 0 0 16px;
}
.contact-list li { margin-bottom: 14px; }
.contact-list a,
.contact-list span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--teal);
  font-size: 16px;
}
.contact-list svg { width: 20px; height: 20px; fill: var(--gold); }
.socials { display: flex; gap: 12px; margin-top: 20px; }
.socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.socials svg { width: 18px; height: 18px; fill: #fff; }
.socials a:hover { background: var(--gold); }

.coming {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
}
.coming h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 56px;
  color: var(--teal);
  margin: 0 0 24px;
}
.coming img { max-width: 520px; margin: 0 auto 24px; }

/* Módulo landings */
.mod-hero {
  background: var(--teal);
  color: #fff;
  padding: 48px 0 0;
}
.mod-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 32px;
  align-items: end;
}
.mod-hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.05;
  margin: 8px 0 16px;
  color: #fff;
}
.mod-hero .eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 14px;
  font-weight: 600;
}
.mod-hero .quote {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-style: italic;
  color: var(--gold-2);
  margin: 16px 0 24px;
}
.mod-hero img { width: 100%; height: auto; object-fit: contain; }

.portal {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 28px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid rgba(25,63,81,.08);
}
.portal img { width: 140px; height: 140px; object-fit: contain; margin: 0 auto; }
.portal h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  color: var(--teal);
  margin: 0 0 8px;
}

/* Landing Módulo I */
.landing { background: var(--blush); }
.landing main { overflow: visible; }
.lp-hero {
  background: var(--navy);
  padding: 50px 50px 0;
}
.lp-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0 24px;
  align-items: end;
  max-width: 1240px;
  margin: 0 auto;
}
.lp-hero-photo,
.lp-hero-copy { min-width: 0; }
.lp-hero-photo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: bottom center;
}
.lp-hero-copy {
  text-align: center;
  padding: 70px 0 0;
  color: #fff;
}
.lp-badge {
  display: inline-block;
  margin: 0 auto 8px;
  padding: 5px;
  border: 1px solid var(--gold);
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--gold);
}
.lp-hero-copy h1 {
  margin: 0;
  line-height: .95;
}
.lp-hero-titles {
  width: max-content;
  max-width: 100%;
  margin: 0 auto;
}
.lp-h-alinhar {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 6.5rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  margin: -8px 0 0;
  line-height: .9;
  white-space: nowrap;
}
.lp-h-para {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold);
  margin: -12px 0 0;
  line-height: 1;
  white-space: nowrap;
}
.lp-with {
  margin: 4px 0 0;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #fff;
  text-align: right;
}
.lp-rule {
  width: 30%;
  margin: 15px auto;
  border: 0;
  border-top: 1px solid var(--gold);
}
.lp-quote {
  font-family: Cormorant, "Cormorant Garamond", serif;
  font-size: 27px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin: 0 0 12px;
}
.lp-lead {
  font-size: 16px;
  line-height: 1.6;
  color: var(--cream);
  margin: 0 0 24px;
}
.lp-btn {
  display: inline-flex;
  margin: 0 auto 70px;
  font-size: 12px;
  border-radius: 20px;
}
.lp-intro-band {
  background: var(--blush);
  padding: 100px 0 10px;
}
.lp-formula {
  position: relative;
  z-index: 2;
  background: #fff;
  border: 1px solid var(--cream);
  border-radius: 25px;
  padding: 30px 25px;
  margin: -150px auto 0;
  text-align: center;
  width: 80%;
  max-width: 920px;
}
.lp-formula h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--teal);
  margin: 8px auto 0;
  line-height: 1.25;
  max-width: 90%;
}
.lp-kicker {
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--gold);
  margin: 0;
}
.lp-kicker-space { margin-top: 30px; text-align: center; }
.lp-section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.7rem;
  font-weight: 700;
  color: var(--teal);
  text-align: center;
  margin: 4px 0 16px;
  line-height: 1.15;
}
.lp-intro {
  max-width: 70%;
  margin: 0 auto 20px;
  text-align: center;
  font-size: 16px;
  color: var(--text);
}
.lp-portal { background: var(--blush); padding: 30px 0; }
.lp-portal-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 50px;
  align-items: center;
}
.lp-portal-flip .lp-portal-grid { grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); }
.lp-sym {
  background: var(--teal);
  border-radius: 25px;
  padding: 140px 24px;
  text-align: center;
  color: #fff;
}
.lp-sym .ico {
  width: 84px;
  height: 84px;
  margin: 0 auto 16px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.lp-sym .ico svg { width: 40px; height: 40px; fill: var(--gold); }
.lp-sym h3 {
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.35;
}
.lp-sym p { margin: 0; color: var(--gold); font-size: 18px; font-style: italic; }
.lp-copy .lp-kicker { text-align: left; margin: 0 0 6px; line-height: 1.5; }
.lp-eu {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.7rem;
  font-weight: 700;
  font-style: italic;
  color: var(--gold);
  margin: 0;
  line-height: 1.15;
}
.lp-ptitle {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--teal);
  margin: 2px 0 12px;
}
.lp-copy > p:not(.lp-kicker) {
  font-size: 16px;
  color: var(--text);
  margin: 0 0 20px;
  line-height: 1.6;
}
.lp-arch {
  background: var(--sand);
  border: 1px solid var(--gold);
  border-radius: 25px;
  padding: 25px;
}
.lp-arch .lp-kicker { font-size: 13px; }
.lp-arch h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  color: var(--teal);
  margin: 2px 0 8px;
}
.lp-arch p { font-size: 14px; color: var(--text); margin: 0; }
.lp-path {
  background: var(--teal);
  padding: 50px 0;
  text-align: center;
  color: #fff;
}
.lp-path .lp-kicker { margin-bottom: 6px; }
.lp-path-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.7rem;
  font-weight: 700;
  font-style: italic;
  color: #fff;
  margin: 0 0 36px;
}
.lp-steps {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 6px;
}
.lp-step { flex: 1; min-width: 0; padding: 10px; }
.lp-step .ico {
  width: 64px;
  height: 64px;
  margin: 0 auto 12px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.lp-step .ico svg { width: 30px; height: 30px; fill: var(--gold); }
.lp-step h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 6px;
}
.lp-step p { margin: 0; font-size: 14px; color: var(--gold); line-height: 1.4; text-transform: uppercase; }
.lp-arrow {
  flex: 0 0 22px;
  width: 22px;
  margin-top: 28px;
  color: var(--gold);
}
.lp-arrow svg { width: 18px; height: 18px; fill: var(--gold); }
.lp-cta { background: var(--blush); padding: 50px 0; }
.lp-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.lp-card {
  background: #fff;
  border: 1px solid var(--sand);
  border-radius: 25px;
  padding: 30px;
  text-align: center;
}
.lp-card h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.7rem;
  font-weight: 700;
  font-style: italic;
  color: #000;
  margin: 4px 0 16px;
  line-height: 1.2;
}
.lp-card > p { color: var(--text); margin: 0 0 20px; }
.lp-btn-cta {
  margin: 0 auto;
  font-size: 13px;
  border-radius: 5px;
}
.lp-card-list { text-align: left; display: flex; align-items: center; }
.lp-card-list .check-list { width: 100%; }
.lp-foot {
  background: var(--teal);
  padding: 28px 0;
}
.lp-foot-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--mint);
  font-size: 14px;
  font-weight: 300;
}
.lp-foot a { color: #f3f3f3; }

/* Landing Módulo II */
.m2 { background: var(--blush); }
.m2-hero {
  background: var(--blush);
  padding: 50px 50px 0;
}
.m2-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0 24px;
  align-items: end;
  max-width: 1240px;
  margin: 0 auto;
}
.m2-hero-photo,
.m2-hero-copy { min-width: 0; }
.m2-hero-photo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: bottom center;
}
.m2-hero-copy {
  text-align: center;
  padding: 40px 0 28px;
  color: var(--text);
}
.m2-mod {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  color: var(--teal);
}
.m2-with {
  margin: 2px 0 0;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--gold);
}
.m2-hero-titles {
  width: max-content;
  max-width: 100%;
  margin: 4px auto 0;
}
.m2-hero-copy h1 { margin: 0; }
.m2-h-rec {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 4.8vw, 4.9rem);
  font-weight: 700;
  text-transform: uppercase;
  color: #193f51;
  line-height: .9;
  white-space: nowrap;
}
.m2-h-para {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 3.6vw, 3.7rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0;
  line-height: 1;
  white-space: nowrap;
}
.m2-rule {
  width: 30%;
  margin: 16px auto;
  border: 0;
  border-top: 1px solid var(--gold);
}
.m2-rule-left { margin-left: 0; }
.m2-quote {
  font-family: Cormorant, "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--teal);
  line-height: 1.35;
  margin: 0 0 12px;
}
.m2-lead {
  font-size: 16px;
  line-height: 1.6;
  color: #5c5c5d;
  margin: 0 0 12px;
}
.m2-btn {
  margin: 12px auto 20px;
  font-size: 12px;
  border-radius: 20px;
}
.m2-feel {
  background: var(--teal);
  padding: 40px 0 0;
  color: #fff;
}
.m2-feel-row {
  display: grid;
  grid-template-columns: minmax(160px, .32fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}
.m2-feel h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1.2;
}
.m2-feel-items {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  text-align: center;
}
.m2-feel-items img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin: 0 auto 10px;
  filter: brightness(0) saturate(100%) invert(77%) sepia(28%) saturate(548%) hue-rotate(6deg) brightness(95%);
}
.m2-feel-items p {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
  color: var(--cream);
}
.m2-feel-note {
  padding: 14px 0 36px;
  text-align: center;
  color: var(--mint);
  font-size: 18px;
}
.m2-feel-note p { margin: 0 0 4px; }
.m2-imersao { background: var(--blush); padding: 50px 0; }
.m2-imersao-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 40px;
  align-items: center;
}
.m2-imersao-copy h2 {
  margin: 0;
  font-family: Inter, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--teal);
}
.m2-imersao-copy h3 {
  margin: 0 0 16px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1.3;
}
.m2-imersao-copy h3 em { font-style: italic; color: var(--gold); }
.m2-une { margin: 0 0 12px; font-size: 15px; }
.m2-mini {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 20px;
  text-align: center;
}
.m2-mini img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin: 0 auto 6px;
}
.m2-mini p {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--teal);
  line-height: 1.3;
}
.m2-imersao-art {
  width: 100%;
  height: auto;
  border-radius: 25px;
  object-fit: cover;
}
.m2-work { background: var(--blush); padding: 30px 0 50px; }
.m2-work > .container > h2 {
  margin: 0;
  text-align: center;
  font-family: Inter, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--gold);
}
.m2-work .m2-rule { width: 80px; margin: 12px auto 28px; }
.m2-work-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}
.m2-work-grid article {
  background: var(--sand);
  border: 1.5px solid var(--gold);
  border-radius: 22px;
  padding: 22px 10px 18px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, .12);
}
.m2-work-grid img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin: 0 auto 10px;
}
.m2-work-grid h3 {
  margin: 0 0 8px;
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--teal);
  line-height: 1.25;
}
.m2-work-grid p {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  color: var(--text);
}
.m2-mid { background: var(--blush); padding: 10px 0 30px; }
.m2-mid-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}
.m2-final {
  background: var(--teal);
  border-radius: 25px;
  padding: 40px 30px 30px;
  color: #fff;
}
.m2-final h2,
.m2-sobre h2,
.m2-recv h2 {
  margin: 0 0 16px;
  font-family: Inter, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--gold);
}
.m2-final .check-list span { color: #fff; }
.m2-final .check-list svg { fill: var(--gold); }
.m2-sobre {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(200px, .85fr);
  gap: 16px;
  align-items: center;
  background: var(--blush);
  border-radius: 25px;
  padding: 28px 16px 28px 30px;
  overflow: hidden;
  min-height: 100%;
}
.m2-sobre-copy p {
  font-size: 14px;
  color: var(--text);
  margin: 0 0 10px;
}
.m2-sobre img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center 6%;
  border-radius: 18px;
}
.m2-recv-sec { background: var(--blush); padding: 0 0 40px; }
.m2-recv-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 24px; }
.m2-recv {
  background: var(--sand);
  border: 2px solid #fff;
  border-radius: 25px;
  padding: 40px 30px 30px;
}
.m2-recv .check-list svg { fill: var(--teal); }
.m2-cta {
  background: var(--teal);
  padding: 48px 0 56px;
  color: #fff;
}
.m2-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  padding: 0 8%;
}
.m2-cta-titles {
  padding-right: 8%;
  border-right: 2px solid var(--gold);
}
.m2-cta h2,
.m2-cta h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.2;
}
.m2-cta h3 { color: var(--gold); }
.m2-cta-copy { text-align: center; }
.m2-cta-copy p { margin: 0 0 16px; color: var(--mint); }
.m2-btn-cta { margin: 0 auto 16px; font-size: 12px; border-radius: 5px; }
.m2-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  color: var(--gold);
}
.m2-badges svg {
  width: 12px;
  height: 12px;
  fill: var(--gold);
  vertical-align: -1px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}
.work-grid img { width: 120px; height: 120px; object-fit: contain; margin: 0 auto 12px; }
.work-grid h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  color: var(--teal);
  margin: 0 0 8px;
}
.price {
  font-family: "Cormorant Garamond", serif;
  font-size: 72px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin: 8px 0 12px;
}
.feel-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.15);
  color: #fff;
}

@media (max-width: 1024px) {
  .hero-grid, .about-grid, .approach-grid, .rpp-grid, .split, .contact-grid, .mod-hero-grid,
  .sobre-hero-grid, .olhar-box, .orienta-grid, .tp-split, .tx-split, .tx-faq, .tx-cols,
  .lp-hero-grid, .lp-portal-grid, .lp-portal-flip .lp-portal-grid, .lp-cta-grid,
  .m2-hero-grid, .m2-feel-row, .m2-imersao-grid, .m2-mid-grid, .m2-recv-grid, .m2-cta-grid, .m2-sobre {
    grid-template-columns: 1fr;
  }
  .lp-hero { padding: 24px 24px 0; }
  .lp-hero-copy { padding-top: 24px; }
  .lp-hero-photo { order: 2; }
  .lp-h-alinhar { font-size: 3.2rem; white-space: normal; }
  .lp-h-para { font-size: 2.2rem; white-space: normal; }
  .lp-quote { font-size: 22px; }
  .lp-formula { margin-top: -70px; }
  .lp-intro-band { padding-top: 80px; }
  .lp-formula h2, .lp-section-title, .lp-eu, .lp-path-title, .lp-card h2 { font-size: 1.8rem; }
  .lp-ptitle, .lp-arch h4 { font-size: 1.6rem; }
  .lp-intro { max-width: 100%; }
  .lp-with { text-align: center; padding-right: 0; }
  .lp-sym { padding: 56px 24px; }
  .lp-steps { flex-wrap: wrap; justify-content: center; }
  .lp-step { flex: 1 1 40%; }
  .lp-arrow { display: none; }
  .lp-foot-inner { flex-direction: column; text-align: center; }
  .m2-hero { padding: 24px 24px 0; }
  .m2-hero-photo { order: 2; }
  .m2-h-rec, .m2-h-para { white-space: normal; }
  .m2-feel-items { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .m2-mini { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .m2-work-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .m2-cta-grid { padding: 0; }
  .m2-cta-titles { border-right: 0; padding-right: 0; text-align: center; }
  .m2-sobre img { height: 320px; max-height: none; }
  .tx-title { font-size: 2.4em; margin-top: 0; }
  .tx-quote p { font-size: 22px; padding: 0 4%; }
  .tp-photo-manu { height: 500px; }
  .tp-name { font-size: 54px; }
  .tp-bio h2 { font-size: 1.7em; }
  .tp-photo-tarot { width: auto; height: auto; max-height: 500px; }
  .olhar-art { justify-self: center; }
  .olhar-box { grid-template-columns: 1fr; }
  .proposito-card { padding: 36px 40px 40px; }
  .hero-copy h2, .hero h1 { font-size: 52px; line-height: 56px; }
  .nav-desktop { display: none; }
  .nav-toggle { display: block; }
  .brand { flex: 1; }
  .icon-grid, .cards-3, .work-grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: repeat(3, 1fr); }
  .rpp-icons { grid-template-columns: repeat(2, 1fr); }
  .rpp { padding: 40px 0; }
  .rpp::after { width: 220px; background-size: 220px auto; }
  .rpp-grid { grid-template-columns: 1fr; gap: 32px; min-height: 0; }
  .rpp-photo, .rpp-photo img { width: min(342px, 100%); }
  .rpp-copy { padding: 24px 0 0; }
  .rpp h2 { font-size: 36.8px; line-height: 1.1; }
  .footer-main { grid-template-columns: 1fr; }
  .dual-grid { grid-template-columns: 1fr; gap: 30px; }
  .dual-copy { margin-right: 0; }
  .dual-card.gold, .dual-card.dark { background-position: right 16px center; }
}

@media (max-width: 767px) {
  .hero-copy h2, .hero h1, .about h2, .approach h2, .rpp h2, .coming h1, .mod-hero h1,
  .sobre-copy h2, .olhar-copy h2 {
    font-size: 36px;
    line-height: 40px;
  }
  .tx-title { font-size: 2em; }
  .tx-quote p { font-size: 20px; padding: 0; }
  .form-note, .proposito-card { padding-left: 20px; padding-right: 20px; }
  .orienta h2 { font-size: 32px; }
  .proposito-card h2 { font-size: 36px; }
  .sobre-photo .marca { width: 110px; height: 110px; right: 0; }
  .paths h2 { font-size: 32px; line-height: 36px; }
  .icon-grid, .cards-3, .form-grid, .work-grid, .tarot-grid, .mini-grid {
    grid-template-columns: 1fr 1fr;
  }
  .tp-name { font-size: 40px; text-align: center; }
  .tp-role { text-align: center; }
  .tp-bio h2 { font-size: 2em; text-align: center; }
  .tp-service { text-align: center; }
  .tp-items { grid-template-columns: 1fr; }
  .tp-lead-pull { margin-top: 16px; }
  .tp-panel { padding: 28px 16px 32px; }
  .tp-split-bio { grid-template-columns: 1fr; }
  .about-photos { min-height: 0; }
  .about-photos .marca { width: 110px; height: 110px; }
  .brand img { width: 72px; }
  .portal { grid-template-columns: 1fr; text-align: center; }
  .footer-copy { flex-direction: column; text-align: center; }
  .price { font-size: 48px; }
  .lp-hero { padding: 0 10px; }
  .lp-formula { width: 90%; padding: 25px 10px; }
  .lp-formula h2 { max-width: 100%; }
  .m2-hero { padding: 0 10px; }
  .m2-feel-items, .m2-work-grid { grid-template-columns: 1fr 1fr; }
}

/* Elementor entrance animations */
html:not(.js) .reveal { visibility: visible; }
.reveal {
  visibility: hidden;
}
.reveal.is-in {
  visibility: visible;
}
.reveal.is-in[data-anim="fade-in"] { animation: eFadeIn 1.25s ease both; }
.reveal.is-in[data-anim="fade-up"] { animation: eFadeInUp 1.25s ease both; }
.reveal.is-in[data-anim="fade-down"] { animation: eFadeInDown 1.25s ease both; }
.reveal.is-in[data-anim="fade-left"] { animation: eFadeInLeft 1.25s ease both; }
.reveal.is-in[data-anim="fade-right"] { animation: eFadeInRight 1.25s ease both; }

@keyframes eFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes eFadeInUp {
  from { opacity: 0; transform: translate3d(0, 80px, 0); }
  to { opacity: 1; transform: none; }
}
@keyframes eFadeInDown {
  from { opacity: 0; transform: translate3d(0, -80px, 0); }
  to { opacity: 1; transform: none; }
}
@keyframes eFadeInLeft {
  from { opacity: 0; transform: translate3d(-80px, 0, 0); }
  to { opacity: 1; transform: none; }
}
@keyframes eFadeInRight {
  from { opacity: 0; transform: translate3d(80px, 0, 0); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { visibility: visible; }
  .reveal.is-in[data-anim] { animation: none; }
}
