﻿/*BUSCA*/
.busca-form {
  position: relative;
  width: 100%;
  max-width: 550px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
   
}

    .busca-form input[type="search"] {
  width: 100%;
  border: none;
  padding: 14px 50px 14px 18px; /* espaço à direita pro botão */
  font-size: 16px;
  outline: none;
  background: #fff;
  text-align: center;
  border-radius: 50px; /* 👈 adiciona isso */
}

  .busca-form button {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  
  background: transparent;
  border: none;
  font-size: 20px;
  color: #555;
  cursor: pointer;
}

    .busca-form button:hover {
  color: #000;
  transform: translateY(-50%) scale(1.1);
}
    .busca-form button::before {
      content: "🔍";
      font-size: 20px;
    }

    .autocomplete-list {
      position: absolute;
      top: 100%;
      left: 0;
      background: #fff;
      border: 1px solid #ccc;
      border-top: none;
      max-height: 200px;
      overflow-y: auto;
      z-index: 10;
    }

    .autocomplete-item {
      padding: 10px;
      cursor: pointer;
    }

    .autocomplete-item.hovered,
    .autocomplete-item:hover {
      background-color: #f0f0f0;
    }

    @media (max-width: 600px) {
      .busca-form {
        max-width: 100%;
        margin: 0 12px;
      }

      .busca-form input[type="search"] {
        font-size: 14px;
      }
    }
	
	/*FIM BUSCA*/
