/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 22/09/2022, 17:56:29
    Author     : Fernando Sales Panont
*/

.barra-pesqisa-home {
    margin-top: 2.4%;
}
.barra-pesqisa-home2 {
    margin: 10px 0 10px 0;
}

.barra-pesqisa-home form {
    border: 1px solid rgba(255,255,255,1);
    border-radius: 15px;
}
.barra-pesqisa-home2 form {
    border: 1px solid rgba(255,255,255,1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;    
}

.input-pesquisar {
    background: rgba(255,255,255,0.7);
    width: 92.5%;
    padding: 7px 15px;
    margin: 5px -4px 5px 5px;
    border: 0 none;
    border-radius: 10px 0 0 10px;
    transition: 0.3s;
}

.input-pesquisar:focus {
    background: #FFF;
    box-shadow: 0 0 0 0;
    border: 0 none;
    outline: 0;
} 

.input-pesquisar:focus ~ button {
    background: #FFF;
} 

.input-pesquisar:focus ~ form {
    border: 1px solid rgba(255,255,255,0.08);
}

.barra-pesqisa-home button {
    background: rgba(255,255,255,0.7);
    padding: 12px 15px;
    border: 0 none;
    border-radius: 0 10px 10px 0;
    transition: 0.3s;
}
.barra-pesqisa-home2 button {
    background: rgba(255,255,255,0.7);
    padding: 7px 15px;
    border: 0 none;
    border-radius: 0 10px 10px 0;
    transition: 0.3s;
}

.barra-pesquisa {    
    background: var(--cor-bg-barrapesquisa);    
    box-shadow: 0 4px 30px rgb(0 0 0 / 10%);
    backdrop-filter: blur(4.8px);
}