:root {
    font-size: 16px;

    --brandBlue: #02B7D5;
    --brandOrange: #F89C43;
    --light: #F5F8F2;
    --gray: #B7B7B7;
    --gray-2: #707070;
    --dark: #121212;
}

@font-face {
    font-family: 'capturaregular_italic';
    src: url('/fonts/captura-italic-webfont.woff2') format('woff2'),
        url('/fonts/captura-italic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'capturalight';
    src: url('/fonts/captura-light-webfont.woff2') format('woff2'),
        url('/fonts/captura-light-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'capturaregular';
    src: url('/fonts/captura-regular-webfont.woff2') format('woff2'),
        url('/fonts/captura-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'capturathin';
    src: url('/fonts/captura-thin-webfont.woff2') format('woff2'),
        url('/fonts/captura-thin-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'capturabold';
    src: url('/fonts/captura-bold-webfont.woff2') format('woff2'),
        url('/fonts/captura-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@-ms-viewport {
    width: device-width;
}

html {
    height: 100%;
    overflow-x: hidden;
}

body {
    width: 100vw;
    min-height: 100vh;
    overflow-y: scroll;
    overflow-x: hidden;
    background: #fff;
    margin: 0;
    padding: 0;
    color: var(--brandBlue);
    font-family: 'capturaregular', sans-serif;
}

main {
    padding-top: 90px;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

#spinner .spinner-border {
    border: var(--bs-spinner-border-width) solid var(--brandBlue);
    border-right-color: transparent;
}

/* Navbar */
.bg-nav {
    background-color: var(--brandBlue);
}

.top-border {
    top: 0;
    left: 0;
    width: 100vw;
    height: 3px;
    z-index: 50;
    background-color: var(--brandOrange);
}

.btn-lang {
    border: none;
    background-color: transparent;
    color: #fff;
    font-family: sans-serif, 'capturaregular';
    font-size: 1rem;
}

.btn-lang:hover {
    opacity: .7;
    transition: 300ms ease-in-out;
}

.lang .selected {
    opacity: .6;
}

.btn-sm:hover {
    opacity: .7;
    transition: 300ms ease-in-out;
}

.nav .nav-link {
    color: #fff;
    font-family: sans-serif, 'capturaregular';
    font-size: 1rem;
}

.nav .nav-link:hover {
    opacity: .7;
    transition: 300ms ease-in-out;
}

.navbar .navbar-toggler {
    color: transparent;
    border: none;
    background-color: transparent;
}

.navbar-toggler-icon {
    background-image: none !important;
    background-color: var(--light);
    height: 2px;
    width: 25px;
    margin: 15px 0;
    position: relative;
    transition: all 0.35s ease-out;
    transform-origin: center;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    display: block;
    background-color: var(--light);
    height: 2px;
    content: "";
    position: absolute;
    transition: all 0.35s ease-out;
    width: 100%;
}

.navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler-icon::after {
    bottom: -8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    top: 0;
    transform: rotate(90deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    bottom: 0;
    transform: rotate(90deg);
}

.bar-div {
    font-size: 1.25rem;
    margin-left: -6px;
    margin-right: -6px;
}

.nav-mob {
    transition: 500ms ease-in-out;
    border-top: 0.5px solid rgba(255, 255, 255, 0.4);
    padding-top: 15px;
    padding-bottom: 10px;
}

/* Footer */
.container-fluid {
    padding-left: 0;
    padding-right: 0;
}

.footer {
    background-color: #F7FAFC;
    color: var(--brandBlue);
    border-top: 2px solid var(--brandBlue);
}
/*
.footer .borderBlue {
    border-right: 2px solid var(--brandBlue);
    border-left: 2px solid var(--brandBlue);
}

.footer .borderBlueTop {
    border-top: 2px solid var(--brandBlue);
} */

.footer .copy {
    border-top: 2px solid var(--brandBlue);
}

.list-unstyled li {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.list-unstyled li a {
    width: 100%;
    display: block;
    text-align: center;
    font-family: 'capturaregular', sans-serif;
    font-size: 1rem;
    color: var(--brandBlue);
    text-decoration: none;
}

.list-unstyled li a:hover {
    opacity: .7;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: 300ms ease-in-out;
}

.btn-terms {
    color: var(--brandBlue);
    font-family: 'capturaregular', sans-serif;
    font-size: 1rem;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.btn-terms:hover {
    opacity: .7;
    transition: 300ms ease-in-out;
}

/* Hero Home */
.hero-home {
    min-height: max-content;
    background-color: var(--brandBlue);
}

/* clients Home */
.clients-home {
    padding: 30px;
}

.clients-home img {
    max-width: 150px;
    max-height: 60px;
}

.logos__marquee {
	display: flex;
	overflow-x: hidden;
	user-select: none;
	mask-image: linear-gradient(
		to right,
		hsl(0 0% 0% / 0),
		hsl(0 0% 0% / 1) 20%,
		hsl(0 0% 0% / 1) 80%,
		hsl(0 0% 0% / 0)
	);
}

.reverse .marquee__logos {
    animation-direction: reverse;
}

.marquee__logos {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: space-around;
	gap: 1rem;
	min-width: 100%;
	animation: loop 120s linear infinite;
}
.marquee__logos img {
	display: block;
	margin-inline: 2rem;
}

@keyframes loop {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-100%);
	}
}




/* Home Integration */
.home-integration {
    min-height: 100vh;
    background: linear-gradient(to bottom, #f7fafc, #edf7fd 70%, #fff 70%, #fff);
    z-index: 1;
}

.home-integration .pt-5 {
    padding-top: 5rem !important;
    z-index: 15;
}

.tela {
    width: 100%;
    height: auto;
}

/* Cta */
.cta {
    background-image: url(../img/bg-cta.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 500px;
}

/* Testimonial */

.item-testimonials {
    border-radius: 8px;
    border: solid 1px #d9d9d9;
}

.item-testimonials .box-texto {
    height: 130px;
    overflow-y: scroll;
    padding-right: 12px;
    scrollbar-color: var(--brandBlue) transparent;
}

.testimonial-top {
    height: 40px;
}

.testimonial-logo {
    max-width: 200px;
    max-height: 40px;
    width: auto;
    height: auto;
    object-fit: contain;
}

div.carousel-nav-icon>svg {
    height: 110px;
    width: 50px;
}

/* About */
.hero-about {
    background: transparent linear-gradient(180deg, #fff 0%, #E7F6FF 80%, #fff 80%, #fff 100%) 0% 0% no-repeat padding-box;
}

.circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.95) 59%, #fff);
    box-shadow: 0 10px 15px 0 rgba(2, 183, 213, 0.14);
    display: flex;
    justify-content: center;
    align-items: center;
}

.arrows {
    width: 20px;
    height: 40px;
}

.arrows path {
    stroke: #02B7D5;
    fill: transparent;
    stroke-width: 2px;
    animation: arrow 2s infinite;
    -webkit-animation: arrow 2s infinite;
}

.about-left-img {
    padding-top: 150px;
    margin-left: -40px;
}

/* .box-about {
    padding: 20px;
    background: #363636 0% 0% no-repeat padding-box;
    mix-blend-mode: color-burn;
    border-radius: 10px;
    position: relative;
    min-height: 500px;
} */


.box-dna-valores .pt-lg-5 {
    padding-top: 8rem !important;
}

@keyframes arrow {
    0% {
        opacity: 0
    }

    40% {
        opacity: 1
    }

    80% {
        opacity: 0
    }

    100% {
        opacity: 0
    }
}

@-webkit-keyframes arrow {
    0% {
        opacity: 0
    }

    40% {
        opacity: 1
    }

    80% {
        opacity: 0
    }

    100% {
        opacity: 0
    }
}

.arrows path.a1 {
    animation-delay: -1.5s;
    -webkit-animation-delay: -1.5s;
}

.arrows path.a2 {
    animation-delay: -1s;
    -webkit-animation-delay: -1s;
}

.arrows path.a3 {
    animation-delay: -0.5s;
    -webkit-animation-delay: -0.5s;
}
/*Support */
.support-section{
    height: 450px;
}

.support-box {
    background-color: #102a52;
    padding: 4.5rem;
}


.support-box-img {
    background-image: url(../img/img-suporte.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right;
    max-height: 100%;
}

.support-box-selo {
    position: relative;
    top: -90%;
    left: calc(42% - 75px);
}

/*Realtime */

.box-lift{
    height: 450px;
    background-image: linear-gradient(to bottom, #fff, #fff 18%, #f7fafc 18%, #f7fafc, #f7fafc 90%, #fff 90%, #fff);
}

/* solutions */

.solutions-hero{
    height: calc(100vh - 90px);
    position: relative;
}

.solutions-hero video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pattern {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: url(/img/pattern.png) repeat left top;
}

.fallback-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/img/video-fallback.webp');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.solutions-hero-content {
    position: relative;
    color: #fff;
    text-align: center;
}

.solutions-content-2 .mt-n1{
    margin-top: -1rem;
}

.solutions-content-2 .mt-n2{
    margin-top: -1rem;
}

.cta-solutions {
    background-color: #F7FAFC;
    max-height: 700px;
}

.cta-solutions .square {
    max-height: 30px;
    min-width: 30px;
    background-color: var(--brandOrange);
}

.cta-solutions img {
    width: auto;
    max-height: 100%;
    object-fit: cover;
}

/*Novidade */

.news-list .card{
    background-color: #f5f5f5;
    border: none;
}

.news-list .card .card-img-top{
    max-height: 250px;
    min-height: 250px;
    object-fit: cover;
    object-position: center;
}

.news-list .card .card-body{
    padding: 0 16px 30px 16px;
}

.news-list .card .card-body .news-title{
    min-height: 60px;
    max-height: 60px;
}

.news-open {
    border: none;
}

.news-open .card-body iframe {
    width: 100%;
    height: 500px;
}

.news-open .card-body .news-desc p{
    font-family: 'capturaregular', sans-serif;
    font-size: 1rem;
    color: var(--gray-2);
    font-weight: 400;
    margin: 0px 0px 15px;
    padding: 0px;
    text-align: justify;
    user-select: text !important;
    cursor: auto;
    font-style: normal;
    font-variant-ligatures: normal;
    font-variant-caps: normal;
    letter-spacing: normal;
    orphans: 2;
    text-indent: 0px;
    text-transform: none;
    widows: 2;
    word-spacing: 0px;
    -webkit-text-stroke-width: 0px;
    white-space: normal;
    background-color: rgb(255, 255, 255);
    text-decoration-thickness: initial;
    text-decoration-style: initial;
    text-decoration-color: initial;
}

/* Contact */
.contact .container-fluid{

    background: transparent linear-gradient(287deg, #F2F5F7 0%, #E4EFF9 90%) 0% 0% no-repeat padding-box;
}

.box-contact {
    max-width: 400px;
}

.contact .form {
    max-width: 520px;
}

.contact .form input,
.contact .form textarea {
    border: 2px solid #D9D9D9;
    border-radius: 8px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    outline: none;
}

.contact .form input:focus, .contact .form textarea:focus{
    background-color: #deeff1;
    border: 2px solid var(--brandOrange)
}

.contact .text-successo {
    color: #17c49e;
}

/*Privacidade */

.privacidade {
    color: var(--gray-2);
}
/* Fonts */

.bold-header {
    font-family: 'capturabold', sans-serif;
    font-size: 4rem;
    color: #fff;
    letter-spacing: -3.5px;
    line-height: 3rem;

}

.regular-header {
    font-family: 'capturaregular', sans-serif;
    font-size: 1.5rem;
    color: #fff;
}

.bold-gray {
    font-family: 'capturabold', sans-serif;
    font-size: 2.5rem;
    color: var(--gray-2);
}

.bold-gray-0 {
    font-family: 'capturabold', sans-serif;
    font-size: .85rem;
    color: var(--gray-2);
}

.bold-gray-1 {
    font-family: 'capturabold', sans-serif;
    font-size: 1.125rem;
    color: var(--gray-2);
}

.bold-gray-2 {
    font-family: 'capturabold', sans-serif;
    font-size: 2rem;
    color: var(--gray-2);
}

.bold-gray-3 {
    font-family: 'capturabold', sans-serif;
    font-size: 1.75rem;
    color: var(--gray-2);
}

.bold-gray-4 {
    font-family: 'capturabold', sans-serif;
    font-size: 3rem;
    color: var(--gray-2);
}

.bold-white {
    font-family: 'capturabold', sans-serif;
    font-size: 3rem;
    letter-spacing: -2.75px;
    color: #fff;
}

.bold-white-2 {
    font-family: 'capturabold', sans-serif;
    font-size: 2rem;
    color: #fff;
}

.regular-white {
    font-family: 'capturaregular', sans-serif;
    font-size: 1.5rem;
    color: #fff;
}


.regular-white-2 {
    font-family: 'capturaregular', sans-serif;
    font-size: 1.125rem;
    color: #fff;
}

.regular-gray-0 {
    font-family: 'capturaregular', sans-serif;
    font-size: .85rem;
    color: var(--gray-2);
}


.regular-gray-2 {
    font-family: 'capturaregular', sans-serif;
    font-size: 1.25rem;
    color: var(--gray-2);
}

.regular-gray-3 {
    font-family: 'capturaregular', sans-serif;
    font-size: 1rem;
    color: var(--gray-2);
}

.regular-gray-4 {
    font-family: 'capturaregular', sans-serif;
    font-size: 2rem;
    color: var(--gray-2);
}

.regular-gray {
    font-family: 'capturaregular', sans-serif;
    font-size: 1.15rem;
    color: var(--gray);
}

.regular-gray-1 {
    font-family: 'capturaregular', sans-serif;
    font-size: 1rem;
    color: var(--gray);
}


.regular-blue {
    font-family: 'capturaregular', sans-serif;
    font-size: 1rem;
    color: var(--brandBlue);
}

.regular-blue-2 {
    font-family: 'capturaregular', sans-serif;
    font-size: 1.25rem;
    color: var(--brandBlue);
}

.bold-blue {
    font-family: 'capturabold', sans-serif;
    font-size: 2.5rem;
    color: var(--brandBlue);
}

.bold-blue-2 {
    font-family: 'capturabold', sans-serif;
    font-size: 2rem;
    letter-spacing: -0.125rem;
    color: var(--brandBlue);
}

.bold-blue-3 {
    font-family: 'capturabold', sans-serif;
    font-size: 1.25rem;
    color: var(--brandBlue);
}

/*Buttons*/
.btn-orange {
    max-width: 300px;
    border-radius: 50px;
    padding: 10px 30px;
    background-color: var(--brandOrange);
    border: solid 2px var(--brandOrange);
    color: #fff;
    font-family: 'capturaregular', sans-serif;
    font-size: 1rem;
    align-items: center;
    text-decoration: none;
}

.btn-orange:hover {
    transition: 300ms ease-in-out;
    background-color: transparent;
    border: solid 2px #fff;
}

.btn-news {
    max-width: 180px;
    border-radius: 50px;
    padding: 10px 30px;
    background-color: var(--brandOrange);
    border: solid 2px var(--brandOrange);
    color: #fff;
    font-family: 'capturaregular', sans-serif;
    font-size: 1rem;
    align-items: center;
    text-decoration: none;
}

.btn-contact {
    width: 200px;
    border-radius: 50px;
    padding: 10px 30px;
    background-color: var(--brandOrange);
    border: solid 2px var(--brandOrange);
    color: #fff;
    font-family: 'capturaregular', sans-serif;
    font-size: 1rem;
    align-items: center;
    text-decoration: none;
}

.btn-news:hover,
.btn-contact:hover {
    transition: 300ms ease-in-out;
    background-color: transparent;
    color: var(--brandOrange);
    border: solid 2px var(--brandOrange);
}

.btn-news:hover svg path {
    transition: 300ms ease-in-out;
    fill: var(--brandOrange);
}

.btn-white {
    max-width: 300px;
    border-radius: 50px;
    padding: 10px 30px;
    background-color: #fff;
    border: solid 2px var(--brandOrange);
    color: var(--brandOrange);
    font-family: 'capturaregular', sans-serif;
    font-size: 1rem;
    align-items: center;
    text-decoration: none;
}

.btn-white .arrow path {
    fill: #F89C43;
    /* Cor padrão */
}

.btn-white:hover {
    transition: 300ms ease-in-out;
    background-color: transparent;
    border: solid 2px #fff;
    color: #fff;
}

.btn-white:hover .arrow path {
    transition: 300ms ease-in-out;
    fill: #fff;
}

.btn-line {
    max-width: 300px;
    border-radius: 50px;
    padding: 10px 30px;
    background-color: transparent;
    border: solid 2px #fff;
    color: #fff;
    font-family: 'capturaregular', sans-serif;
    font-size: 1rem;
    align-items: center;
    text-decoration: none;
}

.btn-line:hover {
    transition: 300ms ease-in-out;
    background-color: var(--brandBlue);
    border: solid 2px var(--brandBlue);
    color: #fff;
}

.btn-orange-2 {
    max-width: 300px;
    border-radius: 50px;
    padding: 10px 30px;
    background-color: var(--brandOrange);
    border: solid 2px var(--brandOrange);
    color: #fff;
    font-family: 'capturaregular', sans-serif;
    font-size: 1rem;
    align-items: center;
    text-decoration: none;
}

.btn-orange-2:hover {
    transition: 300ms ease-in-out;
    background-color: var(--brandBlue);
    border: solid 2px var(--brandBlue);
}


.text-gray {
    color: var(--gray);
}



/* Media Queries */

@media (max-width: 1165px) {
     .regular-gray-2 {
         font-size: 1.125rem;
     }
}

@media (max-width: 1064px) {
    .regular-gray-2 {
        font-size: 1rem;
    }
}

@media (max-width: 992px) {
    .hero-home {
        padding-top: 80px;
    }

    /* .footer .borderBlue {
        border-right: 0;
        border-left: 0;
    }

    .footer .borderBlueTop {
        border-top: 0;
    } */

    .box-dna-valores .pt-lg-5 {
        padding-top: 1.5rem !important;
    }
    .box-lift{
        padding: 30px 0;
        height: auto;
        background-image: linear-gradient(to bottom, #f7fafc,  #f7fafc);
    }
    .news-open .card-body iframe {
        height: 400px;
    }

    .box-contact {
        max-width: 300px;
    }

}

@media (max-width: 768px) {
    .nav-mob {
        align-items: center;
    }

    .bold-header {
        font-size: 3.5rem;
        letter-spacing: -3px;
        line-height: 3rem;
    }

    div.carousel-nav-icon>svg {
        width: 40px;
    }

    .bold-gray {
        font-size: 2rem;
    }

    .bold-white {
        font-size: 2.125rem;
        letter-spacing: -2px;

    }
    .support-box {
        padding: 2rem;
    }

    .solutions-content-2 .mt-n1{
        margin-top: 0;
    }

    .solutions-content-2 .mt-n2{
        margin-top: -2rem;
    }

    .bold-gray-4 {
        font-size: 2.5rem;
    }
    .news-open .card-body iframe {
        height: 300px;
    }

    .bold-gray-1 {
        font-size: 1.35rem;
    }

}

@media (max-width: 576px) {

    div.carousel-nav-icon>svg {
        width: 30px;
    }
}

@media (max-width: 547px) {

    :root {
        font-size: 14px;
    }

    .hero-home {
        padding-top: 40px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .bold-gray-1 {
        font-size: 1.35rem;
    }

    .bold-header {
        font-size: 2.5rem;
        letter-spacing: -2.5px;
        line-height: 3rem;
    }

    div.carousel-nav-icon>svg {
        width: 25px;
    }

    .testimonial-logo {
        max-width: 150px;
        max-height: 40px;
        width: auto;
        height: auto;
        object-fit: contain;
    }

    .home-integration {
        background: linear-gradient(to bottom, #f7fafc, #edf7fd 60%, #fff 60%, #fff);
    }

    .text-mob {
        font-size: 1.25rem;
    }

    .list-mob .nav-link {
        font-size: 1.25rem;
    }

    .bar-div {
        font-size: 1.5rem;
        margin-left: 5px;
        margin-right: 5px;
    }

    .bold-gray-4 {
        font-size: 2.125rem;
    }

    .cta-solutions {
        max-height: 100%;
    }

    .news-open .card-body iframe {
        height: 250px;
    }

    .box-contact {
        max-width: 400px;
    }
}
