.image-container {  
  width: 50%; 
}
 

.image-img {  
  width: 30%;
  height: 30%;
}

.img_blog {  
  top: 0;
  left: 0;
  width: 2vw;
  height: 4vh;
}

w-100 h-100
 
.page-loader {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #333;
  z-index: 9999; 
}

.cube {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}
.cube:nth-child(1) {
  background-color: #8CC271;
}
.cube:nth-child(2) {
  background-color: #69BEEB;
}
.cube:nth-child(3) {
  background-color: #F5AA39;
}
.cube:nth-child(4) {
  background-color: #E9643B;
}
.cube:first-child {
  animation: left 1s infinite;
}
.cube:last-child {
  animation: right 1s infinite 0.5s;
}

@keyframes left {
  40% {
    transform: translateX(-60px);
  }
  50% {
    transform: translateX(0);
  }
}
@keyframes right {
  40% {
    transform: translateX(60px);
  }
  50% {
    transform: translateX(0);
  }
}/*# sourceMappingURL=stilo.css.map */

.limite-linhas2{
  display: -webkit-box;
  -webkit-line-clamp: 2; /* número de linhas */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.limite-linhas4{
  display: -webkit-box;
  -webkit-line-clamp: 4; /* número de linhas */
  -webkit-box-orient: vertical;
  overflow: hidden;
}



/*** -------------- TRATAMENTO DO ARQUIVO PDF -------------- ***/

 
h2 {
  margin-bottom: 15px;
}

/* TOPO */
.topbar {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

input, select {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
}

/* GRID 3 COLUNAS */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* RESPONSIVO */
@media (max-width: 992px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .grid { grid-template-columns: 1fr; }
}

/* CARD */
.card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: .3s;
}

.card:hover {
  transform: translateY(-6px);
}

.title {
  padding: 12px;
  font-weight: 600;
  border-bottom: 1px solid #eee;
  font-size: 14px;
}

.cat {
  font-size: 11px;
  padding: 0 12px 10px;
  color: #666;
}

.card iframe {
  width: 100%;
  height: 160px;
  border: none;
  pointer-events: none;
}

/* MODAL */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.box {
  width: 95%;
  height: 95%;
  background: #fff;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* HEADER */
.headerxl  {
  background: #111;
  color: #fff;
  padding: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
 
   
  z-index: 9999; /* 🔥 fica acima de tudo */
}

.actions {
  display: flex;
  gap: 10px;
}

button {
  border: none;
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 12px;
}

.open {
  background: #2563eb;
  color: #fff;
}

.elimina {
  background: #dc2626;
  color: #fff;
}

.close {
  background: #374151;
  color: #fff;
}


/* VIEWER */
.viewer {
  flex: 1;
  overflow: hidden;
}

.viewer iframe {
  width: 100%;
  height: 100%;
  border: none;
}
 

/*** -------------- FIM  TRATAMENTO DO ARQUIVO PDF -------------- ***/