:root {
  --bg: #050505;
  --bg-alt: #0d0d0d;
  --card: #111111;
  --text: #f5f5f5;
  --muted: #b9b9c3;
  --accent: #ffffff;
}

* { box-sizing: border-box; }

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

h1, h2, h3, h4, h5 {
  font-weight: 700;
  letter-spacing: -0.5px;
}

a { text-decoration: none; }

.text-muted-2 { color: var(--muted) !important; }

/* ---------- Navbar ---------- */
.site-header {
  background: #000;
  position: sticky;
  top: 0;
  z-index: 1030;
}

.navbar-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.navbar-brand-logo .clef {
  font-size: 2.4rem;
  line-height: 1;
}

.navbar-brand-logo .brand-name {
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1;
}

.navbar-brand-logo .brand-sub {
  font-size: 0.62rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #cfcfcf;
  display: block;
  margin-top: 2px;
}

.nav-pill {
  background: #fff;
  border-radius: 50rem;
  padding: 6px 10px;
}

.nav-pill .nav-link {
  color: #1c1c1c !important;
  font-weight: 500;
  padding: 8px 16px !important;
  border-radius: 50rem;
  font-size: 0.95rem;
}

.nav-pill .nav-link:hover,
.nav-pill .nav-link.active {
  background: #111;
  color: #fff !important;
}

.nav-pill .dropdown-menu {
  background: #fff;
  border: none;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

.nav-pill .dropdown-item {
  color: #1c1c1c;
  font-weight: 500;
}

.nav-pill .dropdown-item:hover { background: #f0f0f0; }

/* ---------- Buttons ---------- */
.btn-pill {
  background: #fff;
  color: #111;
  border-radius: 50rem;
  padding: 14px 30px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: none;
  transition: transform .15s ease, background .15s ease;
}

.btn-pill:hover { background: #e6e6e6; color: #111; transform: translateY(-2px); }

.btn-pill .arrow {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.85) 0%, rgba(0,0,0,.5) 60%, rgba(0,0,0,.25) 100%);
}

.hero .container { position: relative; z-index: 2; }

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  max-width: 720px;
  margin-bottom: 2rem;
}

.page-hero {
  position: relative;
  min-height: 34vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
}

.page-hero h1 { position: relative; z-index: 2; font-size: clamp(2.2rem, 5vw, 3.5rem); }

/* ---------- Sections ---------- */
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }

.about-imgs img {
  border-radius: 6px;
  object-fit: cover;
  width: 100%;
}

.split-panel {
  background: #fff;
  color: #111;
  padding: 60px;
}

.split-panel.dark { background: #000; color: #fff; }

.split-panel h2 { margin-bottom: .5rem; }

.overlap-media {
  min-height: 520px;
  background-size: cover;
  background-position: center;
}

/* ---------- Program cards ---------- */
.program-card {
  background: var(--card);
  border-radius: 4px;
  overflow: hidden;
  height: 100%;
}

.program-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.program-card .body {
  padding: 26px 22px 34px;
  text-align: center;
}

.program-card h3 { font-size: 1.15rem; margin-bottom: .75rem; }
.program-card p { color: var(--muted); font-size: .95rem; margin: 0; }

/* ---------- Benefits ---------- */
.benefit-list { list-style: none; padding: 0; margin: 0; }
.benefit-list li {
  display: flex;
  gap: 14px;
  margin-bottom: 26px;
  color: var(--muted);
}
.benefit-list .tick {
  flex: 0 0 22px;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 2px solid #fff;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  margin-top: 4px;
}

/* ---------- Courses ---------- */
.course-item {
  background: #fff;
  color: #1c1c1c;
  border-radius: 4px;
  padding: 24px 26px;
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 1.1rem;
  height: 100%;
}
.course-item .ico { font-size: 1.8rem; }

/* ---------- Footer ---------- */
.site-footer { background: #000; padding: 70px 0 30px; }
.site-footer h5 {
  font-size: 1rem;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.site-footer h5::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 46px; height: 2px;
  background: #fff;
}
.site-footer a { color: var(--muted); display: block; margin-bottom: 8px; }
.site-footer a:hover { color: #fff; }
.site-footer p { color: var(--muted); }
.footer-bottom {
  border-top: 1px solid #1e1e1e;
  margin-top: 50px;
  padding-top: 24px;
  font-size: .9rem;
  color: var(--muted);
}

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 6px 20px rgba(0,0,0,.35);
  z-index: 1040;
}
.wa-float:hover { color: #fff; }

@media (max-width: 991px) {
  .nav-pill { margin-top: 14px; }
  .split-panel { padding: 40px 26px; }
  .overlap-media { min-height: 320px; }
}
