/* Inicialização */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1, h2, h3, h4 {
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  font-family: 'Ubuntu';
}

@media (min-width:1200px) {
  html {
    scroll-padding-top: 120px;
  }
}

/* Navegação - Desktop */

.navigation-desktop {
  width: 100%;
  height: 120px;
  background: #000;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 16px 5vw;
  z-index: 999;
}

.navigation-desktop .navbar-brand img {
  width: auto;
  height: 65px;
}

.navigation-desktop .navbar-brand:focus {
  outline: none;
  box-shadow: none;
}

.navigation-desktop.sticky {
  position: sticky;
  top: 0;
  left: 0;
  animation: slide-down 250ms ease-out;
}

.menu-desktop {
  list-style: none;
  margin: 0;
}

.menu-desktop li {
  display: inline-block;
}

.menu-desktop li:not(:last-of-type) {
  margin-right: 4px;
}

.menu-desktop li a {
  font-size: .9rem;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
  padding: 4px 12px;
  transition: all .3s ease-out;
}

.menu-desktop li a:hover {
  color: #F57E21;
}

.menu-desktop li a:focus {
  outline: none;
}

.menu-desktop li.btn-plataforma a {
  font-weight: normal;
  padding: 4px 16px;
  border: 1px solid #fff;
  border-radius: 1.5rem;
  background-color: transparent;
  transition: all .3s ease-out;
}

.menu-desktop li.btn-plataforma a:hover {
  color: #000;
  background-color: #8AB915;
  border: 1px solid #8AB915;
}

/* Navegação Mobile */

.navigation-mobile {
  width: 100%;
  height: 80px;
  background-color: #000;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 6px 32px;
  z-index: 999;
}

.navigation-mobile .navbar-brand img {
  width: auto;
  height: 50px;
}

.navigation-mobile.sticky {
  position: sticky;
  top: 0;
  left: 0;
  animation: slide-down 250ms ease-out;
}

/* Modal Navegação Mobile */

#modal-menu-mobile {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100vw;
  height: calc(100vh - 80px);
  background-color: rgba(0,0,0,0.8);
  padding: 24px 32px;
  z-index: 900;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
}

.menu-mobile {
  list-style: none;
  padding-left: 0;
}

.menu-mobile li {
  display: block;
  margin-bottom: 14px;
}

.menu-mobile li a {
  display: block;
  font-size: 1.3rem;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  padding: 12px 4px;
  transition: all .3s ease-out;
}

.menu-mobile li a:hover {
  color: #f57e21;
}

.menu-mobile li.btn-plataforma a {
  font-weight: normal;
  padding: 4px 24px;
  border: 1px solid #fff;
  border-radius: 2rem;
  background-color: transparent;
  transition: all .3s ease-out;
}

.menu-mobile li.btn-plataforma a:hover {
  color: #000;
  background-color: #8AB915;
  border: 1px solid #8AB915;
}

/* Sessão Topo */

#topo {
  position: relative;
  width: 100%;
  height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 72px 24px;
  overflow: hidden;
}

@media (min-width: 1200px) {
  #topo {
    height: calc(100vh - 120px);
  }
}

/* Video Topo */

#topo .video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* Container padrão do site */

.container {
  max-width: 992px;
}

/* Sessão Plataforma */

#plataforma {
  width: 100%;
  min-height: 300px;
  padding: 72px 5vw;
}

#plataforma .logo-alarmes {
  width: auto;
  height: 120px;
  display: block;
  margin: 0 auto;
}

/* Sessão Diferencial */

#diferencial {
  width: 100%;
  min-height: 600px;
  background-image: url("../../assets/img/bg_diferencial.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top right;
  padding: 72px 5vw;
}

/* Equipe */

#equipe {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 300px;
  padding: 72px 5vw 0;
}

#equipe .container {
  max-width: initial;
}

/* Parceiros */

#parceiros {
  width: 100%;
  height: auto;
  min-height: 300px;
  padding: 72px 5vw;
}

/* Contato */

#contato {
  width: 100%;
  height: auto;
  min-height: 300px;
  padding: 72px 5vw;
  background-color: #000066;
}

/* Mapa */

#mapa {
  width: 100%;
  height: 300px;
}

/* Footer */

footer {
  width: 100%;
  height: 60px;
  background-color: #000066;
  padding: 4px 5vw;
}

/* Topo - Sobre */

#topo.sobre {
  background-image: url("../../assets/img/bg_sobre.jpg");
  background-size: cover;
  background-position: left bottom;
  justify-content: flex-start;
  align-items: center;
}

/* Topo - Ferramentas */

#topo.ferramentas {
  background-image: url("../../assets/img/bg_ferramentas.jpg");
  background-size: cover;
  background-position: center bottom;
  justify-content: center;
  align-items: center;
}

/* Topo - Metodologia */

#topo.metodologia {
  background-image: url("../../assets/img/bg_metodologia.jpg");
  background-size: cover;
  background-position: center bottom;
  justify-content: center;
  align-items: center;
}

/* Topo - Documentação */

#topo.documentacao {
  background-image: url("../../assets/img/bg_documentacao.jpg");
  background-size: cover;
  background-position: center bottom;
  justify-content: center;
  align-items: center;
}

#topo .paragrafo, #topo ul li {
  font-size: 1rem;
}

ul.branco li {
  color: #fff;
}

@media (min-width: 768px) {
  #topo .paragrafo, #topo ul li {
    font-size: 1.2rem;
  }
}

/* Conteúdo */

#conteudo {
  width: 100%;
  height: auto;
  padding: 72px 5vw 72px;
}

/* Área de Cobertura */

#area-cobertura {
  width: 100%;
  height: auto;
  min-height: 500px;
  padding: 72px 5vw;
  background-image: url("../../assets/img/bg_areacobertura_escura.jpg");
  background-size: cover;
  background-position: center bottom;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

/* Documentos */

#documentos {
  width: 100%;
  height: auto;
  padding: 72px 5vw 0;
}

#lista-documentos {
  width: 100%;
  height: auto;
  padding: 0 5vw 72px;
}

#contato .paragrafo {
  white-space: pre-wrap;
}

/* Paginação Documentos */
.documentos-pagination .wp-pagenavi a, .documentos-pagination .wp-pagenavi span {
  color: #000 !important;
  border: 1px solid #fff !important;
}

.documentos-pagination .wp-pagenavi a:hover,
.documentos-pagination .wp-pagenavi span.current {
  text-decoration: none;
  color: #fff !important;
  background: #F57E21 !important;
  border-color: #F57E21 !important;
}