input[type="text"], input[type="tel"], select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    outline: none;
    background: none;
}

/* Início da estrutura do Formulário*/
    .form-container {
        width: 90%;
        margin: 20px;
        padding: 20px;
        text-align: center;
        font-family: 'Montserrat', sans-serif;
        background-color: #f6f6f6;
        border-radius: 20px;
        box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
    }

    .step {
        display: none;
    }

    .step.active {
        display: block;
    }

    .step h2 {
        color: #181818;
        font-weight: 600; /* Bold added */
        font-size: 25px;
        line-height: 35px;
    }

    .step b {
        color: #fff;
        background: linear-gradient(to bottom, rgba(102, 214, 255) 0%, rgba(6, 185, 246) 50%, rgba(48, 141, 251) 100%);
        padding: 3px 5px;
        border-radius: 5px;
    }

    .step p {
        color: #666;
        margin: 20px;
        font-size: 16px;
    }

    button[type="button"] {
        background-color: transparent;
        border: none;
        border-radius: 40px;
        padding: 10px 20px;
        cursor: pointer;
        color: #0f0f0f;
        font-family: 'Montserrat', sans-serif;
        font-weight: 500;
    }

    .btn-group button.selected {
        background: linear-gradient(to bottom, rgba(102, 214, 255) 0%, rgba(6, 185, 246) 50%, rgba(48, 141, 251) 100%);
        color: #ffffff;
        border-radius: 40px;
    }

    .btn-group {
        display: flex;
        justify-content: space-around;
        margin-bottom: 20px;
        background-color: #efefef;
        border-radius: 40px;
        padding: 8px;
    }

    .btn-group button {
        flex: 1;
        margin: 0 5px;
    }

    #amount {
        flex: 1;
        margin: 0 10px;
    }

    #rs, #centavos {
        font-size: 14px;
        font-weight: light; 
        margin-bottom: 20px;
        padding-right: 5px;
        color: #333;
    }

    #amount-value {
        font-size: 40px;
        font-weight: bold;
        margin-bottom: 20px;
        color: #000000;
    }

    #consorcio-form input[type="range"] {
        width: 95%;
        height: 10px;
        border-radius: 5px;
        background: #000000;
        outline: none;
        padding: 0px;
        margin: 20px 0px 0px 0px;
    }

    .range-container {
        display: flex;
        align-items: center;
        padding: 10px 15px;
    }

    #range-min, #range-max {
        width: auto;
        text-align: center;
        color: #333;
        font-size: 14px;
        font-weight: normal;
        font-style: italic;
    }

    #range-min-rs {
        width: auto;
        text-align: start;
        color: #333;
        font-size: 14px;
        font-weight: normal;
        margin-right: 4px;
    }

    #range-max-rs {
        width: 100%;
        text-align: end;
        color: #333;
        font-size: 14px;
        font-weight: normal;
        margin-right: 4px;
    }

    #simular-btn {
        background-color: #db6a00;
        border: none;
        border-radius: 40px;
        padding: 10px 20px;
        cursor: pointer;
        font-family: 'Montserrat', sans-serif;
        color: #fff;
        font-size: 15px;
        width: 100%;
        font-weight: bold;
        text-transform: uppercase;
        margin-top: 15px;
    }

    #step-2 h2 {
        color: #000000;
        font-weight: bold; /* Bold added */
        font-size: 25px;
        margin-bottom: 20px;
    }

    .input-group {
        position: relative;
        margin-bottom: 20px;
    }

    .input-group input[type="text"], .input-group input[type="email"], .input-group input[type="tel"] {
        width: 100%;
        padding: 10px 20px;
        border: 2px solid #ccc;
        border-radius: 5px;
        font-size: 16px;
        color: #505050;
        background-color: #fff;
    }

    .input-group input:focus {
        border-color: #131313;
        box-shadow: 0 0 5px rgba(54, 54, 54, 0.75);
    }

    select {
        width: 100%;
        padding: 10px 15px;
        border: 2px solid #ccc;
        border-radius: 5px;
        font-size: 16px;
        color: #505050;
        font-family: 'Montserrat', sans-serif;
        background-color: #fff;
    }

    select:focus {
        border-color: #131313;
        box-shadow: 0 0 5px rgba(54, 54, 54, 0.75);
    }

    .input-group label {
        position: absolute;
        top: 12px;
        left: 20px;
        color: #505050;
        transition: 0.3s;
        pointer-events: none;
    }

    .input-group input[type="text"]:focus + label, .input-group input[type="email"]:focus + label, .input-group input[type="tel"]:focus + label {
        opacity: 0;
        transform: translateY(-10px);
    }

    .input-group input:focus + label, .input-group input:not(:placeholder-shown) + label, .input-group select:not([value=""]) + label {
        opacity: 0;
        transform: translateY(-10px);
    }

    .ui-autocomplete {
        max-height: 150px;  /* Limita a altura visível para exibir 5 opções */
        overflow-y: auto;  /* Adiciona barra de rolagem vertical */
        overflow-x: hidden;  /* Remove barra de rolagem horizontal */
        background-color: #fff !important;  /* Fundo branco */
        font-family: 'Montserrat', sans-serif !important;  /* Fonte personalizada */
    }

    .ui-menu-item-wrapper {
        padding: 10px 15px !important;  /* Espaçamento das opções */
        cursor: pointer;
    }
    
    .canal {
        color: #146f96;
        font-style: italic;
        font-size: 14px;
    }

    .button-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 20px;
    }

    #back-btn-2 {
        background-color: transparent;
        border: none;
        border-radius: 40px;
        padding: 10px 20px;
        cursor: pointer;
        color: #0f0f0f;
        font-family: 'Montserrat', sans-serif;
        font-weight: 500;
    }

    #result-btn {
        background-color: #db6a00;
        border: none;
        border-radius: 40px;
        color: #fff;
        cursor: pointer;
        padding: 10px 20px;
        font-size: 16px;
        width: auto;
    }

    #mensagem {
        color: rgb(114, 14, 14);
        padding-top: 15px;
    }

/* Fim da estrutura do Formulário*/
/* Fim da estrutura da seção capa */

/* Início da seção tabela */
.section-tabela, .section-feedbacks {
    color: #181818;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 25px;
    text-align: center;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
}

.tabela-desktop {
    display: none;
}

.section-tabela button, .section-feedbacks button, .section-vantagens button {
    background: linear-gradient(to bottom, rgba(102, 214, 255) 0%, rgba(6, 185, 246) 50%, rgba(48, 141, 251) 100%);
    border: none;
    border-radius: 40px;
    color: #fff;
    cursor: pointer;
    margin-top: 15px;
    padding: 10px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    width: 90%;
}

/* Fim da seção tabela */

/* Início da seção vantagens */
.section-vantagens-black * {
    position: relative;
    z-index: 1; /* Garante que o conteúdo fique acima da sobreposição */
}

.section-vantagens-black {
    background-color: #181818;
    padding: 40px 30px;
    position: relative; /* Necessário para o pseudo-elemento */
    overflow: hidden; /* Para garantir que o pseudo-elemento se ajuste à área da seção */
}

.section-vantagens-black::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(133, 201, 251, 0.25) 0%, rgba(133, 201, 251, 0) 100%); 
    z-index: 0; /* Fica atrás do conteúdo */
}

.section-vantagens {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.section-vantagens h2 {
    color: #fff;
    text-align: center;
}

.group-vantagens div {
    background-color: #e0e0e0;
    width: 100%;
    padding: 20px;
    margin-bottom: 30px;
    border: none;
    border-radius: 10px;
    align-items: start;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
} 

.vantagens img {
    width: 15%;
    padding-bottom: 15px;
}

.vantagens h3 {
    padding-bottom: 15px;
    font-size: 18px;
    text-transform: uppercase;
}

.vantagens p {
    font-size: 16px;
    color: #181818;
}

/* Fim da seção vantagens */

/* Início da seção feedbacks */
.section-feedbacks h2 {
    color: #181818;
    text-align: center;
    font-size: 25px;
    margin-bottom: 20px;
}

.feedbacks-subtitulo {
    color: #181818;
    text-align: center;
    font-size: 16px;
    margin-bottom: 20px;
}

#simular-btn-feedbacks1 {
    display: none;
}

.section-feedbacks div {
    position: relative;
    width: 100%;
    max-width: 560px;
    height: auto;
}

.video-placeholder {
    width: 100%;
    height: auto;
    border: none;
    border-radius: 10px;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    margin-bottom: 30px;
}

.lazy-video {
    display: none;
    width: 100%;
    height: 245px;
    border: none;
    border-radius: 10px;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
    margin-bottom: 30px;
}

.defesa {
    padding: 15px;
    font-size: 12px;
    color: #8a8a8a;
}
/* Fim da seção feedbacks */

/* Início do rodapé */
.rodape, .politica {
    background-color: #181818;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.rodape-black {
    background-color: #181818;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.rodape img {
    width: 150px;
    margin: 20px;
}

.rodape a, .rodape p {
    color: white;
    margin: 20px;
}

.politica a {
    color: white;
    margin-bottom: 25px;
}

/* Para telas maiores (tablet e desktop) */
@media (min-width: 768px) {
        button {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .section-vantagens button:hover, .section-tabela button:hover, .section-feedbacks button:hover {
            background-color: #91e1fa;
            color: #000000;
            transform: translateY(-5px); /* Leva o botão 5px para cima */
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
        }

        #simular-btn:hover, #result-btn:hover {
            background-color: #000000;
            color: #db6a00;
            transform: translateY(-5px); /* Leva o botão 5px para cima */
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
        }

        #back-btn-2:hover {
            background-color: #cccccc;
            color: #000000;
            transform: translateY(-5px); /* Leva o botão 5px para cima */
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
        }

        button[type="button"]:hover {
            background-color: #e8e8e8;
        }
    /* Início da estrutura do Formulário*/
        .form-container {
            max-width: 30%;
            margin: 40px;
            padding: 30px;
            text-align: center;
            font-family: 'Montserrat', sans-serif;
            background-color: #f6f6f6;
            border-radius: 20px;
        }

        .step {
            display: none;
        }

        .step.active {
            display: block;
        }

        .step h2 {
            color: #000000;
            font-weight: bold; /* Bold added */
            font-size: 25px;
        }

        .step p {
            color: #666;
            margin: 20px;
        }

        #amount {
            flex: 1;
            margin: 0 10px;
        }

        #rs, #centavos {
            font-size: 16px;
            font-weight: light; 
            margin-bottom: 20px;
            padding-right: 5px;
            color: #333;
        }

        #amount-value {
            font-size: 40px;
            font-weight: bold;
            margin-bottom: 20px;
            color: #000000;
        }

        #consorcio-form input[type="range"] {
            width: 100%;
            height: 10px;
            border-radius: 5px;
            background: #000000;
            outline: none;
            padding: 0px;
            margin: 20px 0px 0px 0px;
        }

        .range-container {
            display: flex;
            align-items: center;
            padding: 10px 15px;
        }

        #range-min, #range-max {
            width: auto;
            text-align: center;
            color: #333;
            font-size: 14px;
            font-weight: normal;
        }

        #range-min-rs {
            width: auto;
            text-align: start;
            color: #333;
            font-size: 14px;
            font-weight: normal;
        }

        #range-max-rs {
            width: 100%;
            text-align: end;
            color: #333;
            font-size: 14px;
            font-weight: normal;
        }

        #step-2 h2 {
            color: #000000;
            font-weight: bold; /* Bold added */
            font-size: 25px;
            margin-bottom: 20px;
        }

        .input-group {
            position: relative;
            margin-bottom: 20px;
        }

        .input-group input[type="text"], .input-group input[type="email"], .input-group input[type="tel"] {
            width: 100%;
            padding: 10px 20px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 16px;
            color: #505050;
        }

        .input-group input:focus {
            border-color: #131313;
            box-shadow: 0 0 5px rgba(54, 54, 54, 0.75);
        }

        select {
            width: 100%;
            padding: 10px 15px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 16px;
            color: #505050;
            font-family: 'Montserrat', sans-serif;
        }

        select:focus {
            border-color: #131313;
            box-shadow: 0 0 5px rgba(54, 54, 54, 0.75);
        }

        .input-group label {
            position: absolute;
            top: 12px;
            left: 20px;
            color: #505050;
            transition: 0.3s;
            pointer-events: none;
        }

        .input-group input[type="text"]:focus + label, .input-group input[type="email"]:focus + label, .input-group input[type="tel"]:focus + label {
            opacity: 0;
            transform: translateY(-10px);
        }

        .input-group input:focus + label, .input-group input:not(:placeholder-shown) + label, .input-group select:not([value=""]) + label {
            opacity: 0;
            transform: translateY(-10px);
        }

        #mensagem {
            color: rgb(114, 14, 14);
            padding: 0px;
        }

    /* Fim da estrutura do Formulário*/
    /* Fim da seção capa*/

    /*Início da seção tabela*/
    .section-tabela h2 {
        font-size: 35px;
    }

    .tabela-mobile {
        display: none;
    }

    .tabela-desktop {
        display: block;
        max-width: 75%;
    }

    .section-tabela button {
        max-width: 40%;
    }
    /*Fim da seção tabela*/

    /*Início da seção vantagens*/
    .section-vantagens {
        padding: 50px;
        align-items: center;
        width: 100%;
        max-width: 1600px;
        margin: 0 auto;
    }

    .section-vantagens h2 {
        font-size: 35px;
    }

    .group-vantagens div:hover {
        background-color: #f0f0f0;
    }

    .group-vantagens {
        display: flex;
        margin: 20px 0px;
    }

    .group-vantagens div {
        width: 25%;
        margin: 20px;
    }

    .section-vantagens button {
        max-width: 40%;
    }
    /* Fim da seção vantagens

    /* Inicio da seção feedbacks */
    .section-feedbacks div {
        max-width: 100%;
        padding: 20px 30px 0px 30px;
        align-items: center;
    }

    .feedback-principal {
        display: flex;
        width: 100%;
    }

    .titulo-feedbacks h2 {
        font-size: 35px;
        text-align: start;
    }

    .titulo-feedbacks p {
        font-size: 18px;
        text-align: start;
    }

    .video-titulo {
        max-width: 50%;
    }

    .video-titulo .lazy-video {
        height: 365px;

    }

    #simular-btn-feedbacks1 {
        display: block;
        max-width: 40%;
        margin-bottom: 15px; 
    }

    #simular-btn-feedbacks2 {
        display: none;
    }

    .video-serie {
        display: flex;
        max-width: 100%;
    }

    .video-serie img, iframe {
        width: 30%;
        margin: 20px;
    }

    /* Fim da seção feedbacks */
    /* Fim da seção feedbacks */
    .rodape {
        flex-direction: row;
        justify-content:space-between;
        padding: 10px 100px;
        text-align: center;
        width: 100%;
        max-width: 1600px;
        margin: 0 auto;
    }

    .rodape img {
        width: 150px;
        margin: 20px;
    }
    
    .rodape p {
        color: white;
        margin: 20px;
    }
}
