.area-info {
    justify-content: center;

    .content {
        display: flex;
        flex-direction: column;
        color: #416fbe;

        .title {
            font-size: var(--font-size-titulo);
            padding: 30px 0 0;
            font-weight: 600;
        }

        .sub-title {
            color: black;
        }

        .sub-text {
            font-size: clamp(13px, 4vw, 22px);
            padding-top: 20px;
            font-weight: 600;
            width: 89%;
        }
    }
}

.cadastre-se {
    flex-direction: column;
    align-items: center;

    .title {
        font-size: var(--font-size-titulo);
        padding: 30px 0;
        font-weight: 600;
        color: #416fbe;
    }

    & a {
        display: flex;
        height: 43px;
        width: 200px;
        background-color: #113deb;
        text-transform: uppercase;
        align-items: center;
        justify-content: center;
        color: #ffff;
    }

    & a:hover {
        background-color: #393230;
    }
}

@media (max-width: 768px) {
    .area-image img{
        max-width: 100%;
    }
}
