:root {
    --background-color: #141c24;
    --secondary-color: #2d3748;


    --text-color: #ffffff; 
    --secodary-text-color: #434445;
    --accent-color: #4a5568; 
    --highlight-color: #1a202c; 
}

.pesquisa {
    position: relative;
    height: 50px;
}

.pesquisa .pergunta {
    background-color: var(--secondary-color);
    border: 0;
    border-radius: 20px;
    font-size: 18px;
    padding: 15px;
    height: 50px;
    width: 50px;
    gap: 10px;
    transition: width 0.3s ease;
}

.botao {
    background-color: var(--secodary-text-color);
    border: 0;
    color: var(--text-color);
    cursor: pointer;
    font-size: 24px;
    position: absolute;
    top: 0%;
    left: 0%;
    height: 50px;
    width: 50px;
    transition: transform 0.3s ease;
    border-radius: 20px;
}

.botao:focus,
.pergunta:focus {
    outline: none;
    color: aliceblue;
}

.pesquisa.active .pergunta{
    width: 200px;
}

.pesquisa.active .botao{
    transform: translateX(198px);
}

.autocomplete {
    position: relative;
    width: 300px;
}

.options-list {
    position: absolute;
    background-color: var(--highlight-color);
    color: var(--text-color);
    border: 1px solid #ccc;
    border-radius: 4px;
    margin: 0;
    padding: 0;
    list-style-type: none;
    width: 100%;
    z-index: 1000;
    max-height: 150px;
    overflow-y: auto;
    display: none;
}

.options-list li {
    padding: 10px;
    cursor: pointer;
    color: var(--text-color);
}

.options-list li:hover {
    background-color: var(--accent-color);
}