:root {
  --bg: #0b1220;
  --card: rgba(255, 255, 255, .06);
  --card-border: rgba(255, 255, 255, .10);
  --text: rgba(255, 255, 255, .92);
  --muted: rgba(255, 255, 255, .70);
  --shadow: 0 12px 30px rgba(0, 0, 0, .35);
}

body {
  background: radial-gradient(1200px 600px at 50% -10%, rgba(59, 130, 246, .25), transparent 60%),
    radial-gradient(900px 500px at 10% 20%, rgba(34, 197, 94, .18), transparent 60%),
    radial-gradient(900px 500px at 90% 20%, rgba(249, 115, 22, .14), transparent 60%),
    var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  /* font-family: 'Inter', sans-serif;
  font-weight: 500;
  line-height: 1.6; */
  font-family: 'Poppins', sans-serif;
  /* font-weight: 400; */
  line-height: 1.5;
}

.header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}

#btnBack {
  margin-right: 20px;
  margin-top: 17px;
  font-size: 16px;
}

.wrap {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 48px 0;
}

.top-logo {
  position: relative;
  display: inline-block;
}

#pageTitle {
  font-weight: 500;
  font-size: 3.4rem;
}

.top-logo img {
  max-height: 150px;
  width: auto;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, .35));
}

.panel-body {
  padding: 22px 22px 10px 22px;
}

.fade-swap {
  transition: opacity .22s ease, transform .22s ease;
  opacity: 1;
  transform: translateY(0);
}

.fade-swap.is-fading {
  opacity: 0;
  transform: translateY(-6px);
}

.muted {
  color: var(--muted);
}

.sector-card {
  cursor: pointer;
  background: rgb(100 100 100 / 18%);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .25);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sector-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .08);
}

.sector-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .10);
}

.sector-logo {
  height: 150px;
  width: auto;
  margin: auto;
  margin-top: -30px;
}

.service-card {
  background: rgb(0 0 0 / 67%);
  border: 1px solid rgb(255 255 255 / 24%);
  border-radius: 14px;
  transition: transform .16s ease, background .16s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card-title {
  justify-content: center;
}

.service-card-image img {
  width: -webkit-fill-available;
  border-radius: 14px 14px 0px 0px;
}

.service-card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .08);
}

.serv_desc {
  font-size: 18px;
  text-align: center;
}

.botao {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}

.btn_service {
  color: white;
  border: 1px solid;
  margin-top: 0.7em;
}

.service-ico {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .10);
  flex: 0 0 auto;
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .92);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .10);
  color: #fff;
}

footer {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: rgb(255, 255, 255);
  font-size: .92rem;
}

.footer {
  display: flex;
  align-content: center;
  justify-content: space-between;
}

.menu-footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.menu-footer a {
  text-decoration: none;
  color: rgb(255, 255, 255);
}

.menu-footer a:hover {
  text-decoration: underline;
  color: white;
}


html,
body {
  height: 100%;
  margin: 0;
}


/* Vídeo no fundo */
.bg-video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  filter: blur(2px);
}

/* Overlay preto transparente */
.bg-overlay {
  position: fixed;
  inset: 0;
  background: linear-gradient(to bottom, rgb(0 0 0 / 13%), rgb(0 0 0 / 33%), rgb(0 0 0 / 65%));
  z-index: -1;
}


/* Garante que todo o seu site fique acima do vídeo */
.wrap,
footer {
  position: relative;
  z-index: 0;
}


@media (max-width: 768px) {
  #btnBack {
    margin: 0px;
  }

  .footer {
    flex-direction: column;
  }

  footer {
    background: #000000e0;
    padding: 20px;
  }

  .menu-footer {
    margin-bottom: 15px;
  }
}


    #comingSoon{
  min-height: 42vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#comingSoon.d-none{
  display: none !important;
}

.coming-soon-box{
  text-align: center;
  padding: 28px 22px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 16px;
  background: rgba(0,0,0,.25);
  backdrop-filter: blur(6px);
  max-width: 520px;
}

.coming-soon-box i{
  font-size: 28px;
  opacity: .9;
}