:root {
    --blackOpacity: rgb(26, 27, 26, 0.9);
    --white: #ffffff;
    --corPrincipal: #0d223f;
    --corVariacao1: #28a745;
    --corHover: #28a745;
}

body {
    margin: 0;
}

h1,
h2,
h3,
h4 {
    color: var(--corPrincipal) !important;
    font-family: "Fira Sans", sans-serif !important;
}

p {
    font-family: "Heebo", sans-serif !important;
    font-weight: 300 !important;
}

h6 {
    font-weight: 500;
    color: var(--corPrincipal) !important;
}

a:hover {
    text-decoration: none !important;
}

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

img {
    border-style: none;
}

canvas {
    display: inline-block;
}

html {
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body {
    background: #1a1b1a;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}


/* ini: Preloader */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #1a1b1a;
    z-index: 999;
}

#preloader .inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.bolas>div {
    display: inline-block;
    background-color: #28a744;
    width: 25px;
    height: 25px;
    border-radius: 100%;
    margin: 3px;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: animarBola;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.bolas>div:nth-child(1) {
    animation-duration: 0.75s;
    animation-delay: 0;
}

.bolas>div:nth-child(2) {
    animation-duration: 0.75s;
    animation-delay: 0.12s;
}

.bolas>div:nth-child(3) {
    animation-duration: 0.75s;
    animation-delay: 0.24s;
}

@keyframes animarBola {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
    16% {
        -webkit-transform: scale(0.1);
        transform: scale(0.1);
        opacity: 0.7;
    }
    33% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}


/* end: Preloader */


/*Nav*/

header {
    z-index: 999 !important;
}

nav {
    height: 80px !important;
}

.navbar {
    transition: all 0.4s;
}

.navbar .nav-link {
    font-family: "Fira Sans", sans-serif;
    font-weight: 400;
    color: var(--white);
    padding: 10px 20px !important;
    font-size: 0.9rem !important;
}

.shadow {
    box-shadow: 0 10px 30px 0 rgba(67, 80, 98, 0.24), 0 2px 4px 0 rgba(67, 80, 98, 0.1) !important;
}

.navbar .nav-link:hover {
    color: var(--corHover) !important;
}

.navbar-toggler {
    outline: none !important;
    color: var(--white) !important;
    transition: filter 0.2s;
    margin-right: 0% !important;
}

.navbar-toggler .fa {
    width: 50px !important;
    padding: 10% 5% !important;
    margin-top: 5%;
    margin-bottom: 5%;
    border-radius: 15%;
    border: 2px solid var(--white);
}

.navbar-toggler .fa:hover {
    border: 2px solid var(--white);
    filter: brightness(0.98);
}

.navbar-toggler:hover,
.navbar-toggler:focus {
    color: var(--white) !important;
}

.dropdown-menu {
    background-color: var(--blackOpacity) !important;
}

.dropdown-item {
    display: block;
    padding: 0.25rem 1.5rem;
    clear: both;
    font-family: "Fira Sans", sans-serif;
    color: var(--white) !important;
    text-align: left !important;
    white-space: nowrap;
    font-size: 15px;
}

.dropdown-item:hover,
.dropdown-item:focus {
    color: var(--white) !important;
    text-decoration: none;
    background-color: var(--corVariacao1) !important;
}

a .dropdown-item {
    color: var(--white) !important;
}

.navbar.active {
    background: var(--blackOpacity);
    box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.active .nav-link {
    color: var(--white);
}

.navbar.active .nav-link:hover,
.navbar.active .nav-link:focus {
    color: var(--white);
    text-decoration: none;
}

.navbar.active .navbar-brand {
    color: #555;
}

.fas,
.fa-chevron-down {
    color: var(--corVariacao1) !important;
    font-size: 14px;
}


/*Fim NavBar*/


/*Banner*/

.img-banner {
    position: absolute;
    z-index: 999;
    margin-top: 10%;
    width: 60%;
    height: auto;
}


/*Botões*/

.btn {
    border-radius: 50px !important;
    font-family: "Fira Sans", sans-serif !important;
    font-weight: 400 !important;
    font-size: 0.8rem !important;
    text-align: center !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
}

.btn-success {
    border: solid 2px var(--corVariacao1) !important;
    color: var(--white) !important;
}

.btn-success:hover {
    border: solid 2px var(--corVariacao1) !important;
    background-color: transparent !important;
    color: var(--corVariacao1) !important;
}

.btn-outline-success {
    border: solid 2px var(--corVariacao1) !important;
    background-color: transparent !important;
    color: var(--corVariacao1) !important;
}

.btn-outline-success:hover {
    border: solid 2px var(--corVariacao1) !important;
    background-color: var(--corVariacao1) !important;
    color: var(--white) !important;
}


/*Fim Botões*/

#banner {
    z-index: 1;
}

#geracao-negocios {
    height: auto;
}

.geracaoNegocio-bg {
    position: relative;
    left: 0;
    background: url("../images/geracaoNegocio.png") no-repeat center center;
    height: auto;
    width: auto;
    z-index: -2;
}

.texto-justificado {
    word-wrap: break-word;
    text-align: justify;
}

#simuladores {
    background-color: #1a1b1a;
    height: auto;
}

.alinhamento {
    padding: 0px 100px 0px 50px;
}

#atendimento-cliente .alinhamento {
    padding: 0px 0 0px 50px;
}

#simuladores p,
#mecanismos-antifraude p,
#formalizacao-digital p,
#atendimento-cliente p {
    color: var(--white);
}

#simuladores h3,
#mecanismos-antifraude h3,
#formalizacao-digital h3,
#atendimento-cliente h3 {
    color: var(--white) !important;
    font-family: "Fira Sans", sans-serif !important;
}

#gestao-credito,
#mecanismos-antifraude,
#analise-garantia,
#formalizacao-digital,
#atendimento-cliente {
    height: auto;
}

.gestaoCredito-bg {
    left: 0;
    background: url("../images/gestao-decredito2.png") no-repeat bottom center;
    height: auto;
    width: auto;
    z-index: -2;
}

.analiseGarantias-bg {
    left: 0;
    background: url("../images/analise-de-garantia.png") no-repeat bottom center;
    height: auto;
    width: auto;
    z-index: -2;
}

.cobrancaVencido-bg {
    left: 0;
    background: url("../images/cobrancaVencido2.png") no-repeat bottom center;
    height: auto;
    width: auto;
    z-index: -2;
}

.atendimento-bg {
    left: 0;
    background: url("../images/mockup-atendimento3.png") no-repeat center right;
    height: auto;
    width: auto;
    z-index: -2;
}

.layer {
    background-color: rgba(248, 247, 216, 0.3);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.align-vertical {
    display: flex;
    vertical-align: middle;
    margin-top: 12px;
    align-items: center;
}


/*Divisão de forma Triangulo*/

.custom-shape-divider-bottom-1630354015 {
    position: relative;
    bottom: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    background-color: #28a744;
}

.custom-shape-divider-bottom-1630354015 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 54px;
}

.custom-shape-divider-bottom-1630354015 .shape-fill {
    fill: #1a1b1a;
}

.sr .has-animations .is-revealing {
    visibility: hidden;
}

.site-header {
    padding: 24px 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}

.header-links {
    display: inline-flex;
}

.hero {
    position: relative;
    z-index: 0;
}

.hero-bg {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    background: url("../images/BannerPrincipalResponsivo.png") no-repeat right bottom;
    height: 100vh;
    width: auto;
    z-index: -2;
}

#hero-particles {
    position: absolute;
    width: 100%;
    height: 100vh;
    z-index: 9999;
}

.hero .hero-particles-container {
    position: absolute;
    top: 0;
    height: 100vh;
    width: auto;
    left: 0;
    right: 0;
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    left: calc(50% - 360px);
    background-repeat: no-repeat;
}

.hero-inner {
    position: relative;
    z-index: 1;
}

.hero-copy {
    position: relative;
}

.has-animations .hero .hero-bg,
.has-animations .hero::before,
.has-animations .hero::after,
.has-animations .hero-particles-container,
.has-animations .site-header,
.has-animations .hero-title,
.has-animations .hero-paragraph,
.has-animations .hero-cta,
.has-animations .hero .mockup-bg,
.has-animations .hero .device-mockup {
    opacity: 0;
}

.has-animations.is-loaded .hero .hero-bg {
    -webkit-animation: heroBg 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
    animation: heroBg 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

.has-animations.is-loaded .hero::before,
.has-animations.is-loaded .hero::after {
    -webkit-animation: heroFadeIn 0.6s ease forwards 0.45s;
    animation: heroFadeIn 0.6s ease forwards 0.45s;
}

.has-animations.is-loaded .site-header,
.has-animations.is-loaded .hero-particles-container,
.has-animations.is-loaded .hero .mockup-bg {
    -webkit-animation: heroFadeIn 0.6s ease forwards 0.45s;
    animation: heroFadeIn 0.6s ease forwards 0.45s;
}

.has-animations.is-loaded .hero-title {
    -webkit-animation: heroContent 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) forwards 0.15s;
    animation: heroContent 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) forwards 0.15s;
}

.has-animations.is-loaded .hero-paragraph {
    -webkit-animation: heroContent 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) forwards 0.3s;
    animation: heroContent 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) forwards 0.3s;
}

.has-animations.is-loaded .hero-cta {
    -webkit-animation: heroContent 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) forwards 0.45s;
    animation: heroContent 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) forwards 0.45s;
}

.has-animations.is-loaded .hero .device-mockup {
    -webkit-animation: heroMockup 0.6s ease forwards 0.6s;
    animation: heroMockup 0.6s ease forwards 0.6s;
}

@-webkit-keyframes heroBg {
    from {
        -webkit-transform: scaleY(0) scaleX(1.2) skewY(30deg);
        transform: scaleY(0) scaleX(1.2) skewY(30deg);
        opacity: 1;
    }
    to {
        -webkit-transform: scaleY(1) scaleX(1) skewY(0);
        transform: scaleY(1) scaleX(1) skewY(0);
        opacity: 1;
    }
}

@keyframes heroBg {
    from {
        -webkit-transform: scaleY(0) scaleX(1.2) skewY(30deg);
        transform: scaleY(0) scaleX(1.2) skewY(30deg);
        opacity: 1;
    }
    to {
        -webkit-transform: scaleY(1) scaleX(1) skewY(0);
        transform: scaleY(1) scaleX(1) skewY(0);
        opacity: 1;
    }
}

@-webkit-keyframes heroContent {
    from {
        -webkit-transform: translateY(40px) skewY(2deg);
        transform: translateY(40px) skewY(2deg);
        opacity: 0;
    }
    to {
        -webkit-transform: translateY(0) skewY(0);
        transform: translateY(0) skewY(0);
        opacity: 1;
    }
}

@keyframes heroContent {
    from {
        -webkit-transform: translateY(40px) skewY(2deg);
        transform: translateY(40px) skewY(2deg);
        opacity: 0;
    }
    to {
        -webkit-transform: translateY(0) skewY(0);
        transform: translateY(0) skewY(0);
        opacity: 1;
    }
}

@-webkit-keyframes heroMockup {
    from {
        -webkit-transform: translateY(80px);
        transform: translateY(80px);
        opacity: 0;
    }
    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes heroMockup {
    from {
        -webkit-transform: translateY(80px);
        transform: translateY(80px);
        opacity: 0;
    }
    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

@-webkit-keyframes heroFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.mockup-bg {
    pointer-events: none;
}

.mockup-bg img,
.mockup-bg svg {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: auto !important;
    height: auto;
    max-width: 300% !important;
}

.device-mockup {
    position: relative;
    width: 607px;
    height: auto;
    z-index: 1;
}

.mockup-simuladores {
    position: relative;
    width: 377px;
    height: auto;
    margin-top: 24px;
    z-index: 1;
}

.has-animations {
    opacity: 0;
}

.has-animations.is-loaded {
    opacity: 1;
}

.is-boxed {
    background: #fff;
}

.body-wrap {
    background: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1 0 auto;
}


/*Módulos e Servições Home*/

.card {
    background-color: transparent !important;
    box-shadow: none;
    border: none !important;
}

#infografico {
    padding: 100px 0 100px 0;
}

.icones-infografico {
    color: #f1f1f1f1;
    font-size: 3rem;
    transition: filter 0.2s;
}

.card-text {
    color: #f1f1f1f1 !important;
}


/*Rodapé*/

.site-footer {
    position: relative;
    background: #010101;
    height: 100px;
}

.site-footer .footer-particles-container {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.footer-copyright {
    flex: none;
    width: 100%;
    display: inline-flex;
    justify-content: center;
    margin-top: 40px;
    color: #eee;
}

.img-homem {
    height: 600px;
    width: auto;
}


/*Responsivo*/

@media screen and (min-width: 1800px) {
    p,
    .card-text,
    .footer-copyright,
    a,
    .dropdown-item {
        font-size: 20px;
    }
    h3 {
        font-size: 3rem !important;
    }
    .navbar .nav-link,
    .btn {
        font-size: 20px !important;
    }
    .hero-bg {
        background: url("../images/BannerPrincipalGrande.png") no-repeat right bottom;
    }
    .text-banner h1 {
        font-size: 3.3rem;
        color: var(--white);
    }
    .text-banner p {
        font-size: 1.5rem;
        margin-top: 10px;
    }
    .text-geracaoNegocio p {
        text-align: justify;
    }
    .img-mecanismo,
    .img-formalizacao {
        width: 600px !important;
        height: 600px !important;
    }
    .analiseGarantias-bg {
        height: 600px;
        width: auto;
    }
    .atendimento-flex {
        margin-left: 350px;
    }
    .atendimento-bg {
        background: url("../images/mockup-atendimentoGrande.png") no-repeat bottom right;
        height: 700px;
        width: auto;
    }
}

@media screen and (max-width: 1310px) {
    .atendimento-bg {
        background-position-x: left;
    }
}

@media (max-width: 992px) {
    .card-content:after,
    .card-content2:after {
        bottom: -20px;
        left: 0;
        transform: rotate(0deg);
    }
    nav {
        height: 100px !important;
    }
    .navbar-collapse {
        background: var(--blackOpacity) !important;
        text-align: center;
        padding: 10px 40px 40px 40px !important;
        margin-top: -10px !important;
        margin-left: -20px !important;
        margin-right: -20px !important;
        box-shadow: 1px 2px 0px rgba(0, 0, 0, 0.1);
    }
    .dropdown-menu {
        background: transparent !important;
        border: none !important;
        margin-left: -20px !important;
        margin-right: -20px !important;
    }
    .dropdown-item {
        text-align: center !important;
    }
    nav .btn {
        margin-top: 15px !important;
    }
    .hero-bg {
        height: 800px;
        width: auto;
        background: url("../images/BannerPrincipalResponsivo2.png") no-repeat center center;
    }
    .hero-title {
        padding-top: 20%!important;
    }
    #atendimento-cliente .alinhamento,
    .alinhamento {
        padding: 0px 0 0px 0px;
    }
    .geracaoNegocio-bg {
        background: url("../images/geracaoNegocio2.png") no-repeat center center;
        height: 250px;
        width: auto;
    }
    .gestaoCredito-bg {
        height: 250px;
        width: auto;
    }
    .analiseGarantias-bg {
        background: url("../images/analise-de-garantia.png") no-repeat center center;
        height: 250px;
        width: auto;
    }
    .cobrancaVencido-bg {
        background: url("../images/cobrancaVencido2.png") no-repeat top center;
        height: 250px;
        width: auto;
    }
    .atendimento-bg {
        height: 500px;
        background-position-x: right;
        width: auto;
    }
}


/*Ipad*/

@media (max-width: 767px) {
    #banner p {
        font-size: 0.8rem;
    }
}

@media (min-width: 641px) {
    .hero {
        padding-top: 160px;
    }
    .hero::before,
    .hero::after {
        left: calc(50% - 720px);
        width: 1440px;
    }
    .hero::before {
        height: 318px;
        background-size: 1440px 318px;
    }
    .hero::after {
        height: 347px;
        background-size: 1440px 347px;
    }
    .hero-copy {
        margin-bottom: 88px;
    }
    .hero-paragraph,
    .hero-title {
        padding-left: 100px;
        padding-right: 72px;
        color: var(--white) !important;
    }
    .hero-title {
        padding-top: 35%;
    }
    .site-footer::before {
        top: -152px;
        left: calc(50% - 720px);
        width: 1440px;
        height: 582px;
        background-size: 1440px 582px;
    }
    .footer-copyright {
        flex: 50%;
    }
    .footer-copyright {
        justify-content: center;
    }
    .img-mecanismo,
    .img-formalizacao {
        width: 400px;
        height: 400px;
    }
}
@media (max-width:641px){
    .hero-paragraph,
    .hero-title {
        
        color: var(--white) !important;
    }
    .text-banner {
        text-align: center;
    }
    .text-banner p {
        margin-top: 10%;
        
    } 
    #banner p {
        font-size: 1rem;
        padding: 5px 10px;
    }
}

@media (max-width: 596px) {
    .hero-bg {
        height: 900px;
        width: auto;
    }
    .atendimento-bg {
        background: url("../images/mockup-atendimento3.png") no-repeat bottom left;
    }
    .layerBlack {
        background-color: rgba(0, 0, 0, 0);
    }
  
    .align-vertical {
        margin-top: 5px;
    }
    .img-mecanismo,
    .img-formalizacao {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 450px) {
    .hero-title{
font-size: 1.6rem;
padding-top: 50%!important;
    }
    
    .hero-paragraph, .hero-title{
        margin-left: 25px;
    }
    #banner p {
        font-size: 0.8rem;
    }
    .hero-bg {    
        background: url("../images/BannerPrincipalPequeno.png") no-repeat center center;
    }
    #infografico {
        margin-top: -10px;
    }
    .footer-copyright {
        text-align: center;
        margin-top: 20px;
    }

}


