body {
    background-color: var(--background);
    display: flex;
    flex-wrap: wrap;
    font-family: 'Inter', sans-serif;
    justify-content: space-around;
    align-items: center;
    min-height: 100vh;
    font-weight: bold;
    text-align: center;
    margin: 0; /* Removido a margem padrão do corpo */
}

h1 {
    font-weight: bold;
}

a {
    text-decoration: none;
    color: unset;
    display: block;
}

.main-selec {
    height: auto; /* Alterado para altura automática */
    margin: 0;
    overflow: hidden;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px; /* Alterado o padding para 20px */
}

.col {
    flex: 1 100%; /* Alterado para ocupar 100% da largura em todas as telas */
}

.fixed-button-container {
    position: fixed;
    top: 70%;
    right: 10px;
    transform: translateY(-50%);
    z-index: 999;
}

.fixed-button {
    display: block;
    background-color: #007bff;
    color: #fff;
    padding: 5px 7px;
    margin-bottom: 10px;
    text-align: center;
    text-decoration: none;
    border-radius: 25%;
}

.fixed-button:hover {
    cursor: pointer;
}

#botaofalar {
    background-color: #007bff;
    margin-top: 7px;
}

#botaofalar.mudarCor {
    background-color: #ff9eda;
}

@media only screen and (min-width: 768px) {
    .col {
        flex: 1 40%!important;
    }
}

img {
    max-width: 100%;
    height: auto;
}
