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

html, body {
  height: 100%;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  color: #fff;
  -webkit-font-smoothing: antialiased;
}

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 100vh;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: url('la-primera-project.jpg') center 30% / cover no-repeat;
  background-position: 50% 25%;
  animation: fadeInBg 2s ease-out both;
}

@media (max-width: 768px) {
  .hero__bg {
    background-image: url('la-primera-project-m.jpg');
    background-position: 50% 20%;
  }
}

@keyframes fadeInBg {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(0,0,0,.3) 75%,
    rgba(0,0,0,.55) 100%
  );
}

@media (max-width: 600px) {
  .hero__overlay {
    background: linear-gradient(
      180deg,
      transparent 25%,
      rgba(0,0,0,.35) 70%,
      rgba(0,0,0,.6) 100%
    );
  }
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 1.5rem 3rem;
  animation: slideUp 1.2s 0.6s ease-out both;
}

@media (max-width: 600px) {
  .hero__content {
    padding: 0 1rem 6rem;
  }
}
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__card {
  text-align: center;
  background: rgba(0,0,0,.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 2rem 2.5rem;
  max-width: 560px;
  width: 100%;
}

@media (max-width: 600px) {
  .hero__card {
    padding: 1.5rem 1.2rem;
    border-radius: 16px;
  }
}

.hero__supertitle {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  padding: 0.4rem 1.4rem;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 100px;
  margin-bottom: 1.2rem;
}

.hero__subtitle {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.hero__info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 1.2rem;
}

.hero__address {
  font-size: clamp(0.85rem, 1.6vw, 0.95rem);
  font-weight: 400;
  opacity: 0.75;
}

@media (max-width: 600px) {
  .hero__address {
    font-size: 0.82rem;
  }
}

.hero__address a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}

.hero__address a:hover {
  border-bottom-color: rgba(255,255,255,.4);
}

.hero__domain {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  opacity: 0.25;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255,255,255,.12);
}
