/* ============================================================
   DESIGN SYSTEM — YAMILE YUNES · PSICÓLOGA INFANTIL
   Fonte: Cormorant Garamond (headings) + DM Sans (body)
   Paleta: Creme · Argila · Sage · Navy profundo
   ============================================================ */

:root {
  --ink:        #1A2B3A;
  --ink-soft:   #3B4E60;
  --muted:      #6A7D8E;
  --bg:         #F7F3EE;
  --surface:    #FFFFFF;
  --warm:       #F0EAE1;
  --clay:       #A0725F;
  --clay-lt:    #CBB0A5;
  --sage:       #7E9B74;
  --sage-lt:    #B9CEBC;
  --border:     #DDD6CC;
  --wa:         #25D366;
  --wa-hover:   #1ebe5a;
}

/* ── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ── BASE ───────────────────────────────────────────────────── */
body {
  font-family: 'DM Sans', -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-soft);
  background-color: var(--bg);
}

/* ── TIPOGRAFIA ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  letter-spacing: -0.025em;
  font-weight: 600;
}

h2 {
  font-size: clamp(1.8rem, 3.8vw, 2.6rem);
  margin-bottom: 1.4rem;
  letter-spacing: -0.02em;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

p { margin-bottom: 1rem; }
a { color: inherit; text-decoration: none; }

/* ── TAG LABELS ─────────────────────────────────────────────── */
.tag {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 1.2rem;
}

/* ── LAYOUT ─────────────────────────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-narrow { max-width: 800px; }

section {
  padding: 5.5rem 0;
  border-bottom: 1px solid var(--border);
}

section:last-of-type { border-bottom: none; }

/* ── HEADER ─────────────────────────────────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 243, 238, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

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

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--ink);
  letter-spacing: 0.01em;
  flex-shrink: 0;
  white-space: nowrap;
}

.logo span {
  color: var(--clay);
  font-weight: 400;
  font-style: italic;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.855rem;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover { color: var(--ink); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.lang-toggle { font-size: 0.8rem; letter-spacing: 0.07em; }
.lang-toggle .active { font-weight: 700; color: var(--ink); }
.lang-toggle .sep { color: var(--clay-lt); margin: 0 0.35rem; }

.nav-cta {
  background: var(--wa);
  color: white;
  padding: 0.55rem 1.4rem;
  border-radius: 100px;
  font-size: 0.87rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.nav-cta:hover {
  transform: translateY(-1px);
  background: var(--wa-hover);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.4rem;
  color: var(--ink);
}

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  padding: 6.5rem 0 5.5rem;
  background:
    radial-gradient(ellipse at 90% 10%, rgba(160, 114, 95, 0.09) 0%, transparent 55%),
    radial-gradient(ellipse at 5% 95%, rgba(126, 155, 116, 0.11) 0%, transparent 50%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.hero h1 {
  margin-bottom: 1.5rem;
  max-width: 600px;
}

.hero-sub {
  font-size: 1.08rem;
  color: var(--ink-soft);
  margin-bottom: 2.5rem;
  max-width: 500px;
  line-height: 1.85;
}

/* ── BOTÕES ─────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--wa);
  color: white;
  padding: 0.95rem 1.9rem;
  border-radius: 100px;
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.22s, box-shadow 0.22s, background 0.22s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--wa-hover);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.32);
}

.btn-primary svg { width: 18px; height: 18px; flex-shrink: 0; }

.hero-note {
  font-size: 0.86rem;
  color: var(--muted);
  margin-top: 1.3rem;
  font-style: italic;
}

/* ── FOTO PERFIL ────────────────────────────────────────────── */
.hero-photo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
}

.photo-placeholder {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  display: block;
  box-shadow:
    0 28px 64px rgba(26, 43, 58, 0.2),
    0 0 0 6px rgba(160, 114, 95, 0.14),
    0 0 0 12px rgba(160, 114, 95, 0.06);
}

.photo-credentials { text-align: center; }

.photo-credentials .name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ink);
}

.photo-credentials .crp,
.photo-credentials .local {
  font-size: 0.87rem;
  color: var(--muted);
}

/* ── SELOS ──────────────────────────────────────────────────── */
.selos {
  padding: 3.5rem 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.selos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  list-style: none;
}

.selo {
  text-align: center;
  padding: 1.6rem 1.5rem;
  position: relative;
}

.selo + .selo::before {
  content: '';
  position: absolute;
  left: 0;
  top: 22%;
  height: 56%;
  width: 1px;
  background: var(--border);
}

.selo-icon {
  font-size: 1rem;
  margin-bottom: 0.8rem;
  color: var(--clay);
  letter-spacing: 0.3em;
}

.selo h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.25rem;
}

.selo p { font-size: 0.87rem; color: var(--muted); margin: 0; }

/* ── SINAIS ─────────────────────────────────────────────────── */
.sinais .section-intro { max-width: 680px; }

.sinais-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
  margin-top: 2.5rem;
  list-style: none;
}

.sinal {
  display: flex;
  gap: 1rem;
  padding: 1.4rem 1.6rem;
  background: var(--surface);
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.sinal:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(26, 43, 58, 0.07);
  border-color: var(--clay-lt);
}

.sinal-bullet {
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--clay);
  margin-top: 0.65rem;
}

.sinal p {
  margin: 0;
  font-size: 0.97rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

.closer {
  margin-top: 2.2rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.18rem;
  color: var(--ink-soft);
  max-width: 680px;
  line-height: 1.7;
}

.cta-row { margin-top: 2.5rem; }

/* ── COMO ───────────────────────────────────────────────────── */
.como { background: var(--surface); }

.como .intro {
  max-width: 680px;
  margin-bottom: 3rem;
  color: var(--ink-soft);
}

.pilares {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
  list-style: none;
}

.pilar {
  background: var(--bg);
  padding: 2.2rem;
  border-radius: 14px;
  border-top: 3px solid var(--clay);
  transition: transform 0.22s, box-shadow 0.22s;
}

.pilar:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(26, 43, 58, 0.07);
}

.pilar-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 400;
  color: var(--clay-lt);
  line-height: 1;
  margin-bottom: 0.8rem;
}

.pilar h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--ink);
}

.pilar p {
  margin: 0.5rem 0 0;
  color: var(--ink-soft);
  font-size: 0.96rem;
}

/* ── ONLINE ─────────────────────────────────────────────────── */
.online-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.vantagens {
  list-style: none;
  margin: 1.5rem 0;
}

.vantagens li {
  padding: 0.7rem 0 0.7rem 1.8rem;
  position: relative;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--border);
  font-size: 0.97rem;
}

.vantagens li:last-child { border-bottom: none; }

.vantagens li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--clay);
  font-weight: 600;
}

/* ── CITAÇÃO ────────────────────────────────────────────────── */
.quote-block {
  position: relative;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.65;
  padding: 2.8rem 2.2rem 2.2rem 2.8rem;
  border-left: 3px solid var(--clay);
  background: var(--surface);
  border-radius: 0 14px 14px 0;
  overflow: hidden;
}

.quote-block::before {
  content: "\201C";
  font-family: 'Cormorant Garamond', serif;
  font-size: 9rem;
  line-height: 1;
  font-style: normal;
  color: var(--clay);
  opacity: 0.12;
  position: absolute;
  top: -1.5rem;
  left: 0.8rem;
  pointer-events: none;
}

/* ── ONCOLOGIA ──────────────────────────────────────────────── */
.oncologia {
  background: linear-gradient(150deg, #1A2B3A 0%, #243648 60%, #1C3040 100%);
  color: #EDE7DF;
}

.oncologia h2 {
  color: #F0EAE1;
  letter-spacing: -0.025em;
}

.oncologia .tag { color: var(--clay-lt); }

.oncologia p {
  color: #B4C0CC;
  line-height: 1.85;
}

.oncologia .btn-primary {
  background: #F0EAE1;
  color: var(--ink);
}

.oncologia .btn-primary:hover {
  background: white;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}

.oncologia .container { max-width: 1100px; }

/* ── SOBRE ──────────────────────────────────────────────────── */
.sobre { background: var(--surface); }

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.sobre-photo-wrap { position: sticky; top: 100px; }

.sobre-photo {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 16px;
  object-fit: cover;
  object-position: center top;
  display: block;
  box-shadow: 0 28px 64px rgba(26, 43, 58, 0.16);
}

.sobre-content h3 {
  margin-top: 2.5rem;
  font-size: 1.05rem;
  color: var(--clay);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.diferenciais {
  list-style: none;
  margin-top: 1.2rem;
}

.diferenciais li {
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.97rem;
  color: var(--ink-soft);
}

.diferenciais li:last-child { border-bottom: none; }

.diferenciais strong {
  color: var(--ink);
  font-weight: 600;
}

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-list { margin-top: 2rem; }

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 0.7rem;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.faq-item[open] {
  border-color: var(--clay-lt);
  box-shadow: 0 6px 24px rgba(26, 43, 58, 0.06);
}

.faq-item summary {
  padding: 1.35rem 1.6rem;
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-family: 'DM Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--clay);
  transition: transform 0.25s;
  flex-shrink: 0;
  line-height: 1;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item .answer {
  padding: 0 1.6rem 1.5rem;
  color: var(--ink-soft);
  font-size: 0.97rem;
  line-height: 1.78;
}

/* ── MAPA ───────────────────────────────────────────────────── */
.mapa { background: var(--warm); }

.mapa-wrap {
  margin-top: 2rem;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 6px 24px rgba(26, 43, 58, 0.06);
}

.mapa-wrap iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: none;
}

.endereco {
  margin-top: 2rem;
  padding: 2rem 2.5rem;
  background: var(--surface);
  border-radius: 14px;
  border: 1px solid var(--border);
}

.endereco h3 {
  font-size: 1rem;
  margin-bottom: 0.8rem;
  color: var(--ink);
}

.endereco p {
  margin: 0.4rem 0;
  color: var(--ink-soft);
  font-size: 0.97rem;
}

.endereco .address-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.mapa-actions {
  margin-top: 1.2rem;
}

.btn-maps {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--border);
  padding: 0.65rem 1.4rem;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn-maps:hover {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}

/* ── FOOTER ─────────────────────────────────────────────────── */
footer {
  background: #151F29;
  color: #8FA8BB;
  padding: 3.5rem 0 2rem;
  font-size: 0.9rem;
}

footer .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

footer p { margin: 0; }

footer a {
  color: var(--clay-lt);
  transition: color 0.2s;
}

footer a:hover { color: #F0EAE1; }

.footer-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: #F0EAE1;
  margin-bottom: 0.2rem !important;
}

.social-links { display: flex; gap: 1.5rem; }

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 0.82rem;
  opacity: 0.55;
}

/* ── BOTÃO FLUTUANTE ────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 99;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--wa);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 8px 28px rgba(37, 211, 102, 0.45),
    0 0 0 5px rgba(37, 211, 102, 0.12);
  transition: transform 0.22s, box-shadow 0.22s;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow:
    0 14px 40px rgba(37, 211, 102, 0.5),
    0 0 0 8px rgba(37, 211, 102, 0.14);
}

.wa-float svg { width: 28px; height: 28px; }

/* ── ONCOLOGIA COM FOTO ─────────────────────────────────────── */
.oncologia-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 5rem;
  align-items: center;
}

.oncologia-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: 16px;
  display: block;
  box-shadow: 0 28px 64px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.07);
}

/* ── FORMAÇÃO ───────────────────────────────────────────────── */
.formacao-list {
  list-style: none;
  margin-top: 1.2rem;
}

.formacao-item {
  display: flex;
  gap: 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}

.formacao-item:last-child { border-bottom: none; }

.formacao-ano {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--clay);
  min-width: 55px;
  flex-shrink: 0;
}

.formacao-desc {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.formacao-desc strong {
  font-size: 0.95rem;
  color: var(--ink);
  font-weight: 600;
}

.formacao-desc span {
  font-size: 0.85rem;
  color: var(--muted);
}

/* ── DEPOIMENTOS ────────────────────────────────────────────── */
.depoimentos { background: var(--warm); }

.depoimentos .section-intro { max-width: 680px; }

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

.depoimento {
  background: var(--surface);
  padding: 2rem 1.8rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: transform 0.25s, box-shadow 0.25s;
}

.depoimento:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(26, 43, 58, 0.08);
}

.depo-texto {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.08rem;
  font-style: italic;
  color: var(--ink-soft);
  line-height: 1.72;
  margin: 0;
  flex: 1;
  position: relative;
  padding-top: 1.6rem;
}

.depo-texto::before {
  content: "\201C";
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  color: var(--clay);
  opacity: 0.22;
  position: absolute;
  top: -0.5rem;
  left: -0.2rem;
  line-height: 1;
}

.depo-autor {
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.depo-nome {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  display: block;
}

.depo-contexto {
  font-size: 0.82rem;
  color: var(--muted);
  display: block;
}

/* ── RESPONSIVO ─────────────────────────────────────────────── */
@media (max-width: 1060px) {
  .nav-links { display: none; }
  .menu-toggle { display: block; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(247, 243, 238, 0.98);
    backdrop-filter: blur(14px);
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
    z-index: 99;
  }

  .hero-grid,
  .online-grid,
  .sobre-grid { grid-template-columns: 1fr; gap: 3rem; text-align: center; }

  .hero { padding: 4rem 0 3.5rem; }
  .hero-photo-wrap { order: -1; margin: 0 auto; }
  .photo-placeholder { width: 220px; height: 220px; }

  .hero h1, .hero-sub { margin-left: auto; margin-right: auto; }

  .sobre-photo-wrap { position: static; }
  .sobre-photo { max-width: 280px; margin: 0 auto; }

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

  .selo + .selo::before {
    top: 0;
    left: 15%;
    width: 70%;
    height: 1px;
  }

  .sinais-list,
  .pilares { grid-template-columns: 1fr; }

  section { padding: 3.5rem 0; }

  .nav-cta { padding: 0.5rem 1.1rem; font-size: 0.85rem; }

  .quote-block { font-size: 1.25rem; border-left: none; border-top: 3px solid var(--clay); border-radius: 14px; text-align: center; padding: 2rem; }
  .quote-block::before { display: none; }

  .oncologia-grid { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
  .oncologia-photo { max-width: 280px; margin: 0 auto; }

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

@media (max-width: 760px) {
  .hero { padding: 3rem 0 2.5rem; }
  .photo-placeholder { width: 180px; height: 180px; }
  .hero h1 { font-size: 2.1rem; }
  .sinais-list { grid-template-columns: 1fr; }
  .depoimentos-grid { grid-template-columns: 1fr; }
  .wa-float { bottom: 20px; right: 20px; width: 56px; height: 56px; }
}


