body {
    display: flex;
    padding: 80px 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 64px;
    flex: 1 0 0;
    align-self: stretch;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("./assets/image/background.svg");    
}

.box-info {
    display: flex;
    padding: 48px 90px;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    border-radius: 40px;
    background: #FFF;
}

.info-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.info-title {
    color: #33519B;
    text-align: center;
    font-family: 'Lato', sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
}

.info-description {
    color: #000;
    text-align: center;
    font-family: Lato;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; 
}

.box-social {
    display: flex;
    flex-direction: row;
    gap: 24px;
}

@media (max-width: 768px) {
    body {
        padding: 48px 24px;
        background-image: url("./assets/image/background-mobile.svg");
    }

    .box-info {
        padding: 40px 24px;
        gap: 24px;
    }

}