.container-hero {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--blue-color);
  color: white;
}

.container-hero .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-hero .container-hero-items .container-text {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 20px;
}

.container-hero .container-hero-items .container-text h1 {
  font-size: 36px;
  font-weight: 700;
}

.container-hero .container-hero-items .container-buttons {
  display: flex;
  gap: 20px;
  flex-direction: column;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.container-hero .container-hero-items .container-buttons a {
  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%;
  align-self: center;
}

.container-services .container-cards .card-service .card-text a:hover {
  background-color: var(--gold-color);
  color: white;
}

.container-hero .container-hero-items .container-buttons button {
  width: 100%;
  font-size: 20px;
  text-align: center;
  font-weight: 700;
  padding: 10px 30px;
  background-color: white;
  border-radius: 10px;
  color: var(--blue-color);
  text-wrap: nowrap;
  border: none;
}

.container-hero .container-hero-items img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 10px;
}

@media (min-width: 768px) {
  .container-hero .container-hero-items .container-buttons {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .container-hero .container-hero-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
  }

  .container-hero .container-hero-items .container-text h1 {
    font-size: 48px;
  }
}