/* =========================================
   HERO SECTION (HOME)
   ========================================= */
.hero {
  /* Caminho ajustado: volta uma pasta (../) para achar img */
  background-image: url("../img/templo_hero.png");
  background-size: cover;
  background-position: center;

  height: 90vh;
  display: flex;
  align-items: flex-end; /* Alinha embaixo no Desktop */
  padding: 0 60px 80px 60px;
  justify-content: space-between;
  gap: 2rem;
}

.hero-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 600px;
  flex: 1;
}

.hero-content {
  width: 100%;
  color: #fff;
  background-color: rgba(41, 62, 92, 0.85);
  border-radius: 15px;
  backdrop-filter: blur(5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  padding: 20px;
}

.hero-title {
  font-family: "Oswald", sans-serif;
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.hero-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 1.3rem;
  opacity: 0.9;
}

.botoes-hero {
  display: flex;
  gap: 15px;
}

.hero button {
  background-color: rgba(41, 62, 92, 0.85);
  backdrop-filter: blur(5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: none;
  color: white;
  border-radius: 5px;
  font-size: 24px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.1s;
}

.hero button:hover {
  transform: scale(1.2);
}

section {
  padding: 60px 20px;
}

/* RESPONSIVO DA HOME */
@media (max-width: 810px) {
  .hero {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 40px 20px;
    height: 90vh;
    min-height: 80vh;

    /* FIX MOBILE: Empurra tudo para baixo */
    justify-content: flex-end;
    padding-bottom: 60px;
  }

  .botoes-hero {
    justify-content: center;
    margin-top: 15px;
  }

  .hero-content h1,
  .hero-title {
    font-size: 2rem;
  }
}

.card-content p,
.card-content .short-desc,
.card-content .desc {
  white-space: pre-wrap;
}
