:root {
    --azul: rgb(3, 39, 158);
}

.publicidades {
    width: 100%;
    height: 500px;
    color: white;
    padding: 0px 40px;

}

.cardDePublicidade {
    background: var(--azul);
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.cardDePublicidade>img {
    width: 100%;
}

.circular {
    position: absolute;

    color: white;
    font-size: 16pt;
    text-align: right;
    background: rgb(3, 39, 158);
}

.circular>button {
    background: none;
    padding: 40px;
    border: none;
    color: white;
    font-weight: bold;
}

.anterior:hover,
.posterior:hover {
    cursor: pointer;
    background: white;
    color: black;
}