/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: blue; /* mantém fundo preto geral */
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  color: white; /* texto branco padrão para o corpo */
}

/* Header */
header {
  background-color: #fff;
  color: #000; /* texto preto */
  padding: 10px 0;
}

header .container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  padding: 0 5px;
  position: relative;
}

.logo {
  height: 70px;
  width: auto;
  max-width: 100%;
}

/* Agrupa ícone login e menu à direita */
.right-group {
  display: flex;
  align-items: center;
  gap: 20px;
  order: 1;
  flex-grow: 1;
  justify-content: flex-end;
}

/* Menu principal */
.menu {
  order: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 40px;
  padding: 0;
  margin: 0;
  list-style: none;
  flex-direction: row;
  position: relative;
}

.menu ul {
  display: flex;
  flex-direction: row;
  gap: 40px;
  padding: 0;
  margin: 0;
  list-style: none;
}

/* Links do menu */
.menu a {
  color: #000;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.menu a:hover {
  color: #555;
}

/* Ícone login */
.login-icon {
  order: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #000;
  cursor: pointer;
  text-decoration: none;
}

.login-icon img {
  width: 32px;
  height: 32px;
}

/* Botões menu hambúrguer e fechar escondidos no desktop */
.menu-toggle,
.menu-close {
  display: none;
}


.banner-destaque {
  position: relative;
  width: 100vw; /* 100% da largura da viewport */
  height: 400px;
  margin: 5px 0 5px 0; /* só margem vertical */
  border-radius: 0; /* remover borda arredondada para ficar na ponta da tela, se quiser */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);

  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;

  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}


/* Overlay escuro para dar contraste na imagem */
.banner-destaque::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4); /* preto semitransparente */
  border-radius: 12px;
  z-index: 1;
  pointer-events: none;
}


/* Se quiser manter o border-radius só nos cantos do conteúdo: */
.conteudo-banner {
  border-radius: 12px;
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
  padding: 20px 40px;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.conteudo-banner h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.conteudo-banner p {
  font-size: 1.2rem;
}

/* Botão Saiba Mais posicionado no canto inferior esquerdo */
.btn-saiba-mais {
  position: absolute;
  bottom: 20px;
  left: 20px;
  padding: 12px 24px;
  background-color: #ff4500;
  border: none;
  border-radius: 6px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  z-index: 10;
}

.btn-saiba-mais:hover {
  background-color: #e03e00;
}

/* Conteúdo principal */
main {
  padding: 20px;
  max-width: 1200px;
  margin: auto;
}

  .fotos {
    grid-template-columns: repeat(2, 1fr); /* 2 colunas no mobile */
    gap: 15px;
    margin-top: 15px;
  }
.fotos {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 colunas iguais */
  gap: 20px;
  margin-top: 10px;
}

.fotos img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 0 0px #ccc;
}

.fotos2 {
  display: flex;
  justify-content: center;   /* centraliza horizontalmente */
  margin-top: 40px;
  max-width: 1200px;         /* define largura máxima */
  margin-left: auto;
  margin-right: auto;
}

.fotos2 img {
  width: 100%;             /* preenche toda a largura do container */
  max-height: 300px;       /* limita a altura */
  object-fit: cover;       /* mantém a imagem cobrindo o espaço sem distorcer */
  border-radius: 8px;
  box-shadow: 0 0 00px #ccc;
}

.fotosnovidade {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 20px;
  color: white; /* texto branco */
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.foto-item {
  text-align: center;
  color: white;
  text-decoration: none; /* tira underline do link */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.foto-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 0 0px #ccc;
  margin-bottom: 12px;
}

.foto-item h3 {
  margin: 0 0 6px;
  font-size: 1.2rem;
}

.foto-item p {
  margin: 0;
  font-size: 1rem;
  color: #ddd;
}

/* Rodapé */
footer {
  background-color: #fff; /* fundo preto */
  color: #000;            /* texto branco */
  text-align: center;     /* centraliza texto e inline elements */
  padding: 15px 0;
  margin-top: 40px;
  font-size: 14px;
}

footer p {
  margin: 6px 0; /* remove espaçamento excessivo e mantém legibilidade */
}

footer a {
  color: #000;
  text-decoration: none;
  margin: 0 6px;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #ccc;
  text-decoration: underline;
}

/* Responsividade básica para menu e imagens */
