@font-face {
  font-family: raleway;
  src: url(../fontes/Raleway/Raleway-Italic-VariableFont_wght.ttf) format('truetype');
  font-weight: normal;
}

@font-face {
  font-family: lovelo;
  src: url(../fontes/lovelo/lovelo_black.otf) format('opentype');
  font-weight: normal;
}

/* ================================================== */
/* ESTILOS DESKTOP (Apenas > 900px)                  */
/* ================================================== */
@media (min-width: 900px) {
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    overflow-x: hidden;
    font-family: lovelo, sans-serif;
    background-color: var(--corescura-1);
  }

  :root {
    --corescura-1: #111111ff;
    --corescura-2: #071554ff;
    --corescura-3: #212bc0ff;
    --corescura-4: #4ecaceff;
    --corescura-5: #a0dadeff;

    --branco: #ffffff;
    --preto: #000000;
  }

  /* HEADER */
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--corescura-1);
    padding: 20px 35px; 
    color: var(--branco);
    position: relative;
    font-family: raleway, sans-serif;
  }

  .logo-img {
    width: 40%;
    height: 40%;
    margin-right: 10px;
    display: flex;
    align-items: center;
  }

  .search-menu-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
  }
  
  .btn-tema img {
    width: 32px;
    height: auto;
    cursor: pointer;
    transition: transform 0.2s;
  }
  
  .btn-tema img:hover {
    transform: scale(1.1);
  }

  .menu-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .search {
    display: flex;
    align-items: center;
    position: relative;
  }

  .search input {
    padding: 10px 60px;
    border-radius: 20px;
    border: none;
    outline: none;
    font-size: 14px;
    background: linear-gradient(to right, #00d9c0, #1d4ed8);
    color: var(--branco);
  }

  .search img {
    position: absolute;
    left: 25px;
    height: 45px;
    width: 45px;
    pointer-events: none;
    z-index: 2;
  }

  .menu-toggle {
    position: relative;
    z-index: 100;
    display: block;
  }

  .hamburguer {
    font-size: 40px;
    background: transparent;
    border: none;
    width: 50px;
    height: 50px;
    color: var(--branco);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: 0.3s ease;
  }

  .hamburguer:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  /* Menu lista */
  .menu-lista {
    list-style: none;
    padding: 10px 0;
    margin: 0 0 0 20px;
    display: none;
    flex-direction: column;
    background-color: var(--corescura-1);
    border-radius: 8px;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    width: 200px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    z-index: 100;
  }

  .menu-lista.active {
    display: flex;
  }

  .menu-item {
    margin: 10px 0;
    padding: 0 20px;
  }

  .menu-item a {
    color: var(--branco);
    text-decoration: none;
    font-family: lovelo, sans-serif;
    font-size: 16px;
    display: block;
    padding: 8px 0;
    transition: background-color 0.2s ease;
  }

  .menu-item a:hover {
    background-color: var(--corescura-5);
    border-radius: 4px;
    padding: 8px;
  }
}

/* ===== SEÇÃO NOTÍCIAS ===== */

main.Noticia {
  background-color: var(--corescura-1);
  min-height: 100vh;
  padding: 40px 20px;
  font-family: Arial, Helvetica, sans-serif;
}

.titulo-noticias h1 {
  font-size: 4em;
  font-weight: 900;
  color: var(--branco);
  margin-bottom: 40px;
  text-align: center;
  font-family: lovelo;
}

/* Bloco de notícias */
.noticias-blocos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  padding: 0 20px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Card de notícia */
.news-conteudo {
  display: flex;
  flex-direction: column;
  background: var(--corescura-1);
  border: 1px solid #333;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.3);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease;
}

.news-conteudo:hover {
  transform: translateY(-5px);
  border-color: var(--corescura-4);
}

.news-conteudo img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

/* Texto */
.news-texto {
  padding: 20px;
  flex-grow: 1;
}

.news-texto h2 {
  font-size: 1.4em;
  font-weight: bold;
  color: var(--corescura-4);
  margin-bottom: 15px;
  font-family: lovelo;
  line-height: 1.2;
}

.news-texto p {
  font-size: 1rem;
  line-height: 1.6;
  text-align: justify;
  color: #ddd;
  font-family: raleway;
}

/* BOTÃO DE COMPARTILHAR */
.barra-botoes {
  padding: 15px 20px;
  background-color: #1a1a1a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #333;
}

.btn-share {
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--corescura-4);
  border: 1px solid var(--corescura-4);
  padding: 8px 15px;
  border-radius: 20px;
  cursor: pointer;
  font-family: lovelo;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.btn-share svg {
  width: 18px;
  height: 18px;
}

.btn-share:hover {
  background: var(--corescura-4);
  color: var(--branco);
}

.msg-copiado {
  font-family: raleway;
  color: var(--corescura-5);
  font-size: 0.9rem;
  font-weight: bold;
  opacity: 0;
  transition: opacity 0.3s;
}

.msg-copiado.visivel {
  opacity: 1;
}

/* ============================= */
/* FOOTER                        */
/* ============================= */
footer {
  color: var(--branco);
  background-color: var(--corescura-1);
  font-family: "lovelo";
}

footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 30px;
  padding: 40px 20px;
  align-items: flex-start;
}

.logo-footer img {
  width: 150px;
  height: auto;
}

.informacoes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: lovelo;
}

.informacoes h3 {
  margin-bottom: 4px;
  font-size: 1rem;
  text-transform: uppercase;
}

.icons-social {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.icons-social img {
  width: 32px;
  height: 32px;
}

.local {
  font-size: 0.95rem;
  line-height: 1.4;
  max-width: 220px;
  display: flex;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  color: var(--branco);
  font-family: raleway;
}

.lista ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lista a, .contato {
  font-size: 1.1rem;
  color: var(--branco);
  text-decoration: none;
  transition: color 0.2s;
}

/* EFEITO HOVER NO FOOTER (IGUAL HOME) */
.lista a:hover, .contato:hover {
  text-decoration: underline;
  color: var(--corescura-4); /* Ciano Destaque */
}

.creditos {
  width: 100%;
  background: linear-gradient(to right, #4556e7ff, #111111ff);
  text-align: center;
  font-size: 0.89rem;
  padding: 10px 0;
  font-family: raleway;
}