.btn_ver_mais {
    background: #474747;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.btn_ver_mais:hover {
    background: #ff0000;
}


/* modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal_content {
    background: white;
    border-radius: 10px;
    width: 80%;
    max-width: 800px;
    padding: 20px;
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
}

.close_modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}

#modal_titulo {
    text-align: center;
    margin: 15px 0;
    width: 100%;
}

.modal_body {
    padding: 20px 0;
    text-align: center;
}

/* 
pocisionamento de imagens */
.modal_galeria {
    display: flex;
    gap: 15px;
    margin: 20px 0;
    flex-wrap: wrap;
    justify-content: center;
}

.modal_imagem {
    max-width: 100%;
    max-height: 300px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    object-fit: contain;
}


/* botao no modal */
.modal_botoes {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.modal_botao {
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: 0.3s;
}

.modal_botao.github {
    background: #333;
}

.modal_botao.site {
    background: #ff0000;
}

.modal_botao:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}