/******************************************************************** geral ************************************************************************/
@font-face {
    font-family: "Avenir";
    src: url("../fonts/avenir/Avenir_Next_Medium.woff2") format("woff2"),
        url("../fonts/avenir/Avenir_Next_Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Avenir Condenced";
    src: url("../fonts/avenir/AvenirNextCondensed-Medium.ttf") format("ttf");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Avenir Condenced";
    src: url("../fonts/avenir/AvenirNextCondensed-DemiBold-03.ttf") format("ttf");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: "Avenir";
    src: url("../fonts/avenir/Avenir_Next_Bold.woff2") format("woff2"),
        url("../fonts/avenir/Avenir_Next_Bold.woff") format("woff");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Avenir";
    src: url("../fonts/avenir/Avenir_Next_Regular.woff2") format("woff2"),
        url("../fonts/avenir/Avenir_Next_Regular.woff") format("woff");
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

:root {
    --white: #ffffff;
    --black: #000000;
    --primary: #6C3FF9;
    --secondary: #60C5BA;
    --lil-grey: #e2e2e2;
    --footer-color: #03000B;
    --bg-primary: #0A0027;
    --background-primary-color: #050015;
    --primary-gradient: linear-gradient(91deg, #6C3FF9 28.49%, #60C5BA 100%);
    --gradient-main: linear-gradient(113deg, #0D0034 10.44%, #091D3F 53.65%, #00655A 95.31%);
}

html,
body {
    overflow-x: hidden;
}

body {
    font-family: 'Avenir', sans-serif;
    background-color: var(--background-primary-color);
    color: var(--white);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

figure {
    margin: 0;
}

ul,
li {
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: 'Avenir Condenced', sans-serif;
}

section {
    padding-top: 100px;
    padding-bottom: 100px;
}

section.min {
    padding-top: 50px;
    padding-bottom: 50px;
}

nav.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 0;
    margin: 0;

    .conteudo {
        border-radius: 0px 0px 25px 25px;
        background: linear-gradient(90deg, rgba(108, 63, 249, 0.15) 0%, rgba(96, 197, 186, 0.15) 100%);
        backdrop-filter: blur(7.5px);
        width: 100%;
        padding: 16px 30px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

ul.navbar-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 100px;
    margin: 0;
    margin-bottom: 0!important;
    padding: 0;
    list-style: none;
}

ul.navbar-menu li a {
    color: var(--white);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    text-decoration: none;
    transition: all .3s;

    &:hover {
        color: var(--primary);
    }
}

img.logo-header {
    width: 124px;
    height: 24px;
}

a,
button {
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

h1,
.t-h1 {
    font-size: 80px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    font-family: 'Avenir Condenced', sans-serif;
}

h2,
.t-h2 {
    font-size: 60px;
    line-height: normal;
    font-family: 'Avenir Condenced', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
}

h6, 
.t-h6 {
    font-size: 16px;
    line-height: normal;
    font-family: 'Avenir Condenced', sans-serif;
}

.c-primary {
    color: var(--primary) !important;
}

.c-secondary {
    color: var(--secondary) !important;
}

p,
.t-p {
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    font-family: 'Avenir', sans-serif;
    margin: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    line-height: 24px;
    text-align: center;
    padding: 15px 60px;
    color: var(--white);
    background: var(--primary-gradient);
    border: 0;
    box-sizing: border-box;
    border-radius: 25px;
}

.btn-full {
    width: 100%;
}

.btn:hover,
.btn-outline {
    background: transparent;
    outline: 1px solid var(--primary);
    color: var(--secondary);
}

.btn-outline:hover {
    color: var(--white);
    background: var(--primary-gradient);
    outline: 0;
}

.btn-social {
    background-color: transparent;
    border: 1px solid var(--secondary);
    color: var(--secondary);
    cursor: pointer;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.btn-social:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.relative {
    position: relative;
}

.social {
    display: flex;
    gap: 15px;
}

.container-img-cliente {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container-img-cliente img {
    object-fit: contain;
    max-width: 256px;
    width: 100%;
    height: auto;
    max-height: 120px;
    filter: grayscale(1);
    filter: grayscale(100%) brightness(1000%);
}


.bg-primary-color {
    background-color: var(--bg-primary);
}

.aux-btn {
    background-color: transparent;
    color: var(--white);
    font-size: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
}

.animated {
    max-height: 50vh;
    object-fit: contain;
}

.home main {
    background: var(--gradient-main);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.logo-home {
    width: 185px;
    height: 47px;
    margin-top: 15px;
}

.margint30 {
    margin-top: 30px;
}

.margint50 {
    margin-top: 50px;
}

.aux-imagem {
    position: relative;
}

.content-inicio {
    position: relative;
    z-index: 2;
}

.imagem-inicio {
    min-width: 500px;
    width: 500px;
    height: 500px;
    object-fit: contain;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
}

.numero {
    display: flex;
    align-items: center;
    gap: 15px;
}

.t-p {
    font-family: "Avenir Condensed", sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.container-numeros {
    display: flex;
    justify-content: space-between;
}

.aux-numeros {
    font-family: "Avenir Condensed", sans-serif;
    font-size: 80px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.card-servico {
    background-color: var(--background-primary-color);
    position: relative;
    border-radius: 25px;
    height: 300px;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 40px;

    &::before {
        content: '';
      position: absolute;
      top: -2px; right: -2px; bottom: -2px; left: -2px;
      z-index: -1;
      background: var(--primary-gradient);
      border-radius: 25px;
    }

    .icon {
        width: 100px;
        min-width: 100px;
        max-width: 100px;
        height: 100px;
        min-height: 100px;
        max-height: 100px;
        border-radius: 50%;
        background: linear-gradient(90deg, rgba(105, 61, 250, 0.3) 0%, rgb(97, 191, 188, .3) 100%);
        display: flex;
        align-items: center;
        justify-content: center;
    }
}


/******************************************************************** depoimentos ************************************************************************/

.img-depoimento {
    width: 175px;
    height: 175px;
    border-radius: 25px;
    overflow: hidden;
    margin-inline: auto;
}

.img-depoimento img {
    width: 100%;
    min-height: 100%;
    height: auto;
    object-fit: cover;
}

.depoimentos .owl-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.depoimentos .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    border-radius: 2px;
    background-color: #ffffff5d;
    border: none;
}

.depoimentos .owl-dots .owl-dot.active {
    background-color: var(--secondary);
}

.owl-nav.disabled {
    display: none;
}

cite {
    color: var(--secondary);
    font-size: 24px;
    font-style: normal;
    line-height: normal;
}

q {
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.owl-nav button {
    color: #ffffff;
    background-color: var(--secondary);
    border: none;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 32px;
    width: 32px;
}

.owl-nav button.owl-next {
    right: -30px;
}

.owl-nav button.owl-prev {
    left: 0;
}

/******************************************************************** formulário ************************************************************************/


.form-group {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    margin-bottom: 25px;
    position: relative;
}

.form-group.whit-errors-2-lines {
    margin-bottom: 35px;
}

.form-group label {
    font-size: 16px;
    font-style: 600;
    color: var(--secondary);
}

.form-group .form-control {
    width: 100%;
    margin-top: 10px;
    border: none;
    border-bottom: 1px solid var(--white);
    background: transparent;
    border-radius: 0;
    color: var(--white);

    &:focus {
        outline: none;
        border-bottom: 1px solid var(--secondary);
        box-shadow: none;
    }
}

footer {
    background-color: var(--footer-color);
    color: var(--white);
    padding-top: 43px;
    padding-bottom: 47px;
    
    .btn-social {
        border: 1px solid var(--primary);
        color: var(--primary);
    }

    .logo {
        width: 206px;
        margin-inline: auto;
    }

    .social {
        justify-content: center;
        margin-top: 40px;
    }

    .btn-social:hover {
        border-color: var(--secondary);
        color: var(--secondary);
    }

    .copy {
        margin-top: 70px;
    }
}

@media (min-width: 992px) {
    .text-start-lg {
        text-align: start!important;
    }


    .slider-item {
        padding-left: 100px;
        padding-right: 100px;
    }
}