.hero {
  position: relative;
  height: 70vh;
  min-height: 550px;

  background: url("../img/hero.jpeg") center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0 20px;
}

/* OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

/* CONTEÚDO */
.hero-content {
  position: relative;
  z-index: 2;

  max-width: 900px;
  text-align: center;
  color: #fff;
}

.hero-content h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-content p {
  font-size: 18px;
  line-height: 1.6;
  max-width: 650px;
  margin: 0 auto 35px;
  color: #eaeaea;
}

/* BOTÕES */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero .btn {
  padding: 14px 28px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* BOTÃO PRINCIPAL */
.hero .btn.primary {
  background: #ffffff;
  color: #111;
  border: 1px solid var(--black);
  box-shadow: 0px 0px 5px var(--shadow);
  display: flex;
  align-content: center;
}

.hero .btn.primary svg{
  width: 29px;
  padding-right: 10px;
}

.hero .btn.primary:hover {
  background: #e5e5e5;
}

/* BOTÃO SECUNDÁRIO */
.hero .btn.secondary {
  border: 1px solid #ffffff;
  color: #ffffff;
}

.hero .btn.secondary:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* ========================= */
/* RESPONSIVO */
/* ========================= */

@media (max-width: 768px) {
  .hero {
    height: 90vh;
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .hero-content p {
    font-size: 16px;
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .hero .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}
