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

body, html {
  height: 100%;
  font-family: 'Inter', sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #000;
  color: #fff;
}

.hero {
  flex: 1;
  background-image: url('images/VamosPatagonia-comingsoon.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
}

footer {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 1rem;
  text-align: center;
  font-size: 0.95rem;
  color: #ccc;
}

footer .socials {
  margin-top: 0.5rem;
}

footer .socials a {
  margin: 0 10px;
  text-decoration: none;
  color: #ccc;
  transition: color 0.3s ease;
}

footer .socials a:hover {
  color: #fff;
}
