<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.floating-container {
    position: absolute;
    top: 100px;
    right: 20px;
    background-color: rgb(233, 232, 232);
    /*border: 1px solid #ccc;*/
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.floating-image {
    width: 150px; /* Ajuste o tamanho conforme necessÃ¡rio */
    height: auto;
}

.floating-text {
    margin-top: 0px;
    text-align: center;
}

.form-container h4, .form-container h5{
    text-align: center;
    color: #000080;
}

.open-form-btn {
    background-color: #000080;
    color: white;
    border: none;
    padding: 5px 25px;
    border-radius: 4px;
    cursor: pointer;
    margin: 0 auto;
}

.open-form-btn:hover {
    background-color: #F1D72C;
    color: rgb(0, 0, 0);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Escurece o fundo */
    z-index: 1500; /* Z-index da sobreposiÃ§Ã£o */
    display: none; /* Inicialmente escondido */
}
.form-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 2000;
}

.form-terco1 input{
    border:none;
    background-color: #fff;
    color: #000080;
    border-bottom: 1px dotted #000080;
    padding-bottom: 0px;;
}

.form-terco1 ::placeholder{
    color: #c70303;
    font-style: italic;
    font-size:12px;
}

.autoriza{
    font-size: 9px;
    color: #000080;
    margin-bottom:10px;
}

.autoriza :checked{
    width: 10px;
}

.nome{
    width: 350px;
}

.cidade{
    width: 210px;
}

.uf{
    width: 55px;
}

.email, .instagram{
    width: 240px;
}
.form-terco1 textarea{
    border:none;
    background-color: #fff;
    color: #000080;
    border-bottom: 1px dotted #000080;
    padding-bottom: 0px;
    width: 100%;
    margin-bottom: 10px;
}

.form-titulo-terco img{
    float: left;
}

@media (min-width: 300px) and (max-width: 768px) {
    .floating-container {
        top: 410px;
        right: 0px;;
    }
    .floating-image {
        width: 100px; /* Ajuste o tamanho conforme necessÃ¡rio */
        padding-left: 10px;
    }
    .open-form-btn {
        padding: 5px;
    }
}*/
    
    
    
    
    
    
    
    
    
    
    
    
    
    /* Estilo do overlay */
        .overlay {
            display: none; 
            position: fixed; 
            top: 0; 
            left: 0; 
            width: 100%; 
            height: 100%; 
            background-color: rgba(0, 0, 0, 0.5); 
            justify-content: center; 
            align-items: center; 
            z-index: 1000; 
        }

        /* Estilo do popup 
        .popup {
            background: white; 
            padding: 20px; 
            border-radius: 5px; 
            text-align: center; 
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
        }

        /* Estilo dos botÃµes 
        .btn {
            margin: 10px; 
            padding: 10px 20px; 
            border: none; 
            border-radius: 5px; 
            cursor: pointer;
        }

        .close-btn {
            background-color: #f44336; 
            color: white;
        }

        .register-btn {
            background-color: #4CAF50; 
            color: white;
        }

        .submit-btn {
            background-color: #2196F3; 
            color: white;
        }</pre></body></html>