* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto Condensed", sans-serif;
}

html, body {
  width: 100%;
  height: 100vh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;

  /* Fundo branco acinzentado suave */
  background-color: #f5f5f5; /* ou #f7f7f7 para ainda mais claro */

}
.site-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
   
}

.topo {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex; /* escondido inicialmente */
  align-items: center;
  justify-content: space-between;
  padding: 6px 20px;
  background-color: #fff;

  height: 70px;
  transition: 0.3s ease;

  box-shadow: 2px 2px 8px rgba(29, 28, 28, 0.2); /* sombra adicionada */
}

.logo {
  height: 60px; /* reduz o tamanho da logo */
  margin-left: 190px;
  width: auto;
  margin-top: 10px;
  margin-bottom: 10px;
}

.menu ul {
  list-style: none;   /* tira as bolinhas do ul */
  margin: 0;
  padding: 0;
  display: flex; 
  margin-right: 80px;     /* deixa os itens lado a lado */
}

.menu li {
  margin: 0 8px;

}

.menu a {
  font-size: 14px;
  text-decoration: none;
  color: #333;
  display: inline-block;      /* necessário p/ animar transform */
  transition: all 0.3s ease;  /* deixa suave */
}

.menu a:hover {
  color: #a18b00;
  transform: scale(1.1); /* animação vai funcionar agora */
}

.login {
  font-size: 14px;
  color: #333;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.login:hover {
  color: #a18b00;
  transform: scale(1.1);
}
.conteudo-principal {
  width: 100%;
  height: 600px;
  position: relative;
  overflow: hidden;
  margin-top: 50px;
  margin-bottom: 50px;
}

.img-container-noticia {
  width: 100%;
  height: 100%;
  position: relative;
}

.img-container-noticia img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* mantém proporção e cobre todo espaço */
  object-position: center; /* centraliza a imagem (não fica puxada para direita ou esquerda) */
  display: block;
}

.data-planea {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px 30px;
  border-radius: 10px;
  color: #fff;
  text-align: center;

  border-bottom: 4px solid #ffffff; /* linha branca mais espessa */
font-size: 1.7rem;

  

font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  z-index: 10;
}

.img-container-noticia::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #c2c200 100%);
  pointer-events: none;
}

.new {
  padding: 80px 100px;
  width: 100%;
  display: grid;
  grid-template-columns: 1.4fr 1.1fr;
  gap: 60px;
  align-items: center;
  background: #f7f7f7; /* branco acinzentado */
  color: #111;
  font-family: "Segoe UI", Roboto, sans-serif;
}

/* Lado esquerdo */
.new > .esquerdo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.new > .esquerdo > .titulo h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.new > .esquerdo > .img {
  width: 100%;
  height: 420px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  background: #101a2a; /* fundo tecnológico sutil */
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.new > .esquerdo > .img:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.new > .esquerdo > .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.95;
}

/* Lado direito */
.new > .direito {
  padding: 30px 40px;
  border-radius: 20px;
  height: 350px;
}

.new > .direito > .titulo h2 {
  font-size: 26px;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
}

.new > .direito > .descrisao {
  font-size: 17px;
  color: #333;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 25px;
}

/* Lista de detalhes */
.new > .direito > .detalhes ul {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
}

.new > .direito > .detalhes li {
  font-size: 16px;
  color: #444;
  margin-bottom: 10px;
}

/* Botão */
.btn-noticia {
  display: inline-block;
  padding: 12px 25px;
  background: #a18b00;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn-noticia:hover {
  background: #8a7600;
  transform: translateY(-3px);
}

/* Destaques */
.new strong {
  color: #a18b00;
  font-weight: 600;
}

/* Responsivo */
@media (max-width: 900px) {
  .new {
    grid-template-columns: 1fr;
    padding: 50px 30px;
  }

  .new > .direito {
    margin-top: 30px;
  }

  .new > .esquerdo > .img {
    height: 320px;
  }
}

.pagina{
    width: 100%;
   background:#f0e4e4;
min-height: 100vh;
padding: 50px;
color:  #a18b00;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.pagina > .noticias{
    padding: 30px 0;
    margin-top: 30px;
    border-top: 1px solid #555;
}
.pagina > .noticias:last-child{
      padding: 30px 0;
    margin-top: none;
}
.pagina > .noticias:first-child{
      padding: 30px 0;
    margin-top: none;
}
.pagina > .noticias > h2{
    font-size: 30px;
    cursor: pointer;
    display: inline;
   

}
.pagina > .noticias > h2:hover{
   text-decoration: underline;
}

.pagina > .caixatexto {
     width: 100%;
    /* background-color: #999; */
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap; /* permite quebrar linha */
    gap: 10px;
    justify-content: center;
    display: grid;
   grid-template-columns: repeat(5, 1fr); /* força 5 colunas */
}

.pagina > .caixatexto > .novocards {
     flex: 1 1 calc(20% - 10px); /* 100% / 5 = 20% (menos o gap) */
    min-width: 180px; /* largura mínima */
    max-width: 220px; /* largura máxima */
    min-height: 250px;
    /* background-color: #070; */
    display: flex;
    flex-direction: column; /* imagem em cima, texto em baixo */
}

.pagina > .caixatexto > .novocards > .img {
    width: 100%;
    height: 150px;
    /* background-color: #a04; */
    overflow: hidden;   /* corta a parte que passar */
}
.pagina > .caixatexto > .novocards > .img img {
    width: 100%;       /* ocupa toda a largura */
    height: 100%;      /* ocupa toda a altura */
    object-fit: cover; /* corta o excesso sem deformar */
    display: block;    /* remove espaços indesejados */
    object-position:right; 
}
.pagina > .caixatexto > .novocards > .img:hover img{

    transform: scale(0.9);
    transition: transform 0.2s ease;

}
.pagina > .caixatexto > .novocards > .img img,
#breaKingImg img {
    width: 100%;      /* largura total */
    height: 100%;     /* altura total */
     display: block;
   object-fit: cover;         /* preenche o slide */
  object-position:left; 
}

.pagina > .caixatexto > .novocards > .titulo {
    padding: 10px;
}

.pagina > .caixatexto > .novocards > .titulo > .texto p {
    font-size: 15px;
    cursor: pointer;
    color: #000;
}

.pagina > .caixatexto > .novocards > .titulo > .texto p:hover {
    text-decoration: underline;
}



.rodape {
  background-color: #ffffff;
  border-top: 3px solid #ccc;
  padding: 50px 60px 25px;
  font-family: system-ui, sans-serif;
  color: #1c2772;
}

/* CONTEÚDO PRINCIPAL DO RODAPÉ */
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 25px;
}

/* COLUNA ESQUERDA */
.coluna-esquerda {
  min-width: 220px;
  text-align: center;
}

.QR img {
  width: 120px;
  height: 120px;
  margin-bottom: 10px;
}

.no-break {
  white-space: nowrap;
  font-size: 13px;
  color: #444;
}

.linha {
  width: 80%;
  border: none;
  border-top: 2px solid #ccc;
  margin: 10px auto;
}

/* COLUNAS CENTRAIS */
.colunas-horizontais {
  display: flex;
  flex: 2;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 40px;
}

.coluna h3 {
  color: #1c2772;
  font-size: 17px;
  margin-bottom: 8px;
  border-bottom: 2px solid #a18b00;
  display: inline-block;
  padding-bottom: 4px;
}

.coluna p {
  font-size: 14px;
  margin: 6px 0;
  color: #151c46;
  cursor: pointer;
  transition: 0.3s;
}

.coluna p:hover {
  color: #a18b00;
  transform: translateX(3px);
}

/* REDES SOCIAIS */
.redes-sociais {
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 15px;
  margin: 30px 30px;
}

.redes-sociais a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #1c2772;
  color: white;
  font-size: 20px;
  transition: all 0.3s ease;
}

.redes-sociais a:hover {
  background: #a18b00;
  transform: scale(1.15);
}

/* RODAPÉ INFERIOR */
footer {
  border-top: 1px solid #ccc;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 13px;
  color: #313866;
}

footer p {
  margin: 0;
  text-align: center;
  flex: 1;
}

/* BOTÕES INFERIORES */
.botoes-footer {
  display: flex;
  gap: 15px;
}

.btn-footer {
  background-color: #1c2772;
  color: white;
  padding: 8px 15px;
  border-radius: 6px;
  font-size: 13px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-footer:hover {
  background-color: #a18b00;
  transform: translateY(-2px);
}

/* RESPONSIVIDADE */
@media (max-width: 850px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  footer {
    flex-direction: column;
    gap: 15px;
  }

  .botoes-footer {
    justify-content: center;
  }
}
