/* Font imports */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

/* All */
*, *:before, *:after {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size:14px;
}

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

ul li {
    list-style-type: none;
}

/* Titles */
h1 {
    padding:5px;
}

h2 {
    font-size:46px;
    text-align:center;
    line-height:55px;
}

h3 {
    font-size:22px;
    color:#444444;
}

h4 {
    text-align:center;
    font-size:22px;
    margin-bottom:20px;
}

h5 {
    text-align:center;
    font-size:20px;
    margin:20px;
}

h6 {
    color:#FFF;
    font-size:20px;
    display:flex;
    align-items: center;
}

/* Container */
.container {
    width:100%;
    max-width:1060px;
    margin:0 auto;
    padding:20px;
}

/* Header */
header {
    background:#000;
    color:#FFF;
    font-size:18px;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index: 9999;
}

header .container {
    display:flex;
    justify-content: space-between;
    align-items: center;
    height:70px;
}

header h6 img {
    margin-right:10px;
}

header nav ul {
    display:flex;
}

header nav ul#mobile-menu {
    display:none !important;
}

header nav ul li {
    margin-left:15px;
}

header nav ul li:last-child a {
    background:#FC935F;
    color:#FFF;
    border-radius:20px;
    padding:5px 10px;
}

header nav ul li a:hover {
    border-bottom:2px solid #E19535;
}

header nav ul li:last-child a:hover {
    background:#FFF !important;
    color:#000 !important;
    border:none !important;
}

/* Apresentação */
#apresentacao {
    margin-top:70px;
    background:url('./../images/banner-matiz.png') no-repeat center #FFBB66;
}

#apresentacao .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height:400px;
}

#apresentacao img {
    max-width:80%;
}

/* Gestão */
#gestao {
    background:url('./../images/background-black-gestao.png') no-repeat center #000;
    padding:40px 20px;
    color:#FFF;
}

#gestao .container > p {
    font-size:36px;
    text-align: center;
    padding:20px 0;
    line-height:45px;
}

/* Equipe */
#equipe {
    background:url('./../images/efeito-bg-portifolio.png') no-repeat center #FFBB66;
    padding:40px 20px;
    font-size:30px;
}

#equipe .container {
    display:flex;
    align-items: center;
    justify-content: space-between;
}

#equipe .container img {
    margin-right:15px;
    height:300px;
}

/* Quem Somos */
#quem-somos {
    background:#000;
    color:#FFF;
    padding:40px 20px;
}

#quem-somos .container > p {
    font-size:36px;
    text-align: center;
    padding:40px 0;
    line-height:45px;
}

#people {
    width:100%;
    display:flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.person {
    display:flex;
    flex-direction: column;
    width:32%;
    max-width:400px;
    color:#000;
    padding:20px;
    background:#FFF;
}

.person img {
    width:calc(100% + 40px);
    margin-left:-20px;
    margin-top:-20px;
    margin-bottom:20px;
}

.person p {
    display:block;
}

/* Porfolio */
#portfolio {
    background:url('./../images/efeito-bg-portifolio.png') no-repeat center bottom #FFBB66;
    padding:40px 20px;
}

#portfolio .container {
    display:flex;
    flex-wrap: wrap;
}

#portfolio .container div {
    background:rgba(255, 255, 255, 0.5);
    padding: 40px 20px 40px 110px;
    margin:10px;
    width:calc(50% - 20px);
}

#portfolio .container div:before {
    border-radius:50%;
    height:80px;
    width:80px;
    content: ' ';
    display:flex;
    align-items: center;
    justify-content: center;
    position:absolute;
    margin-left:-90px;
}

#portfolio .container div:before img {
    max-width:100%;
}

#portfolio-funding:before {
    background:url('./../images/icone-portifolio-1.png') no-repeat center #FC935F;
}

#portfolio-pricing:before {
    background:url('./../images/icone-portifolio-2.png') no-repeat center #FC935F;
}

#portfolio-recebiveis:before {
    background:url('./../images/icone-portifolio-3.png') no-repeat center #FC935F;
}

#portfolio-resultados:before {
    background:url('./../images/icone-portifolio-4.png') no-repeat center #FC935F;
}

#portfolio ul li {
    padding: 5px;
}

#portfolio ul li ul li {
    margin-left:25px;
    list-style-type: disc;
}

/* Fale Conosco */
#fale-conosco {
    background:url('./../images/background-contato.png') no-repeat center bottom #DDD;
    padding:40px 20px;
}

#fale-conosco form {
    width:100%;
    max-width:600px;
    margin:0 auto;
    text-align:center;
}

label {
    text-align:left;
    display: block;
    width:100%;
}

label span {
    font-size:16px;
    padding-left:10px;
}

input {
    height: 42px;
}

textarea {
    min-height: 100px;
    resize:vertical;
}

input, textarea {
    font-family:inherit;
    border:1px solid #CDCDCD;
    border-radius:4px;
    width:100%;
    display:block;
    margin-bottom:10px;
    font-size:16px;
    line-height:32px;
    padding:5px;
}

button {
    height:42px;
    background:#FC953F;
    color:#000;
    border-radius:20px;
    padding:0 20px;
    border:none;
    margin:0 auto;
    font-size:16px;
}

.g-recaptcha {
    margin:15px;
    text-align:center;
}

.g-recaptcha div {
    margin:0 auto;
}

/* Footer */
footer {
    background:#000;
    color:#FFF;
    font-size:14px;
}

footer .container {
    display:flex;
    justify-content: space-between;
    align-items: center;
    height:70px;
}

footer h6 img {
    margin-right:10px;
}

footer nav ul {
    display:flex;
}

footer nav ul li {
    margin-left:15px;
}

footer nav ul li a:hover {
    border-bottom:2px solid #E19535;
}

/* Modals */
#cookies {
    background: rgba(0, 0, 0, 0.9);
    color:#FFF;
    position:fixed;
    text-align:center;
    bottom:0;
    left:0;
    width:100%;
    padding:10px;
}

#lgpd, #politica, #atmosfera {
    display: none;
    position: fixed;
    text-align: left;
    color: #FFF;
    z-index: 99999;
    overflow: hidden;
    transition: all 0.15s ease-out;
    height: 100%;
    width: 100%;
    overflow-y: scroll;
    background: rgba(0, 0, 0, 0.9);
    top: 0;
    right: 0;
    flex-direction: column;
    justify-content: center;
}

#lgpd .container, #politica #lgpd .container, #atmosfera #lgpd .container {
    padding:40px 20px;
}

#lgpd p, #politica p, #atmosfera p {
    padding:10px;
}

iframe {
    margin-top:20px;
    max-width:100%;
}

#whatsapp {
    background:#2CC54E;
    color:#FFF;
    border-radius:4px;
    position:fixed;
    bottom:10px;
    right:10px;
    padding:5px;
    z-index: 2000;
}

/* Back to Top */
#back {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
    width: 30px;
    height: 30px;
    text-align: center;
    border-radius: 4px;
    position: fixed;
    bottom: 50px;
    right: 10px;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    line-height: 50px;
    font-weight: normal;
    font-style: normal;
    font-size: 12px;
    color: #fff;
}

#back img {
    max-height:20px;
}

#back:hover {
    cursor: pointer;
    background:#E19535;
}

#back:active {
    background-color: #071538;
}

#back.show {
    opacity: 1;
    visibility: visible;
}

.error {
    color: #721C24;
    background-color: #F8D7DA;
    border-color: #F5C6CB;
}

.message {
    padding: 10px;
    border-radius: 4px;
    font-size: 14px;
    margin-bottom: 15px;
    text-align: left;
    width: 100%;
}

/* Menu */
@media only screen and (max-width: 900px) {
    header nav ul#mobile-menu {
        display: block !important;
    }

    header nav #full-menu a {
        width:50%;
        margin:5px auto;
        padding:20px;
        display:block;
    }

    header nav #full-menu a:hover {
        background:#FFF !important;
        color:#000 !important;
        border:none !important;
        border-radius:20px !important;
    }
    header nav #full-menu {
        display:flex !important;
        flex-direction: column;
        justify-content: center;

        position: fixed;

        z-index: 99999;
        overflow:hidden;
        transition: all 0.15s ease-out;
        height: 100%;
        background: rgba(0, 0, 0, 0.9);
        top: 0;
        right: 0;
        width: 100%;
        max-width: 0;
        text-align:center;
    }
}

.no-mobile {
    display:none;
}

@media only screen and (max-width: 800px) {
    #portfolio .container div {
        width: calc(100% - 20px) !important;
    }
}

@media only screen and (max-width: 700px) {
    .person {
        width:100%;
        display: flex;
        margin:10px auto;
    }

    #equipe .container {
        flex-direction: column;
        text-align:center;
    }

    #apresentacao .container {
        display:flex !important;
    }

    #gestao .container > p {
        font-size: 30px;
        padding: 15px 0;
        line-height: 36px;
    }

    h2 {
        font-size:40px;
        line-height:45px;
    }

    h3 {
        font-size:20px;
    }

    h4 {
        font-size:20px;
        margin-bottom:20px;
    }

    h6 {
        font-size:16px;
    }
}
