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

:root {
  --dark:    #13112E;
  --darker:  #0E0C24;
  --mid:     #1E1A42;
  --gold:    #C9A96E;
  --gold2:   #E8C98A;
  --white:   #F5F2EC;
  --muted:   #A89FC0;
  --accent:  #9B7FD4;
  --border:  rgba(201,169,110,0.18);
  --ff-head: 'Cormorant Garamond', Georgia, serif;
  --ff-body: 'Lato', system-ui, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

#starfield {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(180deg, #03020F 0%, #07051A 40%, #0A0820 100%);
}

body {
  background: #03020F;
  color: var(--white);
  font-family: var(--ff-body);
  font-weight: 300;
  line-height: 1.75;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.2rem 0;
  transition: background 0.4s, padding 0.4s;
}

#navbar.scrolled {
  background: rgba(8,7,26,0.95);
  backdrop-filter: blur(12px);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name {
  font-family: var(--ff-head);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.03em;
}
.logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}
.nav-links a {
  font-size: 0.76rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--gold); }

.btn-nav {
  background: transparent;
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  padding: 0.5rem 1.1rem;
  border-radius: 2px;
  transition: background 0.3s !important;
}
.btn-nav:hover { background: var(--gold) !important; color: var(--dark) !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ===== HERO ===== */
#hero {
  height: 100vh;
  min-height: 600px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: transparent;
}

/* ── TOPO CENTRALIZADO ── */
.hero-top-label {
  position: absolute;
  top: 5.5rem;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.85;
  z-index: 5;
  pointer-events: none;
}

/* ── LADO ESQUERDO ── */
.hero-left {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7rem 4rem 4rem 4rem;
  position: relative;
  z-index: 3;
  background: linear-gradient(to right, rgba(5,4,18,0.92) 55%, transparent 100%);
  overflow: hidden;
  text-align: left;
}

.hero-left-inner {
  max-width: 480px;
}

.hero-pre {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  opacity: 0.85;
}

.hero-name {
  font-family: var(--ff-head);
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 0.6rem;
  letter-spacing: 0.02em;
}

.hero-subtitle {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0.7;
}

.hero-tagline {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 400px;
}

.hero-quote {
  font-family: var(--ff-head);
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  border-left: 2px solid rgba(201,169,110,0.5);
  padding-left: 1.25rem;
  max-width: 420px;
}

/* ── LADO DIREITO: FOTO + SÍMBOLO ── */
.hero-right {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.hero-photo-img {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 80%;
  width: auto;
  object-fit: contain;
  object-position: bottom right;
  display: block;
}

/* véu que funde a foto com o lado escuro esquerdo */
.hero-right-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #050412 0%, transparent 30%),
              linear-gradient(to top, #050412 0%, transparent 15%);
  pointer-events: none;
  z-index: 2;
}

/* símbolo no centro da tela */
.hero-symbol-float {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(200px, 24vw, 300px);
  z-index: 4;
  animation: symbolFloat 5s ease-in-out infinite;
  filter:
    drop-shadow(0 0 20px rgba(201,169,110,0.65))
    drop-shadow(0 0 60px rgba(155,127,212,0.40));
}

.hero-symbol-float img {
  width: 100%;
  height: auto;
  display: block;
}

/* brilho dourado/lilás sob o símbolo */
.hero-symbol-glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(200px, 26vw, 340px);
  height: clamp(200px, 26vw, 340px);
  top: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(201,169,110,0.20) 0%, rgba(155,127,212,0.13) 40%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 3;
  animation: glowPulse 5s ease-in-out infinite;
}

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

@keyframes glowPulse {
  0%, 100% { opacity: 0.7; }
  50%       { opacity: 1; }
}

.hero-content {
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  white-space: nowrap;
}

.hero-title {
  font-family: var(--ff-head);
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 300;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2.5rem;
}

.hero-phrase {
  font-family: var(--ff-head);
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-style: italic;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

.hero-ctas { display: flex; gap: 1rem; justify-content: flex-start; flex-wrap: wrap; }

.btn-primary {
  background: var(--gold);
  color: var(--dark);
  padding: 0.85rem 2.25rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 2px;
  transition: background 0.3s, transform 0.2s;
}
.btn-primary:hover { background: var(--gold2); transform: translateY(-1px); }
.btn-primary.full { width: 100%; text-align: center; }

.btn-ghost {
  border: 1px solid rgba(201,169,110,0.4);
  color: var(--gold);
  padding: 0.85rem 2.25rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: border-color 0.3s, background 0.3s;
}
.btn-ghost:hover { border-color: var(--gold); background: rgba(201,169,110,0.08); }

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--muted);
  font-size: 1.25rem;
  animation: bounce 2s ease-in-out infinite;
  cursor: pointer;
}
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ===== WHATSAPP AGENDAR ===== */
.agendar-whatsapp {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 3rem 0 1rem;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--gold);
  color: var(--dark);
  padding: 1.1rem 2.8rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 50px;
  transition: background 0.3s, transform 0.2s;
  box-shadow: 0 4px 24px rgba(201,169,110,0.25);
}
.btn-whatsapp:hover {
  background: var(--gold2);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,169,110,0.35);
}

.agendar-info-sub {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  opacity: 0.7;
  text-align: center;
}

/* ===== SECTIONS BASE ===== */
section { padding: 6rem 0; }

.section-symbol {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
  text-align: center;
  opacity: 0.7;
}

.section-title {
  font-family: var(--ff-head);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 300;
  text-align: center;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
}

.section-sub {
  text-align: center;
  color: var(--muted);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 3.5rem;
  line-height: 1.8;
}

/* ===== SOBRE ===== */
#sobre { background: rgba(14,12,36,0.70); position: relative; z-index: 1; }

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.sobre-text p {
  color: var(--muted);
  margin-bottom: 1.1rem;
  font-size: 0.97rem;
}
.sobre-text p strong { color: var(--white); font-weight: 400; }
.sobre-text p em { color: var(--gold); font-style: italic; }
.sobre-lead {
  font-family: var(--ff-head) !important;
  font-size: 1.35rem !important;
  color: var(--white) !important;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 1.5rem !important;
}
.sobre-loc { color: var(--gold) !important; font-size: 0.8rem !important; letter-spacing: 0.1em; margin-top: 1.5rem !important; }

.sobre-dons h3 {
  font-family: var(--ff-head);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.don-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}
.don-symbol { color: var(--gold); font-size: 1.1rem; margin-top: 0.1rem; flex-shrink: 0; }
.don-item strong { display: block; color: var(--white); font-weight: 400; margin-bottom: 0.25rem; font-size: 0.95rem; }
.don-item p { color: var(--muted); font-size: 0.88rem; margin: 0; }

/* ===== QUOTE ===== */
.quote-section {
  background: var(--mid);
  padding: 5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.quote-section blockquote {
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
}
.quote-section blockquote p {
  font-family: var(--ff-head);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-style: italic;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.quote-section blockquote cite {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  font-style: normal;
}

/* ===== TERAPIAS ===== */
#terapias { background: rgba(19,17,46,0.68); position: relative; z-index: 1; }

.terapias-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.terapia-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2.5rem;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.terapia-card:hover {
  border-color: rgba(201,169,110,0.4);
  transform: translateY(-3px);
}
.terapia-card.featured {
  border-color: rgba(201,169,110,0.4);
  background: rgba(201,169,110,0.04);
}

.card-symbol { color: var(--gold); font-size: 1.5rem; margin-bottom: 1rem; opacity: 0.6; }

.card-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.65rem;
  border-radius: 2px;
}

.terapia-card h3 {
  font-family: var(--ff-head);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.4rem;
}

.card-tag {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.terapia-card p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.terapia-card ul {
  margin-bottom: 1.75rem;
}
.terapia-card ul li {
  color: var(--muted);
  font-size: 0.85rem;
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.terapia-card ul li::before { content: '✦'; color: var(--gold); font-size: 0.6rem; }

.btn-card {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.6rem 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.3s, color 0.3s;
}
.btn-card:hover { background: var(--gold); color: var(--dark); }

/* ===== ALEGRE-SER ===== */
#alegrese {
  background: var(--darker);
  border-top: 1px solid var(--border);
}

.alegrese-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 2.5rem;
  align-items: start;
}

.alegrese-text p { color: var(--muted); margin-bottom: 1.25rem; font-size: 0.95rem; }
.alegrese-text p strong { color: var(--white); font-weight: 400; }

.alegrese-items { margin: 1.5rem 0 2rem; }
.alegrese-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  align-items: flex-start;
}
.alegrese-item span { color: var(--gold); flex-shrink: 0; margin-top: 0.1rem; }
.alegrese-item p { color: var(--muted); font-size: 0.9rem; margin: 0; }
.alegrese-item p strong { color: var(--white); font-weight: 400; }

.btn-ghost-dark {
  display: inline-block;
  border: 1px solid var(--border);
  color: var(--gold);
  padding: 0.7rem 1.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: border-color 0.3s, background 0.3s;
}
.btn-ghost-dark:hover { border-color: var(--gold); background: rgba(201,169,110,0.06); }

.alegrese-quote {
  background: rgba(201,169,110,0.04);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.big-quote {
  font-family: var(--ff-head);
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-style: italic;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.alegrese-quote cite { color: var(--gold); font-size: 0.78rem; letter-spacing: 0.1em; }

/* ===== FRASES ===== */
#frases {
  background: var(--dark);
  border-top: 1px solid var(--border);
}

.frases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}

.frase-card {
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2.5rem;
  transition: border-color 0.3s;
}
.frase-card:hover { border-color: rgba(201,169,110,0.35); }
.frase-card p {
  font-family: var(--ff-head);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.frase-card cite { color: var(--gold); font-size: 0.75rem; letter-spacing: 0.08em; }

/* ===== PARA QUEM ===== */
#paraquem { background: rgba(30,26,66,0.68); border-top: 1px solid var(--border); position: relative; z-index: 1; }

.paraquem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.paraquem-item {
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: border-color 0.3s, background 0.3s;
}
.paraquem-item:hover {
  border-color: rgba(201,169,110,0.35);
  background: rgba(201,169,110,0.03);
}
.paraquem-icon { font-size: 1.5rem; color: var(--gold); display: block; margin-bottom: 1rem; opacity: 0.7; }
.paraquem-item p { color: var(--muted); font-size: 0.9rem; line-height: 1.65; }

/* ===== AGENDAR ===== */
#agendar { background: rgba(14,12,36,0.70); border-top: 1px solid var(--border); position: relative; z-index: 1; }

.agendar-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3.5rem;
  margin-top: 2rem;
}

.agendar-form form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 0.93rem;
  padding: 0.8rem 1rem;
  outline: none;
  transition: border-color 0.3s;
  appearance: none;
}
.form-group select option { background: var(--mid); color: var(--white); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: rgba(201,169,110,0.5); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(168,159,192,0.45); }

.form-note {
  margin-top: 1.25rem;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.9;
}
.form-note a { color: var(--gold); border-bottom: 1px solid rgba(201,169,110,0.3); transition: border-color 0.3s; }
.form-note a:hover { border-color: var(--gold); }

.agendar-info { display: flex; flex-direction: column; gap: 1.25rem; }

.info-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.5rem 1.75rem;
}
.info-card h3 { color: var(--gold); font-family: var(--ff-head); font-size: 1.1rem; font-weight: 400; margin-bottom: 0.5rem; }
.info-card p { color: var(--muted); font-size: 0.88rem; line-height: 1.75; }
.info-card p strong { color: var(--white); font-weight: 400; }

.social-links p { color: var(--muted); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.75rem; }
.social-btn {
  display: block;
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 0.65rem 1rem;
  font-size: 0.82rem;
  border-radius: 2px;
  margin-bottom: 0.5rem;
  transition: border-color 0.3s, color 0.3s;
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); }

/* ===== FOOTER ===== */
footer {
  background: rgba(14,12,36,0.90);
  position: relative; z-index: 1;
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo-name { font-family: var(--ff-head); font-size: 1.3rem; color: var(--gold); display: block; margin-bottom: 0.25rem; }
.footer-brand .logo-sub { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 1rem; }
.footer-brand p { color: var(--muted); font-size: 0.85rem; font-style: italic; }

.footer-links, .footer-contact { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a, .footer-contact a, .footer-contact span {
  color: var(--muted);
  font-size: 0.85rem;
  transition: color 0.3s;
}
.footer-links a:hover, .footer-contact a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  text-align: center;
}
.footer-bottom p { color: var(--gold); font-size: 0.78rem; letter-spacing: 0.12em; margin-bottom: 0.35rem; }
.footer-small { color: var(--muted) !important; font-size: 0.72rem !important; letter-spacing: 0.05em !important; }

/* ===== MERKABÁ DIVIDER ===== */
.merkaba-divider {
  display: flex;
  justify-content: center;
  padding: 1.5rem 0;
  background: var(--dark);
}
.merkaba-divider img {
  width: 80px;
  height: 80px;
  opacity: 0.5;
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .sobre-grid,
  .alegrese-grid,
  .agendar-grid,
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }

  .terapias-grid,
  .frases-grid,
  .paraquem-grid { grid-template-columns: 1fr; }

  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(8,7,26,0.98); padding: 1.5rem 2rem; gap: 1.25rem; border-bottom: 1px solid var(--border); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }

  .hero-title { font-size: clamp(3.5rem, 15vw, 6rem); }
}

@media (max-width: 600px) {
  section { padding: 4rem 0; }
  .alegrese-quote { padding: 2rem; }
  .terapia-card, .frase-card { padding: 1.75rem; }
  .agendar-grid { gap: 2rem; }

  /* Hero mobile — foto em cima, texto embaixo */
  #hero {
    height: auto;
    min-height: 100svh;
    grid-template-columns: 1fr;
    grid-template-rows: 48vh auto;
  }
  .hero-left {
    order: 2;
    padding: 1.5rem 1.5rem 2.5rem;
    background: linear-gradient(to bottom, transparent, #050412 20%);
    text-align: center;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .hero-left-inner { max-width: 100%; }
  .hero-pre { margin-bottom: 0.5rem; }
  .hero-subtitle { margin-bottom: 1rem; }
  .hero-quote { font-size: clamp(1rem, 4.5vw, 1.2rem); margin-bottom: 1.5rem; text-align: left; }
  .hero-tagline { display: none; }
  .hero-ctas { justify-content: center; gap: 0.75rem; }
  .hero-right {
    order: 1;
    height: 52vh;
  }
  .hero-photo-img {
    height: 72%;
  }
  .hero-symbol-float {
    width: clamp(110px, 32vw, 180px);
    top: 8%;
    left: 50%;
  }
  .hero-symbol-glow {
    width: clamp(130px, 38vw, 220px);
    height: clamp(130px, 38vw, 220px);
    top: 8%;
    left: 50%;
  }
  .hero-content {
    position: relative;
    bottom: auto; left: auto; transform: none;
    white-space: normal;
  }
}
