/* --- GERAL DO PLUGIN --- */
.bentec-informativos-wrapper { max-width: 1200px; margin: 0 auto; padding: 20px 0; }

/* --- HEADER & BREADCRUMBS --- */
.header-page-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.header-page-wrapper h1 { text-align: center; width: 100%; }

.breadcrumb { width: 100%; display: flex; justify-content: center; }

.breadcrumb ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}


span.breadcrumb {
    color: #777;
    text-align: center;
    font-family: "stage_grotesklight";
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: 150%;
    text-transform: uppercase;
    margin-bottom: -1px;
}    

.breadcrumb ul li { display: inline-block; margin: 0 5px; }

/* Filtros */
.bentec-filters { display: flex; justify-content: center; gap: 15px; margin-bottom: 40px; flex-wrap: wrap; }
.bentec-filters .filter-btn { background: transparent; border: 1px solid #ddd; padding: 8px 20px; border-radius: 30px; cursor: pointer; font-size: 14px; font-weight: 600; text-transform: uppercase; transition: all 0.3s ease; color: #555; }
.bentec-filters .filter-btn:hover, .bentec-filters .filter-btn.active { background: #000; color: #fff; border-color: #000; }

/* Grid */
.bentec-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 30px; }
.bentec-item { animation: fadeIn 0.5s ease; }
.bentec-item.hidden { display: none; }

.bentec-card { 
    display: block; 
    text-decoration: none; 
    background: #111; 
    border: 1px solid #222; 
    border-radius: 8px; 
    overflow: hidden; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.2); 
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
    height: 100%; 
    display: flex; flex-direction: column; 
}
.bentec-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.4); border-color: #333; }

/* Thumbnail */
.bentec-thumb { position: relative; width: 100%; height: 0; padding-bottom: 116.4%; overflow: hidden; background: #000; }
.bentec-thumb img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: contain; object-position: center; transition: transform 0.5s ease; }
.bentec-thumb .placeholder-thumb { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; color: #555; }
.bentec-card:hover .bentec-thumb img { transform: scale(1.05); }

/* Overlay Icon */
.overlay-icon { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease; z-index: 2; }
.bentec-card:hover .overlay-icon { opacity: 1; }
.overlay-icon span { color: #fff; font-size: 40px; width: 40px; height: 40px; }

/* Info */
.bentec-info { padding: 20px; flex-grow: 1; display: flex; flex-direction: column; justify-content: space-between; background: #111; }
.bentec-info h3 { margin: 0 0 15px; font-size: 18px; color: #fff; font-weight: 700; line-height: 1.4; }
.bentec-info .read-more { font-size: 12px; text-transform: uppercase; color: #ccc; font-weight: 600; letter-spacing: 0.5px; }
.bentec-card:hover .bentec-info .read-more { color: #fff; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* --- BOTÃO VOLTAR (Estilo do Tema) --- */
.btn-voltar {
    border: none !important;
    padding: 8px 32px;
    text-align: center;
    max-width: 100%;
    display: table; /* Mantém comportamento de centralização */
    color: #000000;
    font-family: "stage_groteskbold", sans-serif;
    font-size: 17px;
    margin: 0 auto;
    margin-top: 20px;
    background-color: #fff;
    cursor: pointer;
    text-decoration: none; /* Importante para link <a> */
    
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    margin-bottom: 50px;
}

.btn-voltar:hover {
    background-color: #e6e6e6; /* Leve feedback visual */
    color: #000;
}