<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root{
    --primaryColor: #337ab7;
    --secondaryColor: #006088;
    --borderColor: #127499;
    --disabledColor: #D0D3D5;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

#bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
}

@media (min-width: 767px) {
    .moldura {
        background-color: transparent !important;
    }

    .card {
        margin-top: 150px !important;
        padding: 25px 50px !important;
        flex-grow: 0 !important;
        border-radius: 12px;
    }
}

@media (max-width: 767px) {
    .video-background {
        display: none;
    }
}

/* Estilos gerais do popup */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.3); /* Leve transparÃªncia para aplicar o efeito de blur */
    backdrop-filter: blur(8px); /* Efeito de desfoque */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-content {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
}

/* Estilos gerais do popup */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.3); /* Leve transparÃªncia para aplicar o efeito de blur */
    backdrop-filter: blur(8px); /* Efeito de desfoque */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-content {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
}

/* Estilo do tÃ­tulo em negrito */
.popup-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px; /* EspaÃ§amento entre o tÃ­tulo e o texto */
}

/* Estilo do texto */
.popup-text {
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Estilizando o botÃ£o OK na parte inferior */
.close-button {
    background-color: #337ab7;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 20px;
}

.close-button:hover {
    background-color: #006088;
}

.popup.show {
    animation: fadeIn 0.5s ease-in-out;
}

/* AnimaÃ§Ã£o de aparecimento */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
</pre></body></html>