*{
    font-family: "Chivo", sans-serif;
}

header {
    padding: 30px 0;
    border-bottom: solid 1px #FFFFFF80;
    z-index: 1;
    position: relative;

    .nav-link{
        font-weight: 300;
        font-size: 16px;
        line-height: 84px;
        letter-spacing: 0.3px;
        color: #fff !important;
    }

    .nav-efeito{
        margin: 0 32px;
        display: flex;
        justify-content: center;
        position: relative;
        
        &::after {
            content: '';
            height: 2px;
            width: 0;
            background: #DD6D34;
            position: absolute;
            bottom: 26px;
            transition: all .25s;
        }
        &:hover::after {
            width: calc(100% - 20px);
        }
    }

    .box-social-central {
        li{
            list-style-type: none;
        }
    }
}

#mySidenav a {
    position: fixed;
    right: -185px;
    transition: 0.3s;
    padding: 23px;
    width: 250px;
    text-decoration: none;
    font-size: 15px;
    color: white;
    border-radius: 0;
    z-index: 1;
    text-transform: uppercase;
}

.atalho {
    position: fixed;
    right: 0;
    transition: 0.3s;
    padding: 8px 0;
    width: 65px;
    text-decoration: none;
    font-size: 12px;
    color: white;
    border-radius: 0;
    z-index: 1;

    background-color: #393939;
    top: 265px;
    text-align: center;
    
}

#mySidenav a:hover {
  right: -10px;
}

#cont-atalho {
  top: 300px;
  background-color: #393939;
  transition: 300ms all ease-in-out;
}

#tel-atalho {
  top: 370px;
  background-color: #393939;
  transition: 300ms all ease-in-out;
}

#whats-atalho {
  top: 441px;
  background-color: #00CC45;
  transition: 300ms all ease-in-out;
}

.icon-atalho{
    margin-right: 18px;
}


#mySidenav #cont-atalho:hover{
    background-color: #009651;
}

#mySidenav #tel-atalho:hover{
    background-color: #DD6D34;
}



footer {
    padding: 90px 0 0;
    background-color: #2C2C2C;
    color: #fff;
    text-transform: uppercase;
    overflow: hidden;

    .logo-footer{
        margin-bottom: 28px;
    }

    h5 {
        font-weight: 500;
        font-size: 16px;
        line-height: 100%;
    }

    .form-footer {
        font-weight: 400;
        font-size: 14px;
        line-height: 150%;
        margin-bottom: 30px;
        display: flex;
        align-items: flex-end;

        label {
            text-transform: initial;
        }

        input{
            height: 48px;
            border-radius: 0;
            font-weight: 400;
            font-size: 16px;
            line-height: 150%;
        }
    }

    .menu-footer {
        margin: 0;
        padding: 0;

       li {
            list-style-type: none;
            font-weight: 200;
            font-size: 16px;
            line-height: 250%;
            color: #fff;
        }
    }

    .btn-form-footer {
        font-weight: 400;
        font-size: 16px;
        line-height: 150%;
        letter-spacing: 0.8px;
        background-color: #707070;
        display: block;
        width: 100%;
        height: 50px;
        border-radius: 0;
        color: #fff;
        transition: 300ms all ease-in-out;

        &:hover{
            background-color: #009651;
        }
    }

    h4{
        font-weight: 500;
        font-size: 15px;
        line-height: 22px;
        letter-spacing: 10%;
        text-transform: uppercase;
    }

    .social-footer {
        display: flex;
        margin: 30px 0px 0 0px;
        padding: 0;

        li {
            list-style-type: none;
            margin-right: 46px;
        }
    }

    .copy{
        font-weight: 400;
        font-size: 15px;
        line-height: 190%;
        letter-spacing: 0.8px;
        text-transform: initial;

        span{
            font-weight: 500;
        }

    }

    hr{
        opacity: 1;
        color: #969696;
    }

    .publi-footer {
        font-weight: 300;
        font-size: 15px;
        line-height: 160%;
        text-transform: math-auto;
    }

    .alinhar-final {
        display: flex;
        justify-content: flex-end;
    }

    .linha-separadora {
        height: 100%;
        background-color:#969696;
        width: 1px;
        position: relative;
        left: 30px;

        &::after {
            background-color: #969696;
            background-size: auto;
            display: inline-block;
            width: 1px;
            height: 64px;
            content: "";
            bottom: -64px;
            right: 0;
            position: absolute;
            z-index: 0;
        }
        &::before {
            background-color: #969696;
            background-size: auto;
            display: inline-block;
            width: 1px;
            height: 132px;
            content: "";
            top: -89px;
            right: 0;
            position: absolute;
            z-index: 0;
        }

    }
}


/* TABLET */
@media (min-width: 768px) and (max-width: 1024px) {
    header{
        transition: background-color 0.3s ease;

        .social-menu {
            ul {
                display: flex;
                justify-content: space-evenly;
                padding: 0;
                width: 100%;
            }
        }

        .nav-link {
            line-height: 54px;
        }

        .navbar-toggler:focus {
            box-shadow: none;
        }

        .nav-efeito {
            &::after {
                bottom: 6px;
            }
        }
    }
    footer {
        text-align: center;
        color: #fff;

            .linha-separadora {
                &::before {
                    display: none;
                }
                &::after {
                    display: none;
                }
            }

        h5{
            margin: 50px 0px 10px 0;
        }

        .form-footer {
            text-align: justify;

            input {
                margin-bottom: 0px;
            }
        }

        .social-footer {
            justify-content: space-evenly;

            li{
                margin-right: 0;
            }
        }

        .none-tablet{
            display: none;
        }
    }
}

/* MOBILE */
@media all and (max-width: 767px) { 
    #mySidenav {
        display: none;
    }
    header{
        transition: background-color 0.3s ease;

        .social-menu {
            ul {
                display: flex;
                justify-content: space-evenly;
                padding: 0;
                width: 100%;
            }
        }

        .nav-link {
            line-height: 54px;
        }

        .navbar-toggler:focus {
            box-shadow: none;
        }

        .nav-efeito {
            &::after {
                bottom: 6px;
            }
        }
        
    }


    footer {
        text-align: center;

            .linha-separadora {
                &::before {
                    display: none;
                }
                &::after {
                    display: none;
                }
            }

        h5{
            margin: 50px 0px 10px 0;
        }

        .form-footer {
            text-align: justify;

            input {
                margin-bottom: 10px;
            }
        }

        .social-footer {
            justify-content: space-evenly;

            li{
                margin-right: 0;
            }
        }
    }
}


/* Para garantir que o fundo cubra toda a área do menu no mobile */
@media (max-width: 991px) {
    .navbar-collapse {
        background-color: transparent; /* Fundo do próprio menu */
        transition: 300ms all ease-in-out;
    }
    
    header.menu-open {
        background-color: #3E613E !important;
        transition: 300ms all ease-in-out;
    }
}