body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Ubuntu';
}

/* Colors */

.white {
  color: #fff !important;
}

.ciano {
  color: #00ffff !important;
}

/* Topo */

#topo {
  width: 100%;
  min-height: 100vh;
  height: auto;
  padding: 84px 24px 32px 24px;
  background-image: url("../../assets/img/topo.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}

@media (min-width: 576px) {
  #topo {
    padding: 72px 24px 32px 24px;
  }
}

#topo h1 {
  max-width: 100%;
  font-size: 32px;
  text-align: center;
  color: #fff;
  padding-bottom: 18px;
}

@media (min-width: 992px) {
  #topo h1 {
    max-width: 70%;
    font-size: 48px;
    color: #fff;
    margin: 0 auto;
    padding-bottom: 48px;
  }
}

@media (min-width: 1024px) {
  #topo h1 {
    max-width: 65%;
  }
}

#topo .logo-alarmes {
  display: block;
  width: 140px;
  margin: 0 auto;
}

img {
  vertical-align: middle;
  border-style: none;
}

.logos {
  width: auto;
  min-width: 300px;
  height: auto;
  max-width: 700px;
  border-radius: 12px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 8px 16px;
  box-shadow: 0 8px 12px rgba(0,0,0,0.4);
  margin-top: 32px;
}

@media (min-width: 768px) {
  .logos {
    min-width: 400px;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    gap: 12px;
  }
}

.logos img {
  height: 45px;
  margin: 8px;
}

/* Menu Edições */

.menu-edicoes {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 64px;
  column-gap: 16px;
}

.menu-edicoes {
  width: 100%;
  height: auto;
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 64px;
  column-gap: initial;
  row-gap: 16px;
}

@media (min-width: 576px) {
  .menu-edicoes {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 64px;
    column-gap: 16px;
  }
}

.menu-edicoes li {
  display: inline-flex;
}

.menu-edicoes li a {
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  padding: 16px 64px;
  background-color: #010066;
  border-radius: 8px;
  border: 0;
  color: #fff;
  transition: all .3s ease-out;
}

.menu-edicoes li a:hover {
  background-color: #f56513;
}

