#modal-home {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
}

#modal-home .modal {
    position: relative;
    box-sizing: border-box;
    background: #fff;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    max-height: 90vh;
    max-width: 600px;
}

#modal-home .modal img {
    display: block;
    max-width: 100%;
    max-height: calc(90vh - 20px);
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 4px;
}

#modal-home .modal .fechar {
    position: absolute;
    top: -14px;
    right: -14px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #333;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
    text-decoration: none;
}

#modal-home .modal .fechar:hover {
    background: #f2f2f2;
    color: #000;
}
