:root {
  color-scheme: light;
  font-family: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
  text-align: center;
  color: #fff;
  background-image: url("http://www.estudiocreativo.com.mx/photo/SantaFe.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.7));
}

.hero__content {
  position: relative;
  max-width: 42rem;
  z-index: 1;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.1;
}

.hero p {
  margin: 1.25rem auto 0;
  max-width: 34rem;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  line-height: 1.6;
}

.hero__cta {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.85rem 1.75rem;
  border-radius: 9999px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
  transition:
    transform 0.2s ease,
    background-color 0.2s ease;
}

.hero__cta:hover,
.hero__cta:focus-visible {
  background-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}

@media (max-width: 600px) {
  .hero {
    padding: 1.5rem;
  }

  .hero p {
    margin-top: 1rem;
  }

  .hero__cta {
    width: 100%;
    max-width: 16rem;
  }
}
