@import url('https://fonts.googleapis.com/css?family=Montserrat:400,800');

*{
    box-sizing: border-box;
}

body {
    background: #13679F;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-family: 'Montserrat', sans-serif;
    height: 90vh;
    margin: 0px 0 50px;
}


h1{
    font-weight: bold;
    margin: 0;
    color: #555;
}

#title-info {
    color: #555;
}

h2 {
    text-align: center;
    color: #fefefe;
}

p {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.5px;
    margin: 20px 0 30px;
}

#info {
    color: #555;
    font-weight: bold;
}

span {
    font-size: 18px;


}

a{
    color: #333;
    font-size: 14px;
    text-decoration: none;
    /*margin: 15px 0;*/
}

button {
    border-radius: 5px;
    border: 1px solid #FF8000;
    background-color: #FF8000;
    color: #fff;
    font-size: 12px;
    padding: 12px 45px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: transform 80ms ease-in;
    cursor: pointer;

}

.modules-button {
    border-radius: 10px;
    border: 1px solid #13679F ;
    background-color: transparent;
    color: #13679F ;
    font-size: 12px;
    padding: 12px 45px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: transform 80ms ease-in;
    margin-bottom: 15px;
}

.modules-button:hover {
    background: #13679F;
    color: #fff;
    transition: ease all 0.3s;
}


button:active {
    transform: scale(0.95);
}

button:focus {
    outline: none;
}

button.ghost {
    background-color: transparent;
    border-color: #FF8000;
    color: #FF8000;
    border-radius: 10px;
}

form {
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 50px;
    height: 100%;
    text-align: center;
}

div.modules {
    display: flex;
    flex-direction: column;
    align-items: s;
}

input {
    background-color: #eee !important;
    border: none !important;
    padding: 12px 15px !important;
    margin: 8px 0 !important;
    widows: 100% !important;
    color: #333 !important;
}

.container {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, .25), 0 10px 10px rgba(0, 0, 0, .22);
    position: relative;
    overflow: hidden;
    width: 1008px;
    max-width: 100%;
    min-height: 540px;

}

.container-cand {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, .25), 0 10px 10px rgba(0, 0, 0, .22);
    position: relative;
    overflow: hidden;
    width: 500px;
    max-width: 100%;
    min-height: 540px;

}

.form-container {
    position: absolute;
    top: 0;
    height: 100%;
    transition: all 0.6s ease-in-out;
}

.sing-in-container {
    left: 0;
    width: 50%;
    z-index: 2;
}

.container.right-panel-active .sing-in-container {
    transform: translateX(100%);
}

.sing-up-container {
    left: 0;
    width: 50%;
    opacity: 0;
    z-index: 1;
}

.sing-up-container-cand {
    width: 100%;
    opacity: 0;
    z-index: 1;
}

.container.right-panel-active .sing-up-container {
    transform: translateX(100%);
    opacity: 1;
    z-index: 5;
    animation: show 0.6s;
}

.container-cand.right-panel-active .sing-up-container-cand {
    opacity: 1;
    z-index: 5;
    animation: show 0.6s;
}


@keyframes show {
    0%, 49.99% {
        opacity: 0;
        z-index: 1;
    }

    50%, 100% {
        opacity: 1;
        z-index: 5;
    }
}


.overlay-container {
    position: absolute;
    top: 0;
    left: 50%;
    width: 50%;
    height: 100%;
    overflow: hidden;
    transition: transform 0.6s ease-in-out;
    z-index: 100;
}

.container.right-panel-active .overlay-container {
    transform: translateX(-100%);
}

.overlay {
    background:#fff;
    background: -webkit-linear-gradient(to right );
    background: linear-gradient(to right);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0 0;
    color: #FFFFFF;
    position: relative;
    left: -100%;
    height: 100%;
    width: 200%;
    transform: translateX(0);
    transition: transform 0.6s ease-in-out;
}

.container.right-panel-active .overlay {
    transform: translateX(50%);
}

.overlay-panel {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 40px;
    text-align: center;
    top: 0;
    height: 100%;
    width: 50%;
    transform: translateX(0);
    transition: transform 0.6s ease-in-out;
}

.overlay-left {
    transform: translateX(0);
}

.container.right-panel-active {
    transform: translateX(0);
}

.overlay-right {
    right: 0;
    transform: translateX(0);
}

img {
    height: 100%;
}

#image-container img {
    height: 100px;
    width: 100px;
}

.container.right-panel-active .overlay-right {
    transform: translateX(20%);
}

#info {
    /*list-style: none;*/
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-weight: 500;
    text-align: left;
}

#info li {
    margin-bottom: 10px;
    list-style-image: url(../images/icon_check.svg);
}

.button1{
    color: #FFF !important;
    background: #FF8000 !important;
    border: 1px solid #FF8000 !important;
    box-shadow: 0 1px 0 #FF8000 inset, 0 1px 2px rgba(0,0,0,0.2) !important;
}
.button1:hover{
    color: #FFF !important;
    background: orange !important;
    border: 1px solid orange !important;
    box-shadow: 0 1px 0 orange inset, 0 1px 2px rgba(0,0,0,0.2) !important;
}

.button2{
    color: #FF8000 !important;
    background: white !important;
    border: 1px solid #FF8000 !important;
}

.button2:hover{
    color: white !important;
    border: 1px solid orange !important;
    background-color: orange !important;
}

.onlyMobile{
    display: none;
}


.dialog-resultado-moderno { 
    width: 90vw; 
    max-width: 1300px; 
    box-shadow: 0 10px 25px rgba(0,0,0,0.1); 
    border-radius: 0.75rem !important; 
}
.dialog-resultado-moderno .ui-dialog-content { 
    padding: 1.5rem; 
    background: #F9FAFB; 
}
.main-container { 
    display: grid; 
    grid-template-columns: 3fr 2fr; 
    gap: 1.5rem; 
}

/* --- COLUNA ESQUERDA (PENDÊNCIAS) --- */
.card-pendencias { 
    border-radius: 0.5rem; 
    box-shadow: 0 1px 3px rgba(0,0,0,0.05); 
    border: 1px solid #FBBF24; 
}
.card-pendencias .ui-panel-titlebar { 
    border-bottom: 1px solid #FDE68A; 
    font-size: 1em; 
}
.card-pendencias .ui-panel-content { 
    padding: 1rem !important; 
}
.subtitulo-pendencias { 
    display: block; 
    margin-bottom: 0.75rem; 
    font-size: 0.9em; 
}
.grid-divergencias { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); 
    gap: 0.75rem; 
    max-height: 250px; 
    overflow-y: auto; 
    padding: 0.25rem; 
}
.item-divergencia { 
    background: #F3F4F6; 
    padding: 0.75rem; 
    border-radius: 0.375rem; 
    font-size: 0.85em; 
}
.texto-questao { 
    font-weight: 600; 
    display: block; 
    margin-bottom: 0.5rem; 
    color: #1F2937; 
}
.badges-divergencia { 
    display: flex; 
    gap: 0.5rem; 
}
.badge { 
    display: inline-block; 
    padding: 0.25em 0.6em; 
    font-size: 90%; 
    font-weight: 600; 
    line-height: 1; 
    text-align: center; 
    white-space: nowrap; 
    vertical-align: baseline; 
    border-radius: 0.375rem; 
}
.badge-ze { 
    background-color: #DBEAFE; 
    color: #1E40AF; 
}
.badge-oficial { 
    background-color: #E5E7EB; 
    color: #4B5563; 
}
.paginacao-container { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    margin-top: 1rem; 
    border-top: 1px solid #F3F4F6; 
    padding-top: 1rem; 
}
.info-pagina { 
    font-size: 0.8em; 
    color: #6B7280; 
}
.instrucao-final { 
    background: #FEF9C3; 
    color: #92400E; 
    padding: 0.75rem; 
    border-radius: 0.5rem; 
    margin-top: 1rem; 
    text-align: center; 
    font-weight: 500; 
    font-size: 0.9em;
}

/* --- COLUNA DIREITA (ESTATÍSTICAS) --- */
.card-estatisticas { 
    box-shadow: 0 1px 3px rgba(0,0,0,0.05); 
}
.stats-simples { 
    font-size: 0.9em; 
    line-height: 1.8; 
    white-space: pre-wrap; 
    font-family: inherit; 
}
.titulo-assuntos { 
    font-weight: 600; 
    font-size: 0.9em; 
    color: #374151; 
}
.scroll-assuntos { 
    height: 220px; 
}
.lista-assuntos { 
    display: flex; 
    flex-direction: column; 
    gap: 0.75rem; 
    margin-left: 0.3rem;
    margin-top: 0.3rem;
}
.item-assunto { 
    display: flex; 
    align-items: center; 
    gap: 0.75rem; 
    font-size: 0.85em; 
    color: #4B5563; 
}
.badge-contador { 
    background-color: #E0E7FF; 
    color: #3730A3; 
}

/* --- RODAPÉ --- */
.dialog-resultado-moderno .ui-dialog-footer { 
    border-top: 1px solid #E5E7EB; 
    padding-top: 1rem; 
    background: #F9FAFB; 
    border-radius: 0 0 0.75rem 0.75rem; 
}
.footer-botoes { 
    display: flex; 
    justify-content: center; 
    gap: 0.75rem; 
}


/* Cartão branco, sem sombra azul, cantos arredondados e bom padding */
.ze-card{
  width: min(520px, 92vw);
  background: #fff;
  border-radius: 14px;
  overflow: visible;
  min-height: auto;
  padding: 28px 28px 32px;
}

/* Neutraliza o layout absoluto herdado, só dentro do escopo */
.ze-form{
  position: static;
  width: 100%;
  height: auto;
  transform: none !important;
  opacity: 1 !important;
  z-index: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}

/* Se o container vier com right-panel-active, anulamos os efeitos */
.ze-scope .sing-up-container,
.ze-scope .sing-in-container{
  left: 0; width: 100%;
  transform: none !important;
  opacity: 1 !important;
  z-index: auto;
}

/* Espaços conforme solicitado */
.ze-logo{ display:block; margin: 8px auto 18px; }     /* respiro da logo */
.ze-illustration{ margin: 0 auto 10px; display:flex; justify-content:center; }
.ze-title{ margin: 6px 0 12px; font-size: 1.8rem}

/* Inputs 100% só neste card */
.ze-card input,
.ze-card .ui-inputfield{
  width: 100% !important;
  box-sizing: border-box;
}

/* Botão full width mantendo seu estilo .button1 */
.ze-btn-full{
  width: 100%;
  max-width: 420px;
  margin-inline: auto;
}

@media (max-width: 480px){
  .ze-card{ border-radius: 12px; padding: 22px 16px 26px; }
}
