/* ============================================================
   CORES E FONTES — edite as variáveis abaixo para mudar o tema
   ============================================================ */
:root {
  --bg: #fafaf7;
  --fg: #1f1b16;
  --muted: #6b6258;
  --primary: #6b4a2b;          /* marrom terroso */
  --primary-fg: #ffffff;
  --accent: #25d366;           /* verde WhatsApp */
  --accent-fg: #ffffff;
  --secondary: #f1ebe1;
  --border: #e7e1d6;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(0,0,0,.08);
  --container: 1100px;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, Inter, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--fg);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { line-height: 1.2; margin: 0 0 .5em; color: var(--primary); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); color: #fff; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.25rem); }
h3 { font-size: 1.15rem; color: var(--fg); }
p  { margin: 0 0 1em; color: var(--muted); }

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

/* HEADER */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: .75rem 1.25rem; gap: 1rem; }
.brand { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-weight: 700; color: var(--primary); }
.brand-city { font-size: .75rem; color: var(--muted); }
.nav { display: none; gap: 1.5rem; font-weight: 500; font-size: .95rem; }
.nav a:hover { color: var(--primary); }
@media (min-width: 768px) { .nav { display: flex; } }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .6rem 1.1rem; border-radius: 8px; font-weight: 600; font-size: .9rem;
  transition: opacity .2s, transform .1s; cursor: pointer; border: 0;
}
.btn:hover { opacity: .92; }
.btn:active { transform: translateY(1px); }
.btn-lg { padding: .85rem 1.5rem; font-size: 1rem; }
.btn-primary { background: var(--primary); color: var(--primary-fg); }
.btn-whatsapp { background: var(--accent); color: var(--accent-fg); }
.btn-outline { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.6); }
.btn-outline:hover { background: rgba(255,255,255,.1); }

/* HERO */
.hero { position: relative; isolation: isolate; overflow: hidden; min-height: 70vh; display: flex; align-items: center; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(20,15,10,.7), rgba(20,15,10,.55), rgba(20,15,10,.8)); z-index: -1; }
.hero-content { padding: 5rem 1.25rem; text-align: center; color: #fff; }
.hero-content p { color: rgba(255,255,255,.92); max-width: 640px; margin: 0 auto 1.5rem; font-size: 1.05rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; }
.badge { display: inline-block; border: 1px solid rgba(255,255,255,.4); border-radius: 999px; padding: .25rem .75rem; font-size: .75rem; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 1rem; }

/* SECTIONS */
.section { padding: 4rem 0; }
.section-muted { background: var(--secondary); }
.section-primary { background: var(--primary); color: var(--primary-fg); }
.section-primary h2 { color: #fff; }
.section-primary p { color: rgba(255,255,255,.85); }
.section-head { text-align: center; max-width: 600px; margin: 0 auto 2.5rem; }
.section-head p { margin-top: .5rem; }

.grid-2 { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 768px) { .grid-2 { grid-template-columns: 1fr 1fr; } }

.rounded { border-radius: var(--radius); }
.shadow { box-shadow: var(--shadow); }
.list { padding-left: 1.1rem; margin: 1rem 0 1.5rem; color: var(--fg); }
.list li { margin-bottom: .35rem; }

/* CARDS */
.cards { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 600px) { .cards { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .cards { grid-template-columns: repeat(3, 1fr); } }
.card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,.04); }
.card img { width: 100%; height: 220px; object-fit: cover; }
.card-body { padding: 1.25rem; }
.card-body p { margin: .5rem 0 0; font-size: .92rem; }

/* MAP */
.map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow); }
.map iframe { width: 100%; height: 340px; border: 0; display: block; }

/* CONTACT */
.center { text-align: center; }
.contact-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; max-width: 560px; margin: 2rem auto; justify-content: center; justify-items: center; }
@media (min-width: 640px) { .contact-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); } }
.contact-item {
  display: block; width: auto; min-width: 240px; padding: 1.25rem; border-radius: 12px;
  border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.05);
  transition: background .2s;
  text-align: center;
}
.contact-item:hover { background: rgba(255,255,255,.12); }
.contact-label { display: block; font-size: .7rem; text-transform: uppercase; letter-spacing: .05em; opacity: .7; margin-bottom: .25rem; }
.contact-value { display: block; font-weight: 600; word-break: break-word; }

/* FOOTER */
.site-footer { background: #1f1b16; color: rgba(255,255,255,.7); padding: 1.5rem 0; text-align: center; font-size: .85rem; }

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed; bottom: 1.25rem; right: 1.25rem; z-index: 50;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--accent); color: var(--accent-fg);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
  transition: transform .2s;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 28px; height: 28px; }
