.floating-card-module {
  width: 100%;
}

/* === DESKTOP (3 colunas) === */
.cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  justify-content: center;
}

/* CARD */
.floating-card {
  position: relative;
  border-radius: 14px;
  height: 390px;
  overflow: hidden;
}

.floating-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* CAIXA FLUTUANTE */
.floating-card .card-content {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  width: 80%;
  border: 1.2px solid #454957;
  padding: 20px;
  text-align: center;
  border-radius: 7px;
  background: #0c1e36;
  color: white;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.floating-card h3 {
  margin: 0;
  font-size: 22px;
  color: #FFF;
  font-weight: 500;
}

.floating-card .subtitle {
  margin-top: 8px;
  font-size: 14px;
  opacity: 0.9;
}

.floating-card .price {
  margin-top: 8px;
  font-size: 52px;
  font-weight: 500;
  color: #15A4FB;
}

/* === TABLET (2 colunas) === */
@media (max-width: 1024px) {
  .cards-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .floating-card {
    height: 360px;
  }

  .floating-card .price {
    font-size: 46px;
  }
}

/* === MOBILE (1 coluna) === */
@media (max-width: 768px) {
  .cards-container {
    grid-template-columns: 1fr;
  }

  .floating-card {
    height: 330px;
  }

  .floating-card .card-content {
    width: 85%;
    padding: 16px;
  }

  .floating-card
