/* ================================================
   JU LAMIM — SOUL FLOW
   Brand Stylesheet
   ================================================ */

/* Custom Fonts */
@font-face {
  font-family: 'England';
  src: url('Fonte/England.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Against';
  src: url('Fonte/against regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Google Fonts — Montserrat Regular (400) */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

/* ================================================
   CSS VARIABLES
   ================================================ */
:root {
  /* Colors */
  --cream:        #FAF6F1;
  --beige-light:  #F2E9DC;
  --beige:        #E8D9C8;
  --taupe-light:  #D4BFA5;
  --taupe:        #C4A882;
  --warm-brown:   #B8956A;
  --brand:        #A67C52;
  --sage:         #8A9B7A;
  --sage-dark:    #6B7D5C;
  --dark:         #3D2B1F;
  --text:         #4A3628;
  --text-mid:     #7A6558;
  --text-light:   #A89080;
  --white:        #FFFFFF;

  /* Fonts */
  --font-script:  'England', cursive;        /* England Regular — APENAS em "Ju Lamim" */
  --font-title:   'Against', serif;          /* Against Regular — títulos principais */
  --font-body:    'Montserrat', sans-serif;  /* Montserrat Regular — textos gerais */

  /* Radii */
  --r-sm:   8px;
  --r:      16px;
  --r-lg:   28px;
  --r-xl:   40px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-xs: 0 2px 8px rgba(61,43,31,0.07);
  --shadow-sm: 0 4px 16px rgba(61,43,31,0.10);
  --shadow:    0 8px 32px rgba(61,43,31,0.14);
  --shadow-lg: 0 16px 56px rgba(61,43,31,0.18);

  /* Transitions */
  --t:     all 0.38s cubic-bezier(0.25,0.46,0.45,0.94);
  --t-slow: all 0.65s cubic-bezier(0.25,0.46,0.45,0.94);
}

/* ================================================
   RESET & BASE
   ================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  overflow-x: clip;   /* clip é mais robusto que hidden em Safari iOS */
  width: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background: var(--cream);
  line-height: 1.38;
  overflow-x: hidden;
}

/* Quebras condicionais por breakpoint */
br.mobile-only  { display: none; }
br.desktop-only { display: block; }
@media (max-width: 768px) {
  br.mobile-only  { display: block; }
  br.desktop-only { display: none; }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  /* Prevent sub-pixel blurriness from GPU compositing on iOS Safari */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; }

/* ================================================
   NAVIGATION
   ================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 22px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--t);
}

.nav.scrolled {
  background: rgba(250,246,241,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 56px;
  box-shadow: var(--shadow-xs);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

.nav-logo img {
  width: 34px;
  height: auto;
  transition: var(--t);
}

.nav-logo-text {
  font-family: var(--font-script);
  font-size: 1.9rem;
  color: var(--warm-brown);
  line-height: 1;
  transition: var(--t);
}

/* Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 44px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  transition: var(--t);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 1px;
  background: var(--warm-brown);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.32s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a:hover,
.nav-links a.active { color: var(--warm-brown); }

/* Hero nav variant — links are white */
.nav-hero .nav-links a { color: rgba(255,255,255,0.9); }
.nav-hero .nav-links a::after { background: rgba(255,255,255,0.8); }
.nav-hero .nav-logo-text { color: rgba(255,255,255,0.95); }

.nav-hero.scrolled .nav-links a { color: var(--text); }
.nav-hero.scrolled .nav-links a::after { background: var(--warm-brown); }
.nav-hero.scrolled .nav-logo-text { color: var(--warm-brown); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 2;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text);
  transition: var(--t);
  border-radius: 2px;
}

.nav-hero .hamburger span { background: var(--white); }
.nav-hero.scrolled .hamburger span { background: var(--text); }

.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-menu.open { opacity: 1; pointer-events: all; }

.mobile-menu-close {
  position: absolute;
  top: 22px; right: 20px;
  font-size: 1.6rem;
  color: var(--text-mid);
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
}

.mobile-menu a {
  font-family: var(--font-title);
  font-size: 2.8rem;
  letter-spacing: 0.06em;
  color: var(--text);
  transition: var(--t);
}

.mobile-menu a:hover { color: var(--warm-brown); }

.mobile-menu-snake {
  width: 60px;
  opacity: 0.4;
  margin-bottom: 8px;
}

/* ================================================
   HERO
   ================================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-overlay-left {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(35,22,12,0.52) 0%,
    rgba(35,22,12,0.28) 55%,
    rgba(35,22,12,0.04) 100%
  );
}

/* Centred hero variant */
.hero-overlay-center {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(35,22,12,0.45) 0%,
    rgba(35,22,12,0.20) 50%,
    rgba(35,22,12,0.50) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 72px;
  max-width: 620px;
}

.hero-content.centered {
  max-width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 40px;
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.80);
  margin-bottom: 18px;
}

.hero-eyebrow-line {
  display: block;
  width: 28px;
  height: 1px;
  background: rgba(255,255,255,0.55);
}

.hero-name {
  font-family: var(--font-title);   /* Against — genérico; England só via .name-ju-lamim */
  font-size: clamp(3.8rem, 7.5vw, 6.5rem);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 6px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.22);
}

.hero-title {
  font-family: var(--font-title);
  font-size: clamp(1.1rem, 2.2vw, 1.65rem);
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.10em;
  margin-bottom: 22px;
  text-shadow: 0 1px 12px rgba(0,0,0,0.18);
}

.hero-text {
  font-size: 0.97rem;
  font-weight: 400;
  color: rgba(255,255,255,0.84);
  line-height: 1.4;
  margin-bottom: 36px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.14);
  max-width: 460px;
}

.hero-content.centered .hero-text { max-width: 560px; }

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: scrollHint 2.2s ease-in-out infinite;
}

.hero-scroll-hint span {
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.hero-scroll-hint::after {
  content: '';
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.55), transparent);
}

@keyframes scrollHint {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

/* ================================================
   BUTTONS
   ================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 34px;
  border-radius: var(--r-full);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: var(--t);
  cursor: pointer;
}

.btn-primary {
  background: var(--warm-brown);
  color: var(--white);
  box-shadow: 0 4px 22px rgba(184,149,106,0.38);
}
.btn-primary:hover {
  background: var(--brand);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(184,149,106,0.48);
}
.btn-sage-cta {
  background: var(--sage-dark);
  color: var(--white);
  box-shadow: 0 4px 22px rgba(107,125,92,0.38);
}
.btn-sage-cta:hover {
  background: var(--sage);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(107,125,92,0.48);
}

.btn-outline {
  background: transparent;
  color: var(--warm-brown);
  border: 1.5px solid var(--warm-brown);
}
.btn-outline:hover {
  background: var(--warm-brown);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--warm-brown);
  box-shadow: 0 4px 20px rgba(255,255,255,0.22);
}
.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,255,255,0.32);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.55);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ================================================
   LAYOUT HELPERS
   ================================================ */
.section { padding: 104px 0; }
.section-sm { padding: 72px 0; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 56px;
}

/* Responsive 2-column grid utility */
.responsive-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* Mentoria — "O que é" section grid (5fr 7fr desktop) */
.mentoria-what-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--warm-brown);
  margin-bottom: 14px;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--warm-brown);
}

.section-title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 3.8vw, 3rem);
  color: var(--text);
  letter-spacing: 0.04em;
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-title-white {
  font-family: var(--font-title);
  font-size: clamp(2rem, 3.8vw, 3rem);
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-body {
  font-size: 0.97rem;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.4;
  max-width: 520px;
}

/* ================================================
   HOME — SERVICES CAROUSEL SECTION
   ================================================ */
.services-section {
  position: relative;
  padding: 116px 0 104px;
  overflow: hidden;
  background: var(--beige-light);
}

/* Large translucent watermark text */
.services-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -52%);
  white-space: nowrap;
  font-family: var(--font-script);
  font-size: clamp(7rem, 14vw, 16rem);
  color: var(--taupe-light);
  opacity: 0.14;
  pointer-events: none;
  user-select: none;
  letter-spacing: 0.01em;
  z-index: 0;
  line-height: 1;
}

.services-header {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 56px;
}

.services-header .section-eyebrow { justify-content: center; }
.services-header .section-eyebrow::before { display: none; }

/* Carousel */
.carousel-wrapper { position: relative; z-index: 1; }

.carousel-track-container {
  overflow: hidden;
  padding: 16px 56px 32px;
}

.carousel-track {
  display: flex;
  gap: 28px;
  transition: transform 0.60s cubic-bezier(0.25,0.46,0.45,0.94);
  will-change: transform;
}

/* Service Cards — foto ocupa todo o card, texto flutua sobre gradient */
.service-card {
  flex: 0 0 calc(33.333% - 19px);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--t);
  position: relative;
  height: 440px;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.018);
  box-shadow: var(--shadow-lg);
}

/* Foto de fundo: 100% do card */
.service-card-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.70s ease;
}

.service-card:hover .service-card-bg-img { transform: scale(1.08); }

/* Overlay com transparência para legibilidade do texto */
.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20,13,6,0.88) 0%,
    rgba(20,13,6,0.52) 45%,
    rgba(20,13,6,0.14) 100%
  );
  transition: background 0.40s ease;
}

.service-card:hover .service-card-overlay {
  background: linear-gradient(
    to top,
    rgba(20,13,6,0.92) 0%,
    rgba(20,13,6,0.62) 52%,
    rgba(20,13,6,0.22) 100%
  );
}

/* Texto flutuando sobre a foto no rodapé do card */
.service-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0 28px 32px;
  text-align: center;
  z-index: 2;
}

.service-card-title {
  font-family: var(--font-title);
  font-size: 1.55rem;
  letter-spacing: 0.14em;
  color: var(--white);
  margin-bottom: 10px;
}

.service-card-desc {
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255,255,255,0.84);
  line-height: 1.33;
  margin-bottom: 18px;
}

/* Overlay link — cobre todo o card, tornando-o clicável */
.service-card-link {
  position: absolute;
  inset: 0;
  z-index: 10;
}

.service-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.90);
  font-weight: 400;
  border-bottom: 1px solid rgba(255,255,255,0.45);
  padding-bottom: 2px;
  transition: gap 0.28s ease, border-color 0.28s ease;
}
.service-card:hover .service-card-arrow {
  gap: 12px;
  border-color: rgba(255,255,255,0.85);
}

/* Carousel Controls */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
  position: relative;
  z-index: 1;
}

.carousel-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--taupe-light);
  color: var(--warm-brown);
  font-size: 0.95rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--t);
  background: transparent;
}
.carousel-btn:hover {
  background: var(--warm-brown);
  border-color: var(--warm-brown);
  color: var(--white);
}

.carousel-dots { display: flex; gap: 7px; }

.carousel-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--taupe-light);
  border: none;
  cursor: pointer;
  transition: var(--t);
}
.carousel-dot.active {
  width: 26px;
  border-radius: 4px;
  background: var(--warm-brown);
}

/* ================================================
   ABOUT PREVIEW (Home)
   ================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--r-xl);
}

.about-img-decor {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 180px; height: 180px;
  border-radius: var(--r-lg);
  background: var(--beige);
  z-index: -1;
}

.about-badge {
  position: absolute;
  bottom: 28px;
  left: -28px;
  background: var(--white);
  border-radius: var(--r);
  padding: 20px 24px;
  box-shadow: var(--shadow);
  text-align: center;
  min-width: 140px;
}

.about-badge-num {
  font-family: var(--font-title);   /* Against — número "9+", não é "Ju Lamim" */
  font-size: 3rem;
  color: var(--warm-brown);
  line-height: 1;
  margin-bottom: 4px;
}

.about-badge-label {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--text-mid);
  letter-spacing: 0.06em;
  line-height: 1.4;
}

.about-content { padding-right: 16px; }

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 32px;
}

.about-tag {
  padding: 7px 18px;
  border: 1px solid var(--beige);
  border-radius: var(--r-full);
  font-size: 0.76rem;
  font-weight: 400;
  color: var(--text-mid);
  letter-spacing: 0.07em;
  transition: var(--t);
}

.about-tag:hover {
  border-color: var(--taupe);
  color: var(--warm-brown);
}

/* ================================================
   BRAND HIGHLIGHT BLOCK
   ================================================ */
.brand-block {
  background: var(--warm-brown);
  border-radius: var(--r-xl);
  padding: 72px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.brand-block::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  pointer-events: none;
}

.brand-block::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}

.brand-block-icon {
  width: 68px;
  margin: 0 auto 24px;
}

.brand-block-title {
  font-family: var(--font-title);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--white);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.brand-block-text {
  font-size: 0.96rem;
  font-weight: 400;
  color: rgba(255,255,255,0.86);
  line-height: 1.4;
  max-width: 500px;
  margin: 0 auto 36px;
}

/* ================================================
   ENGLAND FONT — autoridade máxima: APENAS "Ju Lamim"
   ================================================ */
.name-ju-lamim {
  font-family: var(--font-script) !important;
}

/* ================================================
   BRAND GREEN SECTION ("Se permita viver")
   ================================================ */
.brand-green-section {
  background: var(--sage);
  position: relative;
  overflow: hidden;
}

.brand-green-pattern {
  position: absolute;
  inset: 0;
  background-image: url('Identidade visual/PATTERN3.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.10;
  pointer-events: none;
}

.brand-block-flat {
  text-align: center;
  padding: 20px 0;
}

/* ================================================
   REIKI PAGE STYLES
   ================================================ */

/* Split section: image | content */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.split-img {
  width: 100%; height: 100%;
  object-fit: cover;
  min-height: 480px;
}

.split-content {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--beige-light);
}

.split-content-cream { background: var(--cream); }

/* Feature cards */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  padding: 36px 28px;
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xs);
  transition: var(--t);
  border-bottom: 2px solid transparent;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-bottom-color: var(--warm-brown);
}

.feature-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--beige-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.feature-title {
  font-family: var(--font-title);
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  color: var(--text);
  margin-bottom: 10px;
}

.feature-text {
  font-size: 0.87rem;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.35;
}

/* ================================================
   MENTORIA PAGE STYLES
   ================================================ */

/* Pain points alternating */
.pain-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
}

.pain-section.reverse .pain-img-col { order: 2; }
.pain-section.reverse .pain-content-col { order: 1; }

.pain-img-col {
  height: 420px;
  overflow: hidden;
}

.pain-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.pain-img-col:hover .pain-img { transform: scale(1.04); }

.pain-content-col {
  padding: 64px 56px;
  background: var(--cream);
}

.pain-section.reverse .pain-content-col { background: var(--beige-light); }

.pain-title {
  font-family: var(--font-title);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: var(--text);
  margin-bottom: 16px;
}

.pain-body {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.4;
}

/* Journey list */
.journey-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.journey-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 24px;
  background: var(--white);
  border-radius: var(--r);
  box-shadow: var(--shadow-xs);
  transition: var(--t);
}

.journey-item:hover { transform: translateX(6px); box-shadow: var(--shadow-sm); }

.journey-dot {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--warm-brown);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 500;
  display: flex; align-items: center; justify-content: center;
  letter-spacing: 0;
}

.journey-text strong {
  display: block;
  font-weight: 500;
  color: var(--text);
  font-size: 0.93rem;
  margin-bottom: 2px;
}

.journey-text {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.33;
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 36px 32px 32px;
  box-shadow: var(--shadow-xs);
  position: relative;
  transition: var(--t);
}

.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }

.testimonial-quote {
  font-family: Georgia, serif;
  font-size: 4.5rem;
  color: var(--taupe-light);
  line-height: 0.8;
  margin-bottom: 16px;
}

.testimonial-body {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.4;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-brown);
}

/* How works */
.how-works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.how-card {
  padding: 40px 28px 36px;
  background: var(--white);
  border-radius: var(--r-lg);
  text-align: center;
  box-shadow: var(--shadow-xs);
  transition: var(--t);
  border-top: 3px solid var(--warm-brown);
}

.how-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }

.how-num {
  font-family: var(--font-title);   /* Against — números "6", "1°", "2°", não é "Ju Lamim" */
  font-size: 3.8rem;
  color: var(--taupe-light);
  line-height: 1;
  margin-bottom: 14px;
}

.how-title {
  font-family: var(--font-title);
  font-size: 0.98rem;
  letter-spacing: 0.07em;
  color: var(--text);
  margin-bottom: 12px;
}

.how-body {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.35;
}

/* Bio */
.bio-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 72px;
  align-items: center;
}

.bio-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--r-xl);
}

.bio-name {
  font-family: var(--font-script);
  font-size: 2.6rem;
  color: var(--warm-brown);
  margin-bottom: 6px;
  line-height: 1.1;
}

.bio-role {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 24px;
}

.bio-body {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.4;
}

.bio-body + .bio-body { margin-top: 16px; }

/* ================================================
   EBOOK PAGE STYLES
   ================================================ */
.ebook-intro {
  background: var(--warm-brown);
  padding: 96px 0;
}

.ebook-problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}

.ebook-problem-card {
  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  backdrop-filter: blur(6px);
  transition: var(--t);
}

.ebook-problem-card:hover {
  background: rgba(255,255,255,0.20);
  transform: translateY(-3px);
}

.ebook-problem-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.ebook-problem-text {
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255,255,255,0.88);
  line-height: 1.35;
}

.ebook-eyebrow-white {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 14px;
}

.ebook-eyebrow-white::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: rgba(255,255,255,0.55);
}

/* Product section */
.ebook-product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.ebook-mockup-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ebook-cover {
  width: 100%;
  max-width: 380px;
  border-radius: var(--r-lg);
  box-shadow: 0 24px 72px rgba(61,43,31,0.22);
  transition: var(--t-slow);
  transform: rotate(-4deg);
}

.ebook-cover:hover {
  transform: rotate(0deg) scale(1.03);
  box-shadow: 0 32px 90px rgba(61,43,31,0.28);
}

.ebook-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}

.ebook-benefit {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 16px;
  background: var(--white);
  border-radius: var(--r);
  box-shadow: var(--shadow-xs);
  transition: var(--t);
}

.ebook-benefit:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }

.ebook-benefit-icon {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--beige-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
}

.ebook-benefit-text strong {
  display: block;
  font-weight: 500;
  color: var(--text);
  font-size: 0.86rem;
  margin-bottom: 2px;
}

.ebook-benefit-text {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.3;
}

/* ================================================
   ENTRANCE ANIMATION OVERLAY (Reiki & Mentoria)
   ================================================ */
.entrance-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--cream);
  transition: opacity 0.8s ease;
}

.entrance-overlay.fade-out {
  opacity: 0;
  pointer-events: none;
}

.entrance-overlay.hidden { display: none; }

/* Coloured bg sweep */
.entrance-sweep {
  position: absolute;
  inset: 0;
  background: var(--warm-brown);
  transform: scaleY(0);
  transform-origin: bottom center;
  transition: transform 0.75s cubic-bezier(0.76,0,0.24,1);
}

.entrance-sweep.active { transform: scaleY(1); }

/* Logo */
.entrance-logo-wrap {
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: scale(0.75);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.34,1.56,0.64,1);
}

.entrance-logo-wrap.show {
  opacity: 1;
  transform: scale(1);
}

.entrance-logo { width: 110px; }

/* Text */
.entrance-caption {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-top: 28px;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.entrance-caption.show {
  opacity: 1;
  transform: translateY(0);
}

.entrance-caption-title {
  font-family: var(--font-title);
  font-size: 2.2rem;
  color: var(--white);
  letter-spacing: 0.12em;
}

.entrance-caption-sub {
  font-size: 0.74rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  margin-top: 8px;
}

/* ================================================
   SERVICES SECTION — GREEN VARIANT
   ================================================ */
.services-section-green {
  background: var(--sage) !important;
}

.services-section-green .section-eyebrow {
  color: rgba(255,255,255,0.82);
}
.services-section-green .section-eyebrow::before {
  background: rgba(255,255,255,0.6);
}
.services-section-green .section-title {
  color: var(--white);
}
.services-section-green .section-body {
  color: rgba(255,255,255,0.82);
}
.services-section-green .services-watermark {
  color: rgba(255,255,255,0.12);
  opacity: 1;
}
.services-section-green .carousel-dot {
  background: rgba(255,255,255,0.35);
}
.services-section-green .carousel-dot.active {
  background: var(--white);
}
.services-section-green .carousel-btn {
  border-color: rgba(255,255,255,0.45);
  color: var(--white);
}
.services-section-green .carousel-btn:hover {
  background: rgba(255,255,255,0.18);
  border-color: var(--white);
}

/* ================================================
   FOOTER
   ================================================ */
footer {
  background: var(--sage-dark);
  padding: 64px 0 32px;
  color: rgba(255,255,255,0.75);
}

.footer-grid {
  display: grid;
  grid-template-columns: 5fr 3fr 3fr;
  gap: 56px;
  margin-bottom: 48px;
}

.footer-brand-name {
  font-family: var(--font-script);
  font-size: 2.6rem;
  color: rgba(255,255,255,0.92);
  line-height: 1;
  margin-bottom: 14px;
}

.footer-brand-text {
  font-size: 0.84rem;
  font-weight: 400;
  line-height: 1.38;
  max-width: 270px;
  color: rgba(255,255,255,0.75);
}

.footer-heading {
  font-family: var(--font-title);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-links a {
  font-size: 0.84rem;
  font-weight: 400;
  color: rgba(255,255,255,0.72);
  transition: color 0.28s ease;
}
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.18);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.74rem;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
}

/* ================================================
   SCROLL REVEAL
   ================================================ */
.reveal {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 0.82s ease, transform 0.82s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-44px);
  transition: opacity 0.82s ease, transform 0.82s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(44px);
  transition: opacity 0.82s ease, transform 0.82s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Mobile: troca translateX por translateY para evitar overflow horizontal */
@media (max-width: 768px) {
  .reveal-left  { transform: translateY(28px); }
  .reveal-right { transform: translateY(28px); }
  .reveal-left.visible  { transform: translateY(0); }
  .reveal-right.visible { transform: translateY(0); }
}

.delay-1 { transition-delay: 0.10s; }
.delay-2 { transition-delay: 0.20s; }
.delay-3 { transition-delay: 0.30s; }
.delay-4 { transition-delay: 0.42s; }
.delay-5 { transition-delay: 0.55s; }

/* ================================================
   DIVIDER
   ================================================ */
.divider {
  width: 48px;
  height: 1px;
  background: var(--taupe-light);
  margin: 28px 0;
}

.divider-center { margin: 28px auto; }

/* ================================================
   5 PRACTICES CARD GRID (ebook.html)
   ================================================ */
.practices-section {
  background: var(--sage);
  padding: 96px 0;
}

.practices-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.practice-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--r-lg);
  overflow: hidden;
  height: 210px;
  box-shadow: var(--shadow);
  transition: var(--t);
}

.practice-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.practice-card-text {
  padding: 28px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.practice-card-title {
  font-family: var(--font-title);
  font-size: 1.35rem;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 4px;
}

.practice-card-sub {
  font-family: var(--font-script);
  font-size: 1.1rem;
  color: rgba(255,255,255,0.80);
  margin-bottom: 10px;
  line-height: 1.2;
}

.practice-card-desc {
  font-family: var(--font-body);
  font-size: 0.80rem;
  font-weight: 400;
  color: rgba(255,255,255,0.72);
  line-height: 1.3;
}

.practice-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 5th card full-width centered */
.practices-grid .practice-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  grid-template-columns: 1fr 2fr;
  max-width: 680px;
  margin: 0 auto;
  width: 100%;
}

/* ================================================
   RESPONSIVE — TABLET (≤1024px)
   ================================================ */
@media (max-width: 1024px) {
  .nav        { padding: 18px 24px; gap: 14px; }
  .nav.scrolled { padding: 12px 24px; }

  /* Show compact links — hide hamburger entirely */
  .nav-links  {
    display: flex;
    gap: 18px;
  }
  .nav-links a {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }
  .hamburger  { display: none; }
  .mobile-menu { display: none; }

  /* mentoria-what-grid: collapse to 1 col on tablet */
  .mentoria-what-grid { grid-template-columns: 1fr; }
  .mentoria-what-grid img { min-height: 360px; max-height: 460px; height: 380px; object-fit: cover; }
  .mentoria-what-grid > div:last-child { padding: 60px 40px !important; }

  .container  { padding: 0 32px; }
  .hero-content { padding: 0 44px; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-content { padding-right: 0; }
  .about-img { height: 420px; }

  .split-section { grid-template-columns: 1fr; }
  .split-content { padding: 60px 40px; }

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

  .pain-section { grid-template-columns: 1fr; }
  .pain-section.reverse .pain-img-col { order: 0; }
  .pain-section.reverse .pain-content-col { order: 0; }
  .pain-content-col { padding: 48px 36px; }
  .pain-img-col { height: 360px; }

  .testimonial-grid { grid-template-columns: 1fr; }
  .how-works-grid { grid-template-columns: 1fr 1fr; }

  .bio-grid { grid-template-columns: 1fr 1fr; gap: 40px; }

  .ebook-product-grid { grid-template-columns: 1fr; gap: 48px; }
  .ebook-problems-grid { grid-template-columns: 1fr 1fr; }

  .practices-grid { grid-template-columns: 1fr; }
  .practices-grid .practice-card:last-child:nth-child(odd) { grid-template-columns: 1fr 1fr; max-width: 100%; }

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

  /* Carousel: 2 cards on tablet */
  .service-card { flex: 0 0 calc(50% - 14px); height: 420px; }

  /* Responsive 2-col grid collapses to 1 col on tablet */
  .responsive-2col { grid-template-columns: 1fr; gap: 48px; }

  /* Disable parallax background on tablet/mobile (broken on iOS) */
  .parallax-bg { background-attachment: scroll !important; }
}

/* ================================================
   RESPONSIVE — MOBILE (≤768px)
   ================================================ */
@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .section-sm { padding: 52px 0; }
  .container { padding: 0 20px; }

  /* Nav: even more compact on small phones */
  .nav { padding: 13px 16px; gap: 8px; }
  .nav.scrolled { padding: 9px 16px; }
  .nav-logo img { width: 28px !important; }
  .nav-links { gap: 10px; }
  .nav-links a {
    font-size: 0.62rem;
    letter-spacing: 0.08em;
  }
  /* Remove underline hover on tiny nav — too small */
  .nav-links a::after { display: none; }

  .hero-content { padding: 0 20px; }
  .hero-name { font-size: clamp(2.8rem, 10vw, 3.8rem); }
  .hero-text { font-size: 0.88rem; }

  .services-section { padding: 80px 0; }
  .carousel-track-container { padding: 16px 20px 28px; }

  /* Carousel: 1 card on mobile */
  .service-card { flex: 0 0 100%; height: 380px; }

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

  .how-works-grid { grid-template-columns: 1fr; }

  .bio-grid { grid-template-columns: 1fr; gap: 32px; }
  .bio-img { aspect-ratio: 4/3; }

  .ebook-benefits { grid-template-columns: 1fr; }
  .ebook-problems-grid { grid-template-columns: 1fr; }

  .practices-grid { grid-template-columns: 1fr; gap: 14px; }
  .practice-card { height: auto; min-height: 160px; }
  .practices-grid .practice-card:last-child:nth-child(odd) { grid-template-columns: 1fr 1fr; max-width: 100%; }
  .practice-card-text { padding: 20px 22px; }
  .practice-card-title { font-size: 1.1rem; }

  .about-img { height: 340px; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }

  .services-watermark {
    font-size: clamp(4rem, 18vw, 8rem);
    top: 44%;
  }

  .split-content { padding: 48px 24px; }
  .pain-content-col { padding: 40px 20px; }
  .pain-img-col { height: 300px; }

  /* Hero CTA: small buttons side-by-side, wrapping if needed */
  .hero-cta-row {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
  }
  .hero-content.centered .hero-cta-row { justify-content: center; }

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

  .split-section { grid-template-columns: 1fr; }

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

  /* ── Hero: compact CTA buttons on mobile ── */
  .hero-cta-row .btn {
    padding: 10px 20px;
    font-size: 0.72rem;
    letter-spacing: 0.10em;
    min-width: unset;
  }

  /* ── About: hide overflow decorative element ── */
  .about-img-decor { display: none; }
  .about-badge {
    left: 12px;
    bottom: 16px;
    padding: 14px 18px;
    min-width: 110px;
  }
  .about-badge-num { font-size: 2.2rem; }

  /* ── Mentoria "O que é" grid on mobile ── */
  .mentoria-what-grid { grid-template-columns: 1fr; }
  .mentoria-what-grid img {
    min-height: 260px !important;
    max-height: 320px;
    height: 300px;
    width: 100%;
    object-fit: cover;
    object-position: center 40% !important; /* corta margem superior */
  }
  .mentoria-what-grid > div:last-child { padding: 44px 20px !important; }

  /* ── Mentoria: oculta logo decorativa antes do texto ── */
  .mentoria-what-logo { display: none; }

  /* ── Mentoria hero: centraliza rosto, corta margem esquerda ── */
  .mentoria-hero-bg { object-position: center 20% !important; }

  /* ── Mentoria bio: corta margem superior da foto ── */
  .mentoria-bio-img { object-position: center 35% !important; }

  /* ── Split image: limit height so it doesn't dominate on mobile ── */
  .split-img {
    min-height: 260px;
    height: 300px;
    max-height: 360px;
    width: 100%;
  }

  /* ── Hero background images: portrait photos on mobile ── */
  .hero-bg {
    object-position: center 15%;
  }
  /* Index: foto DSC_1519 — rosto no terço superior */
  .index-hero-img       { object-position: center 10% !important; }
  /* Atendimento: domo geodésico — rosto no topo, texto fica abaixo */
  .atendimento-hero-img { object-position: center 0% !important; }
  /* Ebook: silhueta contra o sol — mantém figura no topo */
  .ebook-hero-img       { object-position: center top !important; }
  /* Reiki: foto de meditação — rosto no terço superior */
  .reiki-hero-img       { object-position: center 12% !important; }

  /* ── Pain image: tighter on mobile ── */
  .pain-img-col { height: 260px; }
  .pain-img     { object-position: center 15%; }

  /* ── Responsive 2-col gap tighter on mobile ── */
  .responsive-2col { gap: 36px; }

  /* ── Prevent hero title from overflowing ── */
  .hero-name     { word-break: break-word; }
  .hero-title    { word-break: break-word; }
  .section-title { word-break: break-word; }

  /* ── Hero: ensure content clears the fixed nav ── */
  .hero { padding-top: 90px; }

  /* ── Hero mobile: empurra texto para baixo do rosto ── */
  .hero {
    align-items: flex-end;
  }
  .hero-content {
    padding-bottom: 108px;
    width: 100%;
    max-width: 100%;
  }
  /* scrim extra no rodapé — garante legibilidade do texto na base */
  .hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to top,
      rgba(12, 6, 2, 0.82) 0%,
      rgba(12, 6, 2, 0.44) 38%,
      rgba(12, 6, 2, 0.00) 65%
    );
    z-index: 1;
    pointer-events: none;
  }
  .hero-content  { z-index: 3; }
  .hero-scroll-hint { z-index: 4; }

  /* ── Bio image: keep portrait ratio on mobile ── */
  .bio-img {
    aspect-ratio: 4/5;
    max-height: 400px;
  }

  /* ── Ebook cover: center on mobile ── */
  .ebook-mockup-wrap { justify-content: center; }
  .ebook-cover {
    transform: none;
    max-width: 260px;
  }
  .ebook-cover:hover { transform: none; }

  /* ── Brand block padding ── */
  .brand-block { padding: 48px 20px; }

  /* ── Parallax sections: scroll on mobile ── */
  .parallax-bg { background-attachment: scroll !important; }

  /* ────────────────────────────────────────────────
     IMAGE QUALITY — mobile rendering optimizations
     ──────────────────────────────────────────────── */

  /* iOS Safari: sharpen downscaled images */
  img {
    image-rendering: -webkit-optimize-contrast;
  }

  /* Remove hover transforms on touch devices —
     transitions create GPU layers that render at CSS
     pixel resolution instead of physical pixel resolution */
  .service-card,
  .service-card:hover {
    transform: none;
    box-shadow: var(--shadow);
  }
  .service-card-bg-img {
    transition: none;
    transform: none;
  }
  .service-card:hover .service-card-bg-img {
    transform: none;
  }
  .service-card:hover .service-card-overlay {
    background: linear-gradient(
      to top,
      rgba(20,13,6,0.88) 0%,
      rgba(20,13,6,0.52) 45%,
      rgba(20,13,6,0.14) 100%
    );
  }

  /* Remove ebook cover rotation (already set to none) */
  .ebook-cover,
  .ebook-cover:hover {
    transform: none;
    box-shadow: var(--shadow);
  }

  /* Prevent feature/journey/testimonial card lifts from
     triggering unnecessary compositing layers */
  .feature-card:hover,
  .journey-item:hover,
  .testimonial-card:hover,
  .how-card:hover,
  .ebook-benefit:hover,
  .practice-card:hover {
    transform: none;
  }

  /* Ensure object-fit images render at full crispness */
  .hero-bg,
  .split-img,
  .about-img,
  .bio-img,
  .bio-strip-img,
  .service-card-bg-img,
  .pain-img,
  .curso-img {
    will-change: auto;
    transform: translateZ(0); /* force own layer at physical pixel size */
    -webkit-transform: translateZ(0);
  }

  /* ── Bio section (Ju Lamim / Reiki Master · Mentora · Facilitadora) ── */
  .bio-name {
    font-size: 2rem;
    text-align: center;
  }
  .bio-role {
    text-align: center;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    margin-bottom: 18px;
  }
  .bio-grid .divider { margin-left: auto; margin-right: auto; }
  .bio-grid .reveal-right { text-align: left; }

  /* ── Reiki: corte margem superior da imagem "Yoga & Reiki" ── */
  .reiki-split-img { object-position: center 38% !important; }

  /* ── Reiki: corte margem esquerda do fundo CTA "Comece sua jornada" ── */
  .reiki-cta-bg { background-position: 70% center !important; }
}
