body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Fundo do modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
}


/* Conteúdo do modal */
.modal-content {
    background: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 600px;
    position: relative;
    text-align: center;
}

/* Botão fechar */
.close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
}

/* Slide */
.slide {
    display: none;
    width: 100%;
    border-radius: 8px;
}
