/* =========================================================
   PSICANÁLISE — GRASIELA FERNANDES
   CSS Premium com animações, partículas e navegação elevada
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400;1,600&family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=Inter:wght@400;500;600;700;800&display=swap');

/* -----------------------
   PAGE INTRO LOADER
------------------------ */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--c1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transform: translateY(0);
  transition: transform 1s cubic-bezier(0.76, 0, 0.24, 1);
}

.page-loader.is-leaving {
  transform: translateY(-100%);
}

.loader__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(16px);
  animation: loaderFadeIn 0.7s 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes loaderFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.loader__logo-img {
  width: 320px;
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 32px rgba(201, 169, 110, 0.6)) drop-shadow(0 0 60px rgba(201, 169, 110, 0.2));
}

@keyframes loaderPulse {

  0%,
  100% {
    opacity: 0.65;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.06);
  }
}


.loader__line {
  display: block;
  height: 1px;
  width: 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: loaderLine 0.9s 0.9s ease-out forwards;
}

@keyframes loaderLine {
  to {
    width: 110px;
  }
}

.loader__curtain {
  position: absolute;
  inset: 0;
  background: var(--c2);
  transform: translateY(100%);
  z-index: 1;
  animation: curtainRise 0.5s 1.6s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

@keyframes curtainRise {
  to {
    transform: translateY(0);
  }
}

/* -----------------------
   CURSOR PERSONALIZADO
------------------------ */
.cursor-dot,
.cursor-ring {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  will-change: left, top;
  z-index: 99990;
  opacity: 0;
  transition: opacity 0.3s;
}

.cursor-dot {
  width: 7px;
  height: 7px;
  background: var(--gold);
  z-index: 99991;
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(201, 169, 110, 0.45);
  transition: width 0.35s ease, height 0.35s ease,
    border-color 0.35s ease, opacity 0.3s;
}

.cursor-dot.is-active {
  width: 3px;
  height: 3px;
  background: var(--gold-warm);
}

.cursor-ring.is-active {
  width: 52px;
  height: 52px;
  border-color: var(--gold);
}

/* oculta cursor nativo quando personalizado está ativo */
body.custom-cursor * {
  cursor: none !important;
}

/* -----------------------
   HERO TITLE LINE REVEAL
------------------------ */
.line-wrap {
  display: block;
  overflow: hidden;
  padding-bottom: 0.05em;
}

.line-text {
  display: block;
  transform: translateY(110%);
  will-change: transform;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero__title em.line-text {
  font-style: italic;
  color: var(--gold);
  text-shadow: 0 0 40px rgba(201, 169, 110, 0.35);
}

.line-text.is-visible {
  transform: translateY(0);
}

/* -----------------------
   CUSTOM SCROLLBAR
------------------------ */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--w1);
}

::-webkit-scrollbar-thumb {
  background: var(--c4);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--c3);
}

/* -----------------------
   VARIÁVEIS
------------------------ */
:root {
  --c1: #1B2B1B;
  --c2: #3A5A40;
  --c3: #588157;
  --c4: #A3B18A;
  --c5: #F9F7F2;
  --gold: #C9A96E;
  --gold-warm: #D4A017;
  --gold-light: #E8C840;
  --gold-deep: #8B6210;

  --w1: #FCFDFB;
  --w2: #F1F4F0;
  --text: #152115;
  --text-light: #F9F7F2;
  --muted: rgba(21, 33, 21, 0.65);

  --max: 1120px;
  --radius-lg: 60px;
  --radius-md: 24px;
  --radius-sm: 16px;

  --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 15px 35px rgba(19, 42, 19, 0.08);
  --shadow-lg: 0 30px 60px rgba(19, 42, 19, 0.15);
  --shadow-gold: 0 12px 40px rgba(201, 169, 110, 0.22);

  --font-sans: "Inter", system-ui, -apple-system, sans-serif;
  --font-serif: "Playfair Display", Georgia, serif;
  --font-script: "Pinyon Script", "Great Vibes", cursive;
  --font-elegant: "Cormorant Garamond", Georgia, serif;

  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* -----------------------
   RESET E BASE
------------------------ */
*,
*::before,
*::after {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background-color: var(--w1);
  overflow-x: hidden;
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

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

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

/* -----------------------
   SCROLL PROGRESS BAR
------------------------ */
#scrollProgress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--c3), var(--gold), var(--gold-warm), var(--gold-light));
  z-index: 9999;
  transition: width 0.1s linear;
}

/* -----------------------
   TIPOGRAFIA
------------------------ */
h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--c1);
  margin: 0 0 20px;
  line-height: 1.15;
}

h2 em {
  font-style: italic;
  color: var(--c3);
}

h3 {
  font-family: var(--font-serif);
  color: var(--c1);
  font-weight: 700;
  font-size: 1.4rem;
  margin-top: 0;
}

.muted {
  color: var(--muted);
}

.tiny {
  font-size: 0.85rem;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.section-subtitle {
  font-size: 1.05rem;
  margin-top: 8px;
}

/* -----------------------
   HEADER
------------------------ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 10px 0;
  background: rgba(252, 253, 251, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(49, 87, 44, 0.07);
  transition: box-shadow 0.3s, padding 0.3s;
}

.header--scrolled {
  padding: 6px 0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-family: "Alex Brush", cursive;
  font-weight: 400;
  font-size: 1.75rem;
  color: var(--c1);
  letter-spacing: 0;
  line-height: 1.1;
  flex-shrink: 0;
  text-decoration: none;
}

.footer__logo {
  width: 260px;
  height: auto;
  display: block;
  filter: drop-shadow(0 2px 14px rgba(201, 169, 110, 0.45));
  transition: filter 0.3s ease, transform 0.3s ease;
}

.footer__logo:hover {
  filter: drop-shadow(0 4px 24px rgba(201, 169, 110, 0.7));
  transform: translateY(-2px);
}

.sobre__logo {
  width: 260px;
  height: auto;
  display: block;
  margin: 0 auto 24px;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.12));
}

.nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav a {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--c1);
  opacity: 0.75;
  position: relative;
  padding-bottom: 2px;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--c3);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav a:hover,
.nav a.is-active {
  opacity: 1;
  color: var(--c3);
}

.nav a:hover::after,
.nav a.is-active::after {
  width: 100%;
}

.nav a.btn {
  opacity: 1 !important;
  color: #fff !important;
  white-space: nowrap;
  padding: 12px 24px !important;
  font-size: 0.875rem !important;
  line-height: 1 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: static !important;
}

.nav a.btn::after,
.nav a.btn::before {
  display: none !important;
}

/* Hamburger */
.menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 10;
}

.menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c1);
  border-radius: 2px;
  transition: 0.35s ease;
  transform-origin: center;
}

.menu-btn.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-btn.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-btn.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* -----------------------
   BOTÕES
------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  background: var(--c3);
  color: #fff;
  border: none;
  box-shadow: 0 8px 24px rgba(88, 129, 87, 0.25);
  cursor: pointer;
  transition: 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  letter-spacing: 0.2px;
}

.btn:hover {
  background: var(--c2);
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(88, 129, 87, 0.35);
}

.btn:active {
  transform: translateY(-1px);
}

.btn--hero {
  padding: 18px 34px;
  font-size: 1rem;
}

.btn--ghost {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.35);
  color: var(--text-light);
  box-shadow: none;
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-3px);
}

.btn--sm {
  padding: 11px 22px;
  font-size: 0.88rem;
}

.btn--full {
  width: 100%;
}

.btn--white {
  background: #fff;
  color: var(--c1) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.btn--white:hover {
  background: var(--w2);
  transform: translateY(-3px);
}

/* -----------------------
   TAGS
------------------------ */
.tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.tag--accent {
  background: rgba(88, 129, 87, 0.1);
  border-color: rgba(88, 129, 87, 0.25);
  color: var(--c3);
}

.tag--dark {
  background: rgba(27, 43, 27, 0.07);
  border-color: rgba(27, 43, 27, 0.12);
  color: var(--c1);
}

/* -----------------------
   HERO
------------------------ */
.hero {
  position: relative;
  background-color: var(--c1);
  background-image:
    radial-gradient(ellipse at 55% 65%, rgba(201, 169, 110, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 50%, rgba(88, 129, 87, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(163, 177, 138, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 80%, rgba(212, 160, 23, 0.08) 0%, transparent 40%);
  color: var(--text-light);
  padding: 170px 0 150px;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  overflow: hidden;
}

.hero__shape {
  position: absolute;
  opacity: 0.25;
  pointer-events: none;
  border-radius: 50%;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(var(--c4), transparent);
  top: -80px;
  left: -120px;
  filter: blur(60px);
  animation: driftSlow 18s ease-in-out infinite;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(var(--c3), transparent);
  bottom: -20px;
  right: 8%;
  filter: blur(50px);
  animation: driftSlow 14s ease-in-out infinite reverse;
}

.shape-3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(var(--gold-warm), transparent);
  top: 30%;
  right: 30%;
  filter: blur(70px);
  opacity: 0.2;
  animation: driftSlow 20s ease-in-out infinite 5s;
}

@keyframes driftSlow {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -20px) scale(1.05);
  }

  66% {
    transform: translate(-20px, 15px) scale(0.97);
  }
}

/* Particles */
.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 8s ease-in-out infinite;
}

.p1 {
  width: 6px;
  height: 6px;
  background: var(--c4);
  top: 20%;
  left: 15%;
  animation-delay: 0s;
  animation-duration: 9s;
}

.p2 {
  width: 4px;
  height: 4px;
  background: var(--gold);
  top: 60%;
  left: 25%;
  animation-delay: 1.5s;
  animation-duration: 11s;
}

.p3 {
  width: 8px;
  height: 8px;
  background: var(--c3);
  top: 35%;
  left: 70%;
  animation-delay: 3s;
  animation-duration: 8s;
}

.p4 {
  width: 5px;
  height: 5px;
  background: var(--c4);
  top: 75%;
  left: 80%;
  animation-delay: 0.8s;
  animation-duration: 13s;
}

.p5 {
  width: 3px;
  height: 3px;
  background: #fff;
  top: 15%;
  left: 55%;
  animation-delay: 2.2s;
  animation-duration: 7s;
}

.p6 {
  width: 7px;
  height: 7px;
  background: var(--c4);
  top: 80%;
  left: 40%;
  animation-delay: 4s;
  animation-duration: 10s;
}

.p7 {
  width: 4px;
  height: 4px;
  background: var(--gold);
  top: 45%;
  left: 5%;
  animation-delay: 1s;
  animation-duration: 12s;
}

@keyframes particleFloat {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.5);
  }

  15% {
    opacity: 0.6;
  }

  50% {
    opacity: 0.4;
    transform: translateY(-30px) scale(1);
  }

  85% {
    opacity: 0.6;
  }

  100% {
    opacity: 0;
    transform: translateY(20px) scale(0.5);
  }
}

/* Hero layout */
.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 70px;
  align-items: center;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  line-height: 1.08;
  margin: 0 0 22px;
  font-weight: 900;
}

.hero__title em {
  font-style: italic;
  color: var(--gold);
  text-shadow: 0 0 40px rgba(201, 169, 110, 0.35);
}

.hero .lead {
  font-size: 1.1rem;
  color: rgba(249, 247, 242, 0.78);
  margin-bottom: 34px;
  max-width: 480px;
  line-height: 1.75;
}

.hero__cta {
  display: flex;
  gap: 14px;
  margin-bottom: 34px;
  flex-wrap: wrap;
}

.bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.88rem;
  opacity: 0.82;
}

.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: var(--c3);
  border-radius: 50%;
  font-size: 0.65rem;
  margin-right: 6px;
  font-weight: 900;
}

/* Hero image */
.hero__image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  z-index: 1;
}

.image-decor {
  position: absolute;
  inset: -18px;
  z-index: 0;
  border-radius: 210px 210px 26px 26px;
  background: radial-gradient(ellipse at 50% 40%,
      rgba(201, 169, 110, 0.22) 0%,
      rgba(201, 169, 110, 0.06) 55%,
      transparent 75%);
  filter: blur(18px);
  animation: haloBreath 5s ease-in-out infinite;
}

.image-ring {
  position: absolute;
  inset: -12px;
  z-index: 1;
  border-radius: 204px 204px 22px 22px;
  border: 1px solid rgba(201, 169, 110, 0.18);
  animation: haloBreath 7s ease-in-out infinite reverse;
}

@keyframes haloBreath {

  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.025);
  }
}

.hero__main-img {
  width: 100%;
  max-width: 430px;
  min-height: 500px;
  object-fit: cover;
  border-radius: 200px 200px 20px 20px;
  border: 1px solid rgba(201, 169, 110, 0.25);
  box-shadow:
    var(--shadow-lg),
    0 0 60px rgba(201, 169, 110, 0.12),
    0 0 0 8px rgba(255, 255, 255, 0.04);
  position: relative;
  z-index: 2;
  transition: transform 0.7s ease;
}

.hero__main-img:hover {
  transform: scale(1.015);
}

/* Floating badges */
.floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.97);
  color: var(--c1);
  border-radius: 100px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.14);
  border: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  z-index: 5;
  backdrop-filter: blur(10px);
}

.badge-1 {
  bottom: 14%;
  left: -40px;
  padding: 16px 26px;
  gap: 12px;
  font-weight: 800;
  font-size: 0.9rem;
  animation: floatBadge 4s ease-in-out infinite;
}

.badge-2 {
  top: 16%;
  right: -35px;
  padding: 10px 18px 10px 10px;
  gap: 10px;
  animation: floatBadge 5.5s ease-in-out infinite 1.8s;
}

.badge-2 .badge-icon {
  background: var(--w2);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.badge-2 .badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.badge-2 .badge-text strong {
  font-size: 0.85rem;
  font-weight: 900;
}

.badge-2 .badge-text span {
  font-size: 0.7rem;
  color: var(--muted);
  font-weight: 600;
}

@keyframes floatBadge {

  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-12px) rotate(1deg);
  }
}

/* -----------------------
   STATS
------------------------ */
.stats-section {
  background: var(--c1);
  padding: 50px 0;
  position: relative;
  z-index: 5;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 30px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-light);
}

.stat-item:last-child {
  border-right: none;
}

.stat-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 8px;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.stat-suffix {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
}

.stat-item p {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(249, 247, 242, 0.6);
  font-weight: 500;
  letter-spacing: 0.3px;
}

.stat-item--feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 28px 16px;
}

.stat-feature-icon {
  font-size: 1.4rem;
  color: var(--gold);
  line-height: 1;
}

.stat-item--feature p {
  font-size: 0.9rem;
  font-family: var(--font-serif);
  font-style: italic;
  color: rgba(249, 247, 242, 0.85);
  letter-spacing: 0.2px;
  line-height: 1.4;
}

/* -----------------------
   CARDS OVERLAP
------------------------ */
.overlap-section {
  position: relative;
  z-index: 10;
  padding: 80px 0 30px;
}

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

.card-glass {
  background: rgba(255, 255, 255, 0.98);
  padding: 40px 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(49, 87, 44, 0.06);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: default;
}

.card-glass:hover {
  transform: translateY(-14px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(88, 129, 87, 0.2);
}


.card-glass .icon {
  width: 56px;
  height: 56px;
  background: var(--w2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 22px;
  transition: 0.4s ease;
}

.card-glass:hover .icon {
  background: var(--c3);
  transform: scale(1.1) rotate(8deg);
  filter: grayscale(0);
}

/* -----------------------
   SEÇÕES BASE
------------------------ */
.section {
  padding: 110px 0;
}

.section--alt {
  background: var(--w2);
  border-top: 1px solid rgba(0, 0, 0, 0.035);
  border-bottom: 1px solid rgba(0, 0, 0, 0.035);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}

.box,
.card,
.mini-card {
  background: #ffffff;
  padding: 40px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: var(--transition);
}

.box:hover,
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.07);
  margin: 25px 0;
}

.highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.hl {
  background: var(--w1);
  padding: 22px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.hl:hover {
  border-color: var(--c4);
}

.hl strong {
  display: block;
  color: var(--c1);
  font-size: 1.1rem;
  margin-bottom: 6px;
  font-family: var(--font-serif);
}

.list {
  padding-left: 20px;
  margin-bottom: 30px;
}

.list li {
  margin-bottom: 12px;
  color: var(--muted);
  position: relative;
}

.list li::marker {
  color: var(--c3);
}

/* -----------------------
   PROCESSO
------------------------ */
.process-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
  margin-top: 20px;
}

.step {
  text-align: center;
  padding: 20px;
}

.step__number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--c3);
  color: #fff;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  box-shadow: 0 10px 30px rgba(88, 129, 87, 0.3);
  transition: var(--transition);
  position: relative;
  z-index: 2;
}

.step:hover .step__number {
  transform: scale(1.1);
  background: var(--c2);
  box-shadow: 0 15px 40px rgba(88, 129, 87, 0.4);
}

.step__content h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.step__content p {
  font-size: 0.9rem;
}

.step__connector {
  align-self: start;
  margin-top: 36px;
  height: 2px;
  width: 100%;
  min-width: 40px;
  background: linear-gradient(90deg, var(--c3), var(--c4));
  opacity: 0.4;
  border-radius: 2px;
  position: relative;
}

.step__connector::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--c4);
  border-right: 2px solid var(--c4);
  transform: translateY(-50%) rotate(45deg);
}

/* -----------------------
   TEMAS / SERVIÇOS
------------------------ */
.section--temas {
  background: var(--w1);
  position: relative;
  overflow: hidden;
}

.section--temas::before {
  content: "";
  position: absolute;
  right: -200px;
  top: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(163, 177, 138, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Intro */
.temas-intro {
  max-width: 680px;
  margin: 0 auto 70px;
  text-align: center;
}

.temas-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 18px;
  line-height: 1.12;
}

.temas-title em {
  font-style: italic;
  color: var(--c3);
}

.temas-lead {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto;
}

/* Grid de cards */
.temas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 70px;
}

.tema-card {
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.45s ease,
    border-color 0.45s ease;
  cursor: default;
  position: relative;
}

.tema-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--c3), var(--c4));
  opacity: 0;
  transition: opacity 0.35s ease;
}

.tema-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
  border-color: rgba(88, 129, 87, 0.15);
}

.tema-card:hover::before {
  opacity: 1;
}

.tema-card__inner {
  padding: 30px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}

.tema-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(88, 129, 87, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c3);
  flex-shrink: 0;
  transition: 0.35s ease;
}

.tema-card:hover .tema-icon {
  background: var(--c3);
  color: #fff;
  transform: scale(1.08);
}

.tema-card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--c1);
  margin: 0;
  font-weight: 700;
}

.tema-question {
  font-size: 0.9rem;
  color: var(--c2);
  font-style: italic;
  line-height: 1.6;
  margin: 0;
  border-left: 2px solid var(--c4);
  padding-left: 12px;
}

.tema-body {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* Manifesto */
.temas-manifesto {
  margin: 0 auto 60px;
  max-width: 780px;
}

.manifesto-quote {
  background: linear-gradient(135deg, var(--c1) 0%, #243824 100%);
  color: var(--text-light);
  border-radius: 28px;
  padding: 56px 64px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.manifesto-quote::before {
  content: "";
  position: absolute;
  left: -80px;
  bottom: -80px;
  width: 250px;
  height: 250px;
  background: radial-gradient(var(--c3), transparent);
  opacity: 0.12;
  border-radius: 50%;
  pointer-events: none;
}

.manifesto-quote::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(var(--c4), transparent);
  opacity: 0.1;
  border-radius: 50%;
  pointer-events: none;
}

.manifesto-aspas {
  display: block;
  font-family: var(--font-serif);
  font-size: 6rem;
  line-height: 0.6;
  color: var(--c4);
  opacity: 0.5;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.manifesto-quote p {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  line-height: 1.7;
  color: rgba(249, 247, 242, 0.92);
  font-style: italic;
  margin: 0 0 24px;
  position: relative;
  z-index: 1;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.manifesto-quote cite {
  font-size: 0.82rem;
  font-style: normal;
  color: var(--c4);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

/* CTA final */
.temas-cta {
  text-align: center;
}

.temas-cta__text {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--c1);
  margin-bottom: 28px;
  font-style: italic;
}

.temas-cta__btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn--outline-dark {
  background: transparent;
  border: 2px solid rgba(27, 43, 27, 0.2);
  color: var(--c1);
  box-shadow: none;
  gap: 8px;
}

.btn--outline-dark:hover {
  background: var(--c1);
  color: #fff;
  border-color: var(--c1);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* LEGADO - manter chips para compatibilidade */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0;
}

.chip {
  padding: 11px 22px;
  border-radius: 100px;
  background: #fff;
  border: 1.5px solid rgba(88, 129, 87, 0.12);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: var(--shadow-sm);
  color: var(--c1);
  cursor: default;
  transition: 0.3s ease;
}

.chip:hover {
  background: var(--c2);
  color: #fff;
  border-color: var(--c2);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(58, 90, 64, 0.25);
}

.cta-strip {
  background: linear-gradient(135deg, var(--c1) 0%, var(--c2) 100%);
  color: var(--text-light);
  padding: 40px 50px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 50px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(var(--c4), transparent);
  opacity: 0.15;
  border-radius: 50%;
}

.cta-strip p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
}

.cta-strip strong {
  font-size: 1.2rem;
  display: block;
  margin-bottom: 4px;
}

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

.testimonial-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

.testimonial-card--featured {
  background: linear-gradient(145deg, var(--c1), var(--c2));
  color: var(--text-light);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}

.testimonial-card--featured .testimonial-text {
  color: rgba(249, 247, 242, 0.88);
}

.testimonial-card--featured .testimonial-stars {
  color: var(--gold);
}

.testimonial-card--featured .author-avatar {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.testimonial-card--featured strong {
  color: #fff;
}

.testimonial-card--featured span {
  color: rgba(249, 247, 242, 0.6);
}

.testimonial-stars {
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.97rem;
  color: var(--muted);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--w2);
  color: var(--c3);
  font-weight: 900;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.95rem;
  color: var(--c1);
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--muted);
}

/* -----------------------
   CONTATO
------------------------ */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}

.form {
  display: grid;
  gap: 20px;
}

label {
  display: grid;
  gap: 8px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--c1);
}

input,
select {
  width: 100%;
  padding: 16px 20px;
  border-radius: 14px;
  border: 1.5px solid rgba(0, 0, 0, 0.09);
  background: var(--w1);
  font-size: 0.97rem;
  font-family: inherit;
  transition: 0.3s;
  color: var(--text);
}

input:focus,
select:focus {
  outline: none;
  border-color: var(--c3);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(88, 129, 87, 0.12);
}

input::placeholder {
  color: rgba(21, 33, 21, 0.35);
}

.form__msg {
  text-align: center;
  font-weight: 600;
  padding: 12px;
  border-radius: 10px;
  background: rgba(88, 129, 87, 0.08);
  color: var(--c3);
}

/* -----------------------
   FOOTER
------------------------ */
.footer {
  background: var(--c1);
  color: var(--text-light);
  padding: 80px 0 40px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(var(--c3), transparent);
  opacity: 0.07;
  border-radius: 50%;
  pointer-events: none;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: 40px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links h4 {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0 0 6px;
}

.footer__links a {
  font-size: 0.9rem;
  color: rgba(249, 247, 242, 0.65);
  transition: 0.25s;
}

.footer__links a:hover {
  color: var(--gold);
  transform: translateX(4px);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

/* -----------------------
   FLOAT WHATSAPP
------------------------ */
.float-whats {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  z-index: 900;
  transition: 0.3s ease;
  opacity: 0;
  transform: scale(0.8) translateY(20px);
  pointer-events: none;
}

.float-whats.is-visible {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}

.float-whats:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
}

.float-whats::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.4);
  animation: pulse 2.5s ease-out infinite;
}

.float-whats__tooltip {
  position: absolute;
  right: 74px;
  white-space: nowrap;
  background: var(--c1);
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  opacity: 0;
  transform: translateX(6px);
  transition: 0.25s;
  pointer-events: none;
}

.float-whats__tooltip::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--c1);
  border-right: none;
}

.float-whats:hover .float-whats__tooltip {
  opacity: 1;
  transform: translateX(0);
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* -----------------------
   BACK TO TOP
------------------------ */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 28px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--c1);
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  z-index: 900;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.35s ease;
  pointer-events: none;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--c3);
  color: #fff;
  transform: translateY(-4px);
  border-color: var(--c3);
}

/* -----------------------
   ANIMAÇÕES DE REVEAL
------------------------ */
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-scale {
  opacity: 0;
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-up {
  transform: translateY(40px);
}

.reveal-left {
  transform: translateX(-50px);
}

.reveal-right {
  transform: translateX(50px);
}

.reveal-scale {
  transform: scale(0.92);
}

.reveal-up.is-revealed,
.reveal-left.is-revealed,
.reveal-right.is-revealed,
.reveal-scale.is-revealed {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* Classe legada */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* -----------------------
   POR QUE PSICANÁLISE
------------------------ */
.section--filosofia {
  background: var(--c1);
  background-image:
    radial-gradient(ellipse at 10% 80%, rgba(88, 129, 87, 0.15) 0%, transparent 55%),
    radial-gradient(ellipse at 90% 20%, rgba(163, 177, 138, 0.08) 0%, transparent 50%);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.section--filosofia::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23588157' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.filosofia-header {
  max-width: 680px;
  margin: 0 auto 70px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.filosofia-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: var(--text-light);
  margin-bottom: 18px;
  line-height: 1.12;
}

.filosofia-title em {
  font-style: italic;
  color: var(--c4);
}

.filosofia-lead {
  font-size: 1.05rem;
  color: rgba(249, 247, 242, 0.7);
  line-height: 1.8;
  max-width: 540px;
  margin: 0 auto;
}

.tag--light {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--c4);
}

.filosofia-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}

.filosofia-card {
  padding: 48px 40px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  transition: background 0.4s ease, border-color 0.4s ease;
}

.filosofia-card:first-child {
  border-radius: 20px 0 0 20px;
}

.filosofia-card:last-child {
  border-radius: 0 20px 20px 0;
}

.filosofia-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(163, 177, 138, 0.2);
}

.filosofia-num {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 900;
  color: var(--c3);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 20px;
  transition: opacity 0.4s ease;
}

.filosofia-card:hover .filosofia-num {
  opacity: 0.6;
}

.filosofia-card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: #fff;
  margin-bottom: 16px;
  font-weight: 700;
  line-height: 1.3;
}

.filosofia-card p {
  font-size: 0.95rem;
  color: rgba(249, 247, 242, 0.65);
  line-height: 1.8;
  margin: 0;
}

.filosofia-line {
  width: 40px;
  height: 2px;
  background: var(--c3);
  border-radius: 2px;
  margin-top: 28px;
  opacity: 0.5;
  transition: width 0.4s ease, opacity 0.4s ease;
}

.filosofia-card:hover .filosofia-line {
  width: 70px;
  opacity: 1;
}

/* Freud quote */
.freud-quote {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 50px 40px;
  max-width: 700px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.freud-quote__ornament {
  width: 60px;
  height: 40px;
  color: var(--c4);
  margin: 0 auto 20px;
  display: block;
}

.freud-quote blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: rgba(249, 247, 242, 0.85);
  line-height: 1.75;
  margin: 0 0 20px;
}

.freud-quote cite {
  font-size: 0.8rem;
  font-style: normal;
  color: var(--c4);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.8;
}

/* -----------------------
   FAIXA DE ÉTICA
------------------------ */
.etica-strip {
  background: var(--w2);
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  padding: 50px 0;
}

.etica-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.etica-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 30px 32px;
  border-right: 1px solid rgba(0, 0, 0, 0.06);
  transition: background 0.3s ease;
}

.etica-item:last-child {
  border-right: none;
}

.etica-item:hover {
  background: rgba(88, 129, 87, 0.04);
}

.etica-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(88, 129, 87, 0.08);
  color: var(--c3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: 0.35s ease;
}

.etica-item:hover .etica-icon {
  background: var(--c3);
  color: #fff;
}

.etica-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.etica-text strong {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--c1);
  font-family: var(--font-serif);
}

.etica-text span {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.55;
}

/* -----------------------
   FAQ ACCORDION
------------------------ */
.faq-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: start;
}

.faq-left {
  position: sticky;
  top: 110px;
}

.faq-left h2 {
  line-height: 1.1;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.faq-item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  color: var(--c1);
  transition: color 0.3s;
}

.faq-question:hover {
  color: var(--c3);
}

.faq-question[aria-expanded="true"] {
  color: var(--c3);
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    background 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(-180deg);
  background: var(--c3);
  border-color: var(--c3);
  color: #fff;
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-answer[aria-hidden="false"] {
  max-height: 600px;
}

.faq-answer p {
  margin: 0;
  padding: 0 4px 22px;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.8;
}

/* -----------------------
   H2 EM ITALIC ACCENT
------------------------ */
.h2-em {
  font-style: italic;
  color: var(--c3);
}

/* -----------------------
   ABORDAGENS
------------------------ */
.abordagens-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 20px;
}

.abordagem-card {
  position: relative;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.45s ease;
}

.abordagem-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

.abordagem-card__accent {
  height: 4px;
  width: 100%;
}

.abordagem-card__accent--psicanalise {
  background: linear-gradient(90deg, var(--c2), var(--c3), var(--c4));
}

.abordagem-card__accent--constelacao {
  background: linear-gradient(90deg, var(--gold-deep), var(--gold), var(--gold-warm));
}

.abordagem-card__inner {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.abordagem-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: rgba(88, 129, 87, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c3);
  flex-shrink: 0;
  transition: 0.35s ease;
}

.abordagem-icon--gold {
  background: rgba(201, 169, 110, 0.12);
  color: var(--gold-deep);
}

.abordagem-card:hover .abordagem-icon {
  background: var(--c3);
  color: #fff;
}

.abordagem-card:hover .abordagem-icon--gold {
  background: var(--gold);
  color: #fff;
}

.abordagem-psi {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
}

.abordagem-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c3);
}

.abordagem-tag--gold {
  color: var(--gold-deep);
}

.abordagem-card h3 {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  color: var(--c1);
  margin: 0;
  font-weight: 700;
  line-height: 1.2;
}

.abordagem-desc {
  font-size: 0.96rem;
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}

.abordagem-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.abordagem-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--c1);
  font-weight: 500;
}

.abordagem-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c3);
  flex-shrink: 0;
}

.abordagem-list--gold li::before {
  background: var(--gold);
}

.abordagem-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--muted);
  padding-top: 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  margin-top: 4px;
}

.abordagem-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--c4);
  flex-shrink: 0;
}

.abordagem-dot--gold {
  background: var(--gold);
}

/* -----------------------
   FRASE ÂNCORA
------------------------ */
.frase-ancora {
  background: var(--w1);
  position: relative;
  padding: 80px 0;
}

.frase-ancora::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  pointer-events: none;
}

.frase-ancora::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  pointer-events: none;
}

.frase-ancora__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  max-width: 820px;
  margin: 0 auto;
}

.frase-ancora__psi {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--gold);
  opacity: 0.7;
  line-height: 1;
  display: block;
  animation: breathe 5s ease-in-out infinite;
}

@keyframes breathe {

  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }

  50% {
    opacity: 0.85;
    transform: scale(1.06);
  }
}

.frase-ancora__texto {
  margin: 0;
  font-family: var(--font-elegant);
  font-style: italic;
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  color: var(--c1);
  line-height: 1.4;
  font-weight: 400;
}

.frase-ancora__texto em {
  font-style: inherit;
  color: var(--c3);
}

.frase-ancora__linha {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
  border-radius: 2px;
}

.frase-ancora__autor {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-style: normal;
  color: var(--muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}

/* -----------------------
   MÍDIAS
------------------------ */
.section--midias {
  background: var(--w2);
}

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

.midia-slot {
  border-radius: 20px;
  overflow: hidden;
  background: var(--c1);
  box-shadow: var(--shadow-md);
  aspect-ratio: 9 / 16;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.4s ease;
}

.midia-slot:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.midia-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: stretch;
}

/* quando o embed real for colado, ocupa 100% */
.midia-inner>blockquote,
.midia-inner>iframe {
  flex: 1;
  width: 100% !important;
  height: 100% !important;
  border: none;
  margin: 0;
}

.midia-placeholder {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px dashed rgba(201, 169, 110, 0.2);
  border-radius: 20px;
  color: rgba(249, 247, 242, 0.45);
  text-align: center;
  padding: 24px;
}

.midia-placeholder__icon {
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 4px;
}

.midia-placeholder p {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1rem;
  color: rgba(249, 247, 242, 0.6);
}

.midia-placeholder span {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.5;
}

/* TikTok click-to-load preview card */
.tt-preview {
  position: absolute;
  inset: 0;
  background: #010101;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  gap: 18px;
  border-radius: 20px;
  overflow: hidden;
  transition: opacity 0.2s ease;
}

.tt-preview:hover {
  opacity: 0.9;
}

.tt-preview__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(105, 201, 208, 0.12) 0%, rgba(238, 29, 82, 0.08) 50%, transparent 75%);
  pointer-events: none;
}

.tt-preview__play {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.tt-preview:hover .tt-preview__play {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.08);
}

.tt-preview__brand {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.tt-preview__brand span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.5px;
  font-family: var(--font-sans);
}

.tt-preview__hint {
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
  position: relative;
  z-index: 1;
}

.ig-glow {
  background: radial-gradient(ellipse at 50% 40%, rgba(225, 48, 108, 0.18) 0%, rgba(131, 58, 180, 0.12) 50%, transparent 75%);
}

/* iframe loaded via JS */
.midia-inner>iframe {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  border: none;
  margin: 0;
}

/* Botões de redes sociais */
.midias-redes {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.rede-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  letter-spacing: 0.2px;
}

.rede-btn:hover {
  transform: translateY(-3px);
}

.rede-btn--ig {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: #fff;
  box-shadow: 0 8px 24px rgba(131, 58, 180, 0.3);
}

.rede-btn--ig:hover {
  box-shadow: 0 16px 32px rgba(131, 58, 180, 0.4);
}

.rede-btn--tt {
  background: var(--c1);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.rede-btn--tt:hover {
  background: #010101;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
}

/* -----------------------
   RESPONSIVIDADE
------------------------ */
@media (max-width: 1200px) {
  .temas-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .etica-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .etica-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .etica-item:nth-child(2) {
    border-right: none;
  }
}

@media (max-width: 1024px) {
  .process-steps {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .step__connector {
    display: none;
  }

  .step {
    border-left: 3px solid var(--c4);
    padding-left: 30px;
    text-align: left;
  }

  .step__number {
    margin: 0 0 16px;
  }
}

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

  .hero__grid,
  .two-col,
  .contact,
  .grid-cards,
  .highlights,
  .testimonials-grid,
  .abordagens-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 150px 0 100px;
    text-align: center;
    border-radius: 0 0 40px 40px;
  }

  .hero .lead {
    margin: 0 auto 34px;
  }

  .hero__cta,
  .bullets {
    justify-content: center;
  }

  .image-decor,
  .image-ring,
  .badge-2 {
    display: none;
  }

  .badge-1 {
    bottom: -24px;
    left: 50%;
    transform: translateX(-50%);
    animation: none;
    white-space: nowrap;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .stat-item:nth-child(2n) {
    border-right: none;
  }

  .temas-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .manifesto-quote {
    padding: 42px 36px;
  }

  .filosofia-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .filosofia-card:first-child {
    border-radius: 20px 20px 0 0;
  }

  .filosofia-card:last-child {
    border-radius: 0 0 20px 20px;
  }

  .etica-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .etica-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .etica-item:nth-child(2),
  .etica-item:nth-child(4) {
    border-right: none;
  }

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

  .faq-left {
    position: static;
  }

  .cta-strip {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .testimonials-grid {
    gap: 20px;
  }

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

  .footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .frase-ancora {
    padding: 56px 0;
  }

  .frase-ancora__texto {
    font-size: clamp(1.4rem, 6.5vw, 1.9rem);
  }

  .abordagem-card__inner {
    padding: 28px 24px;
  }

  h2 {
    font-size: 1.9rem;
  }

  .nav {
    display: none;
  }

  .menu-btn {
    display: flex;
  }

  .nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    background: #fff;
    padding: 24px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    gap: 4px;
    animation: menuSlideDown 0.3s ease;
  }

  .nav.is-open a {
    padding: 10px 6px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  }

  .nav.is-open a:last-child {
    border-bottom: none;
  }

  .nav.is-open a.btn {
    margin-top: 8px;
  }

  @keyframes menuSlideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section {
    padding: 80px 0;
  }

  .box,
  .card {
    padding: 28px 24px;
  }

  .cta-strip {
    padding: 30px 28px;
  }

  .testimonial-card {
    padding: 28px 24px;
  }

  .temas-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .manifesto-quote {
    padding: 36px 28px;
  }

  .manifesto-aspas {
    font-size: 4rem;
  }

  .filosofia-card {
    padding: 36px 28px;
  }

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

  .etica-item {
    border-right: none;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 2.4rem;
  }

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

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

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

  .midia-slot {
    max-height: none;
  }

  .float-whats {
    bottom: 20px;
    right: 20px;
  }

  .back-to-top {
    bottom: 92px;
    right: 20px;
  }
}