:root{
  --bg1:#5b2cff;
  --bg2:#ff3ea5;
  --card: rgba(255,255,255,.14);
  --card2: rgba(255,255,255,.10);
  --text:#ffffff;
  --muted: rgba(255,255,255,.78);
  --line: rgba(255,255,255,.20);
  --shadow: 0 20px 60px rgba(0,0,0,.25);
  --radius: 22px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  color:var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans";
  background:
    radial-gradient(1200px 800px at 20% 10%, rgba(255,255,255,.22), transparent 55%),
    radial-gradient(900px 700px at 80% 30%, rgba(255,255,255,.14), transparent 60%),
    linear-gradient(135deg, var(--bg1), var(--bg2));
}

a{ color:inherit; text-decoration:none; }
.container{
  width:min(1100px, 92vw);
  margin: 28px auto 40px;
}

.topbar{
  width:min(1100px, 92vw);
  margin: 22px auto 0;
  padding: 16px 16px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.08));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display:flex;
  gap:14px;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
}

.brand{ display:flex; gap:12px; align-items:center; }
.logo{
  width:44px; height:44px;
  display:grid; place-items:center;
  border-radius: 14px;
  background: rgba(255,255,255,.16);
  border: 1px solid var(--line);
}
.brand-title{ font-weight:800; letter-spacing:.2px; }
.brand-sub{ font-size: 13px; color: var(--muted); margin-top:2px; }

.nav{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  align-items:center;
  justify-content:center;
}
.nav-link{
  padding:10px 12px;
  border-radius: 14px;
  border: 1px solid transparent;
  color: var(--muted);
  background: transparent;
}
.nav-link:hover{
  border-color: var(--line);
  background: rgba(255,255,255,.08);
  color: var(--text);
}
.nav-link.active{
  border-color: var(--line);
  background: rgba(255,255,255,.12);
  color: var(--text);
}

.cta{ display:flex; gap:10px; flex-wrap:wrap; }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.10);
  color: var(--text);
  font-weight:700;
}
.btn:hover{ background: rgba(255,255,255,.16); }
.btn-secondary{ background: rgba(0,0,0,.12); }
.btn-whatsapp{
  border-color: rgba(255,255,255,.28);
  background: rgba(37,211,102,.20);
}

.card{
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.08));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
  margin-top: 18px;
}

.hero h1{
  margin: 0 0 10px;
  font-size: clamp(26px, 4vw, 40px);
  letter-spacing:.2px;
}
.lead{
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.pill{
  margin-top: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.10);
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
}

.grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}
@media (max-width: 740px){
  .grid{ grid-template-columns: 1fr; }
}

.feature{
  border: 1px solid var(--line);
  background: rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 16px;
}
.feature:hover{ background: rgba(255,255,255,.12); }
.feature-title{ font-weight:800; margin-bottom:6px; }
.feature-text{ color: var(--muted); line-height: 1.5; }

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 16px;
}
@media (max-width: 860px){
  .split{ grid-template-columns: 1fr; }
}

.list{
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.notice{
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.30);
  background: rgba(255,255,255,.10);
}

.big-time{
  margin-top: 10px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.10);
  text-align:center;
}
.big-day{ font-weight:900; font-size: 28px; }
.big-hours{ font-weight:900; font-size: 36px; margin-top: 6px; }

.map-wrap{
  margin-top: 14px;
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid var(--line);
  background: rgba(0,0,0,.12);
}
.map-wrap iframe{
  width:100%;
  height: 420px;
  border:0;
  display:block;
}

.footer{
  width:min(1100px, 92vw);
  margin: 0 auto 26px;
  padding: 16px;
  color: var(--muted);
  display:flex;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
}
.small{ font-size: 13px; }
.muted{ color: var(--muted); }
