/* DEFINIÇÃO DA COR AZUL EXTRAÍDA DA TUA IMAGEM */
.azul-evento {
    color: #1d4ed8 !important;
  }
  
  /* BOTÃO DE LUPA MINIMALISTA NO CANTINHO */
  .btn-lupa-discreta {
    background: transparent;
    border: none;
    color: #1d4ed8;
    font-size: 1.35rem;
    padding: 4px 8px;
    cursor: pointer;
    transition: transform 0.2s ease, color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .btn-lupa-discreta:hover {
    transform: scale(1.15);
    color: #1e40af;
  }
  
  .btn-lupa-discreta.active {
    color: #1d4ed8;
    text-shadow: 0 0 10px rgba(29, 78, 216, 0.3);
  }
  
  /* CONTAINER DA BARRA COM ANIMAÇÃO SLIDE */
  .search-wrapper {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: max-height 0.35s ease-out, opacity 0.25s ease, transform 0.25s ease;
  }
  
  .search-wrapper.open {
    max-height: 200px;
    opacity: 1;
    transform: translateY(0);
  }
  
  /* BARRA DE FILTROS */
  .search-filter-bar {
    background: var(--surface-color, #ffffff);
    border: 1px solid rgba(29, 78, 216, 0.15);
    border-radius: 6px;
    padding: 12px 18px;
  }
  
  .search-filter-bar .input-group {
    border: 1px solid #dee2e6;
    border-radius: 6px;
    overflow: hidden;
    background-color: var(--nav-hover-color, #f8f9fa);
    transition: all 0.3s ease;
  }
  
  .search-filter-bar .input-group:focus-within {
    border-color: #1d4ed8;
    box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.15);
    background-color: #ffffff;
  }
  
  .search-filter-bar .form-control {
    border: none;
    background: transparent;
    box-shadow: none !important;
    font-size: 0.95rem;
    padding: 9px 12px;
    font-family: var(--default-font, sans-serif);
    color: var(--default-color, #212529);
  }
  
  .search-filter-bar .input-group-text {
    border: none;
    font-size: 0.9rem;
  }
  
  .small-label {
    font-weight: 600;
    color: #495057;
    font-size: 0.85rem !important;
  }
  
  .btn-limpar {
    border-radius: 6px;
    padding: 10px;
    font-size: 1rem;
  }
  
  .btn-limpar:hover {
    background-color: #dc3545;
    border-color: #dc3545;
    color: #ffffff;
  }
  
  @media (max-width: 991px) {
    .search-wrapper.open {
      max-height: 500px;
    }
  }
  
  /* IMAGENS SITE */
  .portfolio-item img {
      width: 100%;           
      height: 250px;         
      object-fit: cover;     
      object-position: center; 
      border-radius: 8px;    
      transition: transform 0.3s ease; 
  }
  
  .portfolio-item:hover img {
      transform: scale(1.05);
  }