/* estilos/style.css */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Lobster&family=Montserrat&family=Open+Sans&family=Playfair+Display&family=Roboto&display=swap');

:root {
  --laranja: #f26522;
  --preto: #1b1b1b;
  --branco: #ffffff;
  --cinza-claro: #f5f5f5;
  --vermelho-escuro: #b22222;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: var(--cinza-claro);
  color: var(--preto);
  line-height: 1.6;
}

/* Header e Menu */
header {
  background: var(--branco);
  padding: 1rem 2rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.menu {
  list-style: none;
  display: flex;
  justify-content: flex-start;
  gap: 2rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

.menu li a {
  color: var(--preto);
  text-decoration: none;
  font-size: 1.1rem;
  padding: 0.3rem 0.6rem;
  transition: background-color 0.3s ease, color 0.3s ease;
  border-radius: 5px;
}

.menu li a:hover,
.menu li a:focus {
  background-color: var(--laranja);
  color: var(--branco);
  outline: none;
}

/* Banner */
.banner {
  background-color: var(--vermelho-escuro);
  text-align: center;
  padding: 1rem 0;
}

.banner img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Conteúdo */
.conteudo {
  background-color: var(--branco);
  padding: 2rem;
  font-family: 'Open Sans', sans-serif;
}

.conteudo h1 {
  font-family: 'Lobster', cursive;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--laranja);
}

.conteudo p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

/* Imagens no conteúdo */
.imagens {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
  justify-content: center;
}

.imagens figure {
  max-width: 300px;
  font-family: 'Playfair Display', serif;
}

.imagens img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.imagens figcaption {
  text-align: center;
  margin-top: 0.5rem;
  font-style: italic;
  font-size: 0.9rem;
  color: var(--vermelho-escuro);
}

/* Mídia vídeo */
.midia {
  max-width: 700px;
  margin: 2rem auto;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  border-radius: 8px;
  overflow: hidden;
}

/* Footer */
footer {
  background-color: var(--laranja);
  color: var(--branco);
  padding: 2rem 2rem;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
  font-family: 'Montserrat', sans-serif;
}

footer h2 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.footer-contato p {
  margin-bottom: 0.5rem;
}

.footer-redes a {
  margin-right: 1rem;
  display: inline-block;
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease;
}

.footer-redes a img {
  width: 100%;
  height: 100%;
  filter: brightness(1) invert(1);
}

.footer-redes a:hover,
.footer-redes a:focus {
  transform: scale(1.2);
  filter: brightness(0.8) invert(1);
  outline: none;
}

/* Responsividade */
@media (max-width: 768px) {
  .menu {
    flex-direction: column;
    gap: 1rem;
  }
  .imagens {
    flex-direction: column;
    align-items: center;
  }
  footer {
    flex-direction: column;
    align-items: center;
  }
  
}

