.adote {
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 560px;
    padding-top: 80px;
    padding-bottom: 80px;

}

.adote-content {
    width: 70%;
}

.adote-call>h2 {
    font-size: 38px;
    font-weight: 500;
    color: var(--cor-fonte-2);
}

.adote-text h3 {
    color: var(--cor-fonte-3);
}


.adote-text {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
}

.adote-text ul {
    list-style-type: disc;
}

.adote-text li {
    padding-bottom: 10px;
}

.adote-text-left {
    display: flex;
    flex-direction: column;
    width: 50%;
}

.adote-text-left h3 {
    font-size: 40px;
    margin: 0;
}

.adote-text-left p {
    font-size: 23px;
}

.adote-text-center {
    width: 33%;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.adote-text-center h3 {
    font-size: 100px;
    margin: 0;
}

.adote-text-center p {
    width: 50%;
    font-size: 18px;
    text-align: center;
    margin: 0;
}

.adote-text-right {
    width: 50%;
    display: flex;
    flex-direction: column;
}

.adote-text-right h3 {
    font-size: 40px;
    margin: 0;
}

.adote-text-right p {
    font-size: 18px;
    text-align: center;
    margin: 0;
}

@media (max-width: 1024px) {
    .adote {
        height: auto;
        padding-top: 40px;
        padding-bottom: 40px;

    }

    .adote-content {
        width: 80%;
    }

    .adote-text {
        display: flex;
        justify-content: center;
        gap: 60px;
        margin-top: 50px;
        flex-direction: column;
    }

    .adote-text-center p {
        width: 100%;
        font-size: 18px;
        text-align: center;
        margin: 0;
    }

    .adote-text-left {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .adote-text-right {
        width: 100%;
        display: flex;
        flex-direction: column;
    }


}