@import url(root.css);

body {
  background-color: var(--cor-b);
  color: var(--cor-h);
}

.head {
  background-color: var(--cor-a);
}

.head .header {
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.head .header .marca {
  width: 360px;
  max-width: 100%;
}

.head .header .botoes-a {
  gap: 12px;
}

.head .header .botoes-b .form-control {
  border: solid 1px var(--cor-d);
}

.publicidade {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  max-width: 100%;
  font-size: .5rem;
  text-transform: uppercase;
  letter-spacing: .1rem;
  margin-top: 50px;
  margin-bottom: 55px;
}

.publicidade img {
  max-width: calc(100% - 10px);
}

.filter {
  position: absolute;
  background: #00000045;
  background: linear-gradient(0deg, rgba(0, 0, 0, .70) 0%, rgba(0, 0, 0, 0.05) 100%);
  width: 100%;
  height: 100%;
  z-index: 2;
}

.manchete {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 3;
  position: relative;
}

.subs {
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.submanchete {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2.46;
  position: relative;
}

.submanchete img,
.manchete img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.submanchete .title,
.manchete .title {
  position: absolute;
  z-index: 3;
  font-family: 'pt serif';
  font-size: 1.2rem;
  line-height: 1.7rem;
  font-weight: 700;
  bottom: 10px;
  padding: 0 13px;
}

.submanchete .title a,
.manchete .title a {
  color: var(--cor-a);
  text-decoration: none;
}

.manchete .title {
  font-size: 2rem;
  line-height: 2.5rem;
}

.peladas {
  background-color: var(--cor-a);
  padding: 20px;
  position: sticky;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  top: 0;
  width: 100%;
}

.peladas .header {
  text-transform: uppercase;
  font-family: 'pt serif';
  color: var(--cor-f);
  font-weight: 700;
  font-size: 1.2rem;
  font-display: swap !important;
  border-bottom: double 4px var(--cor-d);
}

.peladas a {
  color: var(--cor-h);
  text-decoration: none;
  font-family: 'pt serif';
  font-size: 1rem;
  font-weight: 700;
  border-bottom: solid 1px var(--cor-d);
}

.peladas a:last-child {
  border-bottom: none;
}

.peladas a:hover,
.submanchete .title a:hover,
.manchete .title a:hover {
  text-decoration-line: underline;
  text-decoration-color: var(--cor-f);
  text-decoration-style: solid;
  text-decoration-thickness: 2px;
}

.editoria {
  text-transform: uppercase;
  font-family: 'pt serif';
  color: var(--cor-f);
  font-weight: 700;
  font-size: 1.8rem;
  border-bottom: double 4px var(--cor-d);
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.editoria a {
  color: var(--cor-a);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  background-color: var(--cor-d);
  padding: 0 5px;
  border-radius: 4px;
}

.foot {
  color: var(--cor-a);
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
  background-color: var(--cor-d);
}

.foot .botoes-c {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.foot .botoes-d {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.foot .botoes-d a {
  color: var(--cor-d);
  font-weight: 700;
  background-color: var(--cor-e);
}

@media (max-width: 576px) {
  .menu {
    justify-content: space-between;
    padding: 8px 20px;
  }
}