*,html,body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
}

section {
    width: 100%;
    justify-content: center;
    display: flex;
}

.margin-content {
    margin: 35px 0;
}


/* Disposição dos elementos do conteudo */

.display-flex-colunm-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    position: relative;
}

/* Limit da largura do conteudo */

.width-limit {
    max-width: 1100px;
    width: 100vw;
    height: 100%;
}

/* Position scroll button */

.scroll-button-a {
    position: absolute;
    top: 90%;
}

/* footer style */

footer {
    color: white;
    width: 100%;
    height: max-content;
    display: flex;
    background-color: rgb(47, 118, 194);
    justify-content: space-evenly;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}
.footer-elements {
    height: 100%;
    width: 250px;
}

/* All styles */

ul li {
    font-size: .8rem;
    list-style: none;
    padding: 5px;
}

a {
    text-decoration: none;
    color: inherit;
}

.title{
    font-size: 3.5rem;
    width: 100%;
    text-align: center;
}

.blue-subtitle{
    color: rgb(47, 118, 194);
    font-weight: bold;
}

.subtitle{
    font-size: 2.5rem;
    width: 100%;
    text-align: center;
}

.paragraf{
    width: 100%;
    font-size: 1rem;
    text-align: justify;
    line-height: 1.6;
    padding: 10px;
}

/* btn action */

.cta a{
    text-decoration: none;
    color: white;
}
.cta{
    background-color: rgba(66, 60, 246, 0.8);
    padding: 15px 30px;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 50px;
    margin: 40px 0;
    transition: background-color 0.3s ease;
    height: max-content;
    width: 100%;
    text-align: center;
}
.cta:hover {
    background-color: #496897;
    cursor: pointer;
}

/* end */

/* Container img-text flex */

.img-text-container {
    width: 100%;
    height: max-content;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    align-items: start;
    margin: 25px;
}

.img-text-elements {
    min-width: 384px;
    width: 45%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

@media(min-width: 822px){
    .img-text-elements .subtitle {
        text-align: start;
    }
}
@media(max-width: 822px){
    .img-text-elements {
        width: 100%;
    }
    .subtitle {
        font-size: 1.25rem;
    }
    .title{
        font-size: 1.5rem;
    }
    .paragraf{
        font-size: 0.875rem;
    }
    .display-flex-colunm-center {
        align-content: center;
    }
}

.img-text-elements li {
    list-style: circle;
}

.reverse {
    flex-wrap: wrap-reverse;
}

.bolder {
    font-weight: bold;
}

/* end */





