/* ===== RESET + TOKENS ===== */
*{box-sizing:border-box;margin:0;padding:0}
:root{
  --brand:#d8734b;
  --brand-dark:#b75b36;
  --ink:#141414;
  --muted:#6c6c6c;
  --soft:#efe8e1;
  --soft-2:#f6d2c6;
  --card:#fff;
  --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-flex;align-items:center;gap:8px;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;border:0}
.btn-primary:hover{background:var(--brand-dark)}

/* ===== TÍTULO ===== */
.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;margin-top:12px}

/* ===== GRID PRINCIPAL ===== */
.booking{padding:30px 0 18px}
.grid{display:grid;grid-template-columns:1.25fr .9fr;gap:28px}

/* Cards base */
.card{
  background:var(--card);border-radius:var(--radius);
  border:1px solid rgba(0,0,0,.06);box-shadow:var(--shadow);
}

/* ===== FORM ===== */
.form-card{padding:26px}
.form-card h2{
  font-family:"Playfair Display",serif;font-size:32px;margin-bottom:18px;
}
.form-card label{display:block;font-weight:600;margin-top:12px;margin-bottom:6px;color:#2a2a2a}
input,select,textarea{
  width:100%; padding:12px 14px; border-radius:10px; border:1px solid #e5e5e5;
  background:#fff; color:#2b2b2b; outline:none; transition:border .2s, box-shadow .2s;
}
input:focus,select:focus,textarea:focus{
  border-color:#eac1b0; box-shadow:0 0 0 4px rgba(216,115,75,.08);
}
textarea{resize:vertical}
.select-wrapper{position:relative}
.select-wrapper select{appearance:none;-webkit-appearance:none}
.select-wrapper .chev{position:absolute;right:12px;top:50%;transform:translateY(-50%)}
.form-card .btn-primary{
  display: flex;
  margin-top:18px; 
  width:100%; 
  padding:13px 16px; 
  border-radius:10px;

}

/* ===== RIGHT COLUMN ===== */
.right-col{display:grid;gap:22px}
.soft{background:var(--soft)}
.info{padding:22px}
.info h3{
  font-family:"Playfair Display",serif;font-size:26px;margin-bottom:12px;
}
.info-item{display:flex;gap:12px;align-items:flex-start;padding:12px 0;border-bottom:1px solid rgba(0,0,0,.06)}
.info-item:last-child{border-bottom:0}
.info-item .icon{
  width:42px;height:42px;border-radius:12px;background:#f1e2d9;display:grid;place-items:center;flex:0 0 auto;
}
.info-item strong{display:block;margin-bottom:4px}
.info-item a{color:#3e3e3e}

/* Horário */
.schedule{padding:22px}
.schedule h3{
  font-family:"Playfair Display",serif;font-size:24px;margin-bottom:10px;
}
.hours{list-style:none;display:grid;gap:8px}
.hours li{display:flex;justify-content:space-between;border-bottom:1px dashed #eee;padding:8px 0}
.hours li:last-child{border-bottom:0}

/* Nota */
.note{
  background:rgba(216,115,75,.08); border:1px solid rgba(216,115,75,.25);
  color:#3e3e3e; border-radius:12px; padding:18px 20px;
}

/* ===== 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}
}
@media (max-width: 720px){
  .menu{display:none}
  .page-title h1{font-size:40px}
}

/* ===== POPUP ===== */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: fadeIn 0.3s ease;
}

.popup {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  animation: popIn 0.4s ease;
  position: relative;
}

.popup h2 {
  color: #0a0a0a;
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
}

.popup p {
  color: #555;
  font-size: 1rem;
}

.popup-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #777;
  cursor: pointer;
  transition: 0.2s;
}

.popup-close:hover {
  color: #000;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes popIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}