

.advertisement {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.7); /* Fondo semitransparente */
    z-index: 1000;
}

.ad-content {
    text-align: center;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.ad-image {
    max-width: 600px;
    height: 300px;
    margin-bottom: 20px;
}

.btn-advertisement {
    display: inline-block;
    background-color: #eea412;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn-advertisement:hover {
    background-color: #eea412;
}

.close-ad {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
}



/*Una vez alcance los 1490px realizas el cambio*/
@media screen and (max-width: 632px) {
    .ad-content {
        width: 90%;
        text-align: center;
        background-color: #fff;
        padding: 5px;
        border-radius: 10px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    }
    .ad-image {
        max-width: 100%;
        height: 300px;
        margin-bottom: 20px;
    }
    .btn{

        display: flex;
  width: 50%;
  justify-content: center;
  margin: auto;
    }
}