/* ===== Amanda Lima — Psicóloga | Landing Page ===== */

:root {
  --off-white: #F8F6F1;
  --bege: #EEE7DA;
  --salvia: #DDE0D3;
  --oliva: #777966;
  --oliva-escuro: #35443F;
  --texto: #28312E;
  --creme: #FAF7F0;
  --terracota: #B39178;
  --terracota-num: #A69683;

  --serif: 'Cormorant Garamond', 'Georgia', serif;
  --sans: 'Jost', 'Inter', sans-serif;

  --container: 1160px;
}

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

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; animation: none !important; }
}

@keyframes reveal-up {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(10px);
  animation: reveal-up 650ms ease-out forwards;
}

.reveal-1 { animation-delay: 80ms; }
.reveal-2 { animation-delay: 220ms; }
.reveal-3 { animation-delay: 360ms; }
.reveal-4 { animation-delay: 480ms; }
.reveal-5 { animation-delay: 260ms; }

html, body { max-width: 100%; overflow-x: hidden; }

body {
  font-family: var(--sans);
  color: var(--texto);
  background: var(--off-white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

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

section { padding: 110px 0; }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--texto);
  line-height: 1.15;
  letter-spacing: 0.2px;
}

h2 { font-size: 40px; }

em, .accent {
  font-style: italic;
  color: var(--oliva);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--oliva);
  margin-bottom: 22px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--terracota);
}

.lead {
  font-size: 19px;
  color: var(--texto);
  max-width: 620px;
}

.section-head {
  max-width: 680px;
  margin-bottom: 48px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ===== Buttons ===== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  background: var(--oliva-escuro);
  color: var(--creme);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.3px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.btn:hover {
  background: var(--oliva);
  transform: translateY(-1px);
}

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

.btn-outline {
  background: transparent;
  color: var(--oliva-escuro);
  border: 1px solid var(--oliva-escuro);
}

.btn-outline:hover {
  background: var(--oliva-escuro);
  color: var(--creme);
}

.btn-on-dark {
  background: var(--creme);
  color: var(--oliva-escuro);
}

.btn-on-dark:hover {
  background: var(--salvia);
}

/* ===== Header ===== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(238, 231, 218, 0.88);
  backdrop-filter: blur(8px);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}

.logo img { height: 46px; width: auto; }

.logo-fallback {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--texto);
}

.logo-fallback span {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--oliva);
  font-weight: 500;
}

.main-nav ul {
  display: flex;
  gap: 40px;
}

.main-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--texto);
  position: relative;
  padding-bottom: 4px;
}

.main-nav a:hover { color: var(--oliva); }

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--texto);
  display: block;
}

/* ===== Hero ===== */

.hero {
  background: var(--bege);
  position: relative;
  overflow: hidden;
  padding: 150px 0 130px;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.hero-text {
  max-width: 640px;
  text-align: center;
}

.hero .eyebrow { justify-content: center; }

.hero h1 {
  font-size: 48px;
  margin-bottom: 24px;
}

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

.hero-shape {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 480px;
  height: 480px;
  z-index: 1;
  opacity: 0.5;
  pointer-events: none;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.hero-crp {
  font-size: 13px;
  color: var(--oliva);
  letter-spacing: 0.3px;
}

/* ===== Identificação ===== */

.section-bege { background: var(--bege); }

.identificacao .container {
  max-width: 760px;
}

.identificacao p { margin-bottom: 20px; color: var(--texto); }

.pattern-list {
  margin: 32px 0;
  border-top: 1px solid rgba(119, 121, 102, 0.25);
}

.pattern-list li {
  padding: 16px 0;
  border-bottom: 1px solid rgba(119, 121, 102, 0.25);
  display: flex;
  align-items: baseline;
  gap: 16px;
  font-size: 18px;
  font-family: var(--serif);
  color: var(--texto);
}

.pattern-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--terracota);
  flex-shrink: 0;
  transform: translateY(-2px);
}

.closing-line {
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  color: var(--oliva);
  margin-top: 28px;
}

/* ===== Aquilo que se repete (dark) ===== */

.repete {
  background: var(--oliva-escuro);
  color: var(--creme);
}

.repete .section-head { max-width: 720px; }

.repete h2 { color: var(--creme); }

.repete .container { max-width: 760px; text-align: left; }

.repete p { color: rgba(250, 247, 240, 0.85); margin-bottom: 20px; }

.repete .pattern-list li {
  border-top-color: rgba(250, 247, 240, 0.18);
  border-bottom-color: rgba(250, 247, 240, 0.18);
  color: var(--creme);
}
.repete .pattern-list { border-top-color: rgba(250, 247, 240, 0.18); }

.repete .closing-line { color: var(--terracota); }

.repete .eyebrow { color: var(--terracota); }

/* ===== Abordagem terapêutica ===== */

.abordagem .lead { max-width: 700px; margin-bottom: 56px; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.step-card {
  background: var(--salvia);
  padding: 40px 36px;
  border-radius: 6px;
  transition: transform 300ms ease-in-out, box-shadow 300ms ease-in-out;
}

.step-card:hover {
  transform: scale(1.03);
  box-shadow: 0 14px 30px rgba(40, 49, 46, 0.12);
}

.step-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 14px;
}

.step-card .num {
  font-family: var(--serif);
  font-size: 42px;
  color: var(--terracota-num);
  font-weight: 600;
  display: block;
}

.step-icon {
  display: inline-flex;
  color: var(--oliva);
  transform: translateY(2px);
}

.step-icon svg {
  width: 24px;
  height: 24px;
  transition: transform 200ms ease;
}

.step-card:hover .step-icon svg {
  transform: translateY(-2px);
}

.step-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--oliva-escuro);
}

.step-card p { font-size: 15px; color: var(--texto); }

.abordagem .closing-line { margin-top: 44px; }

/* ===== Primeira sessão ===== */

.sessao .container { max-width: 760px; }
.sessao p { margin-bottom: 20px; }

/* ===== Atendimento online (feature row) ===== */

.atendimento .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.atendimento .lead { margin-top: 20px; }

.feature-list { display: flex; flex-direction: column; gap: 28px; }

.feature-item { display: flex; gap: 18px; align-items: flex-start; }

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--salvia);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg { width: 20px; height: 20px; color: var(--oliva-escuro); }

.feature-item h3 { font-size: 17px; font-family: var(--sans); font-weight: 600; margin-bottom: 4px; }
.feature-item p { font-size: 14.5px; color: var(--oliva); }

/* ===== Sobre Amanda ===== */

.sobre { background: var(--bege); }

.sobre .container {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 64px;
  align-items: center;
}

.sobre-photo {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--salvia);
}

.sobre-photo img { width: 100%; height: 100%; object-fit: cover; }

.sobre-content .signature {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--oliva-escuro);
  margin-bottom: 4px;
}

.sobre-content .crp {
  font-size: 13px;
  color: var(--oliva);
  margin-bottom: 24px;
  display: block;
}

.sobre-content p { margin-bottom: 18px; }

.credentials {
  margin: 28px 0 30px;
  border-left: 2px solid var(--terracota);
  padding-left: 20px;
}

.credentials li {
  font-size: 14.5px;
  color: var(--texto);
  margin-bottom: 10px;
}

.autoral {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: var(--oliva-escuro);
  border-top: 1px solid rgba(119, 121, 102, 0.3);
  padding-top: 26px;
}

/* ===== Como começar ===== */

.comecar .section-head.center { margin-bottom: 64px; }

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
  margin-bottom: 56px;
}

.timeline-step { text-align: left; position: relative; padding-top: 20px; }

.timeline-step .num {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--terracota);
  letter-spacing: 1px;
  display: block;
  margin-bottom: 14px;
}

.timeline-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 1px;
  background: var(--oliva);
}

.timeline-step h3 {
  font-size: 19px;
  font-family: var(--sans);
  font-weight: 600;
  margin-bottom: 8px;
}

.timeline-step p { font-size: 14.5px; color: var(--texto); }

.comecar .cta-wrap { text-align: center; }

/* ===== FAQ ===== */

.faq { background: var(--bege); }

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

.accordion-item {
  background: var(--off-white);
  border-radius: 6px;
  margin-bottom: 14px;
  overflow: hidden;
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 500;
  color: var(--texto);
}

.accordion-trigger .plus {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--salvia);
  color: var(--oliva-escuro);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: transform 0.25s ease, background 0.25s ease;
}

.accordion-item.open .accordion-trigger .plus {
  transform: rotate(45deg);
  background: var(--oliva-escuro);
  color: var(--creme);
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-panel p {
  padding: 0 26px 24px;
  font-size: 15px;
  color: var(--oliva);
  max-width: 640px;
}

/* ===== CTA final ===== */

.cta-final {
  background: var(--salvia);
  text-align: center;
}

.cta-final h2 { margin-bottom: 18px; }
.cta-final .lead { margin: 0 auto 40px; }

/* ===== Footer ===== */

.site-footer {
  background: var(--bege);
  color: var(--texto);
  padding: 64px 0 30px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(119, 121, 102, 0.2);
  margin-bottom: 24px;
}

.footer-logo img { height: 42px; margin-bottom: 10px; }
.footer-logo .logo-fallback { color: var(--texto); }
.footer-logo .logo-fallback span { color: var(--oliva); }

.footer-social { display: flex; gap: 14px; }

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(40, 49, 46, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--oliva-escuro);
  transition: background 0.25s ease;
}

.footer-social a:hover { background: rgba(40, 49, 46, 0.08); }
.footer-social svg { width: 18px; height: 18px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 13px;
  color: var(--oliva);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-legal a { color: var(--oliva); transition: color 0.2s ease; }
.footer-legal a:hover { color: var(--oliva-escuro); }

.footer-legal a.footer-instagram {
  display: inline-flex;
  color: var(--oliva-escuro);
  transition: transform 200ms ease, color 200ms ease;
}

.footer-legal a.footer-instagram:hover {
  color: var(--oliva);
  transform: translateY(-2px);
}

.footer-instagram svg { width: 22px; height: 22px; }

/* ===== Responsive ===== */

@media (max-width: 900px) {
  h2 { font-size: 32px; }
  .hero h1 { font-size: 38px; }
  .hero { padding: 120px 0 90px; }
  .hero-text { max-width: 100%; }
  .hero-shape { width: 320px; height: 320px; top: -30px; right: -60px; }
  .atendimento .container { grid-template-columns: 1fr; }
  .sobre .container { grid-template-columns: 1fr; }
  .sobre-photo { max-width: 380px; margin: 0 auto; }
  .steps-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; gap: 32px; }
  .main-nav { display: none; }
  .main-nav.open {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bege);
    box-shadow: 0 12px 24px rgba(40, 49, 46, 0.08);
    padding: 10px 0;
  }
  .main-nav.open ul { flex-direction: column; gap: 0; }
  .main-nav.open a { display: block; padding: 14px 32px; }
  .nav-toggle { display: flex; }
  .site-header .container { position: relative; }
  section { padding: 72px 0; }
}

@media (max-width: 560px) {
  .container { padding: 0 22px; }
  .hero h1 { font-size: 32px; }
  h2 { font-size: 28px; }
  .header-actions .btn span { display: none; }

  .hero-actions { flex-direction: column; align-items: stretch; width: 100%; }
  .hero-actions .btn { width: 100%; max-width: 100%; justify-content: center; }
  .hero-crp { display: block; }

  .cta-wrap .btn,
  .cta-final .btn { width: 100%; max-width: 100%; justify-content: center; }

  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 14px; }
  .footer-legal { width: 100%; justify-content: space-between; }
}
