footer {
    width: 100%;
    height: 50px;
    position: fixed;
    bottom: 0;
    display: flex;
    justify-content: end;
    align-items: center;
    box-shadow: 0 -1px 8px #97A6BF;
    z-index: 999;
    background-color: #CBE600;
}

/* Remove bordas, sombras e fundos padrão */
textarea,
select,
input {
    border: none;
    outline: none;
    box-shadow: none;
    background: transparent;
    padding: 0;
    margin: 0;
    resize: none;
    /* Desativa o redimensionamento do textarea */
    font-family: inherit;
    /* Herda a fonte do elemento pai */
}

/* Remove o estilo de seta do select */
select {
    appearance: none;
    /* Remove estilo padrão em navegadores modernos */
    -moz-appearance: none;
    /* Firefox */
    -webkit-appearance: none;
    /* Safari e Chrome */
}

/* Estilo para select - adiciona uma seta personalizada */
select::after {
    content: "▼";
    /* Seta para indicar menu dropdown */
    position: absolute;
    right: 8px;
    pointer-events: none;
    /* Permite que o clique passe para o select */
}

footer img {
    cursor: pointer;
    height: 30px;
    margin-left: 30px;
    margin-right: 30px;
}

input {
    font-size: 17px;
}

button {
    cursor: pointer;
}

button:hover {
    opacity: 0.8;
    transition: 0.3s;
}

@media(max-width: 550px) {
    footer {
        width: 100%;
        height: 50px;
        position: fixed;
        bottom: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        box-shadow: 0 -1px 8px #97A6BF;
        background-color: #CBE600;
    }
}