/* Botão Flutuante */
.btn-busca-flutuante {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #002776;
    color: #fed100;
    border: 3px solid #fed100;
    border-radius: 50px;
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 9998;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s ease;
}

.btn-busca-flutuante:hover {
    transform: scale(1.05);
}

/* Modal / Balão de Busca */
.modal-busca-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal-busca-box {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    width: 90%;
    max-width: 420px;
    position: relative;
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
    border-top: 6px solid #009b3a;
}

.modal-busca-fechar {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    font-weight: bold;
    color: #888;
    cursor: pointer;
}

.modal-busca-box h4 {
    color: #002776;
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.modal-busca-input {
    width: 100%;
    padding: 12px 15px;
    font-size: 1rem;
    border: 2px solid #002776;
    border-radius: 25px;
    outline: none;
}

.modal-busca-resultados {
    margin-top: 10px;
    max-height: 180px;
    overflow-y: auto;
    border-radius: 6px;
}

.modal-busca-resultados div {
    padding: 10px 15px;
    color: #002776;
    font-weight: bold;
    cursor: pointer;
    border-bottom: 1px solid #eee;
}

.modal-busca-resultados div:hover {
    background-color: #fed100;
}