/* ---- Custom CSS (mínimo): apenas tokens de marca e efeitos que o Bootstrap não cobre ---- */
:root {
  --navy: #010f24;
  --navy-2: #010f23;
  --ink: #050717;
  --ink-2: #070b22;
  --blue: #005df5;
  --blue-deep: #0040e0;
  --blue-bright: #2f83ff;
  --card-light: #f4f7ff;
  --muted: #252a3a;
  --grad-btn: linear-gradient(135deg, #0b6cff 0%, #0448e5 100%);
  --grad-card:
    radial-gradient(
      272px 272px at 38% 26%,
      rgba(47, 131, 255, 0.28) 0%,
      rgba(47, 131, 255, 0) 30%
    ),
    linear-gradient(
      160deg,
      rgba(8, 50, 116, 0.74) 0%,
      rgba(0, 17, 50, 0.78) 100%
    );
  --border-glow: inset 0 0 0 1px rgba(127, 179, 255, 0.5);
}

body {
  color: var(--ink);
  background: var(--navy);
}

h1,
h2,
h3,
h4,
.font-head {
  font-family: inherit, system-ui, sans-serif;
}

a {
  color: var(--blue);
}

a:hover {
  color: var(--blue-deep);
}

.bg-navy {
  background: var(--navy) !important;
}

.bg-light-blue {
  background: var(--card-light) !important;
}

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

section {
  overflow: hidden;
}

/* Badge pill (dark) */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  background: rgba(7, 37, 91, 0.58);
  backdrop-filter: blur(12px);
  box-shadow: inset 0 0 0 1px rgba(116, 184, 255, 0.38);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: #fff;
}

.pill .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #075fff;
  box-shadow: 0 0 18px rgba(45, 132, 255, 0.9);
  flex: none;
}

.pill-light {
  background: #e8eeff;
  box-shadow: none;
  color: var(--blue-deep);
  letter-spacing: 0.08em;
}

.pill-light .dot {
  background: var(--blue-deep);
  box-shadow: none;
  width: 6px;
  height: 6px;
}

/* Buttons */
.btn-grad {
  background: var(--grad-btn);
  color: #fff;
  font-weight: 700;
  border: 0;
  border-radius: 10px;
  box-shadow:
    0 18px 39px rgba(5, 93, 255, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.btn-grad:hover {
  color: #fff;
  filter: brightness(1.06);
}

.btn-ghost {
  background: rgba(7, 37, 91, 0.58);
  backdrop-filter: blur(12px);
  color: #fff;
  font-weight: 700;
  border-radius: 10px;
  box-shadow: inset 0 0 0 1px rgba(116, 184, 255, 0.38);
}

.btn-ghost:hover {
  color: #fff;
  background: rgba(12, 50, 110, 0.7);
}

.btn-mais {
  background: #005df5;
  color: #fff;
  font-weight: 800;
  font-size: 0.82rem;
  border-radius: 5px;
  box-shadow: 0 8px 18px rgba(0, 93, 245, 0.22);
}

.btn-mais:hover {
  color: #fff;
  background: #0048d8;
}

/* Hero */
.hero {
    position: relative;
    background: var(--navy);
    padding-top: 180px;
    padding-bottom: 70px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("../images/hero-bg.jpg") center top/cover no-repeat;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(1, 15, 35, 0.35) 0%,
    rgba(1, 15, 35, 0.85) 62%,
    var(--navy) 100%
  );
}

.glass-card {
  background: rgba(7, 37, 91, 0.38);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  box-shadow: inset 0 0 0 1px rgba(116, 184, 255, 0.38);
}

.glass-line {
  background: rgba(7, 37, 91, 0.58);
  border-left: 3px solid rgba(116, 184, 255, 0.5);
  border-radius: 9px;
}

/* Dark glow section bg */
.glow-bg {
  background:
    radial-gradient(
      1200px 1000px at 50% 30%,
      rgba(0, 108, 255, 0.16) 0%,
      rgba(0, 108, 255, 0) 45%
    ),
    radial-gradient(
      1400px 1200px at 12% 65%,
      rgba(0, 108, 255, 0.12) 0%,
      rgba(0, 108, 255, 0) 42%
    ),
    var(--navy);
}

.ring {
  position: absolute;
  width: 482px;
  height: 482px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(46, 134, 255, 0.28);
  pointer-events: none;
}

/* Feature / path cards */
.stat-card,
.path-card {
  background: var(--grad-card);
  border-radius: 22px;
  box-shadow:
    var(--border-glow),
    inset 0 0 32px rgba(47, 131, 255, 0.09),
    0 18px 51px rgba(0, 0, 0, 0.32);
}

.icon-ring {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.7rem;
  color: #fff;
  background: radial-gradient(
    55px 55px at 50% 50%,
    rgba(47, 131, 255, 0.3) 0%,
    rgba(0, 17, 50, 0.26) 64%
  );
  box-shadow:
    inset 0 0 0 1.5px rgba(47, 131, 255, 0.95),
    0 0 18px rgba(47, 131, 255, 0.9);
}

.num-chip {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(180deg, #2f83ff, #004de0);
  box-shadow:
    inset 0 0 0 1px rgba(121, 179, 255, 0.94),
    0 0 15px rgba(47, 131, 255, 0.7);
}

.divider-glow {
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(47, 131, 255, 0),
    rgba(47, 131, 255, 0.9),
    rgba(47, 131, 255, 0)
  );
  box-shadow: 0 0 12px rgba(47, 131, 255, 0.68);
}

/* Persona cards */
.persona-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px #e5e9f2;
}

.persona-card .thumb {
  height: 200px;
  background-size: cover;
  background-position: center;
  background-color: #0e1730;
}

.persona-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-deep);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow:
    inset 0 0 0 3px #fff,
    0 10px 22px -8px rgba(0, 64, 224, 0.5);
  margin-top: -30px;
}

/* Step cards */
.step-card {
  background: #fff;
  border-radius: 16px;
  box-shadow:
    inset 0 0 0 1px #dce8ff,
    0 15px 34px rgba(12, 46, 102, 0.08);
}

.step-badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(180deg, #0057ee, #0043cc);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.5rem;
  box-shadow:
    inset 0 0 0 6px rgba(0, 87, 238, 0.16),
    0 10px 18px rgba(0, 87, 238, 0.22);
}

.step-connect {
  position: absolute;
  top: 32px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(0, 87, 238, 0.35),
    rgba(0, 87, 238, 0.1)
  );
  z-index: 0;
}

/* Metragem aside */
.aside-metragem {
  border-radius: 20px;
  background:
    radial-gradient(
      600px 600px at 60% 10%,
      rgba(0, 108, 255, 0.15) 0%,
      rgba(0, 108, 255, 0) 45%
    ),
    linear-gradient(
      145deg,
      rgba(1, 22, 60, 0.84) 0%,
      rgba(0, 11, 33, 0.78) 100%
    );
  box-shadow:
    inset 0 0 0 1px rgba(89, 158, 255, 0.9),
    inset 0 0 49px rgba(47, 131, 255, 0.08),
    0 25px 70px rgba(0, 0, 0, 0.3);
}

/* Form */
.form-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.5);
}

.form-card .form-label {
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: #41506e;
  text-transform: none;
}

.form-card .form-control,
.form-card .form-select {
  border-color: #e5e9f2;
  border-radius: 8px;
  padding: 0.6rem 0.9rem;
  font-size: 0.9rem;
}

.form-card .form-control::placeholder {
  color: #757575;
}

/* Nav */
.navbar .nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: #0b1d36;
}

.navbar .nav-link:hover {
  color: var(--blue);
}

.cta-band {
  background: linear-gradient(135deg, #0040e0 0%, #001e80 100%);
}

.video-box {
  background: #282828;
  border-radius: 8px;
  box-shadow:
    inset 0 0 0 1px rgba(47, 134, 255, 0.34),
    0 18px 60px rgba(0, 0, 0, 0.38),
    0 0 36px rgba(0, 92, 255, 0.16);
}

@media (max-width: 991px) {
  .display-hero {
    font-size: 2.4rem !important;
  }
}

/* ===== HEADER FIXO AO ROLAR (sticky) ===== */
body > header {
  position: sticky;
  top: 0;
  z-index: 1030;
  box-shadow: 0 2px 12px rgba(1, 15, 36, 0.06);
}

/* ===== MOBILE HEADER COMPACTO ===== */
.header-mobile {
  background: #fff;
  border-bottom: 1px solid #eee;
}

.header-mobile .container {
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
}

.header-mobile-menu,
.header-mobile-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: none;
  background: transparent;
  color: #333;
  padding: 0;
}

.header-mobile-menu {
  width: 40px;
  height: 40px;
  font-size: 1.35rem;
}

.header-mobile-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 0 0.75rem;
}

.header-mobile-logo img {
  max-height: 100px;
  width: auto;
}

.header-mobile-whatsapp {
  width: 38px;
  height: 38px;
  color: var(--color-custom-primary);
  font-size: 1.25rem;
  text-decoration: none;
}

.header-navbar {
  padding-top: 1rem;
  padding-bottom: 1.25rem;
}

.header-mobile-search .form-control {
  border: none;
  height: 40px;
  padding: 0.5rem 2.75rem 0.5rem 1rem;
  font-size: 0.9rem;
  box-shadow: none;
}

.header-mobile-search .form-control:focus {
  box-shadow: none;
}

.header-mobile-search-btn {
  position: absolute;
  top: 50%;
  right: 0.35rem;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border: none;
  background: transparent;
  color: #333;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.header-mobile .header-mobile-menu i {
  font-size: 1.6rem;
}

.mobile-sidebar-inner {
  background: #fff;
}

.main-nav-offcanvas {
  width: min(82vw, 300px);
  background: #fff;
  box-shadow: 2px 0 20px rgba(0, 0, 0, 0.12);
}

.main-nav-offcanvas .offcanvas-header {
  padding: 0;
}

.main-nav-offcanvas .offcanvas-body {
  overflow-y: auto;
}

.mobile-sidebar-header {
  display: flex;
  justify-content: flex-end;
  padding: 0.75rem 0.75rem 0.25rem;
}

.mobile-sidebar-close {
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  color: #666;
  font-size: 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.mobile-sidebar-logo {
  display: flex;
  justify-content: center;
  padding: 0.5rem 1.25rem 1rem;
  border-bottom: 1px solid #ececec;
  background: #fff;
}

.mobile-sidebar-logo a {
  display: block;
  line-height: 0;
}

.mobile-sidebar-logo img {
  max-height: 90px;
  width: auto;
  max-width: 100%;
}

.mobile-sidebar-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-sidebar-nav li {
  border-bottom: 1px solid #ececec;
}

.mobile-sidebar-nav li a {
  display: block;
  padding: 0.85rem 1.25rem;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: #333;
  text-decoration: none;
}

.mobile-sidebar-nav li a:hover,
.mobile-sidebar-nav li a.active {
  background: rgba(255, 255, 255, 0.6);
  color: var(--color-custom-primary, #333);
}

.mobile-sidebar-contact {
  padding: 1rem 1.25rem 1.25rem;
  background: #fafafa;
}

.mobile-sidebar-contact-item {
  margin-bottom: 0.65rem;
}

.mobile-sidebar-contact-item:last-of-type {
  margin-bottom: 0.85rem;
}

.mobile-sidebar-contact-item span {
  display: block;
  font-size: 0.7rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 0.2rem;
}

.mobile-sidebar-contact-item a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  line-height: 1.3;
}

.mobile-sidebar-contact-item a i {
  color: var(--color-custom-primary);
  font-size: 0.9rem;
  text-align: center;
}

.social-buttons a i {
  color: var(--color-custom-primary);
  font-size: 1.6rem;
  text-align: center;
}

.mobile-sidebar-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.mobile-sidebar-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--color-custom-primary);
  color: #fff !important;
  font-size: 1rem;
  text-decoration: none;
  flex-shrink: 0;
}

.mobile-sidebar-social a:hover {
  opacity: 0.9;
  color: #fff !important;
}

@keyframes whatsapp-float-pulse {
  0% {
    box-shadow:
      0 4px 16px rgba(0, 0, 0, 0.2),
      0 0 0 0 rgba(37, 211, 102, 0.45);
  }

  70% {
    box-shadow:
      0 4px 16px rgba(0, 0, 0, 0.2),
      0 0 0 14px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow:
      0 4px 16px rgba(0, 0, 0, 0.2),
      0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.whatsapp-float-btn {
  position: fixed;
  right: 1rem;
  bottom: 1.25rem;
  width: 56px;
  height: 56px;
  padding: 0;
  border: none;
  background-color: #25d366;
  color: #fff !important;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  z-index: 1060;
  cursor: pointer;
  text-decoration: none;
  animation: whatsapp-float-pulse 2.5s ease-out infinite;
  transition: transform 0.2s ease;
}

.whatsapp-float-btn:hover {
  color: #fff !important;
  transform: translateY(-2px) scale(1.04);
  animation-play-state: paused;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

@media (min-width: 992px) {
  .whatsapp-float-btn {
    right: 1.5rem;
    bottom: 1.5rem;
    width: 60px;
    height: 60px;
    font-size: 1.85rem;
  }
}
