/* @import url('https://fonts.cdnfonts.com/css/tt-hoves-pro-trial'); */
/* @import url('clash-grotesk.css'); */


html {
  scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-black: #000;
    --color-gray1: #8d9599;
    --color-gray2: #bebebe;
    --color-white: #f6f6f6;
    --azul-escuro: #000e13;
    --text-color: #b4b4b4;
    --verde1: #00383f;
    --color-azul: #05b5c1;
    --azul-input: #a2e8f7;
    --azul-totvs: #00BDE5;
    --title: #00ffff;
    --card: #181818;
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--azul-escuro);
}

::-webkit-scrollbar-thumb {
    background-color: var(--azul-totvs);
    border-radius: 20px;
    border: 2px solid var(--color-black);
}

/* hamburgue */

/* Esconde o menu no desktop */
.wrapper {
    position: static;
}

.wrapper ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
    gap: 1.5rem;
}

.wrapper ul a li {
    list-style: none;
    display: inline;
}

.wrapper ul a {
    text-decoration: none;
    color: #fff;
}

.menu-btn {
    display: none;
}

.carrossel {
    position: relative;
    width: 50vw;
    height: 500px;
    text-align: center;
    border-radius: 10px;
    background-color: var(--cor5);
    overflow: hidden;
    margin: 10px;
}


.blogs {
    margin: 0 auto;
    display: flex;
    width: 100%;
    padding: 20px;
    justify-content: center;
    align-items: center;
}

.blog {
    color: var(--azul-escuro);
    opacity: 0;
    transition: opacity 0.5s ease;
    position: absolute;
    align-items: center;
    display: flex;
    margin: 20px;
    padding: 10px;
    background: var(--background1);
    border-radius: 10px;
    text-align: justify;
}

.blog i {
    font-size: 5em;
    margin: 15px;
    color: var(--cor2);
}

.blog.ativo {
    opacity: 1;
    position: absolute;
}

.anterior,
.proximo {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    border: none;
    font-size: 50px;
    cursor: pointer;
    user-select: none;
    padding: 5px;
    height: 100%;
    transition: 0.5s ease-in-out;
    color: var(--azul-totvs);

    &:hover {
        color: var(--color-white);
    }
}

.anterior {
    left: 0;
}

.proximo {
    right: 0;
}

.artigos {
    display: flex;
}

.imagens {
    box-shadow: 10px 4px 10px 4px #00000018;
    border-radius: 2px;
}

.dropdown {
    position: relative;

}

.dropdown>a::after {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: auto;
}

.listaDrop {
    padding: 10px;
    color: var(--cor5);
    border-radius: 5px;
}

.listaDrop:hover {
    background-color: var(--background2);
    color: var(--cor6);
}

.dropdown-content {
    display: none;
    flex-direction: column;
    background-color: var(--backgroundHover);
    position: absolute;
    left: 32px;
    transition: 0.5s ease-in-out;
    border-radius: 5px;
}

.dropdown:hover .dropdown-content {
    display: flex;
}

.textos {
    width: 100%;
    overflow: hidden;
}

.background {
    opacity: 0;
    transition: opacity 1s ease;
    position: fixed;
    top: 0;
    left: 0;
    width: 170vw;
    max-width: 2560px;
    height: 155vh;
    transform: scale(1.1);
    background-size: cover;
}

.background.ativo {
    opacity: 1;
    position: fixed;
}

textarea {
    resize: none;
}

body {
    background: var(--azul-escuro);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: sans-serif;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    transition: transform 0.3s ease-out;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

.fixed-button {
    position: fixed;
    display: none;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-white);
    color: var(--color-black);
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.5s ease, box-shadow 0.5s ease;
}

#backToTop {
    bottom: 20px;
    left: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

#whatsappButton {
    bottom: 20px;
    right: 20px;
    background-color: #3EBA54;
    box-shadow: 0px 0px 10px #5c695f;
    animation: pulse 2s infinite;
}

#whatsappButton i {
    font-size: 24px;
    color: #fff;
}

.fixed-button i {
    font-size: 24px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 10px #085B52;
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 0 20px #085B52;
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 10px #085B52;
    }
}

.container {
    margin: 0 auto;
    width: 100%;
    max-width: 1400px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    font-family: sans-serif;
    color: #220035;
    position: fixed;
    padding: 60px 4%;
    top: 0;
    z-index: 1000;
    width: 100%;
    transition: .5s;
}

.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9000;
    padding: 1rem;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.wrapper {
    position: static;
    margin: 0 auto;
}

.wrapper ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: 3rem;
}

.wrapper li {
    list-style: none;
}

.wrapper li a {
    text-decoration: none;
    color: #fff;
}

.menu-btn {
    display: none;
}

.menu-toggle {
    display: none;
}

.menu-toggle i {
    display: none;
}

.header-left {
    display: flex;
    align-items: center;
}

header img {
    max-width: 150px;
    position: relative;
    transition: 0.3s ease;
}

header.rolagem {
    background-color: #434d4fc2;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    margin: 10px;
    border-radius: 15px;
    width: 70%;
    height: 65px;
    padding: 10px;
}

.menu-btn i {
    display: none;
}

nav {
    margin-top: 5px;
    position: relative;

}

nav ul {
    list-style-type: none;
    display: flex;
    justify-content: center;
    padding: 0;
}

nav ul .itens-nav {
    position: relative;
    font-size: 1em;
    padding: 14px;
    cursor: pointer;
    color: #ffffff;
    text-decoration: none;
    transition: background-position 0.4s ease-in-out;
    background-image: linear-gradient(to right, #00ffff 50%, #ffffff 50%);
    background-size: 200% 100%;
    background-position: left;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}

nav ul .itens-nav::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background: linear-gradient(to right, #00ffff00, var(--title));
    transition: width 0.4s ease-in-out;
}

nav ul .itens-nav:hover::after {
    width: 100%;
}

nav ul .itens-nav:hover {
    background-position: right;
}


a {
    text-decoration: none;
}

.contato-nav {
    align-content: center;
    margin: 15px;
}

.inicio {
    width: 100%;
    height: 115vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0rem 1rem;
    z-index: 1;
    user-select: none;
}

.container-inicio {
    width: 100%;
    height: 100%;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.conteudo-inicio {
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: center;
    text-align: left;
    /* border-radius: 20px; */
}

.titulo-inicio {
    position: relative;
    font-size: clamp(1rem, 2vw + .5rem, 3rem);
    font-family: sans-serif;
    font-weight: normal;
    text-align: center;
}

.destaque-inicio {
    font-weight: lighter;
}

.paragrafo-inicio p {
    font-size: clamp(1.2rem, 1.5vw + 1rem, 2rem);
    max-width: 900px;
    color: var(--color-white);
    font-family: sans-serif;
}

.cta {
    position: relative;
    margin: auto;
    transition: all 0.2s ease;
    border: none;
    background: none;
    cursor: pointer;
    align-items: center;
    align-content: center;
}

.cta span {
    font-size: clamp(3em, 1.5vw + 2rem, 3rem);
}

.cta:before {
    content: "";
    position: absolute;
    top: -5px;
    left: 0;
    display: block;
    border-radius: 50px;
    background: var(--azul-totvs);
    width: 3vh;
    height: 3vh;
    transition: all 0.3s ease;
}

.cta span {
    position: relative;
    font-family: sans-serif;
    font-size: 1.2em;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: white;
    background-color: var(--cor2);
    border-radius: 15px;
    padding: 5px;
}

.cta svg {
    position: relative;
    top: 0;
    margin-left: 10px;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke: var(--azul-totvs);
    stroke-width: 2;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.cta:hover:before {
    width: 100%;
    transform: scale(1.07);
    background: linear-gradient(90deg, #727d7d00 0%, var(--title) 100%);
}

.cta:hover svg {
    transform: translateX(0);
    transform: scale(1.07);

    stroke: white;
}

.cta span:hover {
    transform: scale(1.07);

}

.cta:active {
    transform: scale(0.95);
}

.fale-conosco-link:hover {
    transform: scale(1.03);
}

.complemento-inicio {
    position: absolute;
    bottom: 2rem;
    width: 100vw;
    padding: 0rem 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.complemento-inicio .text {
    width: 200px;
}

.complemento-inicio .qr-code {
    width: 80px;
    opacity: .2;
    transition: all .5s ease-in-out;
}

.imgRoboInicio {
    animation: flutuarImg 2s ease-in-out infinite;
}

@keyframes flutuarImg {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.sobre {
    background-color: var(--background1);
    width: 100vw;
    display: flex;
    justify-content: center;
    padding: 2rem 1rem;
    z-index: 1;
    user-select: none;
    overflow: visible;
    padding: 0;

}

.container-sobre {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.destaque {
    grid-row: span 2;
}

@media (max-width: 700px) {
    .destaque {
        grid-row: auto;
    }
}

.headline {
    display: flex;
    height: 80vh;
    align-items: center;
    gap: 15px;
    margin: 0 auto;
    justify-content: space-between;
    width: 80%;
}

.headline-sobre {
    background: black;
    height: 16%;
    width: 100vw;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 60;

}

.logoCliente {
    height: 120px;
    width: 120px;
}

.headline-scroll {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: scroll 10s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.headline-scroll span {
    color: white;
    font-family: sans-serif;
    font-size: 2rem;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}


.headline-scroll .divisor {
    width: 20px;
    height: 20px;
    background-color: black;
    border-radius: 50%;
    margin: 0 20px;
}

.headline-scroll .bold {
    font-weight: bold;
    animation: colorSpan 3s ease-in-out infinite;

}

@keyframes colorSpan {
    0% {
        color: #003335;
    }

    50% {
        color: #00FFCC;
    }

    100% {
        color: #003335;
    }
}

.headline-scroll .light {
    font-weight: lighter;
    animation: colorSpan2 3s ease-in-out infinite;
}

@keyframes colorSpan2 {
    0% {
        color: #00FFCC;
    }

    50% {
        color: #003335;
    }

    100% {
        color: #00FFCC;
    }
}

.conteudo-sobre {
    background-color: var(--azul-escuro);
    position: relative;
    align-items: center;
    width: 100vw;
    display: flex;
    height: 87vh;
}

.left-sobre {
    color: var(--color-white);
    height: 100%;
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    margin: 5em;
    height: 500px;
}


.textos-sobre p {
    font-size: 1.5rem;
    color: white;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 1.5px;
    margin-bottom: 32px;
}

.redes-sociais {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.5rem;
}

.redes-sociais a {
    display: flex;
    justify-content: space-between;
    text-decoration: none;
    color: white;
    font-size: 1.5rem;
    width: 100%;
    padding-bottom: 5px;
    border-bottom: 1px solid hsla(0, 0%, 100%, 0.15);
    transition: all 0.30s ease-in-out;
}

.redes-sociais a:hover {
    transform: scale(1.02);
    color: var(--azul-totvs);
}


.right-sobre {
    height: 100%;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.imagem-sobre {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
}

.imagem-sobre img {
    justify-content: center;
    align-items: center;
}

.complemento-sobre {
    width: auto;
    z-index: 0;
}

.complemento-sobre img {
    position: relative;
    left: 50px;
    top: 50px;
    width: 90%;
    z-index: 1000;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.imagem-sobre img {
    width: 90%;
    z-index: 99;
}

.btnEntraEmcContato {
    margin: 0 auto;
    padding: 15px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    font-family: sans-serif;
    max-width: 400px;
    width: 70%;
    color: white;
    border: none;
    cursor: pointer;
    background: linear-gradient(20deg, #59cab2, #917797, #2da1cf);
    background-size: 600% 600%;
    animation: bgMove 6s infinite;
    transition: 0.3s ease-in-out;

    &:hover {
        transform: translateY(-5px);
        transform: scale(1.08);
    }
}

@keyframes bgMove {
    0% {
        background-position: 0% 50%;
        box-shadow: 2px 5px 10px #03b4a6;
    }

    50% {
        background-position: 100% 50%;
        box-shadow: 2px 2px 5px #c1fffa;
    }

    100% {
        background-position: 0% 50%;
        box-shadow: 2px 5px 10px #03b4a6;
    }
}

.skills {
    border-radius: 1em;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;

    width: 100%5;
    padding: 7rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;

}

.container-skills {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.headline-skills {
    width: 100%;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.text-headline-skills h2 {
    font-family: sans-serif;
    color: var(--color-azul);
    font-size: 3rem;
}

.text-headline-skills p {
    font-size: 1.5rem;
    color: var(--color-gray2);
    font-weight: 500;
    line-height: 1.4;
    max-width: 900px;
}

.conteudo-skills {
    display: flex;
    gap: 1rem;
    width: 100%;
}

.box-skills {
    background-color: #00515c;
    border-radius: 20px;
    color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 400px;
    padding: 1.5rem;
    gap: 1.5rem;
    z-index: 1000;
    box-shadow: 10px 7px 15px #7399997e;
    transition: all 2s ease-in-out;
}

.box-skills:hover {
    transform: translateY(-150px);
    background-color: #0f0f1a;
    transform: scale(1.06);
    animation: sombra1 2s ease-in-out infinite, borda2 2s ease-in-out infinite;
    color: #00FFCC;
}

@keyframes sombra1 {
    0% {
        box-shadow: 10px 7px 15px #65f7fc56;
    }

    50% {
        box-shadow: 10px 7px 15px #65f7fc9c;
    }

    100% {
        box-shadow: 10px 7px 15px #65f7fc56;
    }
}

@keyframes borda2 {
    0% {
        border: 1px solid #02ffffa9;
    }

    50% {
        border: 1px solid #02ff9ead;
    }

    100% {
        border: 1px solid #02ffffa9;
    }
}

.box-skills i {
    text-align: center;
    font-size: 4rem;
    color: var(--color-white);
    padding-bottom: 15px;

}

.box-skills i::before {
    border: 2px solid white;
    border-radius: 100%;
    padding: 20px;

}

.box-skills h3 {
    text-align: center;
    font-size: 1.8rem;
    color: var(--color-white);
    border-top: px solid transparent;
    background-image: linear-gradient(to right, transparent 0%, white 50%, transparent 100%);
    background-position: top;
    background-size: 100% 1px;
    background-repeat: no-repeat;
}

.box-skills p {
    color: var(--color-gray2);
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.4;
    box-sizing: border-box;
    text-align: center;

}

@media (min-width: 600px) {
    .conteudo-skills {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .conteudo-skills {
        grid-template-columns: repeat(4, 1fr);
    }
}


.container-tecnologias {
    /* width: 100%;
            height: auto;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: center; */
}


.tecnologias-headline {
    /* width: 100%;
            height: 90vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 20px;
            text-align: left;
            background: rgba(255, 255, 255, 0.027);
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);

            transform: translateZ(0);
            contain: paint;
            will-change: transform; */
}

/* .tecnologias-headline span {
            font-size: 1.6rem;
            font-weight: 300;
        } */



/* .carrosselServico {
            height: 45vh;
            align-content: center;
            position: relative;
        } */

/* .slideServico {
            position: fixed;
            width: 100%;
            opacity: 0;
            transition: opacity 1s ease;
        } */

/* .slideServico.ativo {
            opacity: 1;
            z-index: 1;
            position: fixed;
        } */








/* .slideServico.ativo .textoServico {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
        } */
/* .info {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-size: 1.1em;
        } */

.tecnologias {
    width: 100vw;
    height: auto;
    z-index: 4;
}


.carrosselServico {
    display: flex;
    height: 95vh;
    width: 100%;
    align-items: center;
    justify-content: center;
    position: relative;
}

.slideServico {
    position: absolute;
    width: 70%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease-in-out;
}

.slideServico.ativo {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.tecnologias-headline h3 {
    padding-left: 15px;
    font-size: 3rem;
    font-family: sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--color-white);
    text-align: center;
}

.textoServico h3 {
    font-weight: bold;
    border-bottom: 1px solid;
    border-image: linear-gradient(to right, #00ffff, #00ffff02) 1;
    font-size: 2em;
    text-align: left;
}

.textoServico p {
    padding: 10px;
    line-height: 1.6;
    font-size: 1.5em;
}

.textoServico {
    color: white;
    padding: 15px;
    font-family: sans-serif;
    text-shadow: 2px 2px 8px #00ffff3b;
}

.icontech:hover {
    transform: translateY(-5px);
    transform: scale(1.3);
    transition: opacity 1s ease, transform 1s ease;
}


.tecnologias-headline span {
    font-size: 1.6rem;
    font-weight: 300;
}



.personalizacao-container p {
    font-size: 1.5em;
    line-height: 1.6;
}

.icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 2em;
}

.info i {
    color: #00ffff;
}

.list-about {
    padding-top: 1.6rem;
}

.container-list {
    display: flex;
    gap: 2rem;
}

.container-list i {
    color: black;
}

.list-about li {
    width: 100%;
    font-size: 1.1rem;
    font-weight: 300;
    color: black;
}

.skills-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 10px;
    background: var(--azul-escuro);
    z-index: 20;
}

.skills-title {
    color: var(--title);
    font-size: 2em;
    text-align: center;
    width: 50%;
    padding: 20px;
    z-index: 5;
}

.skills-info p {
    color: var(--cor1);
    font-size: 1.2rem;
}

.card-tech {
    color: var(--cor2);
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    transition: transform 0.3s ease;
    text-align: center;
    background-color: var(--cor6);
    border-radius: 15px;
}

.card-tech i {
    width: 50%;
    opacity: 1;
    transition: opacity 0.3s ease, filter 0.3s ease;
}



.card-tech:hover img[data-tech="html"] {

    transform: translateY(-15px);
}

.card-tech:hover img[data-tech="css"] {

    transform: translateY(-15px);
}

.cards-servicos {
    gap: 5px;
    display: flex;
    margin: 10px auto;
    justify-content: space-around;
    width: 57%;
}

.card-servicos {
    position: relative;
    background-color: var(--card);
    color: var(--color-white);
    width: 240px;
    max-width: 240px;
    height: 240px;
    text-align: center;
    align-content: center;
    padding: 20px;
    font-family: sans-serif;
    border-radius: 15px;
    z-index: 1;
    transition: all 1s ease-in-out;

    &:hover {
        color: #bcfcf6;
        background-color: #001424;
    }
}

.card-servicos::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: 15px;
    background: linear-gradient(90deg, #a200ff, #00ffff);
    background-size: 200% 200%;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
    transition: background-position 0.50s ease-in-out;
}

.card-servicos:hover::before {
    background-position: 100% 0;
}

.card-content-servicos h2 {
    padding: 2px;
}

.card-content-servicos p {
    font-size: 1em;
    text-align: center;
    margin-top: 5px;
}

.card-content-servicos i {
    font-size: 2.5em;
}

.carrossel-container {
    position: relative;
    width: 80%;
    max-width: 800px;
    overflow: hidden;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.carrossel {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-behavior: smooth;
}

.carrossel img:hover {
    filter: grayscale(0%);
}

.seta {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #333;
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
}

.seta:hover {
    background-color: #555;
}

.seta-esquerda {
    left: 10px;
}

.seta-direita {
    right: 10px;
}

.portfolio {
    width: 100%;
    height: 100%;
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0rem 7rem 0rem;
}

.container-portfolio {
    width: 100%;
    max-width: 1400px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.headline-portfolio {
    width: 100%;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.headline-portfolio .titulo {
    width: 50%;
    font-size: 8vw;
    font-weight: lighter;
    font-family: sans-serif;
}

.headline-portfolio .descricao {
    width: 50%;
    font-size: 2rem;
    text-align: right;
    line-height: 1.4;
    letter-spacing: 1.5px;
}

.container-case {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8rem;
}

.case1,
.case2,
.case3,
.case4 {
    width: 100%;
    height: 70vh;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.imagens-case {
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.textos-case {
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.conteudo-textos-case {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: left;
    justify-content: center;
    flex-direction: column;
}

.conteudo-textos-case h1 {
    color: var(--color-white);
    font-size: 6vw;
    letter-spacing: 3px;
}

.conteudo-textos-case p {
    color: var(--color-gray2);
    font-size: 1.5rem;
    line-height: 1.4;
    letter-spacing: 1.5px;
    padding-bottom: 1.5rem;
}

.conteudo-textos-case span {
    width: 180px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    background-color: var(--color-white);
    border-radius: 50px;
    color: var(--color-black);
    font-weight: bold;
    letter-spacing: 1.2px;
}

.galeria-section {
    position: relative;
    width: 100vw;
    background-color: var(--background1);
    height: auto;
    display: flex;
    justify-content: center;
    /*    font-family: 'Poppins', sans-serif;*/
    transition: .4s ease-in;
    font-family: sans-serif;
    box-sizing: border-box;
    background: black;
    padding-bottom: 30px;
}

.galeria-section h4 {
    padding-bottom: 1em;
    font-size: 2.1em;
    font-weight: bold;
    color: var(--color-white);
    text-align: center;
    font-weight: 500;
}

.galeriacustom {
    flex-direction: column;
    height: 80vh;
    padding-top: 67px;
}


.depoimentos-section {
    position: relative;
    width: 100vw;
    background-color: var(--background1);
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 10px;
    /*    font-family: 'Poppins', sans-serif;*/
    transition: .4s ease-in;
    font-family: sans-serif;
    box-sizing: border-box;
}

.depoimentos-section h4 {
    padding-bottom: 1.5em;
    font-size: 3rem;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--color-white);
    text-align: center;
}

.depoimentos-galeria {
    box-sizing: border-box;
    position: relative;
    max-width: 800px;
    max-height: 600px;
    transform-style: preserve-3d;
    display: flex;
    flex-direction: column;
    align-items: center;
}


input[type=radio] {
    display: none;
    box-sizing: border-box;
}

.card {
    box-sizing: border-box;
    position: absolute;
    width: 60%;
    height: 100%;
    left: 0;
    right: 0;
    margin: auto;
    transition: transform .4s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container-galeria {
    box-sizing: border-box;
    position: relative;
    max-width: 800px;
    max-height: max-content;
    transform-style: preserve-3d;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cards {
    box-sizing: border-box;
    position: relative;
    width: 100%;
    height: 100%;
    margin-bottom: 20px;
}

.cards img {
    width: 600px;
    height: auto;
    box-sizing: border-box;
    border-radius: 10px;
    object-fit: cover;
}

#item-1:checked~.cards #song-3,
#item-2:checked~.cards #song-1,
#item-3:checked~.cards #song-2 {
    transform: translatex(-40%) scale(.8);
    opacity: .4;
    z-index: 0;
}

#item-1:checked~.cards #song-2,
#item-2:checked~.cards #song-3,
#item-3:checked~.cards #song-1 {
    transform: translatex(40%) scale(.8);
    opacity: .4;
    z-index: 0;
}

#item-1:checked~.cards #song-1,
#item-2:checked~.cards #song-2,
#item-3:checked~.cards #song-3 {
    transform: translatex(0) scale(1);
    opacity: 1;
    z-index: 1;

    .cards img {
        box-sizing: border-box;
        box-shadow: 0px 0px 5px 0px rgba(81, 81, 81, 0.47);
    }
}

.depoimentos {
    background-color: var(--azul-escuro);
    height: 800px;
}

.cardContainerDepoimentos {
    display: flex;
    gap: 10px;
}


.cardDepoimento {
    /* background-color: var(--color-white);*/
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    /*    width: 90%; */
    height: 370px;
    margin: 0 auto;
    font-family: sans-serif;
    align-content: center;
    /*box-shadow: 2px 2px 20px var(--azul-totvs);*/
}

.cardDepoimentoHeader {
    display: flex;
    align-items: center;
    /* gap: 10px; */
    padding: 15px;
    /* max-width: 1000px; */
    width: 50%;
    height: 100px;
    max-width: 300px;
    position: relative;
    /* width: 800px; */
    margin: 0 auto;
    /* padding-bottom: 10px; */
    margin-bottom: 15px;
}

.fotoEmpresaDepoimentoDiv{
    align-items: center;
}

.imagemLogoDepoimento {
    height: 80px;
    width: 80px;
    border: 3px solid var(--azul-totvs);
    border-radius: 50%;
    object-fit: cover;
}

.nomeEmpresaDepoimento {
    font-weight: 600;
    font-size: 1.4em;
    color: var(--color-white);
}

.empresaDepoimentoTexto span {
    font-size: 1.3em;
    color: #444;
}



.contato {
    z-index: 10;
    width: 100vw;
    height: 100vh;
    display: flex;
    padding: 2rem 0rem 3rem 0rem;
    align-items: center;
    justify-content: center;
    background-color: var(--azul-escuro);
    position: relative;
    top: -18px;
}

#particles-js {
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.clear {
    justify-content: center;
    display: flex;
    width: 90%;
}

.container-contato {
    width: 100%;
    height: 100vh;
    max-width: 1400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.headline-contato {
    width: 100%;
    height: 20vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.titulo-contato {
    height: 100%;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: left;
}

.titulo-contato h4 {
    color: var(--color-gray2);
    width: 100%;
    font-size: 5vw;
    font-weight: lighter;
    font-family: sans-serif;
    text-align: center;
}

.descricao-contato {
    width: 50%;
}

.descricao-contato a {
    text-decoration: none;
    color: var(--color-gray2);
    font-size: 1.1rem;
    letter-spacing: 1.5px;
    line-height: 1.4;
    font-weight: bold;
    left: -30px;
    position: relative;
}

.conteudo-contato {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.formulario-contato {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    margin: 25px;
}

.formulario-contato h2 {

    width: 100%;
    font-size: 2rem;
    text-align: left;
    color: var(--title);

}

.formulario-contato p {
    font-size: 1.5rem;
    color: white;
    font-weight: 500;
    line-height: 1.4;
}

.form {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0 auto;
    width: 100%;
}

.form input {
    width: 90%;
    height: 30px;
    border-radius: 30px;
    outline: none;
    border: 2px solid var(--color-white);
    padding: 1.5rem 1rem;
    font-size: 1.2rem;
    background-color: var(--color-black);
    color: var(--color-white);
    margin: 0 auto;
}

.divSelect {
    display: flex;
    flex-direction: column;
    color: white;
    margin: 0 auto;
    width: 100%;
}

.form textarea {
    width: 90%;
    height: 100%;
    border-radius: 30px;
    outline: none;
    border: 2px solid rgba(128, 128, 128, 0.5);
    font-size: 1.2rem;
    padding: 1.5rem 1rem;
    margin: 0 auto;
    color: var(--color-white);
    background-color: var(--color-black);
    border: 2px solid var(--color-white);


}

.form select {
    border: 2px solid var(--color-white);
    padding: 6px;
    font-size: 1.2rem;
    height: 57px;
    border-radius: 30px;
    outline: none;
    width: 90%;
}

::placeholder {
    color: rgb(199, 198, 198);
}

.selectTotvtsProduto {
    background-color: var(--color-black);
    height: 50px;
    margin-top: 3px;
    border-radius: 22px;
    position: relative;
    left: 3px;
    color: white;
}

option {
    background: var(--azul-escuro);
    color: var(--color-white);

    &:hover {
        color: var(--azul-totvs);
    }
}

.btn {
    background-color: var(--color-white);
    color: black;
    font-weight: bold;
    width: 50%;
    margin: 0 auto;
    padding: 1rem 0rem;
    border: 2px solid rgba(128, 128, 128, 0.5);
    outline: none;
    border-radius: 30px;
    transition: all 0.20s ease-in-out;
}

.btn:hover {
    border: 2px solid white;
    color: white;
    background: var(--azul-escuro);
    transform: scale(1.05);
    cursor: pointer;
}

.logo-contato {
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: right;
}

.logo-contato img {
    width: auto;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.6) 0%, transparent 70%);
    height: 370px;
    animation: flutuarImg 2s ease-in-out infinite;
    border-radius: 36px;
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 100%);
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 100%);
}

.footer {
    width: 100vw;
    padding: 2rem 1rem;
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    background-color: var(--azul-escuro);
    z-index: 50;
    margin: -20px;
}

.container-footer {
    width: 100%;
    max-width: 1400px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.footer-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo-column {
    align-items: flex-start;
}

.logo-column img {
    margin: 20px;
    width: 144px;
    filter: brightness(50);
}

.menu-column {
    text-align: center;
}

.tituloApoio {
    color: var(--title);
    text-align: center;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 10px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 0.5rem;
}

.footer-nav a {
    text-decoration: none;
    color: var(--color-white);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--azul-totvs);
    transform: scale(1.02);
}

#logo-footer-img:hover {
    transform: scale(1.1);
    transition: 0.2s ease-in-out;
    cursor: help;
}

.social-column {
    text-align: right;
}

.social-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-links a {
    text-decoration: none;
    color: var(--color-white);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.social-links a i {
    margin-right: 0.5rem;
}

.social-links a:hover {
    color: var(--azul-totvs);
    transform: scale(1.02);
}

.credits-column {
    text-align: right;
    font-size: 0.9rem;
}

.credits-column p {
    margin: 0.2rem 0;
}



.services {
    background-color: var(--azul-escuro);
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100vw;
    z-index: 10;
}

.servicesTitle {
    color: var(--title);
    font-size: 3em;
}

.container-services {
    width: 100%;
    /*   height: 100%;*/
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-services {
    width: 50%;
    gap: 3rem;
    color: var(--color-white);
    display: flex;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
}

.headlineConteudo {
    width: 100%;
    text-align: right;
    display: flex;
    float: left;
    justify-content: end;
}

.textoHeadlineServices {
    display: flex;
    height: 400px;
    width: 60%;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    border-radius: 20px;
    background: var(--card);
    box-shadow: 2px 2px 20px var(--azul-totvs);
}

.headlineTitulo h3 {
    color: var(--title);
    font-size: 1.5em;
    text-align: right;
    padding: 20px;
}


.textoHeadlineServices span {
    color: var(--color-white);
    font-size: 1.5em;
    text-align: right;
    padding: 20px;
}

.card-service {
    color: var(--color-white);
    border-radius: 25px;
    width: 250px;
    height: 239px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    overflow: hidden;
    margin: 5px;
    animation: borda3 4s ease-in-out infinite;
    background: var(--card);
    box-shadow: 2px 2px 20px var(--azul-totvs);
    padding: 5px;
}


.divisaoCardsConjunto {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.linhaValor {
    color: var(--title);
    font-weight: 600;
    font-size: 1.6em;
}

.linhaTituloCard {
    font-size: 1.2em;
    font-weight: 500;
}

.card-service i {
    font-size: 3em;
    color: var(--title);
    margin-bottom: 8px;
}

.main-content-wrapper {
    display: flex;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding-top: 20px;
}

.panel-esquerda {
    flex: 1;
    padding: 60px 40px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;

    position: relative;
    overflow: visible;
    will-change: transform;
}

.titulo-principal {
    color: var(--title);
    font-size: 2.1em;
    font-weight: 700;
    line-height: 1.25;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.05);
    margin: 0;
}

.panel-direita {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.conteudo-branco-painel {
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 10px var(--azul-totvs);
    min-height: 400px;
}

.titulo-oportunidades {
    font-size: 1.5em;
    font-weight: 600;
    color: var(--title);
    margin-bottom: 5px;
}

.titulo-divisor {
    border: none;
    height: 1px;
    background-image: linear-gradient(to right, var(--title) 50%, transparent 100%);
    margin-bottom: 20px;
}

.descricao-analise {
    font-size: 1em;
    color: var(--color-white);
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: justify;
}


.artigos {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.item-checklist {
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--title);
    position: relative;
    flex-shrink: 0;
}

.check-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 10px;
    border: solid var(--azul-escuro);
    border-width: 0 3px 3px 0;
    transform: translate(-50%, -60%) rotate(45deg);
}


.tituloCardFinal {
    margin: 0 auto;
}

.textos-sobreCards {
    margin: 0;
    color: var(--color-white);
    font-size: 1em;
    line-height: 1.4;
}

.imgRoboCard {
    animation: flutuarImg 2s ease-in-out infinite;
    height: 450px;
    will-change: transform;
    position: absolute;
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 100%);
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 100%);
}


.imgdivCard {
    height: 100%;
    width: 100%;
    align-items: center;
    display: flex;
    justify-content: center;
}


.video-section {
    width: 100vw;
    background-color: var(--azul-escuro);
    display: flex;
    justify-content: center;
    padding: 30px 10px;
    font-family: sans-serif;
    transition: .4s ease-in;
    box-sizing: border-box;
    height: 90vh;
    z-index: 2;
}

.video-container-section {
    box-sizing: border-box;
    position: relative;
    max-width: 800px;
    max-height: 600px;
    transform-style: preserve-3d;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.video-container {
    width: 100vw;
    text-align: center;
    align-items: center;
    margin-bottom: 10px;
}

.video-container h4 {
    text-align: center;
    font-size: 2em;
    font-weight: bold;
    color: var(--title);
    padding: 20px;
    margin-bottom: 30px;
}

.video-wrapper {
    position: relative;
    display: inline-block;
}

#meuVideo {
    display: block;
    outline: none;
    box-shadow: 0px 20px 88px var(--azul-totvs);
    border-radius: 25px;
}

.play-button {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    opacity: 0.9;
    transition: opacity 0.2s ease-in-out;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--azul-totvs);
}

.play-button:hover {
    opacity: 1;

}


.btnEntraEmcContato2 {
    margin: 10px auto;
    padding: 15px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    font-family: sans-serif;
    max-width: 400px;
    width: 40%;
    color: white;
    border: none;
    cursor: pointer;
    background: linear-gradient(20deg, #59cab2, #917797, #2da1cf);
    background-size: 600% 600%;
    animation: bgMove 6s infinite;
    text-align: center;
}

.btnEntraEmcContato2 a {
    color: white;
    transition: 0.3s ease-in-out;

    &:hover {
        transform: translateY(-5px);
        transform: scale(1.08);
    }
}

.galeria-cards-complementares {
    padding: 20px;
    padding-bottom: 0;
    align-items: center;
    display: flex;
    justify-content: center;
    width: 100%;
}

.card-complementar {
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    padding: 20px;
    padding-bottom: 0;

    position: relative;
    overflow: hidden;


}

.card-complementar p {
    position: absolute;
    bottom: 15%;
    color: white;
    line-height: 1.5;
    width: 50%;
    word-wrap: break-word;
    font-weight: 600;
    font-size: 2em;
    margin: 0 auto;
    z-index: 3;
    text-align: end;
}

.imagem-container {
    position: relative;
    width: 100vw;
    display: flex;

}

.imagem-container img {
    width: 95%;
    display: block;
    position: relative;
    z-index: 2;
    border-radius: 40px;
    margin: 0 auto;
}

.imagem-container::before,
.imagem-container::after {
    content: '';
    position: absolute;
    z-index: 1;
    width: 150px;
    height: 150px;
    filter: blur(50px);
    opacity: 0.8;
    pointer-events: none;
}

.imagem-container::before {
    top: 0;
    right: 0;
    background: radial-gradient(circle at top right, rgba(0, 255, 255, 0.8), transparent 70%);
}

.imagem-container::after {
    bottom: 0;
    left: 0;
    background: radial-gradient(circle at bottom left, rgba(0, 255, 255, 0.8), transparent 70%);
}


#mc_embed_signup_scroll {
    gap: 1em;
    display: flex;
    flex-direction: column;
}

#depoimentos {
    padding-bottom: 0;
    background-color: var(--color-black);
}

.container-animacao {
    position: relative;
    width: 100%;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.animacao-palavras {
    position: absolute;
    font-size: 2em;
    color: var(--color-white);
    position: absolute;
    font-weight: bolder;
    z-index: 5555;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
    background: #483c7ca3;
    padding: 5px;

    /*  */
    transform: translateZ(0);
    will-change: transform, opacity;
}

.animacao-palavras:nth-of-type(1) {
    top: 20%;
    left: 15%;
    font-size: 2.5rem;
}

.animacao-palavras:nth-of-type(2) {
    top: 35%;
    left: 70%;
    font-size: 2.2rem;
}

.animacao-palavras:nth-of-type(3) {
    top: 51%;
    left: 10%;
    font-size: 1.5rem;
}

.animacao-palavras:nth-of-type(4) {
    top: 66%;
    left: 76%;
    font-size: 2.0rem;
}

.animacao-palavras:nth-of-type(5) {
    top: 10%;
    left: 73%;
    font-size: 3.2rem;
}

.animacao-palavras:nth-of-type(6) {
    top: 69%;
    left: 25%;
    font-size: 1.7rem;
}


.img-card-complementar,
#tituloCardComplementar {
    position: relative;

}

.logo1 {
    min-width: 50px;
    max-width: 150px;
}

.infocomplemento {
    display: flex;
    flex-direction: row;
    align-content: center;
    gap: 10px;

}

.completemento-servico {
    height: 37px;
    align-items: center;
    align-content: center;

}

.ddComplemento {
    height: 40px;
    align-items: center;
    align-content: center;
}

.tituloInfoCardService {
    color: var(--title);
    font-weight: 600;
    font-size: 1.3em;
}

blockquote {
    color: var(--color-white);
    padding: 15px;
}
