﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
}

/* Provide sufficient contrast against white background */
a {
    color: #0366d6;
}

@media (max-width: 500px) {

    .footer {
        font-size: 10px;
    }

    .image {
        width: 80px !important;
    }
}

.nav-item {
    margin-right: 12px;
}


.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
    font-size: 14px;
}

@media (min-width: 768px) {

    menu-mobile {
        display: inline-flex;
    }

    html {
        font-size: 16px;
    }

    .Banner {
        width: 100%; /* A imagem ocupará 100% da largura do contêiner pai */
        height: 100% !important; /* Mantém a proporção original da imagem */
        max-width: 100%; /* Garante que a imagem não fique maior que o contêiner */
    }
}

.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
    position: static;
    min-height: 100%;
    width: 100%;
    height: auto;
}

header {
    width: 100%;
    height: auto;
}

body {
    /* Margin bottom by footer height */
    /*  margin-bottom: 60px;*/
}

.footer {
    width: 100%;
    white-space: nowrap;
    line-height: 40px;
}

/* BASIC */

body {
    font-family: "Poppins", sans-serif;
    position: relative;
    /*  height: 100vh;
    width: 100vw;*/
    margin: 0;
}

a {
    color: #92badd !important;
    display: inline-block;
    text-decoration: none;
    font-weight: 400;
}

h2 {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin: 40px 8px 10px 8px;
    color: #cccccc;
}



/* STRUCTURE */

.wrapper {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    min-height: 100%;
    padding: 20px;
}

#formContent {
    -webkit-border-radius: 10px 10px 10px 10px;
    border-radius: 10px 10px 10px 10px;
    background: #fff;
    padding: 30px;
    width: 90%;
    max-width: 450px;
    position: relative;
    padding: 0px;
    -webkit-box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);
    box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);
    text-align: center;
}

#formFooter {
    background-color: #f6f6f6;
    border-top: 1px solid #dce8f1;
    padding: 25px;
    text-align: center;
    -webkit-border-radius: 0 0 10px 10px;
    border-radius: 0 0 10px 10px;
}

/* TABS */

h2.inactive {
    color: #cccccc;
}

h2.active {
    color: #0d0d0d;
    border-bottom: 2px solid #5fbae9;
}

/* FORM TYPOGRAPHY*/

input[type=button], bottom[type=submit], input[type=reset] {
    background-color: #56baed;
    border: none;
    color: white;
    padding: 15px 80px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    font-size: 13px;
    -webkit-box-shadow: 0 10px 30px 0 rgba(95,186,233,0.4);
    box-shadow: 0 10px 30px 0 rgba(95,186,233,0.4);
    -webkit-border-radius: 5px 5px 5px 5px;
    border-radius: 5px 5px 5px 5px;
    margin: 5px 20px 40px 20px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

    input[type=button]:hover, bottom[type=submit]:hover, input[type=reset]:hover {
        background-color: #39ace7;
    }

    input[type=button]:active, bottom[type=submit]:active, input[type=reset]:active {
        -moz-transform: scale(0.95);
        -webkit-transform: scale(0.95);
        -o-transform: scale(0.95);
        -ms-transform: scale(0.95);
        transform: scale(0.95);
    }

input[type=text], #password {
    background-color: #f6f6f6;
    border: none;
    color: #0d0d0d;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 5px;
    width: 85%;
    border: 2px solid #f6f6f6;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-border-radius: 5px 5px 5px 5px;
    border-radius: 5px 5px 5px 5px;
}

    input[type=text]:focus, #password:focus {
        background-color: #fff;
        border-bottom: 2px solid #5fbae9;
    }

    input[type=text]::placeholder:, #password::placeholder {
        color: #cccccc;
    }



/* ANIMATIONS */

/* Simple CSS3 Fade-in-down Animation */
.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

/* Simple CSS3 Fade-in Animation */
@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-moz-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fadeIn {
    opacity: 0;
    -webkit-animation: fadeIn ease-in 1;
    -moz-animation: fadeIn ease-in 1;
    animation: fadeIn ease-in 1;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    animation-duration: 1s;
}

    .fadeIn.first {
        -webkit-animation-delay: 0.4s;
        -moz-animation-delay: 0.4s;
        animation-delay: 0.4s;
    }

    .fadeIn.second {
        -webkit-animation-delay: 0.6s;
        -moz-animation-delay: 0.6s;
        animation-delay: 0.6s;
    }

    .fadeIn.third {
        -webkit-animation-delay: 0.8s;
        -moz-animation-delay: 0.8s;
        animation-delay: 0.8s;
    }

    .fadeIn.fourth {
        -webkit-animation-delay: 1s;
        -moz-animation-delay: 1s;
        animation-delay: 1s;
    }

/* Simple CSS3 Fade-in Animation */
.underlineHover:after {
    display: block;
    left: 0;
    bottom: -10px;
    width: 0;
    height: 2px;
    background-color: #56baed;
    content: "";
    transition: width 0.2s;
}

.underlineHover:hover {
    color: #0d0d0d;
}

    .underlineHover:hover:after {
        width: 100%;
    }

/* OTHERS */

*:focus {
    outline: none;
}

#icon {
    width: 60%;
}

li :hover {
    background-color: #0000006e;
    color: white !important;
    border-radius: 7px;
    padding: 8px;
}

.rota-campanha {
}

body {
    background-image: url("");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: auto;
}

img {
    max-width: 100vh;
}

footer {
    bottom: 0;
    width: 100%;
    height: 3.5rem;
    position: static;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 10px;
}

li a {
    color: white !important;
}


@media only screen and (max-width: 800px) {
    .logoMenu{
        display:flex;
    }
}

@media (min-width: 980px) {
    .bloco-flex {
        display: flex;
        justify-content:center;
    }
}

@media only screen and (max-width: 500px) {
    .login-cad {
        width: 137px !important;
        margin-left: 31% !important;
    }
}

/*/////////////////////////// layout ///////////////////////*/


.fundoBlack {
    z-index: 99;
    position: absolute;
    background-color: #0000008f;
    height: 140vh;
    width: 100%;
    margin-top: 0px;

}

.loading {
    height: 150px;
    margin-left: 45%;
    margin-top: 15%;
}

.menu {
    box-shadow: 4px 10px 30px 10px #000000a6;
    /*    border-radius: 15px;*/
    justify-content: center !important;
    margin-top: -3%;
    width: 100% !important;
}

.margin {
    margin: 100px;
}


.efect {
    transition: transform 0.5s ease; /* Define a suavidade e a duração da transição */
    width: 100%; /* A largura da imagem ocupa todo o contêiner */
}

.efect:hover {
    transform: scale(1.2); /* Aumenta a imagem em 20% ao passar o mouse */
}


.efect-loop {
    width: 100%;
    height: auto;
    animation: zoomAnimation 3s ease-in-out infinite; /* Animação de zoom que se repete infinitamente */
}

.Banner {
    animation: loadEffect2 3s ease-in forwards;
}

.nav-item {
    animation: loadEffect 3s ease-in forwards;
}


.footer_mobile {
    display: flex;
    position: static;
    background-color: black;
/*    font-size: x-large;*/
    justify-content: center;
    width: 100%;
}

.footer {
    bottom: 0;
    height: 3.5rem;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 10px;
}

/* Definindo os keyframes para o zoom */
@keyframes zoomAnimation {
    0% {
        transform: scale(1); /* Tamanho inicial da imagem */
        border-radius: 5px;
    }

    50% {
        transform: scale(1.2); /* Aumenta o zoom para 20% */
        border-radius: 5px;
    }

    100% {
        transform: scale(1); /* Retorna ao tamanho normal */
        background-color: #0d0d0da8;
        border-radius: 5px;
    }
}

@keyframes loadEffect2 {
    0% {
        opacity: 0; /* A imagem começa invisível */
        transform: scale(0); /* A imagem começa um pouco maior */
    }

    50% {
        opacity: 1; /* A imagem se torna visível */
        transform: scale(0.5); /* Leve redução de escala para criar um efeito de aproximação */
    }

    100% {
        opacity: 1; /* Mantém a imagem visível */
        transform: scale(1); /* Retorna ao tamanho normal */
    }
}

@keyframes loadEffect {
    0% {
        opacity: 0; /* A imagem começa invisível */
        transform: translateX(100%); /* A imagem começa fora da tela à direita */
    }

    50% {
        opacity: 1; /* A imagem se torna visível */
        transform: translateX(-10%); /* Move a imagem levemente para a esquerda */
    }

    100% {
        opacity: 1; /* Mantém a imagem visível */
        transform: translateX(0); /* A imagem volta à sua posição normal */
    }
}


 /*MOBILE /////////////////////////////////*/ 
@media (max-width: 500px) {

    .logoMenu{
     display:none !important;
    }

    .efect-loop {
        width: 100%;
        height: auto;
        animation: zoomAnimation 3s ease-in-out infinite; /* Animação de zoom que se repete infinitamente */
    }

    .Banner {
        animation: loadEffect2 3s ease-in forwards;
    }

    .nav-item {
        animation: loadEffect 3s ease-in forwards;
    }


    .img-Mobile {
        width: 100%;
        max-width: 400px;
        height: auto;
    }

    img {
        width: auto; /* A imagem ocupará 100% da largura do contêiner */
        height: auto; /* Mantém a proporção da imagem */
        max-width: 400px; /* Garante que a imagem não seja maior que a largura do contêiner */
        max-height: 400px;
    }

    .margin {
        margin: 0px;
    }

    .corpo {
        padding: 0%;
    }

    .menu {
        box-shadow: 4px 10px 30px 10px #000000a6;
/*        border-radius: 15px;*/
        margin: 0px;
        justify-content: center;
    }

    .loading {
        margin-left: 27% !important;
        margin-top: 27% !important;
    }

    .fundoBlack {
        z-index: 99;
        position: absolute;
        background-color: #0000008f;
        height: 140vh;
        width: 100%;
        margin-top: -17.5%;
    }
    
    footer {
        font-size: 12px !important;
    }

}


.nav-item ul {
    display: none;
    list-style-type: none;
    padding-left: 20px; /* Ajuste de padding se necessário */
}

.dropdown-menu a:hover {
    background-color: white!important;
    color: black !important;
}

.dropdown-menu a {
    color: white !important;
}