/* modal.css */
/* Estilos para cards flutuantes 'pop-ups' de informações dos projetos */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(22, 21, 39, 0.1);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.57); /* Fundo com transparência para o efeito ficar visível */
    backdrop-filter: blur(10px); 
    padding: 20px 20px;
    max-width: 80vh;
    max-height: 47vh; /* Altura máxima em 80% da altura da janela de visualização */
    overflow-y: auto; /* Adiciona rolagem vertical se necessário */
    text-align: justify;
    border: none;
    border-radius: 2rem;
    font-family: 'Work Sans', sans-serif;

    /* Estilos da barra de rolagem */
    scrollbar-color: #b760ff #36363c00;
}

.modal-content h2 {
    color:#444355;
    font-size: 1.5rem;
    margin-top: 20px;
    max-width: 100%;
    margin-bottom: 10px;
    font-weight: bold;
}

.modal-content p {
    color:#444355;
    font-size: 17px;
    max-width: 100%;
    margin-bottom: 10px;
}
.modal-content b {
    color:#444355 !important;
}

.close {
    color: rgb(208, 46, 184);
    float: right;
    margin-right: -8px;
    margin-top: -15px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}
  
  .close:hover,
  .close:focus {
    color: rgb(41, 41, 41);
    text-decoration: none;
    cursor: pointer;
  }
  