body {
    max-width: 100%;
    overflow-x: hidden !important;
    color: black;
}

.form-flex {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    gap: 10px;
}
.select2
.form-flex-metade {
    position: relative;
    display: flex;
    align-items: center;
    width: 50%;
}

.form-fale h1 {
    font-family: arial black;
    font-weight: bolder;
    text-transform: uppercase;
    font-size: 30px;
}

.form-fale p {
    padding-top: 1%;
    padding-bottom: 1%;
}

.quadrado {
    width: 20px;
    height: 20px;
    border: 23px solid;
    border-top-color: currentcolor;
    border-right-color: currentcolor;
    border-bottom-color: currentcolor;
    border-left-color: currentcolor;
    border-color: #f39c12 #f39c12 #f39c12 #f39c12;
}

.title {
    display: inline-flex;

}

.form-flex div {
    flex: 1;
}

#ufSelect {
    width: 100%;
}

#cidadeSelect {
    width: 100%;
}

.form-quant {
    position: relative;
    display: flex;
    align-items: center;
}

.check1 {
    display: flex;
    width: 100%;

}

.check1 span {
    padding-left: 1%;
}

.form-fale input,
.form-fale select {
    background: #ffffff !important;
    padding: 0.25rem 0.5rem;
    line-height:1;
    border-radius: 0.2rem;
    max-width: 100%;
    box-shadow: none;
    /* Remover a sombra do input e do select */

}
textarea {
    background: #ffffff !important;
}

input[name=quant] {
    width: 20%;
    margin-bottom: 0 !important;
}

.form-fale p {
    font-size: 16px !important;
    text-transform: uppercase;
    font-weight: 800;
    padding-top: 3%;
}
.red-text {
    color: red; /* Define a cor do texto como vermelho */
    font-weight: normal;
    text-transform: capitalize; /* Remove o negrito */
}

.form-fale span,
textarea {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
}

.form-fale select {
    min-width: 100%;
    max-width: 100%;
    box-shadow: none;
}

input[type="checkbox"],
input[type="radio"] {
    margin: none;
}

b {
    font-family: arial black;
    text-transform: uppercase;
    font-size: 30px;
}

.form-fale select {
    -webkit-appearance: none;
    /* Remover a aparência padrão do select no Safari/iOS */
    -moz-appearance: none;
    /* Remover a aparência padrão do select no Firefox */
    appearance: none;
    /* Remover a aparência padrão do select */
    background-color: #ffffff !important;
    cursor: pointer;
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1) !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='black' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    /* Adicione uma seta personalizada */
    background-repeat: no-repeat;
    background-position: right 8px center;
    padding: 0.25rem 2rem 0.25rem 0.5rem;
    /* Ajuste o espaçamento */
    box-shadow: none !important;
}

select::-ms-expand {
    display: none;
}

/* Media queries */
@media only screen and (max-width: 600px) {

    /* Estilos para o texto do placeholder */
    .form-fale input::placeholder,
    .form-fale select::placeholder,
    .form-fale textarea::placeholder,select {
        font-size: 16px;
        /* Tamanho do texto do placeholder */
        color: #999;
        /* Cor do texto do placeholder */
        /* Outros estilos conforme necessário */
    }

    .form-flex div {

        flex: 1 100%;
        /* Ajustar a largura para 100% em telas menores que 600px */
    }

    .form-flex {
        display: block;
    }

    .form-flex div:nth-child(3),
    .form-flex div:nth-child(4) {
        flex: 1 1 100%;
        /* Ajustar a largura dos campos de número e CEP para 100% em telas menores que 600px */
    }

    .form-fale input,
    .form-fale select {

        width: 100%;
        padding: 3% !important;
        margin-bottom: 10px;
        border: 1px solid #ccc;
        border-radius: 4px;
    }

    textarea {
        font-size: 20px;
    }

    b {
        font-size: 20px;
    }

    p {
        font-size: 15px !important;
    }
    span{
        font-size: 15px;
    }
    .form-fale select {
        background: #ffffff !important;
        border: 1px solid #ccc;
        max-width: 100%;
    }

    .check1 {
        width: 100%;
    }

    .check input {
        width: auto;
    }

    input[name=quant] {
        width: 100%;
    }

    input[name=nsei] {
        width: auto;
    }
}