@import url("Lato/lato.css");

* {
    padding: 0;
    margin: 0;
}

html {
    --color: #2c2e91;
}


.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 500;
    line-height: 1.2;
}

*,
body {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    padding: 0;
    margin: 0;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    /* evita menu no toque longo no iOS */
    outline: none;
    user-select: none;
}

body {
    background: var(--color);
}

.progress {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 11;
    display: none;
    justify-content: center;
    align-items: center;
    background: #f0f3f8;
    pointer-events: none;
}

.text-loads {
    text-align: center;
    padding: 8px 15px;
    margin-top: 10px;
    font-size: 14px;
    font-weight: 700;
}


.conn-progress {
    position: absolute;
    width: 250px;
}

.focusprogres {
    display: flex;
}

/*

.conn-progress>div {
    float: left;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.conn-progress>div span {
    padding: 7px;
    font-size: 14px;
    float: left;
    padding-right: 20px;
}

.conn-progress>div:nth-child(2) {
    width: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}


.focusprogres .conn-progress {
    display: block;
    will-change: opacity, transform;
    animation: open .5s cubic-bezier(.18, .89, .32, 1.28);
    -ms-transform-origin: top center;
    transform-origin: center;
    pointer-events: painted;
}

@keyframes open {
    0% {
        opacity: 0;
        top: 0;
    }

    100% {
        opacity: 9;
        top: 60px;
    }
}  */

.lds-ring {
    display: inline-block;
    position: relative;
    width: 20px;
    height: 20px;
}

.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    margin: 0;
    border: 3px solid var(--color);
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: var(--color) transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}

@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.bainer-login {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    text-align: center;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    min-height: 100%;
}

.mm-form {
    max-width: 300px;
    text-align: center;
    display: inline-block;
    width: 100%;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    position: relative;
}

form ::-webkit-input-placeholder {
    color: #fff !important;
}

form :-moz-placeholder {
    color: #fff !important;
}

form ::-moz-placeholder {
    color: #fff !important;
}

form :-ms-input-placeholder {
    color: #fff !important;
}

form input {
    width: calc(100% - 40px);
    padding: 9px 20px;
    border: 0;
    background-color: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-radius: 6px;
    text-align: left;
    outline: 0;
    font-size: 15px;
    font-weight: 300;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    margin-bottom: 14px;
    height: inherit;
    line-height: 1.5;
    appearance: none;
    background-clip: padding-box;
}

.website-logo-inside {
    margin-bottom: 0px;
}

form h3 {
    color: #fff;
    text-align: center;
    font-size: 24px;
    margin-bottom: 10px;
}

form p {
    color: #fff;
    text-align: center;
    font-size: 16px;
    font-weight: 300;
    line-height: 20px;
    margin-bottom: 30px;
}

form .page-links {
    margin-bottom: 34px;
}

form .other-links small,
form .other-links a {
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    margin-left: 10px;
}

form .other-links small {
    margin-left: 0px;
    font-size: 12px;
    font-weight: 400;
}

form .page-links a {
    text-decoration: none;
    font-size: 14px;
    margin-right: 20px;
    position: relative;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

form .page-links a.active {
    color: #fff;
    cursor: pointer;
}

form .page-links a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -10px;
}

form .page-links a:before {
    background-color: rgba(255, 255, 255, 0.5);
}

form .page-links a.active:before {
    background-color: #fff;
}

form .form-button {
    margin-top: 0.9rem;
    margin-bottom: 1.5rem;
}

form .form-button a {
    color: #fff;
    font-size: 14px;
}

form input:hover,
form input:focus {
    border: 0;
    background-color: #fff;
    color: #8D8D8D;
}

img.logo-size {
    width: 200px;
    margin-bottom: 50px;
}

.ibtn {
    border-radius: 6px;
    border: 0;
    padding: 6px 28px;
    background-color: #fff;
    color: #29A4FF;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    margin-right: 10px;
    outline: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.16);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.16);
}

.bbtn-green {
    background-color: #006edb;
    color: #fff;
    -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.16);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.16);
    border: 0;
}

form .ibtn:hover,
form .ibtn:active,
form .ibtn:focus {
    -webkit-box-shadow: 0 5px 6px rgba(0, 0, 0, 0.16);
    box-shadow: 0 5px 6px rgba(0, 0, 0, 0.16);
    border: 0;
}

.loadbranchs {
    display: none;
    padding-bottom: 40px;
}

/* estado inicial (invisível + levemente para baixo) */
.filterBranch {
    display: flex;
    position: relative;
    width: 220px;
    margin: auto;
    opacity: 0;
    transform: translateY(8px);
    margin-bottom: 5px;
    height: 40px;
    cursor: pointer;
    transition: opacity .25s ease, transform .25s ease;
}

.filterBranch:hover div:nth-child(1) {
    background: #006edb;
}

.filterBranch>div:nth-child(1) {
    width: 40px;
    height: 30px;
    background: rgba(255, 255, 255, .15);
    border-radius: 6px;
    margin-left: 5px;
    display: flex;
    margin-top: 5px;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    color: #fff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.filterBranch>div:nth-child(2) {
    flex: 1;
    height: 40px;
    display: flex;
    align-items: center;
    color: #fff;
    padding-left: 8px;
    font-size: 13px;
    justify-content: center;
    position: absolute;
    width: 100%;
}

.filterBranch.in {
    opacity: 1;
    transform: translateY(0);
}

/* acessibilidade */
@media (prefers-reduced-motion: reduce) {
    .filterBranch {
        transition: none;
    }
}


/* Camada fixa do slideshow atrás de tudo */
#bg-slideshow {
    position: fixed;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    /* não bloqueia cliques */
    z-index: 0;
    /* fica no fundo */

    /* fallback */
    opacity: .08;
}

/* As duas imagens ocupam a tela e fazem crossfade */
#bg-slideshow img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: none;
    filter: none;
    transition:
        opacity 900ms ease,
        transform 12s ease,
        filter 900ms ease;
    will-change: opacity, transform, filter;
}

#bg-slideshow img.is-active {
    opacity: 1;
}

/* Efeito 1: Ken Burns (zoom-in suave) */
#bg-slideshow img.fx-kenburns.is-active {
    transform: scale(1.06);
}

/* Efeito 2: Blur-in (entra desfocado e foca) */
#bg-slideshow img.fx-blur {
    filter: blur(8px);
    transform: scale(1.02);
}

#bg-slideshow img.fx-blur.is-active {
    filter: blur(0);
}

/* Efeito 3: Slide (deslocamento sutil) */
#bg-slideshow img.fx-slide {
    transform: translateX(2%);
}

#bg-slideshow img.fx-slide.is-active {
    transform: translateX(0);
}

/* Vinheta opcional para legibilidade */
#bg-slideshow::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, .35) 100%);
}

@media (max-width: 950px) {
    .mm-form {
        max-width: 300px;
    }
}