:root{
    --verde: #258477;
    --branco: #FFFFFF;
    --cinza: #606060;
}



*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    /* 1rem = 10px */
    font-size: 62.5%;
    font-family: "Montserrat", sans-serif;

    scroll-behavior: smooth;
}

h1{
    font-size: 3.6rem;
}
h2{
    font-size: 3.2rem;
}
h3{
    font-size: 2.8rem;
}
h4{
    font-size: 2.6rem;
}

h5{
    font-size: 2.2rem;
}
h6{
    font-size: 2rem;
}

p{
    font-size: 1.6rem;
    color: #606060;
}


li{
    font-size: 1.6rem;
    color: #606060;
}

img {
    vertical-align: middle;
    border-style: none;
}
.container{
    width: 80%;
    max-width: 1140px;
    margin: 0 auto;
}

.flex{
    display: flex;
    justify-content: center;
    align-items: center;
}

.title-section{
    text-align: center;
    padding: 50px 0;
}

.title-section h2{
    font-weight: 500;
    line-height: 48px;
    color: #258477;
    margin-bottom: 15px;
    
}

.title-section p{
    line-height: 2.3rem;
    max-width: 80%;
    margin: auto;
}

