:root{
  --bg:#0b1110;
  --card: rgba(255,255,255,.06);
  --card2: rgba(255,255,255,.04);
  --line: rgba(255,255,255,.10);

  --text:#f2f4f4;
  --muted: rgba(242,244,244,.72);

  --gold:#caa35a;
  --gold2:#b88d46;

  --shadow: 0 20px 60px rgba(0,0,0,.45);
  --radius: 20px;

  --wa:#25D366;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  color:var(--text);
  background:
    radial-gradient(1200px 600px at 30% -10%, rgba(202,163,90,.18), transparent 55%),
    radial-gradient(900px 500px at 90% 10%, rgba(37,211,102,.10), transparent 50%),
    linear-gradient(180deg, #06100f 0%, #081413 50%, #050b0a 100%);
}

a{ color: inherit; text-decoration:none; }
img{ max-width:100%; display:block; }

.container{
  max-width: 980px;
  margin: 0 auto;
  padding: 18px 14px 80px;
}

/* Topbar */
.topbar{
  position: sticky;
  top:0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(5,10,9,.62);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar__inner{
  max-width:980px;
  margin: 0 auto;
  padding: 10px 14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  min-width: 0;
}
.brand__logo{
  width:44px;
  height:44px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.brand__text{ min-width:0; }
.brand__name{
  font-weight: 800;
  letter-spacing: .2px;
  line-height: 1.05;
  font-size: 14px;
  white-space: nowrap;
  overflow:hidden;
  text-overflow: ellipsis;
}
.brand__tag{
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
  overflow:hidden;
  text-overflow: ellipsis;
}

/* Cards */
.card{
  background: var(--card);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.card--inner{
  background: var(--card2);
  box-shadow: none;
}
.pad{ padding: 16px; }

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  font-weight: 750;
  letter-spacing: .2px;
  user-select:none;
}
.btn--small{ padding: 9px 12px; font-size: 13px; }
.btn--gold{
  background: linear-gradient(180deg, rgba(202,163,90,.95), rgba(184,141,70,.92));
  color: #1a1408;
  border-color: rgba(255,255,255,.08);
}
.btn--gold:hover{ filter: brightness(1.02); }
.btn--dark{
  background: rgba(0,0,0,.25);
}
.btn--dark:hover{ background: rgba(0,0,0,.32); }

/* Hero */
.hero{
  margin-top: 14px;
  padding: 18px;
}
.pill{
  display:inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
  color: rgba(255,255,255,.80);
  font-size: 13px;
}
.hero__title{
  margin: 12px 0 8px;
  font-size: 34px;
  line-height: 1.05;
  letter-spacing: -0.6px;
}
.accent{
  color: var(--gold);
}
.hero__subtitle{
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}
.hero__actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.chips{
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.chip{
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.10);
  font-size: 13px;
  color: rgba(255,255,255,.82);
}

.info{
  margin-top: 14px;
  padding: 14px;
}
.info__row{
  display:grid;
  grid-template-columns: 90px 1fr;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.info__row:last-child{ border-bottom: 0; }
.info__label{
  color: rgba(255,255,255,.72);
  font-size: 13px;
}
.info__value{
  color: rgba(255,255,255,.92);
  font-size: 14px;
  line-height: 1.35;
}
.info__link{
  display:inline-block;
  margin-top: 6px;
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Sections */
.section{
  margin-top: 18px;
}
.section__title{
  margin: 0 0 10px;
  font-size: 28px;
  letter-spacing: -0.4px;
}
.section__subtitle{
  margin: -6px 0 12px;
  color: var(--muted);
}

/* Grid items */
.grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.item{
  overflow:hidden;
}
.item__img{
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.item__body{
  padding: 14px;
}
.item__title{
  margin: 0 0 6px;
  font-size: 16px;
}
.item__desc{
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

/* Sobre */
.lead{
  margin: 0 0 10px;
  color: rgba(255,255,255,.90);
  font-weight: 750;
}

/* Hours */
.hours{
  display:flex;
  flex-direction: column;
  gap: 10px;
}
.hours__row{
  display:flex;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
}
.hours__row--closed{
  border-color: rgba(255,80,80,.25);
  background: rgba(255,80,80,.10);
}
.note{
  margin-top: 12px;
  color: rgba(255,255,255,.82);
}

/* Map box */
.mapbox{
  display:flex;
  align-items:flex-start;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.mapbox__label{ color: var(--muted); font-size: 13px; }
.mapbox__value{ margin-top: 4px; }

/* Contact */
.contact{
  display:grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.contact__link{
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
}
.contact__link span{ color: var(--muted); font-size: 13px; }
.contact__link strong{ color: var(--gold); font-size: 15px; }

.cta{
  margin-top: 12px;
  padding: 14px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.cta__title{ font-weight: 850; }
.cta__text{ color: var(--muted); font-size: 14px; margin-top: 2px; }
.cta__btn{
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 800;
}

/* Footer */
.footer{
  margin-top: 18px;
  padding: 10px 0 0;
  color: rgba(255,255,255,.68);
}
.footer__inner{
  display:flex;
  gap: 10px;
  align-items:center;
  justify-content:center;
  flex-wrap: wrap;
}
.footer a{ color: rgba(255,255,255,.75); text-decoration: underline; text-underline-offset: 3px; }
.dot{ opacity: .5; }

/* Floating WhatsApp */
.wa-float{
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 30;
  background: var(--wa);
  color: #06220f;
  font-weight: 900;
  border-radius: 999px;
  padding: 14px 18px;
  box-shadow: 0 16px 40px rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.10);
}
.wa-float:active{ transform: scale(.99); }

/* Desktop */
@media (min-width: 720px){
  .hero__title{ font-size: 44px; }
  .grid{ grid-template-columns: 1fr 1fr; }
  .contact{ grid-template-columns: 1fr 1fr; }
  .info__row{ grid-template-columns: 120px 1fr; }
  }
