/* === RESET BÁSICO === */
body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  background: #ffffff;
  color: #222;
  line-height: 1.6;
}

/* === CABEÇALHO === */
header {
  background: #ffffff;
  padding: 30px 0 10px;
  border-bottom: 2px solid #e30613;
}

/* Logo, título e alinhamento no cabeçalho */
.header-logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  flex-wrap: wrap;
}

.header-logos img:first-child {
  max-height: 160px;
}

.header-logos img:last-child {
  max-height: 90px;
}

.header-logos h1 {
  flex: 1;
  text-align: center;
  font-size: 2.8em;
  margin: 0;
  color: #e30613;
}

/* Subtítulo do cabeçalho */
header p {
  text-align: center;
  margin-top: 10px;
  font-size: 1.1em;
}

/* === MENU DE NAVEGAÇÃO === */
nav {
  background-color: #f5f5f5;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 12px 0;
  border-bottom: 1px solid #ddd;
}

nav a {
  color: #e30613;
  text-decoration: none;
  margin: 8px 20px;
  font-weight: bold;
  transition: 0.3s;
}

nav a:hover {
  color: #000;
}

/* === CONTEÚDO PRINCIPAL === */
main {
  padding: 50px 20px;
  max-width: 1100px;
  margin: auto;
}

/* Seções do site */
section {
  margin-bottom: 70px;
}

h2 {
  color: #e30613;
  font-size: 2em;
  margin-bottom: 20px;
}

ul {
  list-style-type: disc;
  padding-left: 20px;
}

/* === GALERIA DE IMAGENS === */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.gallery img {
  width: 100%;
  height: auto;
  border: 2px solid #e30613;
  border-radius: 8px;
  object-fit: contain;
}

/* === RODAPÉ === */
footer {
  background-color: #f5f5f5;
  color: #666;
  text-align: center;
  padding: 25px;
  font-size: 0.9em;
  border-top: 1px solid #ccc;
}

/* === BOTÕES FLUTUANTES (WhatsApp e Instagram) === */
.floating-button {
  position: fixed;
  right: 20px;
  z-index: 999;
}

.floating-button img {
  width: 60px;
  height: 60px;
}

.floating-button.whatsapp {
  bottom: 20px;
}

.floating-button.instagram {
  bottom: 90px;
}

/* === RESPONSIVIDADE === */
@media (max-width: 768px) {
  .header-logos {
    flex-direction: column;
    text-align: center;
  }

  .header-logos h1 {
    font-size: 2em;
    margin: 15px 0;
  }

  nav {
    flex-direction: column;
  }

  nav a {
    margin: 10px 0;
  }

  h2 {
    font-size: 1.5em;
  }
}

@media (max-width: 480px) {
  main {
    padding: 30px 15px;
  }

  .floating-button img {
    width: 50px;
    height: 50px;
  }

  footer {
    font-size: 0.8em;
  }
}
