* {
    box-sizing: border-box;
    margin:  0;
    padding: 0;
    font-family: 'Kumbh Sans', sans-serif;
}

.navbar {
    background: #eeeeee;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar__container {
    display: flex;
    justify-content: space-between;
    height: 80px;
    z-index: 1;
    width: 100%;
    max-width: 2300px;
    margin: 0 auto;
    padding: 0 10px;
}   

#navbar__logo {
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    font-size: 2rem;
}

.navbar__menu{
    display: flex;
    align-items: center;
    list-style: none;
    text-align: center;
}

.navbar__item {
    height: 80px;
}
.navbar__links {
    color: #131313;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 0 3rem;
    height: 100%;
}
.navbar__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
    width: 100%;
}

.button {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    padding: 10px 20px;
    height: 100%;
    width: 100%;
    border: none;
    outline: none;
    border-radius: 4px;
    background: #f77062;
    color: #fff;
}

.navbar__links:hover {
    color: #f77062;
    transition: all 0.3s ease;
}

@media screen and (max-width: 960px) {
    .navbar__container{
        display: flex;
        justify-content: space-between;
        height: 70px;
        z-index: 1;
        width: 100%;
        max-width: 1300px;
        padding: 0;
    }

    .navbar__menu {
        display: grid;
        grid-template-columns: auto;
        margin: 0;
        width: 100%;
        position: absolute;
        top: -1000px;
        opacity: 0;
        transition: all 0.5s ease;
        height: 50vh;
        z-index: -1;
        background: #eeeeee;
    }
    
    .navbar__menu.active {
        background: #eeeeee;
        top: 100%;
        opacity: 1;
        transition: all 0.5 ease;
        z-index: 99;
        height: 50vh;
        font-size: 1.6rem;
    }

    #navbar__logo {
        padding-left: 25px;
    }

    .navbar__toggle .bar {
        width: 25px;
        height: 3px;
        margin: 5px auto;
        transition: all 0.3s ease-in-out;
        background: #131313;
    }

    .navbar__item {
        width: 100%;
    }

    .navbar__links {
        text-align: center;
        padding: 2rem;
        width: 100%;
        display: table;
    }

    #mobile-menu {
        position: absolute;
        top: 20%;
        right: 5%;
        transform: translate(5%, 20%);
    }

    .navbar__btn {
        padding-bottom: 2rem;
    }

    .button {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 80%;
        height: 70px;
        margin: 0;
    }

    .navbar__toggle .bar {
        display: block;
        cursor: pointer;
    }

    #mobile-menu.is-active .bar:nth-child(2) {
        opacity: 0;
    }
    #mobile-menu.is-active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    #mobile-menu.is-active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}


/* Conteudo */

.main {
    background-color: #ffffff;
}
.main__container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-self: center;
    margin: 0 auto;
    height: auto;
    background-color: #ffffff;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    padding: 0 50px;
}

.main__content h2 {
    font-size: 3rem;
    background-color: #130dbe;
    background-image: linear-gradient(to top, #17155a 0%, #292770 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    
}

.main__content h3 {
    margin-top: 1rem;
    font-size: 2rem;
    font-weight: 700;    
}

.main__img--container {
    text-align: center;
}

#main__img {
    height: 80%;
    width: 80%;
}

@media screen and (max-width : 768px) {
    .main__container{
        display: grid;
        grid-template-columns: auto;
        align-items: center;
        justify-self: center;
        margin: 0 auto;
        height: auto;
    }

    .main__content {
        text-align: center;
        margin-bottom: 2rem;
    }

    .main__content h2 {
        font-size: 2.5rem;
        margin-top: 1rem;
    }

    .main__content h3 {
        font-size: 1.5rem;
        margin-top: 1rem;
    }
}

@media screen and (max-width : 480px) {
    .main__container{
        display: grid;
        grid-template-columns: auto;
        align-items: center;
        justify-self: center;
        margin: 0 auto;
        height: auto;
    }

    .main__content {
        text-align: center;
        margin-bottom: 4rem;
    }

    .main__content h2 {
        font-size: 2rem;
        margin-top: 1rem;
    }

    .main__content h3 {
        font-size: 1.5rem;
        margin-top: 2rem;
    }
}


/* Sobre Nós */

.sobrenos {
    background-color: #ffffff;
}
.sobrenos__container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-self: center;
    margin: 0 auto;
    height: auto;
    background-color: #ffffff;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    padding: 0 50px;
}

.sobrenos__content h2 {
    font-size: 3rem;
    background-color: #130dbe;
    background-image: linear-gradient(to top, #17155a 0%, #292770 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    
}

.sobrenos__content h3 {
    margin-top: 1rem;
    font-size: 2rem;   
}

.sobrenos__img--container {
    text-align: center;
    margin-top: 3rem;
}

#sobrenos__img {
    height: 100%;
    width: 60%;
}

@media screen and (max-width : 768px) {
    .sobrenos__container{
        display: grid;
        grid-template-columns: auto;
        align-items: center;
        justify-self: center;
        margin: 0 auto;
        height: auto;
    }

    .sobrenos__content {
        text-align: center;
        margin-bottom: 2rem;
    }

    .sobrenos__content h2 {
        font-size: 2.5rem;
        margin-top: 1rem;
    }

    .sobrenos__content h3 {
        font-size: 1.5rem;
        margin-top: 1rem;
    }

    .sobrenos__img--container {
        text-align: center;
        margin-top: 4rem;
    }
}

@media screen and (max-width : 480px) {
    .sobrenos__container{
        display: grid;
        grid-template-columns: auto;
        align-items: center;
        justify-self: center;
        margin: 0 auto;
        height: auto;
    }

    .sobrenos__content {
        text-align: center;
        margin-bottom: 4rem;
    }

    .sobrenos__content h2 {
        font-size: 2rem;
        margin-top: 1rem;
    }

    .sobrenos__content h3 {
        font-size: 1.5rem;
        margin-top: 2rem;
    }
    .sobrenos__img--container {
        text-align: center;
        margin-top: 3rem;
    }
}


/* Serviços */





.servicos {
    background-color: #ffffff;
}
.servicos__container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-self: center;
    margin: 0 auto;
    height: auto;
    background-color: #ffffff;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    padding: 0 50px;
}

.servicos__img--container {
    text-align: center;
    margin-top: 2rem;
}

#servicos__img {
    height: 60%;
    width: 60%;
}

.servicos__content h2 {
    font-size: 3rem;
    background-color: #130dbe;
    background-image: linear-gradient(to top, #17155a 0%, #292770 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    
}

.servicos__content h3 {
    margin-top: 1rem;
    font-size: 2rem;
    font-weight: 400;    
}

@media screen and (max-width : 768px) {
    .servicos__container{
        display: grid;
        grid-template-columns: auto;
        align-items: center;
        justify-self: center;
        margin: 0 auto;
        height: auto;
    }

    .servicos__content {
        text-align: center;
        margin-bottom: 3rem;
    }

    .servicos__content h2 {
        font-size: 2.5rem;
        margin-top: 3rem;
    }

    .servicos__content h3 {
        font-size: 1.5rem;
        margin-top: 1rem;
    }
    .servicos__img--container {
        text-align: center;
        margin-top: 1rem;
    }
}

@media screen and (max-width : 480px) {
    .servicos__container{
        display: grid;
        grid-template-columns: auto;
        align-items: center;
        justify-self: center;
        margin: 0 auto;
        height: auto;
    }

    .servicos__content {
        text-align: center;
        margin-bottom: 1rem;
    }

    .servicos__content h2 {
        font-size: 2rem;
        margin-top: 3rem;
    }

    .servicos__content h3 {
        font-size: 1.5rem;
        margin-top: 1rem;
    }

    .servicos__img--container {
        text-align: center;
        margin-top: 3rem;
    }
}



/* Form */



.main__content--form h3{
    margin: 0 auto;
    height: auto;
    background-color: #ffffff;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    padding: 0 130px;
    margin-top: 30px;
    text-align: center;
}

.post__container--form {

    width: 100%;
    height: auto;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 8vh;
    margin-bottom: 14vh;
}

form {
    width: 90%;
    max-width: 600px;
}

.input-group {
    margin-bottom: 30px;
    position: relative;
}

input, textarea {
    width: 100%;
    padding: 10px;
    outline: 0;
    border: 1px solid #131313;
    color: #131313;
    background: transparent;
    font-size: 15px;
}

textarea {
    max-width: 100%;
    min-width: 100%;
    min-height: 40px;
}

label { 
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    padding: 10px;
    color: #131313;
    cursor: text;
    transition: 0.2s;
}

button {
    padding: 10px 0;
    color: #131313;
    outline: none;
    background-color: #f77062;
    border: 1px solid #131313;
    width: 100%;
    cursor: pointer;
}

input:focus~label,
input:valid~label,
textarea:focus~label,
textarea:valid~label {
    top: -35px;
    font-size: 14px;
}

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

.row .input-group {
    flex-basis: 48%;
}




/* Parceiros */



.parceiros__container {
    display: inline-flex;
    align-items: left;
    justify-self: left;
    height: auto;
    background-color: #ffffff;
    z-index: 10;
    width: 100%;
    max-width: 1300px;
    padding: 20px 40px;
}

.parceiros__content {
    margin-top: 1rem;
    font-size: 2rem;
    font-weight: 700;
    width: auto;
    margin-right: 10px;
}

.parceiros__img--container1 {
    text-align: left;
    margin-top: 2rem;
}

.parceiros__img--container2 {
    text-align: left;
    margin-top: 2rem;
}

.parceiros__img1 {
    display: flex;
    width: auto;
}

.parceiros__img2 {
    display: flex;
    width: auto;
}

#Cin {
    max-height: 100%;
    max-width: 130px;
}
#Sika {
    max-height: 100%;
    max-width: 130px;
}

@media screen and (max-width : 768px) {
    .parceiros__container {
        display: block;
        height: auto;
    }
    
    
    .parceiros__content {
        margin-top: 1rem;
        font-size: 2rem;
        font-weight: 700;
        width: auto;
        margin-right: 10px;
    }
}

@media screen and (max-width : 480px) {
    .parceiros__container {
        display: block;
        height: auto;
    }
    
    
    .parceiros__content {
        margin-top: 1rem;
        font-size: 2rem;
        font-weight: 700;
        width: auto;
        margin-right: 10px;
    }
}



/* Rodapé */

.footer__container {
    background-color: #eeeeee;
    display: flex;
    flex-direction: column;
    justify-content: left;
    align-items: left;
    text-align: start;
    height: auto;
    padding: 1rem ;
}

.footer__item {
    height: auto;
}

.footer__link {
    color: #131313;
    display: inline-flex;
    text-decoration: none;
    padding: 0 3rem;
    height: 100%;

}

@media screen and (max-width : 768px) {
    .footer__container {
        background-color: #eeeeee;
        display: flex;
        flex-direction: column;
        justify-content: left;
        align-items: left;
        height: auto;
        padding: 1rem;
    }
    
    .footer__item {
        height: auto;
    }
    
    .footer__link {
        color: #131313;
        display: inline-flex;
        text-decoration: none;
        padding: 0 3rem;
        height: 100%;
    
    }


}

@media screen and (max-width : 480px) {
    .footer__container {
        background-color: #eeeeee;
        display: flex;
        flex-direction: column;
        justify-content: left;
        align-items: left;
        height: auto;
        padding: 1rem;
    }
    
    .footer__item {
        height: auto;
    }
    
    .footer__link {
        color: #131313;
        display: inline-flex;
        text-decoration: none;
        padding: 0 3rem;
        height: 100%;
    
    }

}
