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

body {
  /* FONTE E CORES ATUALIZADAS */
  font-family: 'Inter', sans-serif;
  background-color: #E2E2E2; /* Tom Gesso (Fundo Claro) */
  color: #050301; /* Tom Piche (Texto Escuro) */
  text-align: center;
}

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

/* Layout original MANTIDO */
.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 258px;
  left: 63%;
  transform: translateX(-50%);
}

.logo {
  max-width: 200px;
  margin: 0 auto 0px;
  transform: none;

}


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

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

}

.arrow {
  margin-top: 30px;
  font-size: 14px;
  /* ATUALIZADO: Cor para branco */
  color: #E2E2E2;
  opacity: 0.9;
}

.banners {
  /* Layout original MANTIDO */
  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;
  /* COR ATUALIZADA */
  color: #726760; /* Tom Cimento */
  padding: 40px 20px;
}

footer a {
  /* COR ATUALIZADA */
  color: #726760; /* Tom Cimento */
  text-decoration: none;
  margin: 0 5px;
}

/* MOBILE: Layout original MANTIDO */
@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; 
    margin-left: auto;
    margin-right: auto;
  }


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

.banners img {
  /* Efeitos originais MANTIDOS */
  transition: filter 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

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