/* ==========================
   BUSCA IMÓVEIS MI360
   VERSÃO ESTÁTICA (SEM POSITION)
========================== */

.mi360-busca{
  width: calc(100% - 30px);
  max-width: 1280px;
  margin: 0 15px 0 15px;
  padding: 16px;
  box-sizing: border-box;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: rgba(0,0,0,0.35); /* preto translúcido */
  border-radius: 10px;
}

/* ===== DESATIVA LAYER DE FUNDO ===== */
.mi360-busca-bg{
  display: none;
}

/* ===== CONTEÚDO NORMAL ===== */
.mi360-busca-content{
  width: 100%;
}

/* Caixa do formulário */
.mi360-busca-form{
  padding: 0;
}

/* Grid */
.mi360-busca-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: end;
}

/* Labels */
.mi360-field label{
  display: block;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 6px;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
}

/* Inputs e selects */
.mi360-field select,
.mi360-field input{
  width: 100%;
  height: 46px;
  padding: 0 10px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.95);
  font-size: 16px;
  color: #111;
  box-sizing: border-box;
}

.mi360-field select:focus,
.mi360-field input:focus{
  outline: none;
  border-color: #E0AA00;
  box-shadow: 0 0 0 3px rgba(224,170,0,0.35);
}

/* Botão */
.mi360-btn-wrap button{
  width: 100%;
  height: 46px;
  border: none;
  border-radius: 8px;
  background: #E0AA00;
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: background .15s ease;
}

.mi360-btn-wrap button:hover{
  background: #c99600;
}

/* ===== DESKTOP GRID ===== */
@media (min-width: 768px){
  .mi360-busca-grid{
    grid-template-columns: 1.1fr 1fr 1fr 1.1fr 1fr;
    gap: 14px;
  }
}

/* ===== TÍTULO DO MÓDULO ===== */
.mi360-busca-title{
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.2px;
  text-align: center;
  color: #FFFFFF;
}

/* Desktop */
@media (min-width: 768px){
  .mi360-busca-title{
    font-size: 25px;
  }
}