/*
  Site: Psicóloga Gabriela Arakaki
  Estilos baseados em tipografia clara, paleta serena e layout responsivo
*/

:root {
  --bg: #ffffff;
  --text: #2a1a14;
  --muted: #6b5c57;
  --primary: #39221a; /* marrom escuro */
  --primary-600: #2f1b15;
  --primary-700: #24140f;
  --surface: #ebddd3; /* bege rosé */
  --border: #e6d3c8;
  --shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  --radius: 14px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    linear-gradient(to bottom, rgba(235,221,211,0.85), rgba(235,221,211,0.92)),
    url('plano-de-fundo.png') center/cover no-repeat fixed;
  line-height: 1.6;
}

h1, h2, h3 { font-family: Lora, Georgia, Cambria, Times, serif; color: #39221a; line-height: 1.2; margin: 0 0 10px; }
h1 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.5rem, 2.8vw, 2.2rem); }
h3 { font-size: 1.15rem; }
p { color: var(--muted); margin: 0 0 14px; }

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: inherit; }
.brand-logo { font-size: 22px; }
.brand-text { font-weight: 700; letter-spacing: 0.2px; }
.nav { display: flex; gap: 16px; align-items: center; }
.nav a { color: var(--primary); text-decoration: none; font-weight: 500; padding: 8px 10px; border-radius: 10px; }
.nav a:hover { background: var(--surface); }

/* Hero */
.hero {
  padding: 60px 0 30px;
  background: transparent;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 38px;
  align-items: center;
}
.hero-copy p { font-size: 1.05rem; }
.cta-row { display: flex; gap: 12px; margin: 18px 0 8px; flex-wrap: wrap; }
.trust-row { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; margin-top: 18px; }
.trust-item { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 0.95rem; }
.trust-item .icon { width: 26px; height: 26px; display: inline-flex; align-items: center; justify-content: center; background: var(--surface); border-radius: 50%; }

.hero-media { position: relative; min-height: 320px; }
.hero-shape { position: relative; width: 100%; height: 100%; }
.shape { position: absolute; border-radius: 24px; filter: blur(0.3px); }
.shape-1 { right: 6%; top: 8%; width: 65%; height: 52%; background: linear-gradient(135deg, #39221a, #5a3a2d); box-shadow: var(--shadow); transform: rotate(3deg); }
.shape-2 { left: 0; bottom: 14%; width: 52%; height: 45%; background: linear-gradient(135deg, #ebddd3, #ffffff); box-shadow: var(--shadow); }
.shape-3 { right: 16%; bottom: -2%; width: 30%; height: 28%; background: linear-gradient(135deg, #f0e3dc, #ffffff); box-shadow: var(--shadow); border-radius: 999px; }

/* Sections */
.section { padding: 56px 0; }
.section.alt { background: rgba(255,255,255,0.7); }
.section-subtitle { margin-top: -4px; margin-bottom: 22px; }

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px;
}
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}
.card-icon { font-size: 26px; }
.card h3 { margin-top: 4px; margin-bottom: 6px; }
.card-list { margin: 10px 0 0; padding-left: 18px; color: var(--muted); }
.card-cta { margin-top: 14px; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 14px; }
.step { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow); }
.step-num { width: 30px; height: 30px; display: inline-flex; align-items: center; justify-content: center; background: var(--primary); color: #fff; border-radius: 50%; font-weight: 700; margin-bottom: 6px; }

/* About */
.about { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 24px; align-items: center; }
.about-media { display: flex; justify-content: center; }
.photo-stack { position: relative; width: 100%; max-width: 360px; }
.photo { width: 100%; height: auto; border-radius: 18px; box-shadow: var(--shadow); border: 6px solid rgba(255,255,255,0.75); }
.photo-a { position: relative; z-index: 2; transform: rotate(-2deg); }
.photo-b { position: absolute; top: 14%; left: -8%; width: 70%; transform: rotate(3deg); z-index: 1; opacity: 0.98; }
.about-list { margin: 12px 0 0; padding-left: 18px; color: var(--muted); }
.about-cta { margin-top: 14px; }

/* Testimonials */
.testimonials { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; }
.testimonial { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow); color: #111827; }
.testimonial cite { display: block; margin-top: 10px; color: var(--muted); font-style: normal; }

/* FAQ */
.faq details { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 14px 16px; box-shadow: var(--shadow); margin-bottom: 10px; }
.faq summary { cursor: pointer; font-weight: 600; }
.faq p { margin-top: 10px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 18px; }
.contact-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); }
.contact-list { margin: 14px 0 0; padding: 0; list-style: none; color: var(--muted); }
.contact-list li { display: flex; align-items: center; gap: 8px; }
.contact-form { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); }
.field { display: grid; gap: 6px; margin-bottom: 12px; }
.field label { font-size: 0.95rem; font-weight: 600; }
.field input, .field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 12px;
  font: inherit;
  color: var(--text);
  background: #fff;
}
.field input:focus, .field textarea:focus { outline: 2px solid rgba(57,34,26,0.35); border-color: var(--primary); }
.privacy-note { color: var(--muted); font-size: 0.9rem; margin-top: 10px; }

/* Footer */
.site-footer { border-top: 1px solid var(--border); background: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr auto; gap: 18px; padding: 28px 0; align-items: start; }
.footer-copy { color: var(--muted); margin-top: 10px; }
.footer-nav { display: grid; gap: 8px; }
.footer-nav a { color: var(--primary); text-decoration: none; }
.footer-nav a:hover { text-decoration: underline; }
.footer-bottom { padding: 12px 0 24px; color: var(--muted); }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; text-decoration: none; border-radius: 12px; padding: 10px 14px; font-weight: 700; border: 1px solid transparent; cursor: pointer; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-600); }
.btn-secondary { background: var(--surface); border-color: var(--primary); color: var(--primary-700); }
.btn-secondary:hover { background: #efe1d9; }
.btn-ghost { background: transparent; border-color: #d1d5db; color: #111827; }
.btn-ghost:hover { background: var(--surface); }
.btn-small { padding: 8px 12px; font-size: 0.95rem; }
.btn-large { padding: 12px 16px; font-size: 1.05rem; }
.btn-full { width: 100%; }

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .about { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 800px) {
  .cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .testimonials { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav { display: none; }
}

@media (max-width: 520px) {
  .trust-row { grid-template-columns: 1fr; }
}


