﻿.filter-container {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 25px 10px;
}

.filter-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 20px;
  border-radius: 16px;
  max-width: 1100px;
  width: 100%;
  transition: all 0.3s ease;
}


.filter-select,
.filter-input {
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
  background: #fdfdfd;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 12px;
  color: #000;
  transition: all 0.3s ease;
  width: 180px;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.filter-select:hover,
.filter-input:hover {
  border-color: #C00000;
}

.filter-select:focus,
.filter-input:focus {
  outline: none;
  border-color: #C00000;
  box-shadow: 0 0 6px rgba(0, 119, 182, 0.3);
}

.filter-select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='gray' height='20' width='20' viewBox='0 0 24 24'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
}

/* BOTÓN */
.btn-filter {
  padding: 10px 18px;
  background: #C00000;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 119, 182, 0.3);
}

.btn-filter:hover {
  background: #C00000;
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0, 119, 182, 0.4);
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .filter-box {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-select,
  .filter-input,
  .btn-filter {
    width: 100%;
  }

  .btn-filter {
    margin-top: 8px;
  }
}
