* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none; /* remove o sublinhado dos links */
}

body {
  display: flex;
  min-height: 100vh;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #191622;
  font-family: 'DM Sans', Helvetica, sans-serif;
}

h1 {
  color: #fff;
  margin: 20px 0;
}

div.swiper-button-prev,
div.swiper-button-next {
  color: #c369c6;
}

.busca {
  display: flex;
  width: 300px;
}
.busca #searchInput {
  flex: 1;
  padding: 10px;
  outline: none;
  font-size: 15px;
  border-radius: 5px;
  border: 0;
  font-family: 'DM Sans', Helvetica, sans-serif;
}
.busca button {
  padding: 10px;
  font-size: 15px;
  border: 0;
  background-color: #988aa8;
  color: #fff;
  border-radius: 5px;
  margin-left: 10px;
  cursor: pointer;
  font-family: 'DM Sans', Helvetica, sans-serif;
  transition: background-color 0.15s;
}
.busca button:hover {
  background-color: #705292;
}

.resultado {
  width: 350px;
  display: none;
  border: 2px dotted #78d1e1;
  margin-top: 20px;
  border-radius: 2rem;
  background-color: #13111b;
}

.titulo {
  width: 100%;
  color: #fff;
  font-size: 25px;
  font-weight: bold;
  text-align: center;
  padding: 20px;
}

.data {
  width: 100%;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  padding: 10px;
  margin-top: -17px;
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 10px;
}

.diaSemana {
  width: 100%;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  padding: 10px;
  margin-top: -10px;
  display: flex;
  justify-content: center;
}

.data span {
  margin-left: -6px;
}

.info,
.sunTime {
  display: flex;
  width: 100%;
}

.info .temp,
.info .vento,
.sunTime .sunrise,
.sunTime .sunset {
  flex: 1;
  text-align: center;
}

.sunTime .sunrise {
  margin-left: 20px;
}

.sunTime .sunset {
  margin-right: 20px;
}

.info .vento {
  flex: 1;
  text-align: center;
}

.tempTitulo,
.ventoTitulo,
.sunriseTitle,
.sunsetTitle,
.maxTempTitulo,
.minTempTitulo {
  color: #777;
  font-size: 16px;
  margin-bottom: 5px;
}

.tempInfo,
.ventoInfo,
.sunriseTime,
.sunsetTime,
.maxTempInfo,
.minTempInfo {
  color: #fff;
  font-size: 30px;
  font-weight: bold;
}

.tempInfo sup {
  font-size: 15px;
  font-weight: normal;
}

.ventoInfo span {
  font-size: 15px;
  font-weight: normal;
}
.ventoArea {
  width: 50px;
  height: 50px;
  border: 1px solid #fff;
  border-radius: 50%;
  margin: auto;
  margin-top: 25px;
  margin-right: 65px;
  padding-left: 25px;
  padding-top: 25px;
}
.ventoPonto {
  width: 15px;
  height: 1px;
  background-color: #fff;
  transform-origin: left;
}

.maxMinTemp {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 10px;
}

.maxTemp,
.minTemp {
  display: flex;
  align-items: center;
}

.maxTempInfo {
  color: rgb(204, 133, 133);
  margin-left: 10px;
}

.minTempInfo {
  color: rgb(129, 181, 204);
  margin-left: 10px;
}

.maxTemp sup,
.minTemp sup {
  margin-left: 6px;
  color: #fff;
  font-size: 15px;
  font-weight: normal;
}

.aviso {
  color: #fff;
  padding-top: 20px;
}

footer {
  margin-top: 20px;
  color: #fff;
  font-size: 13px;
}

footer {
  position: absolute;
  bottom: 30px;
}

.menu {
  display: flex;
  gap: 10px;
}

.menu-num,
.act {
  width: 50px;
  height: 50px;
  border: 1px solid #988aa8;
  color: #988aa8;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
  background-color: #13111b;
  border-radius: 0.5rem;
  transition: border-radius 0.1s;
}

.menu-num:hover {
  border: 1px solid #78d1e1;
  color: #78d1e1;
  border-radius: 0.8rem;
}

.act {
  border: 1px solid #c369c6;
  color: #c369c6;
  border-radius: 0.8rem;
}

.menu-title {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #988aa8;
  margin: 16px 0;
  font-weight: bold;
  font-size: 18px;
}
