:root {
  --bg: #fbf8f6;
  --bg-soft: #efe8ee;
  --beige: #b89cc8;
  --terra: #4a234b;
  --terra-dark: #411f42;
  --sage: #8fa89b;
  --sage-dark: #6c8879;
  --sage-light: #e5ede7;
  --ink: #361a37;
  --muted: #7b677e;
  --line: #d8c9d7;
  --white: #fff;
  --shadow: 0 4px 14px rgba(74, 35, 75, .08);
  --radius: 22px;
  --transition: .35s cubic-bezier(.25, .7, .35, 1);
}

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

html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 5.5rem; }

body {
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

h1, h2, h3 { font-family: "Playfair Display", Georgia, serif; font-weight: 600; line-height: 1.2; }

.container { width: min(1120px, 100% - 2.5rem); margin-inline: auto; }

.ic { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.ic.wa { fill: currentColor; stroke: none; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .78rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--terra); margin-bottom: 1rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--sage); border-radius: 2px; }

.section { padding-block: clamp(3.5rem, 8vw, 6rem); }

.section__header { max-width: 640px; margin-bottom: clamp(2rem, 5vw, 3rem); }
.section__title { font-size: clamp(1.7rem, 4vw, 2.3rem); color: var(--ink); }
.section__title--nowrap { white-space: nowrap; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .85rem 1.5rem; border-radius: 999px; font-weight: 600; font-size: .95rem;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn--small { padding: .6rem 1.15rem; font-size: .88rem; }

.btn--solid {
  background: linear-gradient(135deg, var(--terra), var(--terra-dark));
  color: var(--white);
  box-shadow: 0 10px 24px rgba(74, 35, 75, .3);
}
.btn--solid:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(74, 35, 75, .4); }

.btn--ghost {
  border: 1.5px solid rgba(59, 55, 51, .28); color: var(--ink);
}
.btn--ghost:hover { border-color: var(--terra); color: var(--terra); transform: translateY(-2px); }

/* Fade-in on scroll */
.fade-in { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.fade-in.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .fade-in { opacity: 1; transform: none; transition: none; }
}

/* ============ NAVBAR ============ */
.navbar {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  display: flex; align-items: center;
  height: 88px;
  transition: background var(--transition), box-shadow var(--transition), height var(--transition);
}
.navbar.scrolled {
  background: rgba(250, 246, 240, .92);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 24px rgba(93, 74, 54, .08);
  height: 74px;
}
.navbar__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding-inline: clamp(1.5rem, 4vw, 3rem);
  width: 100%;
}

.navbar__brand { display: flex; flex-direction: column; justify-content: center; line-height: 1.25; white-space: nowrap; }
.navbar__brand-name { font-family: "Playfair Display", serif; font-weight: 700; font-size: 1.28rem; color: var(--ink); }
.navbar__brand-crp { font-size: .72rem; letter-spacing: .08em; color: var(--terra); font-weight: 600; white-space: nowrap; }

.navbar__nav { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2rem); }
.navbar__links { display: flex; align-items: center; gap: clamp(1rem, 1.8vw, 2rem); }
.navbar__link { font-size: .9rem; font-weight: 500; color: #2D182E; white-space: nowrap; position: relative; transition: color var(--transition); }
.navbar__link::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 100%; height: 2px;
  background: var(--terra); border-radius: 2px; transform: scaleX(0); transform-origin: left; transition: transform var(--transition);
}
.navbar__link:hover { color: var(--terra); }
.navbar__link:hover::after { transform: scaleX(1); }
.navbar__cta { padding: .65rem 1.25rem; white-space: nowrap; }

.navbar__toggle { display: none; flex-direction: column; gap: 5px; width: 42px; height: 42px; align-items: center; justify-content: center; border-radius: 12px; }
.navbar__toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform var(--transition), opacity var(--transition); }
.navbar__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__toggle.open span:nth-child(2) { opacity: 0; }
.navbar__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ HERO ============ */
.hero { padding-top: clamp(7rem, 14vw, 9.5rem); padding-bottom: clamp(3.5rem, 8vw, 5.5rem); position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; top: -160px; right: -160px; width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(240, 231, 240, .8), transparent 65%);
  border-radius: 50%; z-index: 0;
}
.hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2.5rem, 6vw, 4.5rem); align-items: center; }

.hero__title { font-size: clamp(2.1rem, 5vw, 3.15rem); margin-bottom: 1.2rem; color: var(--ink); }
.hero__subtitle { font-size: clamp(1rem, 2vw, 1.13rem); color: var(--muted); margin-bottom: 2rem; max-width: 30rem; }

.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin-bottom: 2.4rem; }

.hero__trust { display: flex; flex-wrap: wrap; gap: .6rem 1.6rem; }
.hero__trust li { display: inline-flex; align-items: center; gap: .5rem; font-size: .88rem; color: var(--muted); }
.hero__trust .ic { color: var(--sage-dark); }

.hero__media { position: relative; max-width: 420px; width: 100%; justify-self: center; }
.hero__frame {
  position: relative; width: 100%;
  border-radius: 52% 48% 44% 56% / 46% 44% 56% 54%;
  background: linear-gradient(160deg, var(--sage-light), var(--bg-soft) 55%, var(--beige));
  box-shadow: var(--shadow); overflow: hidden; color: rgba(59, 55, 51, .55); text-align: center;
}
.hero__frame-icon { width: 56px; height: 56px; opacity: .7; }
.hero__frame-note { font-size: .9rem; font-weight: 500; }
.hero__frame-img {
  display: block; width: 100%; aspect-ratio: 1 / 1.12;
  object-fit: cover; border-radius: inherit; filter: saturate(.97) contrast(1.02);
}
.hero__badge {
  position: absolute; bottom: 6%; left: -8%;
  background: var(--white); box-shadow: var(--shadow);
  padding: .65rem 1.1rem; border-radius: 999px; font-size: .82rem; font-weight: 600;
  display: inline-flex; align-items: center; gap: .5rem;
  animation: floaty 4s ease-in-out infinite;
}
.hero__badge-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--sage); box-shadow: 0 0 0 0 rgba(109, 84, 107, .5); animation: pulse 2s infinite; }

@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(109, 84, 107, .5); } 70% { box-shadow: 0 0 0 9px rgba(109, 84, 107, 0); } 100% { box-shadow: 0 0 0 0 rgba(109, 84, 107, 0); } }

/* ============ SOBRE ============ */
.sobre { background: var(--bg-soft); padding-top: clamp(4.5rem, 9vw, 6.5rem); }
.sobre__grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
.sobre__text > p { color: var(--muted); margin-bottom: 1.1rem; font-size: 1.02rem; }
.sobre__formacao { margin-top: 1.8rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem 1.7rem; box-shadow: var(--shadow); }
.sobre__formacao h3 { font-size: 1.1rem; margin-bottom: .9rem; font-family: "Plus Jakarta Sans", sans-serif; font-weight: 700; }
.sobre__formacao li { position: relative; padding-left: 1.4rem; color: var(--muted); font-size: .95rem; margin-bottom: .55rem; }
.sobre__formacao li::before { content: ""; position: absolute; left: 0; top: .55em; width: 8px; height: 8px; border-radius: 50%; background: var(--sage); }
.sobre__formacao strong { color: var(--ink); }
.sobre__formacao em { color: var(--terra); font-style: normal; }
.sobre__linkedin {
  display: inline-flex; align-items: center; gap: .5rem;
  margin-top: 1.1rem;
  font-size: .8rem; font-weight: 600; color: var(--terra);
  transition: color var(--transition), opacity var(--transition);
}
.sobre__linkedin .ic { width: 16px; height: 16px; }
.sobre__linkedin:hover { color: var(--sage-dark); text-decoration: underline; }
.sobre__quote {
  margin: 1.5rem 0;
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-size: clamp(1.05rem, 2.4vw, 1.28rem);
  line-height: 1.55;
  color: var(--terra);
  border-left: 3px solid var(--sage);
  padding-left: 1.2rem;
}

.sobre__side { display: flex; flex-direction: column; gap: 1.2rem; }
.sobre__photo {
  flex: 0 0 auto; aspect-ratio: 4 / 5; max-height: 420px;
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 6px 20px rgba(74, 35, 75, .10);
}
.sobre__photo img {
  display: block; width: 100%; height: 100%;
  object-fit: cover; filter: saturate(.97) contrast(1.02);
}
.sobre__cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem; align-items: stretch; }
.sobre__card {
  height: 100%;
  display: flex; flex-direction: column; justify-content: space-between;
  gap: .55rem;
  background: #f9f6f0; border: 1px solid var(--line);
  border-radius: 18px; padding: 1rem 1.05rem;
}
.sobre__card .ic { width: 22px; height: 22px; flex: 0 0 auto; color: var(--terra); }
.sobre__card strong { display: block; font-size: .92rem; }
.sobre__card p { font-size: .8rem; line-height: 1.45; color: var(--muted); }

/* ============ MODALIDADES ============ */
.modalidades__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }

.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.9rem; box-shadow: var(--shadow); transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-5px); box-shadow: 0 22px 44px rgba(93, 74, 54, .14); }
.card__icon {
  width: 52px; height: 52px; border-radius: 16px; background: var(--bg-soft);
  display: flex; align-items: center; justify-content: center; color: var(--terra); margin-bottom: 1.15rem;
}
.card__icon .ic { width: 26px; height: 26px; }
.card h3 { font-size: 1.28rem; margin-bottom: .6rem; }
.card > p { color: var(--muted); font-size: .96rem; margin-bottom: 1rem; }
.card ul { margin-bottom: 1.3rem; }
.card li { position: relative; padding-left: 1.35rem; color: var(--muted); font-size: .92rem; margin-bottom: .45rem; }
.card li::before { content: ""; position: absolute; left: 0; top: .5em; width: 7px; height: 7px; border-radius: 50%; background: var(--terra); }

/* ============ ESPECIALIDADES ============ */
.especialidades { background: var(--bg-soft); }
.especialidades__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.especialidades .card__icon { background: var(--sage-light); color: var(--sage-dark); }
.especialidades .card h3 { font-size: 1.12rem; }
.especialidades .card p { font-size: .9rem; }
.card--cta {
  display: flex; flex-direction: column; justify-content: center; gap: 1rem;
  background: linear-gradient(150deg, var(--sage-light), var(--bg-soft));
}
.card--cta h3 { font-size: 1.2rem; }
.card--cta p { margin-bottom: 0; }
.card--cta .btn { align-self: flex-start; }

/* ============ PASSOS ============ */
.passos__list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; counter-reset: passo; }
.passo { position: relative; padding: 1.9rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.passo__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%; font-family: "Playfair Display", serif; font-size: 1.25rem; font-weight: 700;
  background: var(--terra); color: var(--white); margin-bottom: 1rem; box-shadow: 0 8px 18px rgba(74, 35, 75, .28);
}
.passo h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.passo p { color: var(--muted); font-size: .94rem; }

/* ============ DEPOIMENTOS ============ */
.depoimentos { background: var(--bg-soft); overflow: hidden; }
.carousel { position: relative; max-width: 760px; margin-inline: auto; }
.carousel__track { display: flex; overflow: hidden; border-radius: var(--radius); }
.carousel__track > * { flex: 0 0 100%; }

.depoimento {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.8rem, 4vw, 2.6rem); box-shadow: var(--shadow);
  transition: opacity .45s ease, transform .45s ease;
}
.depoimento.is-hidden { opacity: 0; transform: translateX(-14px); pointer-events: none; }
.depoimento__quote { width: 40px; height: 40px; color: var(--beige); fill: currentColor; stroke: none; margin-bottom: 1.1rem; }
.depoimento blockquote { font-size: clamp(1.02rem, 2.2vw, 1.15rem); font-weight: 400; line-height: 1.7; color: var(--ink); font-family: "Playfair Display", serif; font-style: italic; margin-bottom: 1.2rem; }
.depoimento figcaption { font-size: .88rem; font-weight: 600; color: var(--terra); letter-spacing: .04em; }

.carousel__controls { display: flex; align-items: center; justify-content: center; gap: 1.4rem; margin-top: 1.6rem; }
.carousel__btn {
  width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--line); background: var(--white);
  display: inline-flex; align-items: center; justify-content: center; color: var(--muted);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.carousel__btn:hover { background: var(--terra); color: var(--white); border-color: var(--terra); }
.carousel__dots { display: flex; gap: .5rem; }
.carousel__dot { width: 9px; height: 9px; border-radius: 999px; background: var(--beige); transition: all var(--transition); }
.carousel__dot.is-active { width: 26px; background: var(--terra); }

/* ============ FAQ ============ */
.faq__inner { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); max-width: 768px; margin-inline: auto; padding: clamp(1.2rem, 3vw, 1.8rem); box-shadow: var(--shadow); }
.faq__list { display: flex; flex-direction: column; gap: .75rem; }
.faq__item { border: 1px solid #E8DFEA; border-radius: 12px; overflow: hidden; background: var(--bg); }
.faq__question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: .9rem;
  padding: .875rem 1.25rem; text-align: left; font-family: "Plus Jakarta Sans", sans-serif; font-weight: 500; font-size: .875rem; color: var(--ink);
  cursor: pointer; border: 0; background: transparent;
  transition: background var(--transition);
}
@media (min-width: 768px) { .faq__question { font-size: 1rem; } }
.faq__question:hover { background: var(--bg-soft); }
.faq__icon { width: 22px; height: 22px; color: var(--terra); flex: 0 0 auto; transition: transform .3s ease-in-out; }
.faq__item.open .faq__icon { transform: rotate(45deg); }
.faq__answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease-in-out; }
.faq__answer > p { overflow: hidden; min-height: 0; opacity: 0; transform: translateY(-6px); transition: opacity .3s ease-in-out, transform .3s ease-in-out; }
.faq__item.open .faq__answer { grid-template-rows: 1fr; }
.faq__item.open .faq__answer > p { opacity: 1; transform: none; }
.faq__answer p { padding: 0 1.25rem 1.1rem; color: var(--muted); font-size: .875rem; }

/* ============ FOOTER ============ */
.footer { background: #F9F6F0; color: var(--terra); border-top: 1px solid var(--line); padding-top: clamp(3rem, 6vw, 4.5rem); }
.footer__grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 2rem; padding-bottom: 2.5rem; }
.footer__name { font-family: "Playfair Display", serif; font-size: 1.3rem; font-weight: 700; color: var(--terra); margin-bottom: .2rem; }
.footer__crp { color: var(--muted); font-size: .76rem; font-weight: 600; letter-spacing: .05em; margin-bottom: .9rem; }
.footer__tagline { color: var(--muted); font-size: .86rem; line-height: 1.6; margin-bottom: 1.2rem; max-width: 21rem; }

.footer__col h3 { font-family: "Plus Jakarta Sans", sans-serif; font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--terra); margin-bottom: 1.1rem; }
.footer__list { display: flex; flex-direction: column; gap: .7rem; }
.footer__list a, .footer__list span { color: var(--muted); font-size: .85rem; transition: color var(--transition); }
.footer__list a:hover { color: var(--terra); }
.footer__contact { display: flex; align-items: flex-start; gap: .65rem; }
.footer__contact .ic { color: var(--terra); flex: 0 0 auto; margin-top: 2px; }
.footer__social-list .footer__contact { align-items: center; }
.footer__social-list .ic { margin-top: 0; }
.footer__social-list a { transition: color var(--transition), opacity var(--transition); }
.footer__social-list a:hover { opacity: .75; }
.footer__col p { color: var(--muted); font-size: .88rem; margin-bottom: 1.2rem; }

.footer__legal { background: rgba(74, 35, 75, .04); padding-block: .9rem; text-align: center; }
.footer__legal p { font-size: .78rem; line-height: 1.6; color: var(--muted); max-width: 46rem; margin-inline: auto; text-align: center; }
.footer__legal strong { color: var(--terra); font-weight: 600; }

.footer__bottom { border-top: 1px solid rgba(74, 35, 75, .1); }
.footer__bottom-inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: .5rem .75rem; padding-block: 1rem; text-align: center;
  font-size: .75rem; color: #9CA3AF;
}
.footer__bottom a { color: #9CA3AF; text-decoration: underline; text-underline-offset: 3px; transition: color var(--transition); }
.footer__bottom a:hover { color: var(--terra); }
.footer__divider { color: #6B7280; }
.footer__credit { font-size: .75rem; color: #9CA3AF; }
.credit-name {
  font-weight: 700; color: #D1D5DB;
  text-decoration: none; transition: color var(--transition);
}
.credit-name:hover { color: #fff; }

/* ============ WHATSAPP FLUTUANTE ============ */
.wa-float {
  position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(135deg, #3fae62, #1f9c4e);
  color: var(--white); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 28px rgba(31, 156, 78, .4);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: floaty 4.5s ease-in-out infinite;
}
.wa-float .ic { width: 30px; height: 30px; }
.wa-float:hover { transform: scale(1.08); box-shadow: 0 16px 34px rgba(31, 156, 78, .5); }

/* ============ RESPONSIVO ============ */
@media (max-width: 1180px) {
  .navbar__links { gap: .9rem; }
  .navbar__nav { gap: .9rem; }
  .navbar__link { font-size: .86rem; }
  .navbar__brand-name { font-size: 1.12rem; }
}
@media (max-width: 1024px) {
  .especialidades__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2.4rem; }
  .navbar__links { gap: .55rem; }
  .navbar__link { font-size: .83rem; }
  .navbar__cta { padding: .58rem .9rem; }
}

@media (max-width: 860px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__media { order: -1; max-width: 320px; }
  .sobre__grid { grid-template-columns: 1fr; }
  .sobre__side { display: flex; position: static; flex-direction: row; flex-wrap: wrap; }
  .sobre__side > * { flex: 1 1 220px; }
  .modalidades__grid, .passos__list { grid-template-columns: 1fr; }

  .navbar__toggle { display: flex; }
  .navbar__nav {
    position: fixed; inset: 0 0 auto 0; padding: 5.4rem 1.4rem 1.6rem;
    background: rgba(250, 246, 240, .98); backdrop-filter: blur(12px);
    flex-direction: column; align-items: stretch; gap: .4rem;
    transform: translateY(-120%); transition: transform var(--transition);
    box-shadow: 0 18px 40px rgba(93, 74, 54, .12);
    max-height: calc(100vh - 2rem); overflow-y: auto;
  }
  .navbar__nav.open { transform: translateY(0); }
  .navbar__links { flex-direction: column; align-items: stretch; gap: .15rem; margin-bottom: 1rem; }
  .navbar__link { display: block; padding: .85rem .4rem; font-size: 1.05rem; border-bottom: 1px solid var(--line); }
  .navbar__link::after { display: none; }
  .navbar__cta { justify-content: center; }
}

@media (max-width: 560px) {
  .especialidades__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__divider { display: none; }
  .hero__actions .btn { flex: 1 1 100%; }
  .card--cta .btn { align-self: stretch; }
}

/* ============ AUTOAVALIAÇÃO / QUIZ ============ */
.autoavaliacao { background: var(--bg-soft); }
.quiz__card {
  max-width: 640px; margin-inline: auto;
  background: var(--white); border: 1px solid var(--line); border-radius: 24px;
  padding: clamp(1.8rem, 4vw, 2.5rem); box-shadow: var(--shadow); text-align: center;
}
.quiz__progress { height: 8px; background: var(--bg-soft); border-radius: 999px; overflow: hidden; margin-bottom: 1rem; }
.quiz__progress span {
  display: block; height: 100%; width: 25%;
  background: linear-gradient(90deg, var(--sage), var(--terra));
  border-radius: 999px; transition: width .4s ease;
}
.quiz__counter { font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.4rem; }
.quiz__question h3 { font-size: clamp(1.15rem, 3vw, 1.45rem); margin-bottom: 1.6rem; }
.quiz__options { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; }
.quiz__option {
  padding: .9rem 1rem; border: 1.5px solid var(--line); border-radius: 14px;
  background: var(--bg); font-weight: 500; font-size: .95rem; transition: all var(--transition);
}
.quiz__option:hover { border-color: var(--terra); color: var(--terra); transform: translateY(-2px); }

.quiz__result { display: flex; flex-direction: column; align-items: center; gap: 1.1rem; }
.quiz__result-ico { width: 64px; height: 64px; border-radius: 50%; background: var(--sage-light); color: var(--sage-dark); display: flex; align-items: center; justify-content: center; }
.quiz__result-ico .ic { width: 32px; height: 32px; }
.quiz__result h3 { font-size: 1.3rem; }
.quiz__result p { color: var(--muted); max-width: 30rem; font-size: .96rem; }
.quiz__result-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: .8rem; }
.quiz__restart { cursor: pointer; }

/* ============ AGENDAR ============ */
.agendar { background: var(--bg-soft); }
.agendar__card {
  max-width: 640px; margin-inline: auto;
  background: var(--white); border: 1px solid var(--line); border-radius: 24px;
  padding: clamp(1.8rem, 4vw, 2.5rem); box-shadow: var(--shadow); display: grid; gap: 1.3rem;
}
.agendar__label { display: block; font-weight: 600; font-size: .92rem; margin-bottom: .55rem; }
.agendar__options { display: grid; grid-template-columns: repeat(2, 1fr); gap: .6rem; }
.agendar__options--3 { grid-template-columns: repeat(3, 1fr); }
.agendar__option {
  padding: .8rem 1rem; border: 1.5px solid var(--line); border-radius: 14px;
  background: var(--bg); font-weight: 600; font-size: .92rem; transition: all var(--transition);
}
.agendar__option:hover { border-color: var(--terra); color: var(--terra); }
.agendar__option.is-selected {
  background: var(--terra); border-color: var(--terra); color: var(--white);
  box-shadow: 0 8px 18px rgba(74, 35, 75, .22);
}
.agendar__input {
  width: 100%; padding: .85rem 1rem; border: 1.5px solid var(--line); border-radius: 14px;
  background: var(--bg); font: inherit; color: var(--ink); transition: border var(--transition);
}
.agendar__input:focus { outline: none; border-color: var(--terra); background: var(--white); }
.agendar__card .btn { justify-self: start; }
.agendar__hint { font-size: .8rem; color: var(--muted); text-align: center; }

/* ============ AJUSTES DE FUNDO DAS SEÇÕES ============ */
.depoimentos { background: var(--bg); }
.faq { background: var(--bg-soft); }

@media (max-width: 560px) {
  .quiz__options { grid-template-columns: 1fr; }
  .agendar__options { grid-template-columns: 1fr; }
  .agendar__options--3 { grid-template-columns: 1fr; }
  .agendar__card .btn { justify-self: stretch; }
}

/* ============ ALÉM DA PSICOLOGIA ============ */
.alem-da-psi { background: var(--bg); }
.modalidades { background: var(--bg-soft); }
.alem__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; }
.alem__card {
  display: flex; align-items: center; gap: .85rem;
  background: var(--white); border: 1px solid rgba(122, 78, 122, .18); border-radius: 16px;
  padding: 1rem 1.15rem; box-shadow: 0 1px 3px rgba(74, 35, 75, .08);
  transition: box-shadow var(--transition), transform var(--transition);
}
.alem__card:hover { box-shadow: 0 12px 26px rgba(74, 35, 75, .14); transform: translateY(-3px); }
.alem__icon {
  flex: 0 0 auto; width: 40px; height: 40px; border-radius: 12px;
  background: rgba(74, 35, 75, .07); color: #4a234b;
  display: flex; align-items: center; justify-content: center;
}
.alem__icon .ic { width: 20px; height: 20px; }
.alem__card p { color: var(--muted); font-size: .9rem; font-weight: 500; line-height: 1.4; }

/* ============ ESTÉTICA EM CAMADAS ============ */
.card, .sobre__formacao, .sobre__card, .passo, .depoimento, .quiz__card, .agendar__card, .faq__inner {
  position: relative; z-index: 0;
}
.card::before, .sobre__formacao::before, .passo::before, .depoimento::before,
.quiz__card::before, .agendar__card::before, .faq__inner::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: #efe8ee; transform: translate(9px, 9px); z-index: -1; opacity: .55;
}
.especialidades__grid .card--cta::before,
.modalidades__grid .card::before, .passos__list .passo::before {
  background: var(--sage-light); opacity: .7;
}

@media (max-width: 860px) {
  .alem__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .alem__grid { grid-template-columns: 1fr; }
}

/* ============ SCRAPBOOK / CAMADAS ============ */
.ic--thin { stroke-width: 1.5; }
.especialidades .card__icon { background: var(--sage-light); color: var(--terra); }

/* papel dos cards */
.card, .passo, .depoimento, .sobre__formacao, .sobre__card, .quiz__card, .agendar__card, .alem__card {
  background: #f9f6f0;
}
.card--cta { background: linear-gradient(150deg, var(--sage-light), var(--bg-soft)); }

/* fita adesiva (washi tape) no topo central */
.card::after, .passo::after, .sobre__formacao::after,
.quiz__card::after, .agendar__card::after, .alem__card::after {
  content: ""; position: absolute; top: -12px; left: 50%;
  transform: translateX(-50%) rotate(-1deg);
  width: 112px; height: 24px; z-index: 3; pointer-events: none;
  background: rgba(232, 223, 234, .7);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  box-shadow: 0 1px 3px rgba(74, 35, 75, .08);
  border-top: 1px dashed var(--line);
  border-bottom: 1px dashed var(--line);
}
.especialidades__grid .card:nth-child(2n)::after { transform: translateX(-50%) rotate(1deg); }
.especialidades__grid .card:nth-child(2n+1)::after { transform: translateX(-50%) rotate(-1.2deg); }
.sobre__side .sobre__card:nth-child(2)::after { transform: translateX(-50%) rotate(1.2deg); }
.passos__list .passo:nth-child(2)::after { transform: translateX(-50%) rotate(1.4deg); }

/* rotações leves de "recortes colados à mão" */
.card { --rot: 0deg; transform: rotate(var(--rot)); }
.especialidades__grid .card:nth-child(2n) { --rot: .7deg; }
.especialidades__grid .card:nth-child(2n+1) { --rot: -.6deg; }
.modalidades__grid .card:nth-child(odd) { --rot: -.5deg; }
.modalidades__grid .card:nth-child(even) { --rot: .6deg; }
.card:hover { transform: rotate(var(--rot)) translateY(-5px); box-shadow: 0 22px 44px rgba(74, 35, 75, .14); }
.passo { transform: rotate(var(--rot, 0deg)); }
.passos__list .passo:nth-child(1), .passos__list .passo:nth-child(3) { --rot: -.4deg; }
.passos__list .passo:nth-child(2) { --rot: .6deg; }

/* estrelinhas decorativas */
.section__header { position: relative; }
.hero__content { position: relative; }
.doodle, .hero__doodle { position: absolute; color: var(--beige); pointer-events: none; z-index: 1; opacity: .85; }
.doodle .ic, .hero__doodle .ic { width: 18px; height: 18px; }
.doodle--1 { top: -18px; right: 8%; transform: rotate(14deg); }
.hero__doodle--1 { top: -34px; left: -6px; transform: rotate(-12deg); }
.hero__doodle--2 { top: 42%; right: -26px; transform: rotate(10deg); }
.hero__doodle--2 .ic { width: 14px; height: 14px; }

/* ============ BLOG ============ */
.blog { background: var(--bg-soft); }
.blog__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.blog__card { display: flex; flex-direction: column; gap: .9rem; }
.blog__card:nth-child(2n) { --rot: .7deg; }
.blog__card:nth-child(2n+1) { --rot: -.6deg; }
.blog__chip {
  align-self: flex-start; padding: .4rem .9rem; border-radius: 999px;
  background: var(--sage-light); color: var(--sage-dark);
  font-family: "Plus Jakarta Sans", sans-serif; font-size: .72rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
}
.blog__title { font-family: "Playfair Display", serif; font-size: 1.25rem; line-height: 1.35; color: var(--terra); }
.blog__card p { color: var(--muted); font-size: .92rem; line-height: 1.6; flex: 1; }
.blog__meta {
  display: flex; align-items: center; justify-content: space-between; gap: .6rem;
  padding-top: .9rem; border-top: 1px dashed var(--line);
  color: var(--muted); font-size: .82rem;
}
.blog__link {
  display: inline-flex; align-items: center; gap: .35rem;
  color: var(--terra); font-weight: 700; font-size: .88rem; text-decoration: none;
  transition: gap var(--transition), color var(--transition);
}
.blog__link .ic { width: 16px; height: 16px; }
.blog__link:hover { gap: .6rem; color: var(--sage-dark); }

/* ============ LOCALIZAÇÃO ============ */
.localizacao { background: var(--bg); }
.localizacao__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 1.6rem; align-items: stretch; }
.localizacao__info { display: flex; flex-direction: column; gap: 1rem; }
.localizacao__heading { font-family: "Playfair Display", serif; font-size: 1.3rem; color: var(--terra); margin-bottom: .2rem; }
.localizacao__item {
  display: flex; align-items: center; gap: .75rem;
  color: var(--muted); font-size: .95rem; line-height: 1.5;
}
.localizacao__item .ic { flex: 0 0 auto; width: 20px; height: 20px; color: var(--sage-dark); }
.localizacao__item a { color: var(--terra); text-decoration: none; font-weight: 600; }
.localizacao__item a:hover { color: var(--sage-dark); }
.localizacao__cta { margin-top: auto; align-self: flex-start; }
.localizacao__map-card { padding: .7rem; }
.localizacao__map {
  display: block; width: 100%; height: 100%; min-height: 320px;
  border: 0; border-radius: calc(var(--radius) - 8px);
  background: var(--line);
}

@media (max-width: 1024px) {
  .blog__grid { grid-template-columns: repeat(2, 1fr); }
  .localizacao__grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .blog__grid { grid-template-columns: 1fr; }
  .localizacao__map { min-height: 260px; }
}

/* ============ MODAL DE LEITURA ============ */
.blog-modal { position: fixed; inset: 0; z-index: 50; display: flex; align-items: center; justify-content: center; padding: 1rem; }
.blog-modal[hidden] { display: none; }
.blog-modal__overlay { position: absolute; inset: 0; background: rgba(0, 0, 0, .5); backdrop-filter: blur(4px); }
.blog-modal__dialog {
  position: relative; z-index: 1;
  width: 100%; max-width: 768px; max-height: 85vh; overflow-y: auto;
  margin-inline: auto;
  background: #FBF8F6;
  padding: 1.5rem;
  border-radius: 1.5rem;
  border: 1px solid #E8DFEA;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .35);
}
@media (min-width: 768px) { .blog-modal__dialog { padding: 2.5rem; } }
.blog-modal__close {
  position: absolute; top: 1.5rem; right: 1.5rem; z-index: 2;
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  color: var(--terra); transition: background var(--transition);
}
.blog-modal__close:hover { background: rgba(0, 0, 0, .05); }
.blog-modal__close .ic { width: 20px; height: 20px; }

.blog-article__meta { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; padding-right: 3rem; }
.blog-article__time { font-size: .8rem; color: var(--muted); }
.blog-article__title { font-family: "Playfair Display", Georgia, serif; font-size: clamp(1.5rem, 4vw, 1.875rem); line-height: 1.3; color: var(--terra); margin-bottom: .9rem; }
.blog-article__lead { color: var(--muted); font-size: .98rem; line-height: 1.6; margin-bottom: 1.4rem; }
.blog-article__p { color: #374151; font-size: .98rem; line-height: 1.75; margin-bottom: 1rem; }
.blog-article__list { margin-bottom: 1rem; }
.blog-article__list ul { margin: 0 0 .6rem 1.1rem; }
.blog-article__list li { color: #374151; font-size: .98rem; line-height: 1.75; margin-bottom: .4rem; }
.blog-article__list li::before { content: "•"; color: var(--terra); font-weight: 700; margin-right: .6rem; }
.blog-article__list--num { list-style: none; }
.blog-article__list--num li::before { content: ""; margin: 0; }
.blog-article__cta {
  margin-top: 2rem; background: #F4EFEA;
  border: 1px solid #D8C9D7; border-radius: 1rem;
  padding: 1.5rem; text-align: center;
}
.blog-article__cta p { color: var(--ink); font-weight: 600; font-size: 1rem; margin-bottom: 1.1rem; }