/* ===============================
   PADRÃO CARD DE HOTÉIS
   =============================== */

.hotel-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform .3s ease, box-shadow .3s ease;
}

.hotel-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
}

.hotel-img {
  height: 220px;
  overflow: hidden;
}

.hotel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.hotel-card:hover .hotel-img img {
  transform: scale(1.08);
}

.hotel-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.hotel-content h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 6px;
}

.hotel-location {
  font-size: 12px;
  font-weight: 700;
  color: #047857;
  margin-bottom: 12px;
}

.hotel-desc {
  font-size: 14px;
  color: #475569;
  margin-bottom: 16px;
}

.badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
}

.badge {
  padding: 6px 10px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.badge.yes {
  background: #ecfdf5;
  color: #047857;
}

.badge.no {
  background: #f1f5f9;
  color: #94a3b8;
  text-decoration: line-through;
}

.hotel-footer {
  margin-top: auto;
  padding-top: 20px;
}

.btn-reserva {
  display: block;
  text-align: center;
  background: #059669;
  color: #fff;
  padding: 14px;
  border-radius: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: background .3s ease;
}

.btn-reserva:hover {
  background: #047857;
}
