/* ===== RESET + TOKENS ===== */
*{box-sizing:border-box;margin:0;padding:0}
:root{
  --brand:#d8734b;
  --brand-dark:#b75b36;
  --ink:#141414;
  --muted:#6c6c6c;
  --card:#fff;
  --chip:#f2e7df;
  --shadow:0 12px 26px rgba(0,0,0,.12);
  --radius:16px;
}
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)}
.btn-primary{background:var(--brand);color:#fff;white-space: nowrap}
.btn-primary:hover{background:var(--brand-dark)}
.btn-outline{border:1.5px solid var(--brand);color:var(--brand);padding:10px 16px;border-radius:10px;font-weight:700;display:inline-block}
.btn-outline:hover{background:rgba(216,115,75,.06)}

/* ===== PAGE TITLE ===== */
.page-title{padding-top:110px;text-align:center}
.page-title h1{font-family:"Playfair Display",serif;font-size:64px;font-weight:700}
.title-accent{display:block;width:90px;height:4px;background:var(--brand);border-radius:999px;margin:14px auto 0}
.subtitle{color:#6e6e6e;max-width:820px;margin:12px auto 0}

/* ===== SERVICES GRID ===== */
.services{padding:28px 0 20px}
.grid{
  display:grid;grid-template-columns:repeat(2,1fr);gap:28px;
}
.card{
  background:var(--card);border-radius:var(--radius);box-shadow:var(--shadow);
  border:1px solid rgba(0,0,0,.06);display:flex;gap:18px;padding:24px;
}
.icon{
  width:56px;height:56px;border-radius:12px;background:var(--chip);
  display:grid;place-items:center;flex:0 0 auto;
}
.content h3{
  font-family:"Playfair Display",serif;font-size:26px;margin-bottom:8px;
}
.content p{color:#555;margin-bottom:12px}
.checks{list-style:none;display:grid;gap:8px;margin:4px 0 16px}
.checks li{position:relative;padding-left:18px;color:#3e3e3e}
.checks li::before{
  content:"✓"; position:absolute; left:0; top:0; color:var(--brand); font-weight:800;
}

/* Single full-width card (Eventos) */
.span-2{grid-column:1 / -1}

/* ===== CTA BANNER ===== */
.cta-banner{padding:38px 0 10px}
.cta{
  background:#f1eae4;border-radius:12px;padding:34px;display:flex;align-items:center;justify-content:space-between;gap:20px;
}
.cta h2{font-family:"Playfair Display",serif;font-size:34px;margin-bottom:6px}
.cta p{color:#666}

/* ===== FOOTER ===== */
.site-footer{background:#181818;color:#eaeaea;margin-top:34px}
.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){
  .grid{grid-template-columns:1fr}
  .page-title h1{font-size:52px}
  .cta{flex-direction:column;text-align:center}
}
@media (max-width: 720px){
  .menu{display:none}
  .page-title h1{font-size:40px}
}