/* ═══════════════════════════════════════════════
   Dolavete Bertolli — Psicóloga Clínica
   style.css
═══════════════════════════════════════════════ */

:root {
  --forest:      #1E3A2F;
  --forest-light:#2D5040;
  --gold:        #C4973A;
  --gold-soft:   #E8C98A;
  --ivory:       #F8F5F0;
  --sage:        #EAF0EB;
  --charcoal:    #1A1A1A;
  --muted:       #6B7B72;
  --white:       #FFFFFF;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--ivory);
  color: var(--charcoal);
  line-height: 1.6;
}

/* ── NAV ─────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 48px;
  background: var(--forest);
  box-shadow: 0 2px 20px rgba(0,0,0,.18);
  transition: padding .3s;
}
nav.scrolled { padding: 14px 48px; }
.nav-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: .04em;
  text-decoration: none;
}
.nav-logo span { color: var(--gold-soft); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,.85);
  text-decoration: none;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .2s;
}
.nav-links a:hover { color: var(--gold-soft); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: 30px !important;
  font-weight: 600 !important;
  letter-spacing: .02em !important;
  text-transform: none !important;
  transition: background .2s !important;
}
.nav-cta:hover { background: #a87c2a !important; }

/* ── HERO ────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  background-image: url('../images/terapia.jpg');
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(30,58,47,.88) 0%,
    rgba(30,58,47,.62) 55%,
    rgba(30,58,47,.42) 100%);
}
.hero-center {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  padding: 120px 48px 80px;
  max-width: 800px;
  width: 100%;
}
.hero-eyebrow {
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 500;
  margin-bottom: 20px;
}
.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}
.hero-title em { font-style: italic; color: var(--gold-soft); }
.hero-subtitle {
  color: rgba(255,255,255,.78);
  font-size: 1.05rem;
  font-weight: 300;
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.75;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.btn-primary {
  background: var(--gold);
  color: var(--white);
  padding: 16px 34px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
  transition: background .2s, transform .15s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: #a87c2a; transform: translateY(-1px); }
.btn-secondary {
  border: 1.5px solid rgba(255,255,255,.4);
  color: var(--white);
  padding: 16px 34px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 500;
  font-size: .95rem;
  transition: border-color .2s, background .2s;
}
.btn-secondary:hover { border-color: var(--gold-soft); background: rgba(255,255,255,.08); }
.hero-badges {
  display: flex; gap: 32px; justify-content: center;
  margin-top: 52px; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.15);
  max-width: 480px; width: 100%;
}
.badge { text-align: center; }
.badge-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem; color: var(--gold-soft);
  font-weight: 700; line-height: 1;
}
.badge-label { font-size: .72rem; color: rgba(255,255,255,.5); margin-top: 4px; }
.hero-crp-badge {
  display: inline-block; margin-top: 28px;
  background: rgba(30,58,47,.75);
  backdrop-filter: blur(8px);
  color: var(--gold-soft);
  font-size: .75rem; letter-spacing: .14em;
  padding: 10px 20px; border-radius: 30px; font-weight: 500;
  border: 1px solid rgba(196,151,58,.3);
}

/* ── SECTIONS ────────────────────────────────── */
section { padding: 96px 48px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-eyebrow {
  font-size: .72rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold);
  font-weight: 600; margin-bottom: 14px; display: block;
}
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  color: var(--forest); line-height: 1.2; margin-bottom: 16px;
}

/* ── ABOUT ───────────────────────────────────── */
#sobre { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 72px; align-items: center;
}
.about-photo-wrap { position: relative; }
.about-photo-wrap::before {
  content: ''; position: absolute;
  top: -16px; left: -16px; right: 16px; bottom: 16px;
  border: 2px solid var(--gold); border-radius: 4px;
  opacity: .4; z-index: 0;
}
.about-photo-wrap img {
  width: 100%; border-radius: 4px; display: block;
  box-shadow: 0 24px 60px rgba(30,58,47,.18);
  position: relative; z-index: 1;
}
.about-content p {
  color: var(--charcoal); font-size: 1.02rem;
  line-height: 1.8; margin-bottom: 18px;
}
.about-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin: 28px 0 36px; }
.about-list li { display: flex; align-items: flex-start; gap: 12px; font-size: .97rem; }
.about-list li::before { content: '✦'; color: var(--gold); font-size: .75rem; margin-top: 4px; flex-shrink: 0; }
.about-formation {
  background: var(--sage); border-left: 3px solid var(--gold);
  padding: 20px 24px; border-radius: 0 6px 6px 0;
}
.about-formation span {
  display: block; font-size: .75rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 6px;
}
.about-formation p { margin: 0; font-size: .97rem; color: var(--forest); font-weight: 500; }

/* ── SPECIALTIES ─────────────────────────────── */
#especialidades { background: var(--ivory); }
.spec-intro {
  display: flex; justify-content: space-between;
  align-items: flex-start; gap: 48px; margin-bottom: 64px;
}
.spec-intro-right {
  padding-top: 48px; max-width: 340px;
  color: var(--muted); font-size: 1rem; line-height: 1.75; flex-shrink: 0;
}
.spec-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.spec-card {
  background: var(--white); border-radius: 8px; padding: 36px 30px;
  border: 1px solid rgba(30,58,47,.08);
  transition: box-shadow .25s, transform .2s;
  position: relative; overflow: hidden;
}
.spec-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--gold); transform: scaleX(0);
  transition: transform .3s; transform-origin: left;
}
.spec-card:hover { box-shadow: 0 16px 48px rgba(30,58,47,.12); transform: translateY(-3px); }
.spec-card:hover::after { transform: scaleX(1); }
.spec-icon { font-size: 2rem; margin-bottom: 18px; display: block; }
.spec-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem; color: var(--forest); margin-bottom: 10px;
}
.spec-card p { color: var(--muted); font-size: .93rem; line-height: 1.65; }

/* ── TESTIMONIALS ────────────────────────────── */
#depoimentos { background: var(--forest); }
#depoimentos .section-title { color: var(--white); }
#depoimentos .section-eyebrow { color: var(--gold-soft); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.testimonial-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px; padding: 36px 30px; transition: background .25s;
}
.testimonial-card:hover { background: rgba(255,255,255,.1); }
.testimonial-stars { color: var(--gold); font-size: 1rem; letter-spacing: 3px; margin-bottom: 18px; }
.testimonial-text {
  color: rgba(255,255,255,.82); font-size: .97rem;
  line-height: 1.75; margin-bottom: 24px; font-style: italic;
}
.testimonial-author { color: var(--gold-soft); font-size: .82rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }

/* ── FAQ ─────────────────────────────────────── */
#faq { background: var(--white); }
.faq-grid { display: grid; grid-template-columns: 340px 1fr; gap: 80px; margin-top: 56px; align-items: start; }
.faq-intro-aside {
  background: var(--sage); padding: 36px 32px;
  border-radius: 8px; position: sticky; top: 100px;
}
.faq-intro-aside h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem; color: var(--forest); margin-bottom: 12px;
}
.faq-intro-aside p { color: var(--muted); font-size: .93rem; line-height: 1.7; margin-bottom: 24px; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid rgba(30,58,47,.1); }
.faq-item:first-child { border-top: 1px solid rgba(30,58,47,.1); }
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0; font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem; font-weight: 500; color: var(--forest); text-align: left; gap: 16px;
}
.faq-question:hover { color: var(--gold); }
.faq-toggle {
  width: 28px; height: 28px; flex-shrink: 0;
  border: 1.5px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.2rem;
  transition: transform .3s, background .2s; font-weight: 300;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); background: var(--gold); color: white; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-answer-inner { padding: 0 0 24px; color: var(--muted); font-size: .97rem; line-height: 1.75; }
.faq-item.open .faq-answer { max-height: 300px; }

/* ── CONTACT ─────────────────────────────────── */
#contato { background: var(--ivory); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; margin-top: 56px; align-items: start; }
.contact-card { background: var(--white); border-radius: 8px; padding: 44px 40px; box-shadow: 0 8px 40px rgba(30,58,47,.08); }
.contact-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem; color: var(--forest); margin-bottom: 24px;
}
.contact-map-thumb { margin-bottom: 24px; border-radius: 6px; overflow: hidden; border: 1px solid rgba(30,58,47,.1); position: relative; }
.contact-map-thumb iframe { pointer-events: auto !important; touch-action: auto !important; }
.contact-map-img { width: 100%; display: block; max-height: 180px; object-fit: cover; object-position: center; }
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.contact-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: var(--sage); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.contact-info-text strong {
  display: block; font-size: .75rem; letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 3px;
}
.contact-info-text span, .contact-info-text a {
  font-size: .97rem; color: var(--charcoal); text-decoration: none; line-height: 1.5;
}
.contact-info-text a:hover { color: var(--gold); }
.contact-schedule {
  background: var(--forest); border-radius: 8px; padding: 44px 40px; color: var(--white);
}
.contact-schedule h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem; color: var(--white); margin-bottom: 8px;
}
.contact-schedule p { color: rgba(255,255,255,.65); font-size: .93rem; margin-bottom: 32px; line-height: 1.65; }
.schedule-row {
  display: flex; justify-content: space-between;
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.1); font-size: .93rem;
}
.schedule-row:last-child { border-bottom: none; }
.schedule-row .day { color: rgba(255,255,255,.7); }
.schedule-row .hours { color: var(--gold-soft); font-weight: 500; }
.whatsapp-btn {
  display: flex; align-items: center; gap: 12px;
  background: #25D366; color: white;
  padding: 18px 32px; border-radius: 40px;
  text-decoration: none; font-weight: 600; font-size: 1rem;
  margin-top: 36px; transition: background .2s, transform .15s; justify-content: center;
}
.whatsapp-btn:hover { background: #20b858; transform: translateY(-1px); }

/* ── CTA STRIP ───────────────────────────────── */
.cta-strip { background: var(--gold); padding: 64px 48px; text-align: center; }
.cta-strip h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--white); margin-bottom: 12px;
}
.cta-strip p { color: rgba(255,255,255,.85); font-size: 1.05rem; margin-bottom: 32px; }
.btn-white {
  background: var(--white); color: var(--gold);
  padding: 16px 40px; border-radius: 40px;
  text-decoration: none; font-weight: 700; font-size: 1rem;
  transition: transform .15s; display: inline-block;
}
.btn-white:hover { transform: translateY(-2px); }

/* ── FOOTER ──────────────────────────────────── */
footer {
  background: var(--charcoal);
  color: rgba(255,255,255,.5);
  text-align: center; padding: 36px 48px; font-size: .83rem;
}
footer a { color: rgba(255,255,255,.65); text-decoration: none; }
footer a:hover { color: var(--gold-soft); }


/* secondary address — subtler visual weight */
.contact-info-secondary {
  opacity: .75;
  padding-top: 4px;
  border-top: 1px dashed rgba(30,58,47,.12);
  margin-top: -8px;
}
.contact-info-secondary .contact-info-text strong {
  color: var(--muted);
}
.contact-icon-sm {
  font-size: 1rem !important;
  background: transparent !important;
  width: 42px !important;
  height: 42px !important;
  opacity: .55;
}
/* ── MOBILE ──────────────────────────────────── */
@media (max-width: 900px) {
  nav { padding: 14px 20px; }
  .nav-links { display: none; }
  .hero-center { padding: 100px 24px 64px; }
  .hero-badges { gap: 20px; }
  section { padding: 64px 24px; }
  .about-grid, .faq-grid, .contact-grid, .spec-intro { grid-template-columns: 1fr; gap: 36px; }
  .spec-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .faq-intro-aside { position: static; }
  .spec-intro-right { max-width: 100%; padding-top: 0; }
  .cta-strip { padding: 48px 24px; }
  footer { padding: 28px 24px; }
}
