@media (max-width: 420px) {
  .container-detalhes { padding: 1rem; }
  .card img { height: 160px; }
}

/*GERAL*/
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Jura", sans-serif;
  position: relative;
  overflow-y: auto;
  background-color: #000;
}

/*IMAGEM DE FUNDO*/
body > img {
  position: fixed; /*tava absolute*/
  inset: 0; /*top: 0; right: 0; bottom: 0; left:0;*/
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(60%);
  z-index: -1;
}

/*CONTAINER*/
.container-detalhes {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 2rem;
}

/*CARD*/
.card {
  width: 360px; /*tava 100%*/
  max-width: 90vh;
  overflow: auto;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  background-color: rgba(255, 255, 255, 0.95);
  display: flex;
  flex-direction: column;
}

.card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.card-body {
  padding: 1.5rem;
  text-align: center;
}

.card-title {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 1.25rem;
  color: #000;
}

.card-text {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  text-align: justify;
}

/*BOTÃO*/
.card .btn {
  border-radius: 25px;
  padding: 10px 30px;
  background-color: #007bff;
  border: none;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
  font-weight: 600;
}

.card .btn:hover {
  background-color: #0056b3;
}



