/* ARQUIVO: anuncios.css */
.grid-anunciantes { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); 
    gap: 10px; 
    padding: 20px; 
    background: #f4f4f4; 
    max-width: 1200px;
    margin: 0 auto;
}

.box-anuncio { 
    height: 115px; 
    background: #fff; 
    border: 1px solid #ddd; 
    display: flex; 
    flex-direction: column;
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    font-family: Arial, sans-serif;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.box-anuncio span { 
    color: #aaa; 
    font-size: 10px; 
    font-weight: normal; 
}