
section {
    overflow-y: hidden;
    }
    
.planos{
    position: relative;
    height: 800px;
    background: #FFF0DE;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: black;
}

.planos button{
    width: 295px;
    height: 51px;
    background: #FFAE47;
    border-radius: 10px;
    margin-top: 20px;
    border: none;
    color: white;
}

.planos img{
    width: 750px;
    height: 442px;
}

.planos button:hover{
    background-color: #FFB95F;
}

/* responsividade mobile  */
@media (max-width: 768px) {

    .planos {
        display: flex;
        justify-content: center;
        height: 600px;
    }

    .planos p{
        width: 97%;
    }

    .planos img {
        margin-top: 15px;
        width: 90%;
        height: auto;
    }

    .planos button{
        margin-top: 35px;
        width: 90vw;
      margin-left: auto; 
      margin-right: auto; 
    }

}
