/* html,
body {
    width: 100vw;
    height: 95vh;
    margin: 0;
    padding: 0; */

/* height: auto; */
/* overflow: hidden; */
/* } */

body {
    width: 100vw;
    height: 98vh;
}

@keyframes piscar {
    0% {
        opacity: 1;
        scale: 1;
    }

    25% {
        opacity: 0.2;
        scale: .5;
    }

    100% {
        opacity: 1;
        scale: 1;

    }
}

.par {
    background-color: white;
}

.borrao {
    position: fixed;
    display: flex;

    top: 30vh;
    height: 38vh;

    left: 25%;
    width: 50%;

    background: rgba(251, 255, 240, 0.3);


    border-left: 3px solid rgba(255, 255, 255, 0.5);
    border-top: 1px solid rgba(161, 164, 163, 0.1);
    border-right: 1px solid rgba(161, 164, 163, 0.1);
    border-bottom: 3px solid rgba(255, 255, 255, 0.5);

    border-radius: 16px;
    backdrop-filter: blur(1.2px);
    -webkit-backdrop-filter: blur(1.2px);

    /* backdrop-filter: blur(1.4px) brightness(97%); */

    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 7px;

    color: rgba(255, 6, 6, 0.9);
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);

    justify-content: center;
    align-items: center;
    overflow: hidden;

    /* Sombra sutil para destacar sem poluir */
    box-shadow: 0 8px 12px 0 rgba(0, 0, 0, 0.1);

    /* filter: grayscale(20%) opacity(0.8); */
    transition: filter 0.3s ease;
    transform: rotate(-10deg);

    pointer-events: none;

    z-index: 2;
}




.borrao:focus {
    z-index: 2;
}

.borrao::before {
    content: url('Icon_Revogado.svg');
    display: inline-block;
    transform: rotate(-3deg);

    vertical-align: middle;
    margin-right: .3em;
    margin-top: .4em;
}

.borrao p {
    display: inline;
    border-top: 2px dotted rgb(191, 6, 6);
    border-bottom: 2px dotted rgb(191, 6, 6);
    transform: rotate(-3deg);
    animation: piscar 5s ease-in-out infinite;
    animation-delay: 3s;
    animation-iteration-count: 1;

}

.titulo div {
    color: transparent;
}

.revoga {
    font-size: 0.7em;
    font-weight: normal;
    padding: 5px;
    background: rgba(250, 250, 253, 1);
    color: brown;
    border: 1px solid lightsalmon;
    border-radius: 9px;

}

.revoga a {
    text-decoration: none;
    color: blue;
}

.revoga a:hover {
    text-decoration: underline;
    color: red;
}

.container-iframe {
    position: relative;
    width: 100%;
    height: 100%;
    background: rgb(234, 244, 255);

}

.spinner {
    width: 40px;
    height: 40px;
    border: 8px solid transparent;
    border-top: 8px dotted rgba(32, 51, 159, 0.6);
    border-radius: 50%;
    animation: spin 1s linear infinite;

    position: relative;
    bottom: 40px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media screen and (max-width: 800px) {

    .borrao {
        font-size: 1.5rem;
        font-weight: 650;
        letter-spacing: 1.2px;
    }


}