body {
  margin: 0;
  font-family: "Lato", sans-serif;
  color: white;
  background: white;
}

/* HERO */
.hero {
  position: relative;
  display: flex;
  height: 100vh;
}

.half {
  flex: 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.left {
  background-image: url("../img/CarrascoValleyDiaAerea.jpg");
  background-position: center 60%;
}

.right {
  background-image: url("../img/CarrascoValley.jpg");
  background-position: center top;
}

.hero-darken {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.hero-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  align-items: center;
  z-index: 2;
}

.logo {
  width: 300px;
  margin-bottom: 20px;
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 1));
}

.hero-text-centered {
  align-items: center;
}

/* ✅ HERO TEXT SEMÁNTICO + VISUAL */
.hero-text-centered h1 {
  font-size: 1.6em;
  font-weight: 300;
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.hero-line {
  display: flex;
  gap: 8px;
}

.hero-line span,
.hero-uruguay {
  padding: 4px 12px;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 6px;
}

/* CONTACTO */
.contact {
  position: relative;
  background: url("../img/CarrascoValleyCasona.jpg") center / cover no-repeat;
  color: white;
}

.contact .overlay {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 60px 20px;
  text-align: center;
}

.contact h2 {
  margin: 0 0 10px;
}

.sub {
  margin-bottom: 30px;
}

.icons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.icons div {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* FOOTER */
footer {
  background: #111;
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
  color: #aaa;
}

footer svg {
  fill: white;
}

/* RESPONSIVE */
@media (min-width: 600px) {
  .icons {
    flex-direction: row;
    justify-content: center;
  }
}
