/* configs gerais */
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;    
}
html {
    scroll-behavior: smooth;
}
:target {
    scroll-margin-top: 20%;
}
body {
    font-family: 'Roboto', sans-serif;
}
.body-scroll {
    overflow: hidden;
}
.enviando-formulario {
    cursor : not-allowed;
}
h1, h2, h3, h4, h5 {
    letter-spacing: 0.5px;
}
h2 {
    font-size: 2.5rem;
}
h3 {
    font-size: 2.15rem;
    line-height: 40px;
}
h4 {
    font-size: 1.4rem;
}
h5 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}
hr {
    background-color: #123d6e;
    width: 50px;
    height: 3px;
    border: none;
    border-bottom: 2.5px solid #0d0e10;
    margin: 15px auto 25px auto;
}

/* botao contato wpp*/
.whatsapp a {
    color: white;
    background-color: rgb(37, 211, 102);
    position: fixed;
    bottom: 4%;
    right: 4%;
    border-radius: 100%;
    transition: .2s;
    z-index: 9998;
    -webkit-box-shadow: 0px 0px 25px -6px rgba(0,0,0,1);
    -moz-box-shadow: 0px 0px 25px -6px rgba(0,0,0,1);
    box-shadow: 0px 0px 25px -6px rgba(0,0,0,1);
    font-size: 2rem;
    padding: 8px 14px;
}
.whatsapp a:hover {
    background-color: #128C7E;
    transition: .2s;
}
.whatsapp a:before,
.whatsapp a:after
{
	content: '';
    display:block;
    position: absolute;
    border-radius:50%;
    border:1px solid #25d366;
    left: -10px;
    right: -10px;
    bottom: -10px;
    top: -10px;
    animation: circulosWpp 1.5s linear infinite;
    opacity:0;
    backface-visibility:hidden;    
}
.whatsapp a:hover:after, .whatsapp a:hover:before {
    border: 1px solid #128C7E;
}
.whatsapp a:after { 
    animation-delay: .5s;
}
@keyframes circulosWpp {
   0%   { transform: scale(0.5); opacity:0; }
   50%  { opacity:1; }
   100% { transform: scale(1); opacity:0; }
}


/* menu */
nav {
    position: absolute;
    background-color: white;
    width: 100%;
    z-index: 999;
    height: 105px;
    top: 0;
    transition: .2s;
}
.menu-fixo {
    position: fixed;
    height: 70px;;
    z-index: 999;
    transition: .2s;
    background-color: rgba(255, 255, 255);
    border-bottom: 1px solid #E8E8E8;
    -webkit-box-shadow: 0px -13.5px 24px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px -13.5px 24px 0px rgba(0,0,0,0.75);
    box-shadow: 0px -13.5px 24px 0px rgba(0,0,0,0.75);
}
nav ul {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
nav ul:first-child {
    left: 7.5%;
}
nav ul:nth-child(2) {
    right: 7.5%;
}
nav ul:nth-child(2) i.fa-instagram {
    background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); 
    background: -webkit-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
    color: white;
    padding: 9px;
    border-radius: 100%;
    font-size: 0.9rem;
    transition: .2s;
}
nav ul:nth-child(2) a:hover > i.fa-instagram {
    background: -moz-linear-gradient(45deg, #d97710 0%, #ce491a 25%, #b21d34 50%, #a31c52 75%, #96136d 100%); 
    background: -webkit-linear-gradient(45deg, #d97710 0%,#ce491a 25%,#b21d34 50%,#a31c52 75%,#96136d 100%); 
    background: linear-gradient(45deg, #d97710 0%,#ce491a 25%,#b21d34 50%,#a31c52 75%,#96136d 100%); 
    transition: .2s;
}
nav ul:nth-child(2) i.fa-linkedin {
    background-color: #0e76a8;
    color: white;
    padding: 9px;
    border-radius: 100%;
    font-size: 0.9rem;
    transition: .2s;
}
nav ul:nth-child(2) a:hover > i.fa-linkedin {
    background-color: #185a7a;
    transition: .2s;
}
nav ul:nth-child(3) {
    right: 7.5%;
    display: none;
}
@media (max-width: 1300px) {
    nav ul:first-child {
        left: 6.5%;
    }
    nav ul:nth-child(2) {
        display: none;
    }
    nav {
        height: 120px;
    }
    .menu-fixo {
        height: 90px;
    }
    nav ul:nth-child(2) {
        display: none;
    }
    nav ul:nth-child(3) {
        right: 7.5%;
        display: block;
    }
    nav ul:nth-child(3) i {
        font-size: 2rem;
    }
}
nav ul li {
    display: inline-block;
    font-weight: 500;
    margin: 0 20px;
    font-size: 0.85rem;
    text-transform: uppercase;
    transition: .2s;
}
nav ul .menu-redes {
    margin: 0 3px;
}
nav li a {
    color: #133964;
    text-decoration: none;
}
nav li a:hover {
    color: #185ba7;
    cursor: pointer;
    transition: .2s;
}
.menu-fixo ul li {
    font-size: 0.82rem;
}
nav img {
    width: 170px;
    height: auto;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    transition: .2s;
}
.menu-fixo img {
    width: 160px;
    height: 27.30px;
    transition: .2s;
}
@media (max-width: 1300px) {
    nav img {
        width: 160px;
        height: 27.30px;
    }
    .menu-fixo img {
        width: 140px;
        height: 23.89px;
    }
    .menu-fixo ul:nth-child(3) i {
        font-size: 1.8rem;
    }
}
nav button {
    background: none;
    border: none;
    cursor: pointer;
    color: #133964;
}
.scroll-link.active {
    position: relative;
    transition: .2s;
    color: #185ba7;
}
.scroll-link.active::after {
    content: '';
    transition: .2s;;
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 100%;
    height: 0px;
    background-color: #185ba7;
}
/* menu celular */
.menu-celular {
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: 9997;
    top: 0;
    left: 0;
    display: none;
}
.menu-celular-fundo {
    background-color: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 100vh;
    z-index: 10;
    transition: 0.2s;
}
.menu-celular-caixa {
    position: absolute;
    background-color: white;
    left: -80%;
    top: 0;
    width: 80%;
    height: 100vh;
    z-index: 11;
    transition: left 0.3s ease;
}
.menu-celular-caixa.mostrar {
    left: 0;
}
.menu-celular-caixa ul {
    text-align: center;
    padding: 0;
}
.menu-celular-caixa ul li a {
    text-decoration: none;
}
.menu-celular-caixa ul li {
    list-style-type: none;
    padding: 30px 0 30px 20px;
    width: 100%;
    font-size: 0.85rem;
    transition: 0.1s;
    color: #091c33;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    text-align: left;
    text-transform: uppercase;
    border-bottom: 1px solid #F1F1F1;
    text-decoration: none;
    margin: 5px 0;
}
.menu-celular-caixa ul li i {
    margin-right: 8px;
}
.menu-celular-caixa ul li:first-child {
    padding: 50px 0 50px 20px;
}
.logo-menu-celular {
    position: relative;
}
.logo-menu-celular img {
    top: 20px;
    left: 25px;
    height: auto;
}
.logo-menu-celular-img {
    width: 180px; 
}
.fechar-menu-celular {
    position: absolute;
    top: 57px;
    font-weight: 100;
    right: 25px;
}
.fechar-menu-celular:hover li {
    background-color: transparent;
    cursor: pointer;
}
.fechar-menu-celular img {
    width: 20px;
}
.menu-celular button {
    background: none;
    border: none;
    cursor: pointer;
    color: #091c33;
}
.menu-celular-caixa ul li a:hover {
    color: #185ba7;
    transition: 0.1s;
    cursor: pointer;
}
.menu-celular-caixa ul li a {
    color: #091c33;
}
.menu-celular-caixa ul a i {
    position: relative;
    left: -3.5px;
}
nav ul:first-child {
    left: 7.5%;
}
nav ul:nth-child(2) {
    right: 7.5%;
}
.menu-celular ul li a > i.fa-instagram {
    background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); 
    background: -webkit-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
    color: white;
    padding: 9px;
    border-radius: 100%;
    transition: .2s;
    font-size: 1.1rem;
}
.menu-celular ul li a:hover > i.fa-instagram {
    background: -moz-linear-gradient(45deg, #d97710 0%, #ce491a 25%, #b21d34 50%, #a31c52 75%, #96136d 100%); 
    background: -webkit-linear-gradient(45deg, #d97710 0%,#ce491a 25%,#b21d34 50%,#a31c52 75%,#96136d 100%); 
    background: linear-gradient(45deg, #d97710 0%,#ce491a 25%,#b21d34 50%,#a31c52 75%,#96136d 100%); 
    transition: .2s;
}
.menu-celular ul li a > i.fa-linkedin {
    background-color: #0e76a8;
    color: white;
    padding: 9px;
    border-radius: 100%;
    transition: .2s;
    font-size: 1.1rem;
}
.menu-celular ul li a:hover > i.fa-linkedin {
    background-color: #185a7a;
    transition: .2s;
}


/* sobre */
.sobre {
    text-align: center;
    width: 100%;
    padding: 130px 0 110px 0;
    position: relative;
    text-align: center;
}
.sobre hr {
    margin: 15px 0 25px 0;
}
.sobre p {
    margin: 0 auto 12px auto;
    font-size: 1rem;
}
@media (max-width: 1300px) {
    .sobre p {
        font-size: 0.95rem;
    }
}
.sobre-caixa {
    width: 50%;
    position: relative;
    text-align: left;
    padding: 0 70px;
    display: inline-block;
    vertical-align: middle;
}
.sobre h2 {
    margin-top: 15px;
}
@media (max-width: 1000px) {
    .sobre h2 {
        margin-bottom: 10px;
        font-size: 2rem;
    }
}
.sobre-caixa:last-child {
    width: 35%;    
    padding: 0;
}
@media (max-width: 1300px) {
    .sobre {
        padding: 80px 0;
    }
    .sobre-caixa {
        width: 85%;
        padding: 0;
    }
    .sobre-caixa:last-child {
        width: 85%;
        margin-top: 50px;
    }
}
.sobre-caixa p {
    text-align: left;
    line-height: 30px;
}
.sobre-caixa img {
    border-radius: 8px;
}
@media (max-width: 1300px) {
    .sobre-caixa img {
        width: 350px;
        height: 220px;
    }   
}
.sobre span {
    color: #185ba7;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
    letter-spacing: 3px;
}


/* servicos */
.servicos {
    text-align: center;
    padding: 90px 0;
    background-color: #0b2038;
}
.servicos hr, .servicos-celular hr {
    background-color: white;
    border-color: #E8E8E8;
}
.servicos h2, .servicos-celular h2 {
    color: white;
    margin-top: 15px;
}
@media (max-width: 1000px) {
    .servicos-celular h2 {
        margin-bottom: 30px;
        font-size: 1.7rem;
    }
}
.servicos-box {
    width: 29.5%;
    display: inline-block;
    vertical-align: top;
    margin: 25px 15px;
    padding: 47px 10px;
    border-radius: 6px;
    background-color: #f7f7f7;
    transition: .2s;
}

.servicos-box:hover {
    transition: .2s;
    background-color: white;
    transform: scale(1.01);
    cursor: pointer;
}
@media (max-width: 1300px) {
    .servicos-box {
        width: 90%;
        margin: 10px 0;
    }
}
.servicos-box h3 {
    font-size: 1.3rem;
    font-weight: 500;
    color: #0b2038;
    margin: 2px 0 0px 0;
}
.servicos-box p {
    color: #0b2038;
    padding: 0 20px;
    font-size: 1rem;
    line-height: 30px;
}
@media (max-width: 1300px) {
    .servicos-box p {
        font-size: 0.95rem;
    }
}
.servicos-box i {
    border-radius: 100%;
    padding: 8px;
    color: #155093;
    font-size: 2.5rem;
}
.servicos span, .servicos-celular span {
    color: #E8E8E8;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
    letter-spacing: 3px;
}
.servicos-celular {
    display: none;
    text-align: center;
    padding: 90px 0;
    background-color: #0b2038;
}
@media (max-width: 1300px) {
    .servicos {
        display: none;
    }
    .servicos-celular {
        display: block;
    }
}


/* juntar */
.juntar {
    text-align: center;
    padding: 100px 0;
}
.juntar-box {
    width: 35%;
    display: inline-block;
    vertical-align: top;
    margin: 40px 15px 50px 15px;
    border-radius: 6px;
    -webkit-box-shadow: 10px 10px 25px -35px rgba(0,0,0,1);
    -moz-box-shadow: 10px 10px 25px -35px rgba(0,0,0,1);
    box-shadow: 10px 10px 25px -35px rgba(0,0,0,1);
}
.juntar-box-img {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 90px;
    border-radius: 6px 6px 0 0;
}
.jbi-1 {
    background-image: url('img/mercado-financeiro.webp');
}
.jbi-2 {
    background-image: url('img/indicador.webp');
}
.juntar-box h3 {
    font-size: 2rem;
    font-weight: 500;
    color: white;
    background-color: #0b2038;
    padding: 8px 20px;
    display: inline-block;
    border-radius: 100%;
    margin: 2px 0 15px 0;
}
.juntar h2 {
    margin: 15px 0;
}
@media (max-width: 1000px) {
    .juntar-box {
        width: 85%;
        padding: 0;
        margin: 0 0 40px 0;
    }
    .juntar h2 {
        margin-bottom: 30px;
        font-size: 1.7rem;
    }
}
.juntar-box p {
    color: #0b2038;
    font-size: 1rem;
    text-align: left;
    line-height: 30px;
    padding: 35px 20px;
}
.juntar a {
    color: white;
    text-align: left;
    text-decoration: none;
    background-color: #113257;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 0 0 6px 6px;
    padding: 15px 30px;
    box-shadow: inset 0 0 0 0 rgb(14, 41, 72);
    -webkit-transition: ease-out 0.4s;
    -moz-transition: ease-out 0.4s;
    display: inline-block;
    width: 100%;
    transition: ease-out 0.4s;
}
.juntar a:hover {
    box-shadow: inset 700px 0 0 0 rgb(14, 41, 72);
}
.juntar span {
    color: #185ba7;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}
.juntar-box span {
    float: right;
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0;
    margin-bottom: 0;
}

/* contato */
.contato {
    background-color: rgb(14, 42, 74);
    color: #f7f7f7;
    text-align: center;
    padding: 100px 0 80px 0;
}
.contato-box {
    width: 25%;
    display: inline-block;
    vertical-align: top;
    padding: 0 12.5px;
}
.contato-box:first-child {
    text-align: left;
}
.contato-box:last-child {
    width: 45%;
}
.contato h2 {
    margin-bottom: 20px;
    margin-top: 15px;
}
@media (max-width: 1000px) {
    .contato-box {
        width: 85%;
        padding: 0;
    }
    .contato-box:first-child {
        text-align: center;
        margin-bottom: 20px;
    }
    .contato-box:first-child p {
        text-align: left;
    }
    .contato-box:last-child {
        width: 85%;
        padding: 0;
    }
}
.contato p {
    color: #E8E8E8;
    line-height: 30px;
}
.contato i {
    width: 35px;
    font-size: 1.2rem;
}
.contato button {
    color: #0d2541;
    text-decoration: none;
    background-color: white;
    border-radius: 4px;
    padding: 15px 20px;
    box-shadow: inset 0 0 0 0 #E8E8E8;
    -webkit-transition: ease-out 0.4s;
    -moz-transition: ease-out 0.4s;
    transition: ease-out 0.4s;
    border: none;
    margin-top: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}
.contato button i {
    width: auto;
    font-size: 0.85rem;
    margin-left: 4px;
}
.contato button:hover {
    box-shadow: inset 700px 0 0 0 #E8E8E8;
    cursor: pointer;
}
.contato input, .contato textarea {
    padding: 15px 8px ;
    background: none;
    border: none;
    border-bottom: 1px solid #959595;
    margin-bottom: 10px;
    outline: none;
    color: #E8E8E8;
    width: 87%;
    display: inline-block;
    vertical-align: middle;
    transition: 0.1s;
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
}
.contato textarea {
    resize: vertical;
    max-height: 250px;
    min-height: 75px; 
}
.contato input:focus, .contato textarea:focus {
    border-bottom: 1px solid white;
    transition: 0.1s;
}
.contato span {
    color: #E8E8E8;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
    letter-spacing: 3px;
}
.contato-form-box {
    vertical-align: middle;
}

/* rodapé */
footer { 
    background-color: #0b2038;
    text-align: center;
    padding: 75px 0;
    z-index: 3;
    color: #f7f7f7;
}
.footer-box {
    display: inline-block;
    vertical-align: top;
    font-weight: 300;
    text-align: left;
    margin: 0 2%;
}
.footer-box iframe {
    width: 100%;
}
.footer-box:nth-child(1) {
    width: 22%;
}
.footer-box:nth-child(2) {
    width: 23%;
}
.footer-box:nth-child(3) {
    widtH: 30%;
}
@media (max-width: 1000px) {
    footer { 
        padding: 75px 0 0 0;
    }
    .footer-box, .footer-box:nth-child(1), .footer-box:nth-child(2), .footer-box:nth-child(3) {
        margin-bottom: 35px;
        width: 85%;
    }
}
.footer-box h3 {
    font-size: 1.1rem;
    color: #f7f7f7;
    font-weight: 500;
    margin-bottom: 7.5px;
}
.footer-box:first-child h3 {
    margin-bottom: -10px;
}
@media (max-width: 1000px) {
    .footer-box h3 {
        font-size: 1.3rem;
    }
    .footer-horario li {
        font-size: 1.1rem;
        margin: 30px 0;
    }
}
.footer-box img {
    width: 200px;
    height: 40px;
    margin-bottom: 25px;
}
@media (max-width: 1000px) {
    .footer-box img {
        width: 215px;
        height: 43px;
    }
}
.footer-box a {
    text-decoration: none;
    color: #f7f7f7;
    font-weight: 300;
    transition: 0.2s;
}
.footer-box-2-ul i, .footer-horario i {
    font-size: 1rem;
    width: 24px;
}
.footer-box ul li {
    list-style-type: none;
    position: relative;
    margin-bottom: 15px;
}
.footer-box .footer-redes li {
    display: inline-block;
    color:rgb(9, 61, 151);
    font-size: 2rem;
    margin-right: 4px;
}
.footer-redes i {
    border-radius: 3px;
    color: white;
    font-size: 1.5rem;
}
@media (max-width: 1000px) {
    .footer-redes i {
        font-size: 2.2rem;
        margin: 10px 0;
    }
}
.footer-redes .fa-linkedin {
    background-color: #0e76a8;
    padding: 6px 8px;
}
.footer-redes .fa-linkedin:hover {
    background-color: #185a7a;
}
.footer-redes .fa-instagram {
    background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); 
    background: -webkit-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
    padding: 6px 8px;
}
.footer-redes .fa-instagram:hover {
    background: -moz-linear-gradient(45deg, #d97710 0%, #ce491a 25%, #b21d34 50%, #a31c52 75%, #96136d 100%); 
    background: -webkit-linear-gradient(45deg, #d97710 0%,#ce491a 25%,#b21d34 50%,#a31c52 75%,#96136d 100%); 
    background: linear-gradient(45deg, #d97710 0%,#ce491a 25%,#b21d34 50%,#a31c52 75%,#96136d 100%); 
}
.footer-redes a:hover {
    transform: scale(3.5);
}
.rodape-creditos {
    background-color: #091c33;
    color: white;
    padding: 30px 0;
    text-align: center;
    font-size: 0.9rem;
    letter-spacing: 1px;
    font-weight: 300;
    font-family: 'Roboto', sans-serif;
}
.rodape-creditos-texto {
    margin: 0 auto;
}
@media (max-width: 1000px) {
    .rodape-creditos-texto {
        font-size: 0.85rem;
        line-height: 24px;
        width: 85%;
    }
}



.aviso {
    position: fixed;
    display: block;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 9998;
}
.aviso-fundo {
    width: 100%;
    position: absolute;
    height: 100vh;  
}
.aviso-texto {
    background-color: white; 
    width: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: #333;
    padding: 60px 50px 50px 50px;
    border-radius: 5px;
    text-align: left;
}
.aviso-texto span {
    font-weight: 600;
}
.aviso-texto a {
    text-decoration: none;
    background-color: #0b2038;
    color: white;
    letter-spacing: 0.5px;
    border-radius: 4px;
    font-size: 0.9rem;
    padding: 12px 16px;
    background-color: #113257;
    box-shadow: inset 0 0 0 0 rgb(14, 41, 72);
    -webkit-transition: ease-out 0.4s;
    -moz-transition: ease-out 0.4s;
    transition: ease-out 0.4s;
}
.aviso-texto a:hover {
    box-shadow: inset 700px 0 0 0 rgb(14, 41, 72);
}
.aviso-texto a i {
    position: relative;
    top: 2px;
    font-size: 1.1rem;
    margin-right: 6px;
}
.aviso-texto p {
    margin-bottom: 15px;
}
.aviso-texto button {
    background: none;
    border: none;
    color: #333;
    position: absolute;
    top: 7%;
    right: 5%;
    font-size: 1.5rem;
}
.aviso-texto button:hover {
    cursor: pointer;
}
@media (max-width: 1300px) {
    .aviso-texto {
        width: 85%;
        padding: 50px 20px 30px 20px;
    }
}

#mensagem {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999
}
.mensagem-texto {
    background-color: white; 
    color: #333;
    padding: 25px;
    border-radius: 5px;
    text-align: center;
    max-width: 80%;
}
.mensagem-texto.error {
    background-color: white; 
    color: #333;
}


/* loader */
.loader {
    position: fixed;
    height: 100vh;
    width: 100%;
    background-color: white;
    z-index: 9999;
}
.loader-caixa {
    position: absolute;
    left: calc(50% - 30px);
    top: calc(50% - 30px);
    width: 60px;
    height: 60px;
    border-radius: 50%;
}
.loader-caixa .loader-outter {
    position: absolute;
    border: 4px solid #123d6e;
    border-left-color: transparent;
    border-bottom: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    -webkit-animation: loader-outter 1s cubic-bezier(.42, .61, .58, .41) infinite;
    animation: loader-outter 1s cubic-bezier(.42, .61, .58, .41) infinite;
}
.loader-caixa .loader-inner {
    position: absolute;
    border: 4px solid #123d6e;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    left: calc(50% - 20px);
    top: calc(50% - 20px);
    border-right: 0;
    border-top-color: transparent;
    -webkit-animation: loader-inner 1s cubic-bezier(.42, .61, .58, .41) infinite;
    animation: loader-inner 1s cubic-bezier(.42, .61, .58, .41) infinite;
}
@-webkit-keyframes loader-outter {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes loader-outter {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@-webkit-keyframes loader-inner {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

@keyframes loader-inner {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}