/* =====================================================
   FINDER COMPACTO — BANCO SOL
===================================================== */

.finder-section {
  padding: 60px 0;
  background: linear-gradient(180deg, #FFD200 0%, #f6c700 100%);
}

/* HEADER */

.finder-header {
  text-align: center;
  margin-bottom: 30px;
}

.finder-header h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.finder-header p {
  font-size: 0.95rem;
  color: #222;
  margin-bottom: 20px;
}

/* Toggle */

.finder-toggle {
  display: inline-flex;
  background: #fff;
  padding: 4px;
  border-radius: 40px;
}

.toggle-btn {
  border: none;
  padding: 8px 20px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.9rem;
  background: transparent;
  cursor: pointer;
  transition: all .2s ease;
}

.toggle-btn.active {
  background: #000;
  color: #FFD200;
}

/* Layout */

.finder-layout {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 25px;
}

/* Filtros */

.finder-filters {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.finder-filters label {
  font-weight: 600;
  font-size: 0.85rem;
}

.finder-filters select {
  padding: 8px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 0.9rem;
}

.btn-search {
  background: #000;
  color: #FFD200;
  border: none;
  padding: 10px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: .2s;
}

.btn-search:hover {
  opacity: 0.85;
}

/* Resultados */

.finder-results {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.08);
  min-height: 180px;
}

/* Conteúdo toggle */

.result-content {
  display: none;
}

.result-content.active-content {
  display: block;
}

/* Responsivo */

@media (max-width: 992px) {
  .finder-layout {
    grid-template-columns: 1fr;
  }
}


/* =====================================
   LINHA SEPARADORA FINDER
===================================== */

.finder-section{
  position:relative;
  padding-bottom:90px;
}

.finder-section::after{
  content:"";

  position:absolute;

  left:50%;
  bottom:30px;

  transform:translateX(-50%);

  width:min(1280px, calc(100% - 40px));
  height:2px;

  border-radius:999px;

  background:
  linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,.25) 15%,
    rgba(255,255,255,.95) 50%,
    rgba(255,255,255,.25) 85%,
    transparent 100%
  );

  pointer-events:none;
}