select.form-control {
    background-color: #fff !important;
    color: #000;
    /* se quiser garantir o texto preto também */
}

/* CUSTON RADIO LOCAL */
.custom-radio {
    display: inline-block;
    text-align: center;
    margin: 0 15px;
    width: 100px;
    /* Largura fixa para cada radio */
    height: 130px;
    /* Altura fixa para garantir que o layout não mude */
}

.custom-radio input {
    display: none;
    /* Esconde o input real */
}

.custom-radio label {
    display: block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    line-height: 60px;
    background-color: #f0f0f0;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 5px;
    text-align: center;
    /* Centraliza o ícone */
    margin-left: auto;
    margin-right: auto;
}

.custom-radio label i {
    font-size: 24px;
    color: #333;
}

.custom-radio label:hover {
    background-color: #e0e0e0;
}

.custom-radio input:checked+label {
    background-color: #32C36C;
    color: white;
}

.custom-radio input:checked+label i {
    color: white;
}

.custom-radio .radio-text {
    font-size: 14px;
    color: #333;
    display: block;
    text-align: center;
    /* Centraliza o texto */
    width: 100%;
}

/* Centraliza os ícones e o texto */
.radio-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    /* Garante que o conteúdo ocupe todo o espaço */
}

/* ANIMACAO ICONE */
.animacao-icone {
    display: inline-block;
    animation: animacao-icone 1s infinite ease-in-out;
}

@keyframes animacao-icone {
    0% {
        transform: rotate(0deg);
    }

    10% {
        transform: rotate(10deg);
    }

    20% {
        transform: rotate(-10deg);
    }

    30% {
        transform: rotate(10deg);
    }

    40% {
        transform: rotate(-10deg);
    }

    50% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.logo-responsive {
    width: 3vw;
    /* padrão para telas grandes */
    max-width: 60px;
    /* evita que fique grande demais em monitores grandes */
    height: auto;
}

@media (max-width: 768px) {
    .logo-responsive {
        width: 10vw;
        max-width: 40px;
    }
}

@media (max-width: 480px) {
    .logo-responsive {
        width: 15vw;
        max-width: 30px;
    }
}