* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

span {
    font-family: "Poppins", sans-serif;
    color: #7d7c7c;
}

button {
    font-family: "Poppins", sans-serif;
}

h1 span:first-child {
    color: #5db6a1;
}

h1 span:last-child {
    font-weight: 700;
}

ul li a {
    font-family: "Poppins", sans-serif;
}

header {
    background: linear-gradient(0.25turn, #fff, #85aaa2);
    height: 770px;
}

header .title {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 4rem;
    color: #7d7c7c;   
}

header .subtitle {
    font-size: 1.75rem;
}

header nav img {
    width: 20%;
}

i {
    color: #5eb7a2;
}

.navbar .navbar-nav li {
    margin-right: 55px;
}

.btn-colored {
    background-color: #5db6a1;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.25rem;
}

.btn-colored:hover {
    background-color: #0da07e;
    color: #fff;
}

.btn-transparent {
    border: 3px solid #5db6a1;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.25rem;
}

.btn-transparent a {
    color: #5db6a1;
    text-decoration: none;
}

.btn-transparent:hover { 
    background-color: #5db6a1;
    transition: 0.8s;
}

.btn-transparent:hover a {
    color: #fff;
    transition: 0.8s;
}

.btn-transparent-white {
    border: 3px solid #fff;
    padding: 0.5rem 1rem;
    color: #fff;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.25rem;
}

.btn-transparent-white:hover {
    color: #5db6a1;
    background-color: #fff;
    transition: 0.8s;
}

.text-webdoc {
    display: flex;
    align-items: center;
}

.text-webdoc h2{
    font-family: "Poppins", sans-serif;
    color: #5db6a1;
    font-weight: 600;   
}

.text-webdoc h2 span {
    color: #7d7c7c;
    font-weight: 400;
}

.text-webdoc > span {
    color: #7d7c7c;
    font-size: 1.25rem;
    font-weight: 500;
    margin-left: 30px;
}

.nav-link {
    font-size: 1.2rem;
    font-weight: 500;
}

.nav-link:hover {
    color: #000;
}

.section-clientes {
    background-color: #ededed;
}

.section-modulos {
    background: linear-gradient(0.25turn, #fdfefe, #a6d2c7);
}

.section-modulos .title-modulos {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.section-modulos .title-modulos h2 { 
    color: #fff;
    font-size: 2.5rem;
    font-weight: 600;
}

.section-modulos .card-modulos .card {
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    background-color: #ffffff; 
    border-radius: 20px;
    align-items: center;
    height: 100px;
}

.section-modulos .card-modulos i {
    color: #5eb7a2; 
    font-size: 1.5rem;
}

.section-modulos .card-modulos span {
    display: flex;
    text-align: center;
}

.client-logo {
    width: 10rem;
}

footer {
    background-color: #5db6a1;
    padding: 3rem 2rem;
}

footer h1,
footer span{
    color: #fff;
}

footer .icons i {
    font-size: 2rem;
    color: #fff;
}

footer .whatsapp-widget {
    position: fixed;
    right: 0;
    z-index: 9999;
    margin-bottom: 30px;
    margin-right: 30px;
    display: flex;
    width: 63px;
    height: 63px;
    background-color: #fff;
    box-shadow: 2px 6px 20px 2px rgba(0,0,0,.2);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    border: 2px solid #dee4e9;
}

footer .whatsapp-widget img {
    width: auto;
    max-width: 100% !important;
}

@media (max-width: 575px) {
    header nav img {
        width: 10rem;
    }

    header .title {
        font-size: 2rem;   
    }

    header .subtitle {
        font-size: 1rem;
    }

    .client-logo {
        width: 10rem;
    }
}

@media (min-width: 576px) {
    /* Celulares maiores */
}

@media (min-width: 768px) {
    /* Tablets */
}

@media (min-width: 992px) {
    header {
        height: 900px;
    }
}

@media (min-width: 1200px) {
    header {
        height: 770px;
    }
}

@media (min-width: 1400px) {
    header {
        height: 850px;
    }

    header nav img {
        width: 15rem;
    }
}