* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}
body{
    font-family: "Ubuntu", sans-serif;
  font-weight: 300;
  font-style: normal;
}
/* parte superior INICIO*/

.home {
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    background: rgb(127, 11, 134);
    background: linear-gradient(171deg, rgba(127, 11, 134, 1) 0%, rgba(28, 9, 121, 0.8589635683374912) 100%, rgba(0, 212, 255, 1) 100%);
}

.img-home {
    display: flex;
    gap: 5px;
}

.logo-oper {
    width: 300px;
    height: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
}

.logo-oper img {
    width: 100%;
}

.logo-promo {
    width: 300px;
    /*background-color: rgb(83, 83, 165);*/
}

.logo-promo img {
    width: 100%;
}

.text-01 {
    color: #ffffff;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 10px;
    font-size: large;

}



/*@media (max-width: 668px) {
    .home {
        flex-direction: column;
        align-items: center;

    }

    .img-home {
        flex-direction: column;
    }
}*/



/* parte superior FIM */

/* valor inicio */


.valor {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;

}


.valor-div {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.valor-div h2 {
    text-align: center;
    margin-bottom: 20px;
}

.valor-div {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
    width: 680px;
}

.item-lista {
    border: 1px solid #7f0b86;
    color: #000000;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.item-lista.checked {
    background-color: #95149c;
}


.span-valor,
.span-promo {
    display: block;
}

.span-valor {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.item-lista span {
    display: block;
    background-color: inherit;
}

.span-valor,
.span-promo {
    margin: 0;
}

.span-promo {
    font-size: 12px;
    color: #000000;

}

/* valor fim*/

/* formulario*/

.form1 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
    max-width: 100%;
    box-sizing: border-box;
}

.num-tel {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    margin-bottom: 15px;
    border: 1px solid #7f0b86;
    width: 680px;
    height: 100px;
}

.num-tel input {
    width: 80%;
    height: 50px;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #D3D3D3;
    outline: none;
    transition: border-color 0.3s ease;

}

#numero:focus,
#numero:focus-within {
    border-color: #7f0b86;
}







.select-operad {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 15px;
    border: 1px solid #7f0b86;
    width: 680px;
    height: 100px;
}

.select-operad select {
    width: 80%;
    height: 50px;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #D3D3D3;
    outline: none;
    transition: border-color 0.3s ease;
}

.div-pag {
    display: flex;
    justify-content: center;
    gap: 15px;
    height: 100%;
}

.collapse-container {
    margin-bottom: 10px;
}

.collapse-btn {
    display: inline-block;
    width: 100%;
    /* Ocupa 100% da largura do container pai */
    padding: 10px 20px;
    background-color: #7f0b86;
    color: white;
    border: none;
    cursor: pointer;
    text-align: left;
    /* Opcional: Alinha o texto à esquerda */
}

.collapse-btn:hover {
    background-color: #800b86d2;
}

.collapse-content {
    display: none;
    padding: 10px;
    
    margin-top: 10px;
    width: 680px;
    /* Faz com que o colapsável ocupe toda a largura disponível */
    box-sizing: border-box;
    /* Garante que o padding e bordas sejam incluídos na largura total */
}



.parent input {
    width: 80%;
    height: 50px;
    margin: 10px;

    padding: 10px;
    border-radius: 10px;
    border: 1px solid #D3D3D3;
    outline: none;
    transition: border-color 0.3s ease;

}

.input-card:focus,
.input-card:focus-within {
    border-color: #7f0b86;
}



.botao1{
    width: 380px;
    height: 50px;
    margin-left: 10px;
    background-color: #7f0b86;
    color: white;
    border: none;
    cursor: pointer;
    
}






@media (max-width: 680px) {
    .home {
        flex-direction: column;
        height: 100%;
    }

    .img-home {
        flex-direction: column;
    }

    .valor-div {
        max-width: 380px
    }

    .form1 {

        padding: 40px;
        border-width: 2px;

    }

    .parent {
        display: flex;
        justify-content: center;
        /* Centraliza as divs filhas horizontalmente */
        align-items: flex-start;
        /* Alinha as divs filhas no topo */
        padding-top: 20px;
        /* Espaçamento opcional do topo */
        max-width: 380px
            /* Garante que o pai ocupe toda a largura */

    }
    

    .num-tel {
        max-width: 380px
    }

    .num-tel input {
        width: 80%;
    }

    .select-operad {
        max-width: 380px
    }

    .select-operad select {
        width: 80%;
    }
    .botao1{
        width: 280px;
        height: 50px;
        
    }
}