* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #000;
  color: #fff;
  text-align: center;
}

.hero {
  background: url('img/topo1.jpg') no-repeat center center;
  background-size: cover;
  padding: 520px 20px 40px;
  position: relative;
}

/* NOVO BLOCO: Centraliza logo e ícones à direita */
.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 258px;
  left: 63%;
  transform: translateX(-50%);
}

.logo {
  max-width: 200px; /* Aumenta a logo no desktop */
  margin: 0 auto 0px;
  transform: none;
}


.social-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.social-icons img {
  width: 20px;
  height: 20px;
  opacity: 0.8;
}

.arrow {
  margin-top: 30px;
  font-size: 14px;
  color: #bbb;
}

.banners {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  padding: 0 20px 40px;
}

.banners img {
  width: 100%;
  max-width: 600px;
  border-radius: 12px;
}

footer {
  font-size: 12px;
  color: #888;
  padding: 40px 20px;
}

footer a {
  color: #888;
  text-decoration: none;
  margin: 0 5px;
}

/* MOBILE: Centraliza logo e ícones */
@media (max-width: 600px) {
  .hero {
    background: url('img/topo2.jpg') no-repeat center center;
    background-size: cover;
    padding: 397px 10px 30px;
  }

  .banners img {
    max-width: 100%;
  }

  .logo-container {
    position: static;
    transform: none;
    
    margin: 20px auto;
  }

  .logo {
    max-width: 200px; /* ou mantenha 200px */
    margin-left: auto;
    margin-right: auto;
  }


  .social-icons {
    justify-content: center;
  }
}

.banners img {
  transition: filter 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.banners img:hover {
  filter: brightness(1.2);
  transform: scale(1.05);
}
