.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90vh;
}

.modal-close {
    position: absolute;
    right: 35px;
    top: 15px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.modal-close:hover {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

.modal-link-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10000;
    text-align: center;
}

.modal-link {
    display: inline-block;
    padding: 15px 40px;
    background: rgba(255, 215, 0, 0.9);
    color: #000;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-shadow: none;
}

.modal-link:hover {
    background: rgba(255, 215, 0, 1);
    transform: scale(1.05);
    text-decoration: none;
}

/* Ajuste para dispositivos móviles */
@media screen and (max-width: 768px) {
    .modal-link {
        padding: 12px 30px;
        font-size: 20px;
    }
} 