.title {
    font-size: 52px;
    margin: 50px 0px;
    color: #000000;
}

.hero-banner {
    margin-bottom: 50px;
    border-radius: 8px;
}

.jubileu-logo {
    float: left;
    margin-bottom: 10px;
}

.cards-group {
    display: flex;
    border-radius: 8px;
    gap: 24px;
    margin: 30px 0px 50px 0px;
}

.card {
    flex: 1;
}

.scaled {
    transition: transform 300ms;
    margin-bottom: 22px;
}

.scaled:hover {
    transform: scale(1.1);
}

html {
    scroll-behavior: smooth;
}

.botao-preto {
    display: flex;
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 20px 32px;
    cursor: pointer;
    font-size: 16px;
    justify-self: center;
    margin-bottom: 50px;
    justify-content: center;
    text-align: center;
}

.text-card p {
    font-size: 16px;
    margin: 0 0 5px 0;
}

.text-bold {
    font-weight: bold;
    margin-bottom: 4px;

}

.text-color {
    color: #828282;
    margin: 0;
}

.text p {
    font-size: 16px;
    margin-bottom: 28px;
}

.text ol {
    margin-bottom: 20px;
    list-style-type: disc;
    margin-left: 12px;
}

.list {
    margin-top: 50px;
    margin-bottom: 30px;
}

.list li {
    list-style-type: "- ";
}

.buttons {
    display: flex;
    gap: 100px;
    justify-content: center;
    margin: 50px 0px;
}

.botao-preto-1 {
    display: flex;
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-radius: 32px;
    padding: 24px 32px;
    cursor: pointer;
    font-size: 16px;
    margin: 40px 0px;
    justify-self: center;
    justify-content: center;
    text-align: center;

}

.list-numb li {
    list-style-type: none;
    margin-left: -12px;
    font-size: 16px;
}

@media (max-width: 1024px) {
    .title {
        font-size: 32px;
        margin: 30px 0px;
    }

    .hero-banner {
        margin-bottom: 30px;
    }

    .list {
        margin: 0px;
    }

}

@media (max-width: 768px) {
    .title {
        font-size: 24px;
        margin: 30px 0px;
    }

    .hero-banner {
        margin-bottom: 30px;
    }

    .cards-group {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        border-radius: 8px;
        gap: 20px;
        margin: 10px 0px 40px 0px;
    }

    .scaled {
        width: 100%;
    }

    .buttons {
        display: grid;
        flex-direction: column;
        gap: 16px;
        margin: 40px 0px;
    }

    .botao-preto {
        margin: 0;
    }

    .jubileu-logo {
        width: 200px;
    }

    .list {
        margin: 0px;
    }
}