.anuncios__container {
    display: flex;
    flex-direction: column;
    justify-items: flex-end;
    align-items: flex-end;
    min-width: 300px;
    max-height: 50vh;
    margin: auto;
    right: 2px;
    bottom: 50px;
    z-index: 10;
    position: fixed;
}

.anuncios-button button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    font-size: var(--font-size-subtitle);
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 1px 1px white;
    transform: translateY(-300%) rotate(270deg);
    transform-origin: bottom right; /* Cambié el origen de la transformación */
    
}

.anuncios-button button:hover {
    background-color: #001aff;
}
.anuncios-button button svg{
    width: 30px;
    height: 30px;
}

.anuncios-button button i{
    padding-left: 10px;
    font-size: 30px;
}

.anuncios-lista{
    display: none;
    overflow-y: auto;
    margin-top: 20px;
    padding: 5px;
}

.anuncios-lista.show {
    display: block;
}

.anuncios-item {
    background-color: #2d5eff;
    color: #fff;
    padding: 20px 25px;
    margin-bottom: 20px;
    border-radius: 12px; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 1px 1px white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 6px solid #0044cc;
    box-sizing: border-box;
}

.anuncios-item:hover {
    transform: scale(1.01);
    box-shadow: 0 2px 2px white;
}

.anuncio-texto {
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize; 
    margin-bottom: 15px;
    text-align: center;
}

.anuncio-icono {
    font-size: 24px;
    color: #fff;
    margin: 0 10px;
}

.anuncio-enlace {
    color: #ffcc00; 
    font-weight: 500; 
    text-decoration: none;
    font-size: 16px;
    margin-top: 10px;
    transition: color 0.3s ease, text-decoration 0.3s ease; 
}

.anuncio-enlace:hover {
    color: #ff9900;
    text-decoration: underline;
}