.modal-overlay {
    position: fixed;
    z-index: 10000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.95);
    backdrop-filter: blur(8px);
}

.modal-content {
    background: #0a0a0a;
    margin: 10% auto;
    padding: 30px;
    border: 1px solid #00ff88;
    width: 90%; max-width: 550px;
    border-radius: 15px;
    color: white;
    text-align: center;
    position: relative;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.15);
}

.architect-photo {
    width: 100px; height: 100px;
    border-radius: 50%;
    border: 2px solid #00ff88;
    margin-bottom: 15px;
    object-fit: cover;
}

.signature {
    margin: 20px 0;
    padding-top: 10px;
    border-top: 1px solid #222;
}

.btn-nav {
    background: transparent;
    border: 1px solid #00ff88;
    color: #00ff88;
    padding: 10px 25px;
    margin: 5px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-nav:hover {
    background: #00ff88;
    color: black;
}

.close-modal {
    position: absolute;
    right: 15px; top: 10px;
    font-size: 24px;
    cursor: pointer;
    color: #555;
}

.fade-in { animation: fadeIn 0.4s; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }




.modal-content {
    background: #0a0a0a;
    margin: 5% auto; /* Diminuí a margem para dar mais espaço */
    padding: 20px;
    border: 1px solid #00ff88;
    width: 90%;
    max-width: 500px;
    border-radius: 15px;
    color: white;
    position: relative;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.15);
    
    /* AS LINHAS ABAIXO ATIVAM A ROLAGEM */
    max-height: 85vh; /* O modal não ocupará mais que 85% da altura da tela */
    overflow-y: auto; /* Ativa a rolagem vertical quando o texto sobrar */
}

/* Deixar a barra de rolagem fina e verde (opcional, para ficar bonito) */
.modal-content::-webkit-scrollbar {
    width: 5px;
}
.modal-content::-webkit-scrollbar-thumb {
    background: #00ff88;
    border-radius: 10px;
}
.modal-content::-webkit-scrollbar-track {
    background: #0a0a0a;
}




