:root{
  --brand:#6A1B9A;      /* roxo principal */
  --brand-700:#571781;
  --lilac:#E7D2F7;      /* lilás claro */
  --text:#2b2b2b;
  --muted:#6f6f6f;
  --bg:#ffffff;
  --bg-soft:#faf6ff;
  --radius:14px;
  --shadow:0 10px 28px rgba(0,0,0,.08);
  --maxw:1100px;
}

*{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:var(--bg); line-height:1.65;
  -webkit-font-smoothing:antialiased; text-rendering:optimizeLegibility;
}
a{color:var(--brand); text-decoration:none}
a:hover{opacity:.95}
img{max-width:100%; height:auto; display:block}
.skip{position:absolute; left:-9999px}
.skip:focus{left:8px; top:8px; background:#fff; padding:6px 10px; border-radius:8px; z-index:100}

.container{max-width:var(--maxw); margin:0 auto; padding:0 20px}
.mini{font-size:12px}
.muted{color:var(--muted)}
.center{text-align:center}
.mt-24{margin-top:24px}

.btn{
  display:inline-block; padding:12px 18px; border-radius:10px;
  background:var(--brand); color:#fff; font-weight:700; box-shadow:var(--shadow);
  transition:transform .15s ease, background .15s ease, box-shadow .15s ease;
}
.btn:hover{transform:translateY(-1px); background:var(--brand-700)}
.btn.outline{background:transparent; color:var(--brand); border:1px solid var(--brand)}

.tag{
  display:inline-flex; align-items:center; gap:8px; font-size:12px; color:var(--brand);
  background:var(--lilac); padding:6px 10px; border-radius:999px;
}

h1{font-size: clamp(28px, 4vw, 46px); line-height:1.12; margin:10px 0 8px; color:var(--brand)}
h2{font-size: clamp(22px, 3vw, 32px); margin:0 0 12px; color:var(--brand)}
h3{margin:0 0 8px; color:var(--brand)}
.lead{font-size: clamp(15px, 1.6vw, 19px); color:var(--muted)}

/* Topbar */
.topbar{position:sticky; top:0; z-index:50; background:#fff; border-bottom:1px solid #eee}
.topbar .container{display:flex; align-items:center; gap:16px; height:86px}
.brand img{height:84px; max-height:96px}
.menu{margin-left:auto; display:flex; align-items:center; gap:18px}
.menu a{color:var(--text)}
.menu .btn{margin-left:6px}

/* Mobile nav */
#menu-toggle{display:none}
.hamburger{display:none; font-size:26px; padding:8px 10px; border:1px solid #eee; border-radius:10px; cursor:pointer}

/* Hero */
.hero{padding:56px 0 44px; background:linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%)}
.hero__grid{display:grid; grid-template-columns:1.15fr .85fr; gap:30px; align-items:center}
.hero__image img{border-radius:16px; border:1px solid #eee; box-shadow:var(--shadow)}

/* Sections */
.section{padding:56px 0}
.section.alt{background:var(--bg-soft)}
.service{background:#fff; border:1px solid #eee; border-radius:14px; padding:16px; margin:10px 0; box-shadow:var(--shadow)}

/* Chips/keywords */
.chips{display:flex; gap:8px; flex-wrap:wrap; padding:0; margin:14px 0 10px; list-style:none}
.chips li{padding:6px 10px; background:#fff; border:1px solid #ece5f7; color:#4a4a4a; border-radius:999px}

/* Two columns bullets */
.bullet-two{display:grid; grid-template-columns:1fr 1fr; gap:14px}
.bullet-two ul{margin:0; padding-left:18px}

/* Reviews */
.depo-head{display:flex; align-items:center; justify-content:space-between}
.sort select{border:1px solid #ddd; border-radius:8px; padding:8px 10px; background:#fff}
.cards{display:grid; grid-template-columns:repeat(3, 1fr); gap:18px}
.card{background:#fff; border:1px solid #ece5f7; border-radius:14px; padding:18px; box-shadow:var(--shadow)}
.card p{margin:0}

/* Contato */
.address{line-height:1.9; font-style:normal}

/* Footer */
.footer{border-top:1px solid #eee; padding:22px 0; background:#fff}
.footer__grid{display:flex; align-items:center; justify-content:space-between}

/* Botão flutuante WhatsApp (texto, sem ícone img) */
.fab-whats{
  position:fixed; right:16px; bottom:16px; z-index:60;
  background:var(--brand); color:#fff; padding:12px 14px; border-radius:999px; font-weight:700;
  box-shadow:var(--shadow)
}
.fab-whats:hover{background:var(--brand-700)}

/* Responsivo */
@media (max-width: 980px){
  .hamburger{display:inline-block}
  .menu{display:none; position:absolute; top:86px; left:0; right:0; padding:14px 20px; background:#fff; border-bottom:1px solid #eee; flex-direction:column; gap:12px}
  #menu-toggle:checked ~ .menu{display:flex}
  .hero__grid{grid-template-columns:1fr}
  .cards{grid-template-columns:1fr}
  .bullet-two{grid-template-columns:1fr}
}
@media (prefers-reduced-motion: reduce){
  *{transition:none !important; animation:none !important}
}
