:root {
  --primary: #FFB300;
  --primary-dark: #e0a200;
  --black: #0f1115;
  --gray: #6c757d;
  --light: #f8f9fa;
}

body {
  background: var(--light);
  color: var(--black);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
}

/* ===== HEADER DARK ===== */
.dark-header {
  background: rgba(15,17,21,0.85);
  /**background: #0f172a;*/
  backdrop-filter: blur(6px);
  border-bottom: 1px solid #1c1f26;
}

.dark-header .navbar-brand,
.dark-header strong,
.dark-header span {
  color: #ffffff !important;
}

/* NAVBAR */
.navbar {
  border-bottom: 1px solid #eee;
}

/* LOGO */
.logo {
  height: 34px;
  width: auto;
}

/* HERO GLOBAL */
.hero {
  padding: 80px 0 60px 0;
  text-align: center;
  background: #ffffff;
}

.hero h1 {
  font-weight: 700;
  font-size: 2.2rem;
}

/* TEXTO DESTAQUE */
.highlight {
  color: var(--primary);
}

/* BOTÃO PADRÃO */
.btn-primary {
  background: var(--primary);
  border: none;
  font-weight: 600;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

/* SEÇÕES */
.section {
  padding: 60px 0;
}

/* CARDS */
.card-custom {
  border: none;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

/* LISTA DE PLANO (GLOBAL) */
.plan-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.plan-list li {
  padding: 6px 0;
  font-weight: 500;
}

.plan-list li::before {
  content: "✔";
  color: var(--primary);
  margin-right: 8px;
  font-weight: bold;
}

/* PREÇO */
.price {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary);
}

/* BOTÃO WHATSAPP FLUTUANTE */
.whatsapp-float {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #25D366;
  color: white;
  border-radius: 50px;
  padding: 12px 18px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 999;
}

/* ===== FOOTER DARK ===== */
.dark-footer {
  background: #0f1115;
  color: #9aa4b2;
  border-top: 1px solid #1c1f26;
  padding: 18px 10px;
  font-size: 14px;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #25d366;
  color: white;
  padding: 10px 14px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
  z-index: 999;
}

.whatsapp-float:hover {
  transform: scale(1.05);
}

