body {
  background: url(../media/12.svg);
  background-size: cover;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  padding: 0 40px;
  padding-top: clamp(180px, 20vh, 250px);

  display: flex;
  justify-content: center;
  align-items: center;

  text-align: center;
  color: #d6cb8d;
  overflow: hidden;
}

/* ============================= */
/* HERO CONTENT */
/* ============================= */

.hero-content {
  width: min(70%, 900px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.hero-title {
  font-size: clamp(32px, 3vw, 52px);
  font-weight: 600;
  letter-spacing: 0px;
  color: #bf9f34;
  word-spacing: -2px;

  display: inline-block;
  transform: scaleY(1.3);
  transform-origin: bottom;
  margin-bottom: 10px;
}

.hero-subtitle {
  font-size: clamp(16px, 1.2vw, 22px);
  line-height: 1.7;
  word-spacing: 2px;
  color: #d6cb8d;
}

/* Link central */

.legal-link{
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  color: #eacf85;
  transition: opacity 0.3s ease;
}

.legal-link:hover {
  opacity: 0.6;
  color: #bf9f34;
}

@media (max-width: 1024px){

  .hero-content{
    width: 85%;
  }

  .hero-title{
    transform: scaleY(1.2);
  }

}
@media (max-width: 768px){

  .hero-section{
    padding: 140px 20px 60px;
  }

  .hero-content{
    width: 100%;
  }

  .hero-title{
    font-size: clamp(26px, 6vw, 34px);
    transform: none;
  }

  .hero-subtitle{
    font-size: 15px;
  }

  .legal-link{
    font-size: 13px;
  }

}
@media (min-width: 1600px){

  .hero-content{
    width: 60%;
  }

}
