:root {
    --color-primary: #F5873A;
    --color-secundary: #4a4a4a;
    --color-tertiary: #F7743D;
    --color-white: #fff;
    --main-font: 'ReeyRegular', sans-serif;
    --extra-Medium-font: 'FiraSansMedium', sans-serif;
    --dm-sans-font: 'DM Sans', sans-serif;
}

@font-face {
    font-family: 'ReeyRegular';
    src: url('assets/fonts/Reey-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'FiraSansMedium';
    src: url('../assets/fonts/FiraSans-Medium.ttf') format('truetype');
    font-weight: normal;
    /* Defina o peso da fonte conforme necessário */
    font-style: normal;
    /* Defina o estilo da fonte conforme necessário */
}

@font-face {
    font-family: 'DM Sans';
    src: url('../assets/fonts/DMSans-Regular.otf') format('opentype');
    font-weight: normal;
    /* Defina o peso da fonte conforme necessário */
    font-style: normal;
    /* Defina o estilo da fonte conforme necessário */
}

* {
    padding: 0;
    margin: 0;
    font-family: var(--dm-sans-font);
}

.no-scroll {
    overflow: hidden;
}


/*LOADER*/

#loader {
    position: fixed;
    left: 50%;
    top: 50%;
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #F7743D;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: -25px; /* metade da largura */
    margin-top: -25px;  /* metade da altura */
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#content {
    display: none; /* O conteúdo só aparecerá depois do carregamento */
}


/* CAPA SLIDER */

.main-slider {
    /* position: relative; */
    overflow: hidden;
    height: 75vh;
}

.image-layer-overlay {
    position: absolute;
    width: 100%;
    height: 75vh;
    background-color: rgba(49, 48, 65, 0);
    /* background-color: rgba(49, 48, 65, .7); */
    z-index: 1;
    overflow: hidden;
}

.image-layer-overlay .container-text {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.image-layer-overlay .container-text h1 {
    font-family: var(--main-font);
    font-size: 80px;
    font-weight: normal;
    /* color: #ee7e04; */
    color: #ffc800;
}

.image-layer-overlay .container-text p {
    font-family: var(--extra-Medium-font);
    font-size: 40px;
    color: var(--color-white);
    font-weight: bold;
}

.image-layer {
    position: relative;
    background-image: url(assets/image/banner-maquina.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
    transform-origin: top center;
    animation: scaleAnimation 15s linear forwards;
    height: 75vh;
}

@keyframes scaleAnimation {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

@media (max-width: 701px) {
    .image-layer-overlay .container-text h1 {
        font-size: 40px;
    }
    .image-layer-overlay .container-text p {
        font-size: 20px;
    }

}

/*  BARRA TOPO  */

.barra-top {
    background-color: #000;
}

.barra-top .container {
    max-width: 1200px;
    margin: 0 auto;
}

.barra-top .header-top-left ul,
.barra-top .header-top-right {
    display: flex;
    gap: 30px;
}

.barra-top .header-top-right .botao-guia {
    display: block;
    background-color: #f5873a;
}

.barra-top .header-top-right ul {
    display: flex;
    gap: 20px;
}

.barra-top ul li {
    display: flex;
    align-items: center;
}

.barra-top a {
    display: flex;
    font-family: var(--dm-sans-font);
    font-size: 13px;
    text-decoration: none;
    color: #a9a8b6;
    transition: all .2s linear;
}

.barra-top a:hover {
    color: var(--color-white);
    transition: all .2s linear;
}

.barra-top .text {
    padding-left: 5px;
}

.barra-top span {
    display: flex;
    align-items: center;
}

.barra-top .icon img {
    max-width: 17px;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 10px;
}

.barra-top .header-top-right svg {
    fill: #fff;
    transition: all .2s linear;
}

.barra-top .header-top-right svg:hover {
    fill: #ee7e04;
    transition: all .2s linear;
}

.button {
    display: block;
    color: red;
    padding: 13px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 99999999999999999999;
}

.button span {
    position: relative;
    color: #fff;
    z-index: 999999;
    transition: all .5s linear;
}

.button:hover span {
    text-shadow: 0px 0px 5px #fff;
    transition: all .3s linear;
}

.button::before {
    content: '';
    background-color: #fd7513;
    width: 0;
    height: 0;
    position: absolute;
    top: var(--eixoY);
    left: var(--eixoX);
    transform: translate(-50%, -50%);
    transition: width 1s, height .5s;
}

.button:hover::before {
    width: 1000px;
    height: 1000px;
}

@media (max-width: 701px) {
    .header-top {
        display: none;
    }
}

/*
*
*
*
*   NAVBAR
*
*
*/

nav {
    /* position: absolute;
    z-index: 99; */
    width: 100%;
    background: #ffffff;
    border-bottom: 4px solid #ef7e05;
}

nav .wrapper {
    position: relative;
    max-width: 1300px;
    padding: 0px 30px;
    height: 100px;
    /* line-height: 70px; */
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.dados-contato-mobile, 
.rede-social-mobile {
    display: none;
}

#main-nav-show {
    position: fixed;
    display: block;
    top: -104px;
}

.sticky {
    top: 0 !important;
    z-index: 2;
    transition: all .5s linear !important;
}

.wrapper .logo a {
    display: flex;
    align-items: center;
}

.telefonesContato {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.telefonesContatoMobile {
    display: none;
}

.itemContato {
    display: flex;
    align-items: center;
    gap: 10px;
}

.itemContato span {
    font-size: 15px;
}

.itemContato a {
    text-decoration: none;
    font-size: 20px;
    color: #129b10;
    /* font-family: "Exo", sans-serif; */
    font-weight: bold;
}

.itemContato img {
    width: 18px;
    height: 18px;
}

.logo img {
    width: 150px;
}

.logoMenuMobile {
    display: none;
}

.wrapper .nav-links {
    display: inline-flex;
    gap: 30px;
}

.nav-links li {
    list-style: none;
}

.nav-links li a {
    color: #0000008c;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 0;
    /* padding: 9px 15px; */
    transition: all 0.3s ease;
    position: relative;
}

.nav-links li a:hover {
    color: var(--color-secundary);
}

.nav-links li a::after {
    content: " ";
    width: 0%;
    height: 4px;
    border-radius: 10px;
    background-color: #ee7e04;
    position: absolute;
    bottom: 0;
    left: 100%;
    /* Começa da direita */
    transition: width 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), left 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav-links li a:hover::after {
    width: 100%;
    /* Preenche até a esquerda */
    left: 0;
    /* Termina na esquerda */
}

.nav-links .mobile-item {
    display: none;
}

.wrapper .btn {
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: none;
}

.wrapper .btn.close-btn {
    position: absolute;
    right: 30px;
    top: 20px;
    color: #129b10;
}

nav input {
    display: none;
}

@media screen and (max-width: 1080px) {
    nav {
        position: relative;
    }

    nav .wrapper {
        justify-content: space-between;
        height: 80px;
    }

    .wrapper .btn {
        display: flex;
    }

    .wrapper .nav-links {
        position: fixed;
        height: 100vh;
        width: 75%;
        max-width: 350px;
        top: 0;
        left: -100%;
        background: #fff;
        display: block;
        padding: 50px 10px;
        line-height: 40px;
        overflow-y: auto;
        /* box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.18); */
        box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.7);
        transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
        z-index: 3;
        margin: 0;
    }

    /* custom scroll bar */
    ::-webkit-scrollbar {
        width: 10px;
    }

    ::-webkit-scrollbar-track {
        background: #242526;
    }

    ::-webkit-scrollbar-thumb {
        background: #3A3B3C;
    }

    .dados-contato-mobile {
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .dados-contato-mobile span {
        font-size: 14px;
    }

    .icon-contato-mobile {
        display: block;
        display: flex;
        justify-content: center;
        align-items: center;
        background: #ee7e04;
        width: 30px;
        height: 30px;
        /* margin-top: 10px; */
        border-radius: 40px;
        margin-left: 15px;
    }

    .rede-social-mobile {
        display: flex;
        margin-top: 20px;
        margin-left: 15px;
        gap: 20px;
    }

    .rede-social-mobile svg {
        /* fill: #ee7e04; */
        transition: all .2s linear;
        animation: colorDegrade 2s linear infinite;
    }

    .dados-contato-mobile a {
        text-decoration: none;
        color: inherit;
    }

    @keyframes colorDegrade {
        0% {
            fill: #ee7e04;
        }

        50% {
            fill: var(--color-tertiary);
        }

        100% {
            fill: #ee7e04;
        }
    }

    .rede-social-mobile svg:hover {
        fill: var(--color-secundary);
        transition: all .2s linear;
    }

    #menu-btn:checked~.nav-links,
    #menu-btn2:checked~.nav-links {
        left: 0%;
    }

    #menu-btn:checked~.btn.menu-btn,
    #menu-btn2:checked~.btn.menu-btn {
        display: none;
    }

    /* #close-btn:checked~.btn.menu-btn {
        display: block;
    } */

    .logoMenuMobile {
        display: flex;
        justify-content: center;
        padding-bottom: 30px;
        border-bottom: 1px solid rgb(224, 224, 224);
    }

    .telefonesContato {
        display: none;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .nav-links li a {
        padding: 0 10px;
        display: block;
        font-size: 14px;
        border-left: 4px solid transparent;
    }

    .nav-links li a:hover,
    .mobile-item:hover {
        border-left: 4px solid #ee7e04;
    }

    .nav-links li a:hover::after {
        width: 0%;
    }

    .nav-links .drop-menu {
        position: static;
        opacity: 1;
        top: 65px;
        visibility: visible;
        padding-left: 20px;
        width: 100%;
        max-height: 0px;
        overflow: hidden;
        box-shadow: none;
        transition: all 0.3s ease;
    }
}

@media (max-width: 600px) {
    .logo {
        max-width: 150px;
    }

    .logo img {
        width: 120px;
    }
}

/*
*
*
*   SERVICOS
*
*
*/

.servicos {
    padding: 50px 10px;
}

.servicos .container {
    max-width: 1200px;
    margin: 0 auto;
}

.servicos .icon-servico {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    background-color: #fff;
    border-radius: 50%;
}

.servicos .servico-itens {
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
}

.servicos .item {
    width: 25%;
    transition: all .3s linear;
}

.servicos .conteudo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    /* gap: 20px; */
    margin: 10px;
    padding: 15px;
    background-color: var(--color-tertiary);
    border-radius: 10px;
    height: 150px;
    transition: all .3s linear;
}

.servicos .item .conteudo:hover {
    border-radius: 10px;
    box-shadow: 0px 0px 5px 2px #f7743d40;
    transition: all .3s linear;
}

.servicos .conteudo:hover {
	background-color: #fff;
    transition: all .3s linear;
}

.servicos .conteudo:hover .titulo-servico {
	color: #f7743d;
    transition: all .3s linear;
}

.servicos .conteudo:hover .icon-servico {
	background-color: #f7743d;
    transition: all .3s linear;
}

.servicos .conteudo:hover path {
	stroke: #fff;
    transition: all .3s linear;
}

.servicos .titulo-servico {
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}

.servicos .descricao-servico {
    text-align: center;
    color: #fff;
    font-weight: 100;
    font-size: 15px;
    font-style: italic;
    height: 100px;
    display: flex;
    align-items: center;
}

.servicos .saiba-mais {
    text-align: center;
}

.servicos .saiba-mais a {
    color: #fff;
    /* text-decoration: none; */
}

.servicos .titulo {
    margin-bottom: 50px;
}

.servicos .titulo h3 {
    /* font-family: var(--main-font); */
    color: #ee7e04;
    text-align: center;
    font-weight: bold;
    letter-spacing: 5px;
}

.servicos .titulo h1 {
    font-family: var(--extra-Medium-font);
    color: var(--color-secundary);
    text-align: center;
    font-size: 3.5rem;
    margin-top: 20px;
}

@media (max-width: 950px) {
    .servicos .item {
        width: 50%;
    }
}

@media (max-width: 800px) {
    .servicos .item {
        width: 50%;
    }
}

@media (max-width:500px) {
    /* .servicos .item {
        width: 100%;
    } */

    .servicos .titulo h1 {
        font-size: 2rem;
    }
}

/*
*
*
*   PASSEIOS POPULARES
*
*
*/

.destaques {
    padding: 50px 10px;
}

.destaques .titulo {
    margin-bottom: 50px;
}

.destaques .titulo h3 {
    /* font-family: var(--main-font); */
    color: #ee7e04;
    text-align: center;
    font-weight: bold;
    letter-spacing: 5px;
}

.destaques .titulo h1 {
    font-family: var(--extra-Medium-font);
    color: var(--color-secundary);
    text-align: center;
    font-size: 3.5rem;
    margin-top: 20px;
}

.destaques .container {
    max-width: 1570px;
    margin: 0 auto;
}

/* .destaques ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
} */

.destaques ul li {
    padding: 10px 20px;
}

.destaques .item {
    border: 1px solid #e1e1e1;
    border-radius: 10px;
    transition: all .3s linear;
}

.destaques .item:hover {
    box-shadow: 0 3px 5px 2px #00000010;
    transition: all .3s linear;
}

.destaques .item .box {
    display: grid;
    gap: 15px;
    padding: 20px 20px 30px 20px;
}

.destaques .image-local img {
    display: block;
    width: 100%;
    border-radius: 10px 10px 0 0 ;
}

.destaques .estrela {
    font-size: 14px;
}

.destaques .estrela span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.destaques .titulo-local h1 {
    font-size: 24px;
    height: 64px;
    overflow: hidden;
}

.destaques .preco p {
    font-size: 20px;
    font-weight: bold;
    color: var(--color-tertiary);
    height: 80px;
    overflow: hidden;
}

.destaques .preco p span {
    font-size: 15px;
    font-weight: 100;
    color: #0000008c;
}

.destaques .info {
    display: flex;
    justify-content: center;
}

.destaques .info > div {
    background: #f3f3f3;
    display: flex;
    gap: 20px;
    padding: 10px 20px;
    border-radius: 10px;
}

.destaques .info > div span {
    font-size: 12px;
}

.destaques .botao-orcamento {
    display: flex;
    justify-content: center;
    background: #4ac958;
    border-radius: 5px;
}

.destaques .botao-orcamento div {
    display: flex;
    gap: 20px;
}

.destaques .botao-orcamento div a {
    text-decoration: none;
    color: #fff;
    /* font-weight: bold; */
    display: flex;
    align-items: center;
    padding: 10px 20px;
}

@media (max-width: 500px) {
    .destaques .botao-orcamento div a {
        font-size: 14px;
    }
}

/*
*
*
*   QUEM SOMOS
*
*
*/

.quem-somos {
    padding: 50px 10px;
}

.quem-somos .titulo h3 {
    /* font-family: var(--main-font); */
    color: #ee7e04;
    text-align: center;
    font-weight: bold;
    letter-spacing: 5px;
}

.quem-somos .titulo h1 {
    font-family: var(--extra-Medium-font);
    color: var(--color-secundary);
    text-align: center;
    font-size: 3.5rem;
    margin-top: 20px;
}

.quem-somos .sobre {
    display: flex;
    justify-content: center;
}

.quem-somos .sobre .box {
    max-width: 800px;
    background: #fff;
    box-shadow: 0px 0px 5px 2px #00000010;
    padding: 40px;
    border-radius: 10px;
    margin: 50px;
}

.quem-somos p {
    font-size: 24px;
    line-height: 30px;
    color: #787780;
    text-align: center;
}

@media (max-width: 500px) {
    .quem-somos .sobre .box {
        padding: 20px;
        margin: 10px;
    }

    .quem-somos p {
        font-size: 14px;
    }
}
/*
*
*
*   DEPOIMENTOS
*
*
*/

.depoimentos {
    padding: 50px 10px;
}

/* .depoimentos .titulo {
    margin-bottom: 50px;
} */

.depoimentos .titulo h3 {
    /* font-family: var(--main-font); */
    color: #ee7e04;
    text-align: center;
    font-weight: bold;
    letter-spacing: 5px;
}

.depoimentos .titulo h1 {
    font-family: var(--extra-Medium-font);
    color: var(--color-secundary);
    text-align: center;
    font-size: 3.5rem;
    margin-top: 20px;
}

.depoimentos .container {
    max-width: 1570px;
    margin: 0 auto;
}

.depoimentos ul li {
    padding: 20px;
}

.depoimentos .foto-perfil {
    display: flex;
    justify-content: center;
    padding: 30px;
}

.depoimentos .info {
    padding: 45px;
    display: grid;
    justify-items: center;
    text-align: center;
    background: #fff;
    border-radius: 10px;
    box-shadow: 2px 2px 5px 2px #00000020;
}

.depoimentos .depoimento-cliente {
    padding-top: 20px;
    padding-bottom: 20px;
}

.depoimentos .depoimento-cliente p {
    font-size: 18px;
    line-height: 40px;
    color: #787780;
}

.depoimentos .depoimento-cliente p span {
    color: #ef7e05;
}

.depoimentos .nome h3 {
    font-size: 20px;
    font-weight: 700px;
    line-height: 30px;
}

.depoimentos .cliente span {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-tertiary);
    letter-spacing: .1em;
    margin: 0;
    line-height: 25px;
}

.fecha-aspas {
    transform: rotate(180deg);
}

@media (max-width: 700px) {
    .depoimentos .info {
        padding: 20px 30px;
    }

    .depoimentos .depoimento-cliente {
        padding-top: 0;
        padding-bottom: 10px;
    }
}

/*
*
*
*    FOOTER
*
*
*/

#footer a, #footer p, #footer span {
    text-decoration: none;
    /* font-size: 14px; */
    color: #787780;
}

#footer a:hover {
    color: #787780;
}

#footer span, a {
    display: flex;
    gap: 10px;
}

#footer .rodape {
    background-color: #fff;
    padding: 50px 0 20px 0;
}

#footer .rodape .copy {
    display: flex;
    justify-content: center;
    text-align: center;
}

#footer .rodape .container {
    display: flex;
    justify-content: space-evenly;
    max-width: 1570px;
    margin: 0 auto;
}

#footer .rodape .container .box .titulo {
    color: #000;
    font-weight: 600;
    font-size: 18px;
    padding-bottom: 10px;
}

#footer .rodape .container .box {
    max-width: 350px;
}

#footer .bem-vindo {
    margin-bottom: 20px;
    padding-bottom: 20px;
    /* border-bottom: 1px solid #3a346321; */
}

#footer .rodape .container .box:last-child {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#footer .rodape .container .box .lista.icon ul {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

#footer .rodape .container .box .lista ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
    list-style: none;
}

#footer .desenvolvimento {
    position: relative;
    background-color: #1a1a1a;
    display: flex;
    justify-content: center;
    padding: 20px;
}

#footer .desenvolvimento:before {
    content: "";
    position: absolute;
    top: -5px;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, #9C27B0, #8844ee, #673AB7, #7f3f99, #442277)
}

#footer .desenvolvimento .world-in-designer img {
    display: block;
}


@media (max-width: 430px) {
    #footer .rodape .container {
        flex-direction: column;
        gap: 20px;
        padding: 0 30px;
    }

    #footer .rodape .copy {
        font-size: 14px;
        margin-top: 20px;
    }

    #footer .rodape .container .box:last-child {
        align-items: initial;
    }

    #footer .bem-vindo {
        padding: 0;
        margin: 0;
    }
}

/*
*
*
*    BOTÃO WHATSAPP
*
*
*/

.botao-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    animation: efeitoScale 1s linear infinite;
    z-index: 1;
}

@keyframes efeitoScale {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}