:root {
  --bg: #0b0f17;
  --card: rgba(255, 255, 255, 0.08);
  --card2: rgba(255, 255, 255, 0.06);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.72);
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

a { color: inherit; text-decoration: none; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 18px; }

/* TOP BAR */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 15, 23, 0.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 18px;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand__logo img {
  height: 36px;
  width: auto;
}
  border-radius: 14px;
  background: rgba(255,255,255,0.10);
  display: grid; place-items: center;
  font-weight: 900;
}
.brand__name { font-weight: 900; letter-spacing: 0.2px; }
.brand__tag { font-size: 12px; color: var(--muted); }
.topbar__actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

/* HERO */
.hero {
  position: relative;
  min-height: 82vh;
  display: grid;
  align-items: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11,15,23,0.92) 0%, rgba(11,15,23,0.60) 45%, rgba(11,15,23,0.25) 100%),
    url("assets/hero.jpg") center/cover no-repeat;
}

.hero__content { position: relative; padding: 54px 18px 80px; }

.hero__card {
  max-width: 760px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.pill {
  display: inline-block;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

h1 { margin: 14px 0 8px; font-size: 42px; line-height: 1.05; }
.lead { margin: 0 0 16px; color: var(--muted); font-size: 16px; line-height: 1.5; }

/* SECTIONS */
.section { padding: 66px 0; }
.section--alt {
  background: rgba(255,255,255,0.03);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

h2 { margin: 0 0 10px; font-size: 28px; }
.sub { margin: 0 0 18px; color: var(--muted); line-height: 1.5; }

/* GRIDS & CARDS */
.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.card {
  background: var(--card2);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
}

.icon { font-size: 22px; opacity: 0.9; margin-bottom: 8px; }
.muted { color: var(--muted); }
.tiny { font-size: 12px; margin-top: 10px; }

/* SPLIT */
.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: center;
}

.mediaImg {
  width: 100%;
  border-radius: 22px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

/* LIST */
.ticks { margin: 0 0 18px; padding-left: 18px; color: var(--muted); }
.ticks li { margin: 8px 0; }

/* CONTACT GRID */
.contactGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  font-weight: 800;
  letter-spacing: 0.2px;
  cursor: pointer;
}

.btn--big { width: 100%; padding: 14px 14px; border-radius: 16px; }
.btn--ghost { background: rgba(255,255,255,0.03); }

.btn--wa { background: rgba(37, 211, 102, 0.12); border-color: rgba(37, 211, 102, 0.28); }
.btn--tg { background: rgba(0, 136, 204, 0.12); border-color: rgba(0, 136, 204, 0.28); }

.ctaRow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 14px 0 10px;
}

.micro {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
}

.micro2 { margin-top: 10px; color: var(--muted); font-size: 13px; }
.dot { margin: 0 8px; opacity: 0.6; }
.mono { font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace; }

/* FLOATING BUTTONS */
.floatActions {
  position: fixed;
  right: 16px;
  bottom: 88px;
  display: grid;
  gap: 10px;
  z-index: 60;
}

.fab {
  width: 54px; height: 54px;
  border-radius: 18px;
  display: grid; place-items: center;
  font-weight: 900;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.06);
  box-shadow: var(--shadow);
}

.fab--wa { background: rgba(37, 211, 102, 0.14); border-color: rgba(37, 211, 102, 0.30); }
.fab--tg { background: rgba(0, 136, 204, 0.14); border-color: rgba(0, 136, 204, 0.30); }

/* BOTTOM BAR */
.bottombar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: rgba(11, 15, 23, 0.78);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  z-index: 55;
}

.bottombar__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.bottombar__text { color: var(--muted); }
.bottombar__actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* FOOTER */
.footer {
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
  padding: 26px 0 110px; /* space for bottom bar */
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
}

.footer__name { font-weight: 900; margin-bottom: 8px; }
.footer__legal { line-height: 1.5; }
.footer__contacts { line-height: 1.7; }

/* RESPONSIVE */
@media (max-width: 900px) {
  h1 { font-size: 34px; }
  .grid3 { grid-template-columns: 1fr; }
  .contactGrid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .ctaRow { grid-template-columns: 1fr; }
  .topbar__actions .btn--ghost { display: none; }
  .footer__inner { grid-template-columns: 1fr; }
}