.feedback {
    width: 100%;
    height: 100vh;
    padding-top: 500px;
    padding-bottom: 800px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-items: center;
    align-items: center;
    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #E9FCDD 47%,
        #D3F8B8 100%
    );
}

.feedback h1 {
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 60px;
    font-weight: 700;
    color: #2F642D;
    width: 650px;
    
}

.feedback h2 {
    color: #2F642D;
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 200;
    width: 60%;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 150px;
}

.feedback-cards {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 50px;
    align-items: center;
    
}

.card {
    width: 399px;
    height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 35px;
    border: none;
    border-radius: 36px;
    box-shadow: 0px 4px 4px #0000003e;
    background: linear-gradient(
        140deg,
        #FFFBFB 0%,
        #FFFBFB 60%,
        #D9F3C7 100%
    );
}

.card-profile {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    margin-bottom: 10px;
}

.delta-img {
    width: 130px;
    height: 130px;
    border-radius: 100%;
}

.nildo-img{
    width: 80px;
    height: 80px;
    border-radius: 100%;
}

.card-profile p {
    font-size: 20px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    color: #2F642D;
    padding-left: 15px;
}

.card p {
    font-family: 'Kite One', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #2F642D;
    margin-top: 10px;
}


/* responsividade */
/* laptops médios */
@media (max-width: 1280px) {
  .feedback h2 {
        font-size: 26px;

    }
}

/* mobile grande */
@media (max-width: 770px) {
   .feedback-cards {
        flex-direction: column;
    }
}



/* mobile pequeno */
@media (max-width: 480px) {
   .feedback h1 {
        font-size: 46px;
         width: 500px;

    }

    .feedback h2 {
        font-size: 22px;
        width: 90%;

    }
}

@media (max-width: 425px) {
    .feedback h1 {
        font-size: 36px;
         width: 450px;

    }
}

