@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap');

/* @font-face {
    font-family: 'Chico';
    src: url('assets/fonts/CHICO.TTF') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
} */

@font-face {
    font-family: 'Chico';
    src: url('../fonts/Chico-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}



* {
    padding: 0;
    margin: 0;
    /* font-family: "Montserrat", serif; */
    font-family: "Red Hat Display", serif;
    font-weight: 400;
    box-sizing: border-box;
}

body {
    background: #030212;
}

.no-scroll {
    overflow: hidden;
}

a {
    cursor: pointer;
    text-decoration: none;
}


/*LOADER*/
#loader-container {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #030212;
    z-index: 9;
}

#loader {
    position: fixed;
    left: 50%;
    top: 50%;
    width: 50px;
    height: 50px;
    /* border: 5px solid #f3f3f3; */
    border: 0 solid #f3f3f3;
    /* border-top: 5px solid #FF9900; */
    border-top: 3px solid #6846ae;
    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: block; /* O conteúdo só aparecerá depois do carregamento */
}

#img-loader {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0);
    animation: scaleIn 1.25s ease-in forwards;
}

@keyframes scaleIn {
  from {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
  }
  to {
    transform: translate(-50%, -50%) scale(.75);
    opacity: 1;
  }
}

/*  */
.horario {
    display: none;
}
/*  */

/* SLIDER PRINCIPAL HOME */

.main-slider {
    position: relative;
    background-image: url('../archives/bg-home.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: calc(100vh - 150px);
    background-color: #530257;
}

.main-slider .banners-slider .slick-dots {
    bottom: 0;
    z-index: 2;
}

.main-slider .slick-dotted.slick-slider {
    margin-bottom: 0;
}

.main-slider .banner-text {
    display: flex;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    z-index: 2;
    color: #FFF;
    width: 100%;
    text-align: center;
}

.main-slider .banner-text h2 {
    font-size: 2.75rem;
    letter-spacing: 5px;
    font-weight: 200;
}

.main-slider .banner-text p {
    font-size: 2rem;
    transform: translateY(-20px);
}

.main-slider .banner-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: #000000a1;
}

.main-slider .banner-text .banner-action {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.main-slider .banner-text .banner-action a {
    display: inline-flex;
    text-decoration: none;
    color: inherit;
    width: 100%;
    max-width: 180px;
    transition: all .5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.main-slider .banner-text .banner-action a:hover {
    transform: scale(1.1);
    transition: all .5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.main-slider .banner-text .banner-action .servico {
    display: block;
    width: 100%;
    padding: 10px;
    border: 2px solid #6846ae;
    border-radius: 2px;
    text-align: center;
    background-color: transparent;
    color: #fff;
    /* border-color: #5e2a95; */
}

.main-slider .banner-text .banner-action .orcamento {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 10px;
    /* border: 2px solid #da7d02; */
    border-radius: 2px;
    text-align: center;
    /* background-color: #8c3ddf; */
    background-color: #6846ae;
    color: #fff;
    border-color: #6846ae;
}

.main-slider .slick-next {
    right: 0;
}

.main-slider .slick-prev {
    left: 0;
}

.main-slider .slick-prev,
.main-slider .slick-next {
    padding-top: 5px;
    width: 50px;
    height: 50px;
    z-index: 3;
}

.slick-prev:before,
.slick-next:before {
    font-size: 40px !important;
}

/* Animação SVG */

.logoAnimado {
    transform: translateY(10px);
}

.fil0 {
    /* fill: red; */
    /* stroke: red; */
    stroke-width: 5px;
    stroke-dasharray: 3600;
    animation: effectText-2 5s ease-in-out infinite alternate;
}

.str0 {
    /* fill: #31ec0f; */
    /* stroke: red; */
    stroke-width: 5px !important;
    stroke-dasharray: 3600;
    animation: effectText-1 5s ease-in-out infinite alternate;
}

@keyframes effectText-1 {
    from {
        fill: transparent;
        stroke: #8c3ddf;
        stroke-width: 1px;
        stroke-dashoffset: 3600;
    } to {
        fill: #fff;
        stroke: #fff;
        stroke-dashoffset: 0;
    }
}

@keyframes effectText-2 {
    0% {
        fill: transparent;
        stroke: #8c3ddf;
        stroke-dashoffset: 3600;
    } 100% {
        fill: #8c3ddf;
        stroke: #8c3ddf;
        stroke-dashoffset: 0;
    }
}

/* @media (max-width: 1400px) {
    .main-slider {
        height: 490px;
    }
} */

@media (max-width: 600px) {
    .main-slider .banner-text div {
        margin: 15px;
    }

    .main-slider .banner-text h2 {
        font-size: 1.5rem;
        max-width: 100%;
        margin-bottom: 10px;
        padding: 0;
    }

    .main-slider .banner-text p {
        width: 100%;
        padding: 20px;
        font-size: 1.5rem;
    }

    .logoAnimado svg {
        width: 21rem;
        height: 3rem;
    }
}

/*  SECTION HORÁRIO  */
.horario {
    position: relative;
}

.horario .container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    background: linear-gradient(to right, #9C27B0, #8844ee, #673AB7, #7f3f99, #442277);
    transform: translate(-50%, -50%);
    padding: 0 50px;
    border-radius: 10px;
    z-index: 1;
    width: 100%;
    max-width: 900px;
}

.horario .container .content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.horario h2 {
    font-family: "Rajdhani";
    font-size: 30px;
    font-weight: 600;
    color: #fff;
}

.horario a {
    display: block;
    font-family: "Rajdhani";
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    background: #000;
    text-decoration: none;
    padding: 10px 25px;
    border-radius: 5px;
    transition: background .2s ease-in-out;
}

.horario a:hover {
    background: #000000a8;
}

.horario span {
    font-family: "Rajdhani";
    color: #fff;
}

.horario .icon-horario svg {
    width: 85px;
    height: 85px;
    color: #fff;
}

.horario .icon-suport svg {
    width: 100px;
    height: 100px;
    color: #fff;
}



/*  FAIXA DIFERENCIAL  */
.faixa-diferencial {
    background-image: radial-gradient(rgba(12, 12, 12, 0.171) 2px, transparent 0);
    background-size: 10px 10px;
    background-position: -5px -5px;
    background-color:#242424;
    box-shadow: 0px 0px 10px 5px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
}

.faixa-diferencial .container {
    display: flex;
    justify-content: space-around;
    padding: 20px 20px;
    max-width: 1440px;
    margin: 0 auto;
}

.faixa-diferencial h2 {
    font-size: 1rem;
    color: #fff;
}

.faixa-diferencial .slick-track {
    display: flex;
    justify-content: center;
    align-items: center;
}

.faixa-diferencial .diferencial > div {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    max-width: 210px;
}

/* SERVIÇOS */

.servicos {
    position: relative;
    /* background-color: #000000e7; */
    background-color: #030212e7;
    /* height: 100vh; */
    /* padding: 50px 20px 100px 20px; */
    padding: 5% 20px 7% 20px;
}

.servicos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../archives/bg-site.png');
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 1; /* Opacidade da imagem de fundo */
    z-index: -1; /* Garante que o pseudo-elemento fique atrás do conteúdo */
}

.servicos .container {
    max-width: 1300px;
    margin: 0 auto;
}

.servicos .divisor {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px;
}

.servicos .divisor > div {
    display: flex;
    align-items: center;
    gap: 5px;
}

.servicos .divisor > div::before,
.servicos .divisor > div::after {
    display: block;
    content: "";
    height: 2px;
    width: 55px;
    background-color: #adadad85;
}

.servicos svg {
    height: 5rem;
    width: 5rem;
    /* fill:#8c3ddf; */
    fill: #6846ae;
    position: relative;
    display: block;
}

.servicos .servico .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px;
    width: 150px;
    /* background: red; */
    margin: 0 auto;
    color: #FFF;
}

.servicos .servico .descricao {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.servicos .servico .descricao span {
    color: #FFFFFF;
    font-size: 22px;
    font-weight: 600;
    display: block;
    line-height: 10px;
}

.servicos .servico .descricao span.principal {
    /* color: #8c3ddf; */
    color: #6846ae;
    font-weight: 700;
}

.servicos .servico .descricao p {
    font-family: "Rajdhani";
    color: #b7b7b7;
    font-size: 16px;
    font-weight: 400;
    display: block;
}

.servicos .servico .descricao a {
    /* color: #8c3ddf; */
    color: #6846ae;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.servicos .servico .descricao a::after {
    content: '';
    /* border-right: 2px solid #8c3ddf;
    border-bottom: 2px solid #8c3ddf; */
    border-right: 2px solid #6846ae;
    border-bottom: 2px solid #6846ae;
    width: 7px;
    height: 7px;
    display: inline-block;
    transform: rotate(-45deg);
}

.servicos .servico:hover .icon {
    /* -webkit-animation: 1.5s linear 0s infinite normal none running efeito-vertical; */
    /* animation: 1.5s linear 0s infinite normal none running efeito-vertical; */
    /* Remover o infinite para fazer apenas uma vez por :hover */
    -webkit-animation: 1s linear normal none running efeito-vertical;
    animation: 1s linear normal none running efeito-vertical;
}

@keyframes efeito-vertical {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    30% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1);
    }

    40% {
        -webkit-transform: scale3d(1.25, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1);
    }

    50% {
        -webkit-transform: scale3d(0.85, 1.15, 1);
        transform: scale3d(0.85, 1.15, 1);
    }

    65% {
        -webkit-transform: scale3d(1.05, 0.95, 1);
        transform: scale3d(1.05, 0.95, 1);
    }

    75% {
        -webkit-transform: scale3d(0.95, 1.05, 1);
        transform: scale3d(0.95, 1.05, 1);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@-webkit-keyframes efeito-vertical {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    30% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1);
    }

    40% {
        -webkit-transform: scale3d(1.25, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1);
    }

    50% {
        -webkit-transform: scale3d(0.85, 1.15, 1);
        transform: scale3d(0.85, 1.15, 1);
    }

    65% {
        -webkit-transform: scale3d(1.05, 0.95, 1);
        transform: scale3d(1.05, 0.95, 1);
    }

    75% {
        -webkit-transform: scale3d(0.95, 1.05, 1);
        transform: scale3d(0.95, 1.05, 1);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.servicos .titulo h1 {
    font-family: "Red Hat Display";
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-align: center;
    color: #fff;
}

.servicos .titulo h2 {
    font-size: 1.5rem;
    font-weight: 500;
    font-family: "Rajdhani";
    text-align: center;
    color: #fff;
}

.servicos .itens {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 30px 0;
    
    /* border: 1px solid blue; */
}

.servicos .servico {
    width: 360px;
    height: 100%;
    padding: 40px 30px;
    /* border: 2px solid #6946ae41; */
    border: 2px solid #6846ae;
    border-radius: 10px;
    background: transparent;
    backdrop-filter: blur(0);
    transform: scale(1);
    transition: all .3s cubic-bezier(0.455, 0.03, 0.515, 0.955);

}

.servicos .servico:hover {
    border: 2px solid #6846ae;
    box-shadow: 0 0 8px 3px #ffffff14;
    background: #03051547;
    backdrop-filter: blur(10px);
    transform: scale(1.01);
    transition: transform .3s cubic-bezier(0.455, 0.03, 0.515, 0.955), border .5s cubic-bezier(0.455, 0.03, 0.515, 0.955), backdrop-filter .3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

@media (max-width: 768px) {
    .servicos .titulo h1 {
        font-size: 25px;
        margin-top: 50px;
    }
    .servicos .titulo h2 {
        font-size: 15px;
        font-weight: 100;
    }
    .servicos .divisor {
        margin: 0 20px;
    }
    .servicos svg {
        height: 4rem;
        width: 4rem;
    }
}

/*  BARRA TOPO  */

.barra-top {
    background-color: #050007e3;
    border-top: 2px solid #733da8;
}

.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: #ffb647;
}

.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-family: "Poppins";
    font-size: 13px;
    text-decoration: none;
    color: #a9a8b6;
    transition: all .2s linear;
}

.barra-top a:hover {
    color: #fff;
    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;
    height: 43px;
}

.barra-top .header-top-right svg {
    fill: #6846ae;
    transition: all .2s linear;
}

.barra-top .header-top-right svg:hover {
    fill: #bb97dd;
    transition: all .2s linear;
}

.button {
    display: block;
    color: red;
    padding: 13px;
    text-decoration: none;
    position: relative; /* Necessário para posicionar o ::before relativo ao .button */
    overflow: hidden; /* Esconde o ::before quando ele estiver fora do .button */
    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: #ff9a00;
    width: 0;
    height: 0;
    position: absolute;
    /* top: var(--eixoY); */
    /* left: var(--eixoX); */
    /* transform: translate(-50%, -50%); */
    /* transition: width 1s, height .5s; */

    top: 50%; /* Centraliza verticalmente */
    left: 50%; /* Centraliza horizontalmente */
    transform: translate(-50%, -50%); /* Ajusta para o centro exato */
    border-radius: 50%; /* Para que a expansão seja circular */
    animation: expand 2s infinite ease-in-out; /* Aplica a animação */
}

/* .button:hover::before {
    width: 1000px;
    height: 1000px;
} */

@keyframes expand {
    0% {
        width: 0;
        height: 0;
        opacity: 1; /* Começa totalmente opaco */
    }
    100% {
        width: 1000px;
        height: 1000px;
        opacity: 0; /* Desaparece gradualmente enquanto expande */
    }
}

@media (max-width: 701px) {
    .header-top {
        display: none;
    }

    .barra-top {
        border-top: 0;
    }
}

/*
*
*
*
*   NAVBAR
*
*
*/

nav {
    position: relative;
    z-index: 3;
    width: 100%;
    /* background: #050007; */
    background: #030212;
    /* border-bottom: 4px solid var(--color-secundary); */
}

nav::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, #9C27B0, #8844ee, #673AB7, #7f3f99, #442277);
}

nav a {
    display: flex;
    gap: 5px;
}



nav .wrapper {
    position: relative;
    max-width: 1200px;
    padding: 0px 30px;
    height: 100px;
    /* line-height: 70px; */
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dados-contato-mobile, 
.rede-social-mobile {
    display: none;
}

#main-nav-show {
    position: fixed;
    top: -104px;
    display: block;
    background: transparent;
    backdrop-filter: blur(15px);
    z-index: 3;
}

.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: 120px;
}

.logoMenuMobile {
    display: none;
}

.wrapper .nav-links {
    display: inline-flex;
    gap: 30px;
    align-items: center;
    height: 100%;
}

.nav-links li {
    display: flex;
    align-items: center;
    list-style: none;
    height: 100%;
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    /* font-weight: 500; */
    padding: 10px 0;
    /* padding: 9px 15px; */
    transition: all 0.3s ease;
    position: relative;
}

.nav-links li a:hover,
.nav-links li label:hover {
    color: #ffffff70;
}

.nav-links li a::after {
    content: " ";
    width: 0%;
    height: 4px;
    border-radius: 10px;
    /* background-color: var(--color-primary); */
    background-color: #6846ae;
    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.3s 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 .drop-menu li {
    border-bottom: 1px solid #00000020;
}

.nav-links .drop-menu li a:hover::after {
    width: 100%;
    /* Preenche até a esquerda */
    left: 15px;
    /* Termina na esquerda */
}

.nav-links .mobile-item {
    display: none;
}

.nav-links .menu-item:hover svg path {
    fill: #ffffff70;
}

.nav-links .menu-item svg {
    transform: rotate(90deg);
    transition: transform .5s ease;
    padding: 0 5px;
    width: 100%;
}

.nav-links .menu-item:hover svg {
    transform: rotate(270deg);
    transition: transform .5s ease;
}

.nav-links .solicite-orcamento button {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    border-radius: 25px;
    border: none;
    font-weight: 600;
    padding: 10px 20px;
    /* background: #8c3ddf; */
    background: #6846ae;
    color: #fff;
    /* box-shadow: 0 0 0 0 #8c3ddf70; */
    box-shadow: 0 0 0 0 #6846ae70;
    -webkit-animation: pulse 1.25s infinite cubic-bezier(0.66,0,0,1);
    -moz-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulse 1.25s infinite cubic-bezier(0.66,0,0,1);
    transition: all .5s cubic-bezier(0.66,0,0,1);
}

.nav-links .solicite-orcamento button:hover {
    transform: scale(1.05);
    transition: all .5s cubic-bezier(0.66,0,0,1);
}

.nav-links .solicite-orcamento button svg path {
    fill: #fff;
}

@-webkit-keyframes pulse {
    to {
        box-shadow: 0 0 0 15px 0 0 0 15px #8c3ddf00;
    }
}

@-moz-keyframes pulse {
    to {
        box-shadow: 0 0 0 15px rgba(232,76,61,0)
    }
}

@-ms-keyframes pulse {
    to {
        box-shadow: 0 0 0 15px rgba(232,76,61,0)
    }
}

@keyframes pulse {
    to {
        box-shadow: 0 0 0 15px rgba(232,76,61,0)
    }
}

.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: #030212;
        display: block;
        padding: 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 a {
        font-size: 14px;
        color: #FFF;
    }

    .icon-contato-mobile {
        display: block;
        display: flex;
        justify-content: center;
        align-items: center;
        /* background: var(--color-primary); */
        width: 20px;
        height: 20px;
        /* 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: #6846ae;
        transition: all .2s linear;
        /* animation: colorDegrade 2s linear infinite; */
    }

    @keyframes colorDegrade {
        0% {
            fill: var(--color-primary);
        }

        50% {
            fill: var(--color-tertiary);
        }

        100% {
            fill: var(--color-primary);
        }
    }

    .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: 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 #6846ae;
    }

    .nav-links li a:hover::after {
        width: 0%;
    }

    .nav-links .solicite-orcamento {
        margin-top: 20px;
        padding: 0 15px;
    }

    .nav-links .drop-menu li a:hover::after {
        background-color: transparent
    }
}

@media (max-width: 600px) {
    .logo {
        max-width: 150px;
    }

    .logo img {
        width: 100px;
    }

    .nav-links .solicite-orcamento button {
        font-size: 12px;
    }
}

/*
*
*
*    FOOTER
*
*
*/

#footer a, #footer p, #footer span {
    text-decoration: none;
    /* font-size: 14px; */
    color: #FFF;
}

#footer a:hover,
/* #footer p:hover, */
#footer span:hover {
    text-decoration: none;
    /* font-size: 14px; */
    color: #caa8ff;
}

/* #footer a:hover {
    color: #787780;
} */

#footer a {
    font-family: "Rajdhani";
    font-size: 18px;
    font-weight: 500;
}

#footer span, #footer a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #757575;
}

#footer .rodape {
    /* background-color: #050007; */
    background-color: #030212;
    padding: 5% 0;
}

#footer .rodape .container {
    display: flex;
    justify-content: space-evenly;
    max-width: 1570px;
    margin: 0 auto;
}

#footer .rodape .container .box .titulo {
    color: var(--color-secundary);
    font-weight: 600;
    font-size: 18px;
    padding-bottom: 10px;
    margin-top: 30px;
}

#footer .rodape .container .box {
    max-width: 350px;
}

#footer .rodape .container .box .lista-rede {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

#footer .rodape .container .box .description p {
    font-family: "Rajdhani";
    font-size: 16px;
    text-align: justify;
    line-height: 1.6;
    max-width: 335px;
    color: #757575;
}

#footer .rodape .container .box .lista-rede ul {
    display: flex;
    gap: 10px;
}

#footer .rodape .container .box .lista-rede ul li {
    list-style: none;
}

#footer .rodape .box h2 {
    color: #fff;
    font-size: 1.25rem;
}

#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.icon .icon:hover svg path {
    fill: #ff9a00;
}

#footer .rodape .container .box .lista ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
    list-style: none;
}

#footer .desenvolvimento {
    position: relative;
    /* background-color: #050007; */
    background-color: #030212;
    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 h2 {
    font-family: 'Chico';
    font-size: 2rem;
    color: #fff;
    -webkit-text-stroke: 1px #fff;
    letter-spacing: 1px;
}

#footer .desenvolvimento span {
    display: inline;
    color: #8945ed;
    -webkit-text-stroke: 2px #8945ed;
    letter-spacing: 1px;
}

#footer .copy {
    /* background-color: #050007; */
    background-color: #030212;
    padding: 0 0 25px 0;
    text-align: center;
    font-size: 14px;
    line-height: 25px;
    color: #757575;
}

#footer .copy span {
    display: inline;
}

#footer .copy span:hover {
    color: inherit;
}


@media (max-width: 500px) {
    #footer {
        margin-top: 50px;
    }
    #footer .rodape .container {
        flex-direction: column;
        gap: 20px;
        padding: 0 30px;
    }

    #footer .rodape .container .box:last-child {
        align-items: start;
    }

    #footer .footer-logo img {
        width: 100%;
    }

    #footer .copy {
        padding: 0 0 10px 0;
    }

    #footer .desenvolvimento {
        padding: 0 20px 20px 20px;
    }

    #footer .desenvolvimento:before {
        background: transparent;
    }
    
}

/*
*
*
*    BOTÃO WHATSAPP
*
*
*/

.botao-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    animation: efeitoScale 1s linear infinite;
    z-index: 2;
}

@keyframes efeitoScale {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}







.nav-links .drop-menu {
    position: absolute;
    background: #030212;
    min-width: 225px;
    line-height: 45px;
    top: 150px;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    /* box-shadow: 0 6px 10px rgba(0,0,0,0.35); */
    box-shadow: 0 0px 10px 1px rgb(255 255 255 / 30%);
    z-index: 2;
  }
  
  .nav-links li:hover .drop-menu {
    transition: all 0.3s ease;
    top: 100px;
    opacity: 1;
    visibility: visible;
}
  
  .drop-menu li a {
    width: 100%;
    display: block;
    padding: 0 0 0 15px;
    font-weight: 400;
    border-radius: 0px;
  }
  
  
  
@media screen and (max-width: 1080px) {
    .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;
      background: #030210;;
      transition: all 0.3s ease;
    }
  
    #showDrop1:checked ~ .drop-menu,
  
    #showDrop2:checked ~ .drop-menu,
  
    #showDrop3:checked ~ .drop-menu,
  
    #showDrop4:checked ~ .drop-menu,
    #showDrop9:checked ~ .drop-menu,
  
    #showMega:checked ~ .mega-box {
        max-height: 100%;
        /* border: 1px solid #6846ae; */
    }
  
    .nav-links .desktop-item {
      display: none;
    }

    .nav-links li {
        flex-direction: column;
        align-items: flex-start;
        height: auto;
    }
  
    .nav-links .mobile-item {
        display: block;
        color: #FFF;
        font-weight: 600;
        font-size: 15px;
        padding-left: 10px;
        padding-right: 10px;
        cursor: pointer;
        /* border-radius: 5px; */
        transition: all 0.3s ease;
        border-radius: 0;
        border-left: 4px solid transparent;

        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .nav-links .mobile-item:hover {
        border-left: 4px solid #6846ae;
    }

    .nav-links .mobile-item svg {
        transform: rotate(90deg);
        transition: transform .5s ease;
    }

    input[type="checkbox"]:checked + .mobile-item svg {
        transform: rotate(270deg);
        transition: transform .5s ease;
    }

    input[type="checkbox"]:checked + .mobile-item svg path {
        fill: #ffffff70;
    }
  
    .drop-menu li {
      margin: 0;
    }
  
    .drop-menu li a {
        border-radius: 5px;
        font-size: 15px;
    }
}

/* Clientes */
#clientes .titulo h1 {
    font-family: "Red Hat Display";
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-align: center;
    color: #fff;
}

#clientes .titulo h2 {
    font-size: 1.5rem;
    font-weight: 500;
    font-family: "Rajdhani";
    text-align: center;
    color: #fff;
}

#clientes .divisor {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px;
}

#clientes .divisor > div {
    display: flex;
    align-items: center;
    gap: 5px;
}

#clientes .divisor > div::before,
#clientes .divisor > div::after {
    display: block;
    content: "";
    height: 2px;
    width: 55px;
    background-color: #adadad85;
}

#clientes svg {
    height: 5rem;
    width: 5rem;
    fill: #8c3ddf;
    position: relative;
    display: block;
}

#clientes .carousel-container {
    width: 100%;
    overflow: hidden;
    /* position: relative; */
    /* background: white; */
    padding: 20px 0;
    /* background: gray; */

    background-image: radial-gradient(rgba(12, 12, 12, 0.171) 2px, transparent 0);
    /* background-image: radial-gradient(rgb(104 70 174 / 17%) 2px, transparent 0); */
    background-size: 10px 10px;
    background-position: -5px -5px;
    /* background-color: #242424; */
    /* background-color: #030212e7; */
    /* box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.5); */
    box-shadow: 0px 0px 15px 1px rgba(255, 255, 255, 62%);
    position: relative;
    margin-top: 10px;
}

#clientes .carousel {
    display: flex;
    align-items: center;
    gap: 0;
    width: max-content;
    animation: scroll 20s linear infinite;
    /* height: 800px */
    margin: 20px 0;
}

#clientes .carousel > div {
    display: flex;
    align-items: center;
}

#clientes .carousel img {
    width: auto;
    max-width: 200px;
    margin: 0 50px;
    height: auto;
    /* background: red; */
    max-height: 80px;
    margin: 0 50px;

}

@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    #clientes .titulo h1 {
        font-size: 25px;
        margin-top: 50px;
    }
    #clientes .titulo h2 {
        font-size: 15px;
        font-weight: 100;
    }
    #clientes .divisor {
        margin: 0 20px;
    }
    #clientes svg {
        height: 4rem;
        width: 4rem;
    }
}

/* Portifolio */

#portifolio {
    padding: 80px 4%;
    /* background-color: #000000e7; */
    background-color: #030212e7;
    box-shadow: 0 0 40px 10px #ffffff1d;
}

#portifolio .flex {
    display: flex;
    justify-content: space-around;
    margin-top: 60px;
    flex-wrap: wrap;
    gap: 50px 0;
}

#portifolio .interface {
    max-width: 1300px;
    margin: 0 auto;
}

#portifolio .titulo h1 {
    font-family: "Red Hat Display";
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-align: center;
    color: #fff;
}

#portifolio .titulo h2 {
    font-size: 1.5rem;
    font-weight: 500;
    font-family: "Rajdhani";
    text-align: center;
    color: #fff;
}

#portifolio .divisor {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px;
}

#portifolio .divisor > div {
    display: flex;
    align-items: center;
    gap: 5px;
}

#portifolio .divisor > div::before, #portifolio .divisor > div::after {
    display: block;
    content: "";
    height: 2px;
    width: 55px;
    background-color: #adadad85;
}

#portifolio svg {
    height: 5rem;
    width: 5rem;
    fill: #8c3ddf;
    position: relative;
    display: block;
}

#portifolio .img-port {
    width: 360px;
    height: 460px;
    background-size: cover;
    background-position: 100% 0%;
    transition: 8s;
    cursor: pointer;
    border-radius: 5px;
    position: relative;
}

#portifolio .img-port:hover {
    background-position: 100% 100%;
}

#portifolio .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000b8;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    opacity: 0;
    transition: .5s;
}

#portifolio .img-port:hover .overlay {
    opacity: 1;
}

@media (max-width: 768px) {
    #portifolio {
        padding: 20px;
    }
    #portifolio .flex {
        margin-top: 0;
    }
    #portifolio .titulo h1 {
        font-size: 25px;
        margin-top: 50px;
    }
    #portifolio .titulo h2 {
        font-size: 15px;
        font-weight: 100;
    }
    #portifolio .divisor {
        margin: 0 20px;
    }
    #portifolio svg {
        height: 4rem;
        width: 4rem;
    }
}




/* Máquina de escrever */
.typewriter {
    display: flex;
    justify-content: center;
}

.cursor {
    display:inline-block;
    width:5px;
    margin-left:6px;
    background:#f5f5f5;
    animation: blink 1s steps(2,start) infinite;
    vertical-align:bottom;
    height:1.1em;
    border-radius:2px;
}

@keyframes blink {
    50% { opacity:0 }
}

/* transições para a última letra */
#text-last {
    width: 35px;
}
.fade-out { opacity:0; transition: opacity 120ms linear; }
.fade-in  { opacity:1; transition: opacity 120ms linear; }

@media (max-width: 768px) {
    .main-slider .banner-text h2 {
        font-size: 1.25rem;
    }
    #text-last {
        width: 15px;
    }
    .main-slider .banner-text h2 {
        margin-bottom: 0;
    }
}







/* Div onde o canvas será inserido */
#globo-container {
    width: 100%;
    /* height: 400px; */
    height: 100%;
    /* position: relative; */
    position: absolute;
    /* border-radius: 50%; */
    overflow: hidden;
    background-color: #030212;
    z-index: 2;
}
/* Canvas ocupa toda a div */
#globo-container canvas {
    width: 100%;
    height: 100%;
    display: block;
}

/* ATENÇÃO PARA A LINHA 71 - LEMBRAR DE ATIVAR O LOADER NOVAMENTE*/