/* ============================================================
   VARIÁVEIS / RESET
============================================================ */
:root {
  --purple-900: #2E1B47;
  --purple-700: #4A2E6B;
  --purple-500: #6B3FA0;
  --purple-300: #8B6BAE;
  --purple-100: #F1ECF7;

  --gold-700: #B07F1F;
  --gold-600: #C9912E;
  --gold-400: #E0AC4C;
  --gold-300: #F2C94C;
  --gold-100: #FBF1DA;

  --off-white: #FAF9F7;
  --white: #FFFFFF;
  --ink: #2B2730;
  --ink-soft: #5C5564;

  --font-serif: 'Fraunces', 'Playfair Display', serif;
  --font-sans: 'Inter', 'Work Sans', sans-serif;

  --shadow-sm: 0 2px 10px rgba(46, 27, 71, 0.08);
  --shadow-md: 0 8px 30px rgba(46, 27, 71, 0.12);
  --shadow-lg: 0 20px 50px rgba(46, 27, 71, 0.18);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;

  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

section { position: relative; }

/* ============================================================
   ANIMAÇÕES SCROLL
============================================================ */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   BOTÕES
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--purple-700);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  background: var(--gold-600);
  color: var(--purple-900);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn--outline {
  background: transparent;
  border-color: var(--gold-600);
  color: var(--purple-700);
}
.btn--outline:hover {
  background: var(--gold-600);
  color: var(--white);
  transform: translateY(-2px);
}
.btn--gold {
  background: var(--gold-300);
  color: var(--purple-900);
  box-shadow: var(--shadow-md);
}
.btn--gold:hover {
  background: var(--white);
  transform: translateY(-2px) scale(1.02);
}
.btn--lg {
  padding: 18px 42px;
  font-size: 1.05rem;
}

/* ============================================================
   TAGS / LABELS
============================================================ */
.tag-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-700);
  background: var(--gold-100);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.tag-label--gold {
  background: rgba(242, 201, 76, 0.15);
  color: var(--gold-300);
}

.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-title {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--purple-700);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  line-height: 1.25;
  margin-bottom: 16px;
}
.section-subtitle {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

/* ============================================================
   HEADER
============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(250, 249, 247, 0.85);
  backdrop-filter: blur(10px);
  transition: box-shadow var(--transition), background var(--transition), padding var(--transition);
  padding: 18px 0;
}
.header.is-scrolled {
  background: rgba(250, 249, 247, 0.97);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo img {
  height: clamp(68px, 9vw, 104px);
  width: auto;
  max-width: 100%;
  transition: height var(--transition);
}
.header.is-scrolled .header__logo img { height: clamp(56px, 7vw, 80px); }

.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__list {
  display: flex;
  gap: 28px;
}
.nav__link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--purple-700);
  position: relative;
  padding-bottom: 4px;
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--gold-600);
  transition: width var(--transition);
}
.nav__link:hover::after { width: 100%; }
.nav__cta { padding: 11px 24px; font-size: 0.88rem; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--purple-700);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; }
.hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  padding: 160px 0 100px;
  background: linear-gradient(160deg, var(--off-white) 0%, var(--purple-100) 100%);
  overflow: hidden;
}
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  z-index: 0;
}
.hero__blob--purple {
  width: 480px; height: 480px;
  background: radial-gradient(circle at 30% 30%, var(--purple-300), transparent 70%);
  opacity: 0.35;
  top: -120px; right: -100px;
  border-radius: 42% 58% 65% 35% / 45% 45% 55% 55%;
}
.hero__blob--gold {
  width: 320px; height: 320px;
  background: radial-gradient(circle at 60% 40%, var(--gold-300), transparent 70%);
  opacity: 0.4;
  bottom: -80px; left: -80px;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.eyebrow {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--gold-700);
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}
.hero__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--purple-700);
  line-height: 1.1;
  margin-bottom: 22px;
}
.hero__crp {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: var(--gold-700);
  background: var(--gold-100);
  padding: 4px 14px;
  border-radius: 999px;
  vertical-align: middle;
  margin-left: 10px;
}
.hero__lead {
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  color: var(--ink-soft);
  max-width: 560px;
  margin-bottom: 36px;
}
.hero__lead .highlight {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--purple-700);
  background: linear-gradient(180deg, transparent 65%, var(--gold-300) 65%);
  padding: 0 2px;
}
.hero__actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.hero__image { display: flex; justify-content: center; }
.hero__image-frame {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--white);
}
.hero__image-frame::before {
  content: '';
  position: absolute;
  inset: -14px;
  border: 2px solid var(--gold-400);
  border-radius: calc(var(--radius-lg) + 10px);
  z-index: -1;
}
.hero__image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* ============================================================
   PROPÓSITO
============================================================ */
.proposito {
  background: var(--purple-100);
  padding: 90px 0;
}
.proposito__inner {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 56px;
  align-items: center;
}
.proposito__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--white);
  aspect-ratio: 3/4;
}
.proposito__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.proposito__box {
  max-width: 620px;
  text-align: left;
}
.proposito__text {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-weight: 500;
  line-height: 1.5;
  color: var(--purple-900);
}
.proposito__text strong {
  color: var(--gold-700);
  font-weight: 600;
}

/* ============================================================
   GRID CARDS (mini cards de ícones)
============================================================ */
.clinica { padding: 100px 0 90px; }

.grid-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 80px;
}
.mini-card {
  background: var(--white);
  border: 1px solid rgba(74, 46, 107, 0.1);
  border-radius: var(--radius-md);
  padding: 28px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--purple-700);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.mini-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-400);
}
.mini-card__icon {
  width: 34px;
  height: 34px;
  color: var(--gold-600);
}
.mini-card--alt {
  background: var(--purple-100);
  border-color: transparent;
}

.momentos__title,
.problemas__title {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  color: var(--purple-700);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 600;
}
.momentos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}
.momento-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.momento-card__quote {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--gold-300);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.momento-card p {
  color: var(--ink-soft);
  font-size: 0.98rem;
}
.momentos__closing {
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--purple-700);
  max-width: 640px;
  margin: 0 auto;
}

/* ============================================================
   HIPNOTERAPIA
============================================================ */
.hipnoterapia {
  background: linear-gradient(135deg, var(--purple-900) 0%, var(--purple-700) 100%);
  padding: 110px 0;
  overflow: hidden;
  color: var(--white);
}
.hipnoterapia__blob {
  position: absolute;
  width: 520px; height: 520px;
  right: -160px; top: -160px;
  background: radial-gradient(circle, var(--gold-300), transparent 70%);
  opacity: 0.18;
  border-radius: 50%;
}
.hipnoterapia__inner {
  max-width: 720px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.hipnoterapia__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  margin-bottom: 22px;
}
.hipnoterapia__text {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  margin-bottom: 28px;
}
.hipnoterapia__footnote {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 48px;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 20px;
}
.hipnoterapia__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}
.pillar {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(242,201,76,0.25);
  border-radius: var(--radius-md);
  padding: 26px 22px;
}
.pillar__number {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--gold-300);
  margin-bottom: 10px;
}
.pillar p { font-size: 0.92rem; color: rgba(255,255,255,0.88); }

/* ============================================================
   PALESTRAS
============================================================ */
.palestras { padding: 100px 0; background: var(--off-white); }

.palestras__photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 80px;
  max-height: 460px;
}
.palestras__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.problemas { margin-bottom: 70px; }
.problemas__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.contribui { margin-bottom: 70px; }
.contribui__flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  box-shadow: var(--shadow-sm);
}
.contribui__step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--purple-700);
  font-size: 0.95rem;
  padding: 10px 22px;
  position: relative;
}
.contribui__step:not(:last-child)::after {
  content: '\2192';
  position: absolute;
  right: -14px;
  color: var(--gold-500, var(--gold-600));
  font-weight: 400;
}
.contribui__dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--gold-600);
  flex-shrink: 0;
}

.temas__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.badge {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--purple-100);
  color: var(--purple-700);
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
}
.badge:hover {
  background: var(--gold-300);
  color: var(--purple-900);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.palestras__cta {
  margin-top: 64px;
  text-align: center;
  padding: 44px 32px;
  background: var(--purple-100);
  border-radius: var(--radius-lg);
}
.palestras__cta-text {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--purple-700);
  margin-bottom: 22px;
  font-weight: 500;
}

/* ============================================================
   SOBRE
============================================================ */
.sobre { padding: 100px 0; background: var(--purple-100); }
.sobre__inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: center;
}
.sobre__image-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3/4;
}
.sobre__image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.sobre__text p {
  color: var(--ink-soft);
  margin-bottom: 18px;
  font-size: 1.02rem;
}

/* ============================================================
   DEPOIMENTOS (CARROSSEL)
============================================================ */
.depoimentos { padding: 100px 0; background: var(--off-white); }

.carousel {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  overflow: hidden;
}
.carousel__track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.carousel__slide {
  flex: 0 0 100%;
  display: flex;
  justify-content: center;
  padding: 6px;
}
.carousel__slide img {
  max-height: 560px;
  width: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 8px solid var(--white);
}
.carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid rgba(74,46,107,0.15);
  color: var(--purple-700);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  z-index: 2;
}
.carousel__arrow svg { width: 20px; height: 20px; }
.carousel__arrow:hover { background: var(--gold-300); color: var(--purple-900); }
.carousel__arrow--prev { left: -10px; }
.carousel__arrow--next { right: -10px; }

.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 28px;
}
.carousel__dots .dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--purple-300);
  opacity: 0.35;
  cursor: pointer;
  transition: all var(--transition);
}
.carousel__dots .dot.is-active {
  opacity: 1;
  background: var(--gold-600);
  width: 24px;
  border-radius: 6px;
}

/* ============================================================
   FAQ ACCORDION
============================================================ */
.faq { padding: 100px 0; background: var(--purple-100); }

.accordion { max-width: 760px; margin: 0 auto; }
.accordion__item {
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.accordion__header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  color: var(--purple-700);
  cursor: pointer;
}
.accordion__icon {
  position: relative;
  width: 18px; height: 18px;
  flex-shrink: 0;
}
.accordion__icon::before,
.accordion__icon::after {
  content: '';
  position: absolute;
  background: var(--gold-600);
  transition: transform var(--transition);
}
.accordion__icon::before { width: 100%; height: 2px; top: 8px; left: 0; }
.accordion__icon::after { width: 2px; height: 100%; top: 0; left: 8px; }
.accordion__item.is-open .accordion__icon::after { transform: rotate(90deg); }

.accordion__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.accordion__panel p {
  padding: 0 26px 22px;
  color: var(--ink-soft);
  font-size: 0.96rem;
}

/* ============================================================
   CTA FINAL
============================================================ */
.cta-final {
  background: linear-gradient(150deg, var(--purple-700) 0%, var(--purple-900) 100%);
  padding: 110px 0;
  text-align: center;
}
.cta-final__inner { max-width: 680px; margin: 0 auto; }
.cta-final__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.3;
}
.cta-final__subtitle {
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  margin-bottom: 36px;
}

/* ============================================================
   FOOTER
============================================================ */
.footer { background: var(--purple-900); color: rgba(255,255,255,0.78); padding: 70px 0 0; }
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__logo {
  height: 64px;
  width: auto;
  background: var(--white);
  padding: 8px 14px;
  border-radius: 12px;
  margin-bottom: 16px;
}
.footer__brand p { font-size: 0.92rem; max-width: 320px; }
.footer__crp {
  font-size: 0.82rem !important;
  color: var(--gold-300);
  max-width: none !important;
  margin-bottom: 14px;
  font-weight: 600;
}
.footer__col h4 {
  font-family: var(--font-serif);
  color: var(--white);
  margin-bottom: 18px;
  font-size: 1.05rem;
}
.footer__col ul li { margin-bottom: 10px; font-size: 0.92rem; }
.footer__col ul li a:hover { color: var(--gold-300); }

.footer__social { display: flex; gap: 12px; margin-top: 20px; }
.social-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.social-icon svg { width: 18px; height: 18px; }
.social-icon:hover { background: var(--gold-300); color: var(--purple-900); border-color: var(--gold-300); }

.footer__bottom {
  text-align: center;
  padding: 24px 0;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.5);
}

/* ============================================================
   WHATSAPP FLOAT BUTTON
============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  z-index: 2000;
  transition: transform var(--transition);
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float__icon { width: 32px; height: 32px; position: relative; z-index: 2; }
.whatsapp-float__ping {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.6;
  animation: wa-ping 2.4s cubic-bezier(0,0,0.2,1) infinite;
  z-index: 1;
}
@keyframes wa-ping {
  0% { transform: scale(1); opacity: 0.55; }
  75% { transform: scale(1.9); opacity: 0; }
  100% { transform: scale(1.9); opacity: 0; }
}
.whatsapp-float__tooltip {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: var(--purple-900);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}
.whatsapp-float__tooltip::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px; height: 10px;
  background: var(--purple-900);
  rotate: 45deg;
}
.whatsapp-float:hover .whatsapp-float__tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* ============================================================
   RESPONSIVIDADE
============================================================ */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__lead { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .hero__image { order: -1; margin-bottom: 24px; }
  .hero__image-frame { max-width: 300px; }
  .hero__crp { display: block; margin: 12px auto 0; width: fit-content; }

  .grid-cards { grid-template-columns: repeat(3, 1fr); }
  .momentos__grid { grid-template-columns: repeat(2, 1fr); }
  .problemas__grid { grid-template-columns: repeat(3, 1fr); }
  .hipnoterapia__pillars { grid-template-columns: 1fr; }

  .sobre__inner { grid-template-columns: 1fr; }
  .sobre__image-frame { max-width: 340px; margin: 0 auto; }

  .proposito__inner { grid-template-columns: 1fr; text-align: center; }
  .proposito__image { max-width: 280px; margin: 0 auto; }
  .proposito__box { max-width: 100%; text-align: center; margin: 0 auto; }
}

@media (max-width: 900px) {
  .nav__list { display: none; }
  .nav__cta { display: none; }
  .hamburger { display: flex; }

  .nav {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(320px, 80vw);
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 100px 32px 40px;
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 999;
  }
  .nav.is-open { transform: translateX(0); }
  .nav__list {
    display: flex;
    flex-direction: column;
    gap: 22px;
    width: 100%;
    margin-bottom: 32px;
  }
  .nav__cta { display: inline-flex; width: 100%; }
}

@media (max-width: 640px) {
  .container { padding: 0 18px; }

  .hero { padding: 130px 0 80px; }
  .grid-cards { grid-template-columns: repeat(2, 1fr); }
  .momentos__grid { grid-template-columns: 1fr; }
  .problemas__grid { grid-template-columns: repeat(2, 1fr); }

  .contribui__flow { flex-direction: column; align-items: flex-start; }
  .contribui__step:not(:last-child)::after { display: none; }

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

  .whatsapp-float { bottom: 16px; right: 16px; width: 56px; height: 56px; }
  .whatsapp-float__icon { width: 28px; height: 28px; }
  .whatsapp-float__tooltip { display: none; }

  .carousel__arrow { width: 38px; height: 38px; }
  .carousel__arrow--prev { left: 4px; }
  .carousel__arrow--next { right: 4px; }
}
