/* ===== Estilos Gerais ===== */
body {
  margin: 0;
  font-family: 'Open Sans', Arial, sans-serif;
  background-color: #0b0d0f;
  color: #ffffff;
  text-align: center;
}

/* ===== Header ===== */
header {
  padding: 30px 20px;
}

.logo {
  width: 180px;
  height: auto;
}

/* ===== Hero Section ===== */
.hero {
  padding: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  color: #00aaff;
  font-size: 2rem;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0 auto;
}

/* ===== Galeria ===== */
.gallery {
  padding: 40px 20px;
}

.image-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.image-row img {
  width: calc(16.66% - 20px);
  border-radius: 10px;
  transition: transform 0.3s ease;
  max-width: 240px;
}

.image-row img:hover {
  transform: scale(1.03);
}

/* ===== Footer ===== */
footer {
  background-color: #061623;
  color: #ffffff;
  padding: 20px 10px;
  font-size: 0.9rem;
  margin-top: 40px;
}

footer a {
  color: #00aaff;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* ===== Responsividade ===== */

/* Telas médias (tablets, até 1024px) */
@media (max-width: 1024px) {
  .image-row img {
    width: calc(33.33% - 20px);
  }

  .hero h1 {
    font-size: 1.8rem;
  }
}

/* Telas pequenas (celulares até 600px) */
@media (max-width: 600px) {
  .image-row img {
    width: calc(80% - 20px);
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .hero p {
    font-size: 1rem;
  }
}
