.badge {
  font-size: 0.9rem;
  border-radius: 0.4rem;
}

.card-img-top {
  object-fit: cover;
  height: 250px;
}

.btn-group .btn {
  width: 30px;
  height: 30px;
  padding: 0;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
}

.card-body strong {
  font-weight: 600;
}

.text-success {
  color: #28a745 !important;
}

/* ============================================================
   🔎 SEARCHBAR HOME — FULL WIDTH PREMIUM
============================================================ */
.home-searchbar-container {
  width: 100%;
  background: #ffffff;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.home-searchbar-form {
  position: relative;
  width: 100%;
  max-width: 900px; /* limita para que se vea premium */
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.home-searchbar-input {
  width: 100%;
  padding: 0.9rem 1rem 0.9rem 2.8rem;
  border-radius: 50px;
  border: 1px solid #ddd;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.07);
}

.home-searchbar-input:focus {
  outline: none;
  border-color: #E30613;
  box-shadow: 0 0 8px rgba(227, 6, 19, 0.3);
}

.search-icon {
  position: absolute;
  left: 14px;
  font-size: 1.2rem;
  color: #555;
}

.home-searchbar-btn {
  margin-left: 10px;
  padding: 0.8rem 1.6rem;
  border-radius: 50px;
  background: #E30613;
  border: none;
  color: #fff;
  font-weight: 600;
  transition: 0.3s ease;
}

.home-searchbar-btn:hover {
  background: #b9040f;
}

