/* Botão principal */
.btn-adicionar-fotos {
    background-color: #d35400;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: bold;
    transition: background 0.3s;
}

.btn-adicionar-fotos:hover {
    background-color: #e67e22;
}

/* Fundo escuro atrás do formulário (Modal) */
.modal-mais-fotos {
    display: none; 
    position: fixed; 
    z-index: 9999; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    background-color: rgba(0,0,0,0.8); 
    align-items: center;
    justify-content: center;
}

/* Caixinha do formulário */
.modal-mais-fotos-conteudo {
    background-color: #222;
    padding: 20px;
    border: 1px solid #8B4513;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

/* Botão de fechar formulário (X) */
.fechar-modal-mais-fotos {
    color: #aaa;
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.fechar-modal-mais-fotos:hover {
    color: #fff;
}

/* Botão final de Enviar Fotos */
.btn-enviar-fotos {
    background-color: #2ecc71;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    margin-top: 15px;
    width: 100%;
}

.btn-enviar-fotos:hover {
    background-color: #27ae60;
}

/* Área onde aparecem as miniaturas (Preview) das fotos escolhidas */
.preview-fotos-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
    justify-content: center;
    max-height: 200px;
    overflow-y: auto;
}

.preview-fotos-container img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    border: 2px solid #8B4513;
}