*,
*:before,
*:after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--colorDafaut);
}

:root {
    --colorDafaut: #336075;
    --colorDafautTwo: #336075;
}

img {
    border: none;
    max-width: 100%;
}

ul,
ol {
    list-style: none;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5 {
    margin: 0;
    line-height: 1.1;
    font-family: 'Rubik', sans-serif;
}

a {
    color: #fff;
}

    a:hover {
        color: orange;
        text-decoration: none;
    }

.content {
    text-align: center;
}

.micon {
    font-size: 30px;
    position: relative;
    padding-right: 5px;
}

.mtxt {
    font-size: 14px;
    position: absolute;
    margin: 0px;
    padding: 0px;
    top: 3px;
    left: 6px;
    color: white;
}

.titulo {
    font-size: 26px;
    padding-bottom: 10px;
    margin-bottom: 30px;
    color: var(--colorDafautTwo);
    font-weight: 700;
    text-align: center;
    position: relative;
}

    .titulo:after {
        content: "";
        height: 2px;
        max-width: 480px;
        width: 100%;
        position: absolute;
        background: var(--colorDafautTwo);
        left: 0;
        bottom: 0;
    }

    .titulo:before {
        content: "";
        position: absolute;
        top: 100%;
        left: 50%;
        margin-left: -12px;
        border-left: 12px solid transparent;
        border-right: 12px solid transparent;
        border-top: 12px solid var(--colorDafautTwo);
    }

    .titulo span {
        position: relative;
    }

        .titulo span:after {
            content: "";
            height: 2px;
            width: 100%;
            position: absolute;
            background: var(--colorDafautTwo);
            left: 0;
            bottom: -8px;
        }

/* nav-toggle */
#nav-toggle {
    position: fixed;
    display: none;
    border: 2px solid #fff;
    z-index: 15;
    background: var(--colorDafautTwo);
    padding: 15px;
    right: -2px;
    top: -2px;
    border-bottom-left-radius: 8px;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}

    #nav-toggle span {
        border-radius: 1px;
        background: #fff;
        height: 2px;
        width: 30px;
        display: block;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        -webkit-transition: all .4s ease;
        transition: all .4s ease;
    }

        #nav-toggle span:nth-child(2) {
            margin: 6px 0;
        }

    #nav-toggle.active span:nth-child(1) {
        -webkit-transform: rotate(45deg) translate3d(6px, 6px, 0);
        transform: rotate(45deg) translate3d(6px, 6px, 0);
    }

    #nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    #nav-toggle.active span:nth-child(3) {
        -webkit-transform: rotate(-45deg) translate3d(6px, -5px, 0);
        transform: rotate(-45deg) translate3d(6px, -5px, 0);
    }

/* header */

.header__nav--logo {
    margin: 40px 0 20px 0;
}

.header__nav ul li {
    font-size: 20px;
    font-family: 'Rubik', sans-serif;
    text-transform: uppercase;
    margin-bottom: 10px;
}

    .header__nav ul li .btn-primary {
        margin-top: 10px;
    }

.header__content {
    position: absolute;
    width: 100%;
    font-size: 2em;
    font-weight: bold;
    color: #fff;
    text-align: center;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}

@media(max-width: 959px) {
    #nav-toggle {
        display: block;
    }

    .header {
        margin-bottom: 40px;
    }

    .header__nav {
        z-index: 10;
        position: fixed;
        background: rgba(32, 183, 117, .95);
        left: 0;
        top: -100%;
        width: 100%;
        height: 100%;
        text-align: center;
        padding: 20px 0;
        overflow-y: auto;
        transition: top .4s ease;
        -webkit-transition: top .4s ease;
    }

        .header__nav.active {
            top: 0%;
        }
}

/* especificacoes */
.especificacoes {
    padding: 40px 0;
    text-align: center;
    color: var(--colorDafautTwo);
}

    .especificacoes span {
        display: block;
    }

    .especificacoes i {
        font-size: 60px;
    }

/* sobre */
.sobre {
    margin-bottom: 40px;
    padding: 20px 0 0 0;
}

    .sobre .content {
        max-width: 740px;
        margin: 0 auto;
    }

/* infra */
.infra {
    padding: 20px 0;
}

    .infra ul {
        margin: 30px -4px 0 0;
        display: inline-block;
        width: 100%;
    }

        .infra ul li {
            margin-bottom: 30px;
            width: 50%;
            float: left;
            display: inline-block; /*necessary*/
        }

            .infra ul li i {
                color: var(--colorDafautTwo);
                font-size: 30px;
                width: 40px;
            }

            .infra ul li span {
                display: block;
                margin-top: 5px;
            }

/* galeria */
.galeria {
    padding: 20px 0 0 0;
}

    .galeria h3 {
        color: var(--colorDafautTwo);
        font-size: 1.2em;
        font-weight: bold;
        margin-bottom: 10px;
    }

.galeria__tumbs {
    margin-bottom: 10px;
    position: relative;
}

.galeria__tumbs--view {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(32, 183, 117, .9);
    color: #fff;
    pointer-events: none;
    font-size: 3em;
    transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    opacity: 0;
}

    .galeria__tumbs--view i {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
    }

.galeria__tumbs:hover .galeria__tumbs--view {
    opacity: 1;
}

/* localização */
.localizacao {
    padding: 20px 0;
}

    .localizacao iframe {
        width: 100%;
        height: 500px;
    }

/* contato */
.contato {
    padding: 20px 0;
    color: var(--colorLigth);
    font-size: 22px;
    margin-bottom: 40px;
}

    .contato .content {
        max-width: 700px;
        margin: 0 auto;
    }

.contato__header {
    text-align: center;
}

    .contato__header h2 {
        font-size: 30px;
    }

.contato button {
    color: #fff;
    background: var(--colorDafautTwo);
}

    .contato button:hover {
        color: #fff;
        background: rgba(26, 43, 59, 0.9);
    }

.whats {
    height: 60px;
    position: fixed;
    bottom: 10px;
    right: 0;
    z-index: 100;
}

/* BreakPoints */
@media(min-width: 480px) {
    .titulo:after {
        left: 50%;
        transform: translateX(-50%);
    }

    .infra ul {
        display: inline-block;
        margin-right: 30px;
    }
}

@media(min-width: 768px) {
    .header {
        min-height: 500px;
    }

    .header__content {
        font-size: 3em;
    }

    .infra ul li {
        width: calc(100%/3);
    }
}

@media(min-width: 960px) {
    .header__nav.fixed {
        background: var(--colorDafautTwo);
        padding: 10px 0;
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        z-index: 20;
    }

    .header__nav .container {
        display: flex;
        align-items: center;
    }

    .header__nav ul,
    .header__nav--logo {
        flex: 1;
    }

    .header__nav--logo {
        margin: 0;
        max-width: 140px;
    }

    .header__nav ul {
        text-align: right;
    }

        .header__nav ul li {
            font-size: 13px;
            display: inline-block;
            margin: 0 -4px 0 20px;
        }

            .header__nav ul li .btn-primary {
                padding: 3px 10px;
                margin-top: -3px;
                font-size: 13px;
            }

    .infra ul li {
        width: calc(100%/4);
    }

    .galeria,
    .sobre,
    .infra,
    .localizacao,
    .contato {
        padding: 86px 0 0 0;
    }
}

@media(min-width: 1024px) {
    .header__nav--logo {
        max-width: 180px;
    }

    .header__nav ul li,
    .header__nav ul li .btn-primary {
        font-size: 16px;
    }
}

@media(min-width: 1144px) {
}

@media(min-width: 1280px) {
}