body {
  background-color: #f3f3f3;
  font-family: 'libre franklin';
}

header {
  background-color: #ffffff;
}

footer {
  margin-top: 100px;
  background-color: #ffffff;
}

.menu {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 15px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: .9rem;
}

.menu a {
  color: #800020;
  text-decoration: none;
}

.publicadade {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: .5rem;
  text-transform: uppercase;
  letter-spacing: .1rem;
  gap: 0;
}

.manchete {
  width: 100%;
  aspect-ratio: 16 / 11;
  height: auto;
  border-radius: 18px;
  position: relative;
}

.filter {
  position: absolute;
  background: #00000045;
  background: linear-gradient(0deg, rgba(0, 0, 0, .60) 0%, rgba(0, 0, 0, .10) 100%);
  width: 100%;
  height: 100%;
  z-index: 2;
  border-radius: 18px;
}

.manchete img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
  z-index: 1;
}

.cat {
  position: absolute;
  background-color: #800020;
  color: #fff;
  border-radius: 20px;
  padding: 0 20px;
  font-size: .8rem;
  line-height: 2rem;
  display: table;
  font-weight: 400;
  text-transform: uppercase;
  z-index: 3;
  top: 20px;
  left: 20px;
}

.manchete .title {
  position: absolute;
  width: 80%;
  font-weight: 700;
  font-size: 2rem;
  line-height: 2.5rem;
  z-index: 3;
  bottom: 20px;
  left: 30px;
}

.manchete .title a {
  color: #fff;
  text-decoration: none;
}

.manchete .title a:hover {
  text-decoration: underline;
}

.submanchetes {
  height: 100%;
  display: grid;
  align-content: space-between;
}

.submanchetes .manchete .title {
  font-size: 1.5rem;
  line-height: 2rem;
}

.noticias {
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  border-radius: 18px;
  position: relative;
}

.noticias img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
  z-index: 1;
}

.noticias-title {
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1.8rem;
  margin-top: 10px;
}

.noticias-title a {
  color: #000;
  text-decoration: none;
}

.noticias-title a:hover {
  text-decoration: underline;
}

.categorias {
  color: #800020;
  border-bottom: solid 1px #800020;
  padding: 0 0 10px 0;
  font-size: 1.8rem;
  line-height: 2rem;
  font-weight: 600;
  text-transform: uppercase;
}

footer .social {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  justify-content: center;
}

footer .btn {
  background-color: #800020;
  color: #fff;
  text-transform: uppercase;
  font-size: .9rem;
  display: block;
  margin-top: 10px;
}

.copy {
  border-top: solid 1px #800020;
  font-size: .8rem;
  color: #000;
  text-align: center;
}

@media (max-width: 576px) {
  .submanchetes {
    gap: 25px;
  }
}