/* ===== RESET + TOKENS ===== */
*{box-sizing:border-box;margin:0;padding:0}
:root{
  --brand:#d8734b;
  --brand-dark:#b75b36;
  --ink:#141414;
  --muted:#6c6c6c;
  --beige:#efe6de;
  --card:#fff;
  --shadow:0 12px 28px rgba(0,0,0,.14);
  --radius:18px;
}
body{font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;color:var(--ink);background:#fff;line-height:1.65}
a{text-decoration:none;color:inherit}
.container{width:min(1200px,92%);margin-inline:auto}

/* ===== NAVBAR ===== */
.navbar{position:fixed;inset:0 0 auto 0;z-index:40;background:#fff;border-bottom:1px solid #eee}
.nav-inner{display:flex;align-items:center;justify-content:space-between;padding:16px 0}
.logo{font-family:"Playfair Display",serif;font-weight:700;font-size:24px}
.menu{display:flex;gap:28px}
.menu a{color:#333;font-weight:500;position:relative}
.menu a.active{color:var(--brand)}
.menu a.active::after{content:"";position:absolute;left:0;right:0;bottom:-8px;height:2px;background:var(--brand)}
.btn{display:inline-block;padding:11px 16px;border-radius:8px;font-weight:700}
.btn-agendar{background:var(--brand);color:#fff}
.btn-agendar:hover{background:var(--brand-dark)}

/* ===== PAGE TITLE ===== */
.page-title{padding-top:110px;padding-bottom:30px}
.page-title h1{
  font-family:"Playfair Display",serif;font-size:64px;font-weight:700;text-align:center;
}
.title-accent{
  display:block;width:76px;height:4px;background:var(--brand);border-radius:999px;margin:14px auto 0;
}

/* ===== ABOUT GRID ===== */
.about{padding:20px 0 70px}
.about-grid{
  display:grid;grid-template-columns:1.1fr 1fr;gap:46px;align-items:start;
}

/* FOTO ESQUERDA */
.about-photo{position:relative}
.about-photo img{
  width:100%; height:auto; display:block; border-radius:18px; box-shadow:var(--shadow);
}
.photo-shadow{
  position:absolute; right:-24px; bottom:-24px; width:46%; height:28%;
  background:var(--beige); border-radius:14px; filter:blur(.2px);
  z-index:-1;
}

/* TEXTO DIREITA */
.about-text h2{
  font-size:32px; line-height:1.2; margin-top:6px; margin-bottom:8px;
  font-weight:800;
}
.subtitle-accent{width:64px;height:3px;background:var(--brand);display:block;border-radius:999px;margin-bottom:16px}
.about-text p{color:#4a4a4a;margin:14px 0}
.about-text .hl{color:var(--brand);font-weight:600}

/* QUOTE */
.quote-card{
  background:#efe7df; border-radius:12px; padding:18px 20px; margin:12px 0 22px;
  border:1px solid rgba(0,0,0,.06);
  font-family:"Playfair Display",serif; font-style:italic; color:#2a2a2a;
}

/* ABORDAGEM */
.approach h3{
  font-family:"Playfair Display",serif; font-size:28px; margin-bottom:10px;
}
.bullet-list{list-style:none;display:grid;gap:10px}
.bullet-list li{color:#474747;position:relative;padding-left:18px}
.bullet-list li::before{
  content:""; width:7px; height:7px; border-radius:999px; background:var(--brand);
  position:absolute; left:0; top:0.8em;
}

/* ===== FOOTER ===== */
.site-footer{background:#181818;color:#eaeaea;margin-top:40px}
.footer-grid{
  display:grid; grid-template-columns:2fr 2fr 1fr; gap:28px;
  padding:46px 0;
}
.foot-logo{font-family:"Playfair Display",serif;font-weight:700;font-size:26px;margin-bottom:8px}
.muted{color:#bdbdbd}
.foot-col h4{margin-bottom:10px}
.contact-list{list-style:none;display:grid;gap:10px;margin-top:6px}
.contact-list li{display:flex;align-items:center;gap:10px;color:#d7d7d7}
.contact-list a{color:#d7d7d7}
.social{display:inline-grid;place-items:center;width:46px;height:46px;border-radius:999px;background:#2a2a2a}

.footer-bottom{border-top:1px solid #2a2a2a}
.footer-bottom .container{padding:14px 0}
.footer-bottom p{color:#bdbdbd;font-size:14px;text-align:center}

/* ===== RESPONSIVO ===== */
@media (max-width: 1024px){
  .about-grid{grid-template-columns:1fr;gap:26px}
  .about-text{order:2}
  .about-photo{order:1}
  .page-title h1{font-size:52px}
}
@media (max-width: 720px){
  .menu{display:none}
  .page-title h1{font-size:40px}
}