/* Botão de baixar abaixo do botão Ver Fotos */
.btn-baixar-zip {
    background: #1a1a1a;
    color: #ccc;
    text-align: center;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #444;
    cursor: pointer;
    font-weight: bold;
    margin-top: 5px;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 0.9rem;
}

.btn-baixar-zip:hover {
    background: #222;
    color: #fff;
    border-color: #d35400;
    box-shadow: 0 4px 10px rgba(211, 84, 0, 0.2);
}

/* Animação do Emoji do Zip na Janela Flutuante */
.zip-modal-box .zip-emoji {
    font-size: 60px;
    margin-bottom: 10px;
    animation: floatZip 2s ease-in-out infinite;
}

@keyframes floatZip {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Botão Verde de Confirmação na Janela Flutuante */
.zip-confirm-btn {
    background: #27ae60;
    box-shadow: 0 4px 10px rgba(39, 174, 96, 0.4);
    border: 1px solid #2ecc71;
}

.zip-confirm-btn:hover {
    background: #2ecc71;
    transform: translateY(-2px);
}