.advertisement { 
   margin: 2vw;
   box-shadow: 7px 7px 12px 0 rgba(20, 20, 20, 0.3);
}
.ad-div {
    display: flex;
    align-items: center;
    background-color: #e0e0e0;
    border: 1px solid #ccc;
    margin-bottom: 10px;
    padding: 10px;
    height: calc(33.33%); /* One-third height of main div */
}

.ad-div img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin-right: 10px;
    flex-shrink: 0;
    float: left;
}

.ad-div .ad-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.ad-div .ad-text h3 {
    margin: 0;
    font-size: 16px;
    color: #333;
    position: relative;
}

.ad-div .ad-text p {
    margin: 0;
    font-size: 14px;
    color: #555;
}


/* Superventas Animation */
.superventas {
    background-color: red;
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 2px 5px;
    border-radius: 3px;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}


/* Responsive Design */
@media (max-width: 768px) {
    .ad-div {
        flex-direction: column;
        align-items: flex-start;
        height: auto;
    }

    .ad-div img {
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .ad-div {
        flex-direction: row;
        align-items: center;
        padding: 10px;
        height: auto;
    }

   .ad-div img {
        width: 60px;
        height: 60px;
        margin-right: 10px;
        flex-shrink: 0;
    }
    .ad-div .ad-text h3 {
        font-size: 14px;
    }
    .ad-div .ad-text p {
    font-size: 12px;
    }
}










.div_anuncio {
     
     box-shadow: 7px 7px 12px 0 rgba(20, 20, 20, 0.3);
     border: 2px solid #fadbd8;
     border-radius: 0.5vw;
     text-align: center;
     height: 100%;
     width: 100%;
}
/* Título del anuncio */
.ad-title {
    margin: 0.5vw;
    text-align: center;
    font-size: 10px;
    font-weight: bold;
    margin-bottom: 10px;
}
/* Imagen del anuncio */
.ad-image {
    margin-right: 20px;
    border-radius: 0px;
    width:15vw;
    height: 16vw;
    align: center;
    align-content: center;

}
/* Descripción del anuncio */
.ad-description {
    font-size: 10px;
    line-height: 1.5;
    text-align: justify;
    margin: 3px;
}
