.container-hero {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    color: black;
}
.container-hero-items {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 1rem;
    gap: 30px;
    max-width: 1280px;
}
.container-text {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
}
.container-text h1 {
    font-size: 36px;
    font-weight: 700;
  }
.container-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-direction: column;
}
.btn1 {
  font-size: 20px;
  text-align: center;
  font-weight: 700;
  padding: 10px 30px;
  background-color: var(--gold-color);
  border-radius: 10px;
  border: 1px var(--gold-color) solid;
  color: white;
  transition: all 0.2s linear;
  width: 100%; 
  max-width: 400px;
  align-self: center;
  text-wrap: nowrap;
}
.btn1:hover {
    background-color: transparent;
    color: var(--gold-color);
}
.btn2 {
    font-size: 20px;
    text-align: center;
    font-weight: 700;
    padding: 10px 30px;
    background-color: transparent;
    border-radius: 10px;
    border: 1px var(--gold-color) solid;
    color: var(--gold-color);
    transition: all 0.2s linear;
    width: 100%; 
    max-width: 400px;
    align-self: center;
    text-wrap: nowrap;
}
.btn2:hover {
    background-color: var(--gold-color);
    color: white;
  }
  .container-hero-items img 
  {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 10px;
  }
  @media (min-width: 768px) {
    .container-buttons {
      flex-direction: row;
    }
  }
  @media (min-width: 1024px) {
    .container-hero-items {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 80px;
    }
  
    .container-text h1 {
      font-size: 48px;
    }
  }

