/* ====== CONTAINER PRINCIPAL ====== */
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px var(--body-padding);
  font-family: "Poppins", Arial, sans-serif;
}

/* ====== TÍTULO ====== */
.container .content-header h1 {
    font-weight: 600;
    font-size: 32px;
    line-height: normal;
    margin-bottom: 8px;

}

.container .content-header .divisor {
    content: '';
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color) 50%, var(--transient-color) 100%);
    border-radius: 4px;
    margin-bottom: 18px;    
}

/* ====== LISTA DE EDITAIS ====== */
.editais-lista {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 60%;
  max-width: 600px;
}

.edital-item {
  width: 100%;
}

/* ====== BOTÕES DE DOWNLOAD ====== */
.download-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  width: 100%;
  border-radius: 10px;
  background: #3a8057;
  border: 2px solid #318155;
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.download-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(21, 101, 192, 0.4);
  background: #3a8057;
  border-color: #33a868;
}

.download-button:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 6px rgba(21, 101, 192, 0.3);
}

/* ====== ÍCONE ====== */
.icon-download {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  stroke: currentColor;
}

.download-button .icon-download {
  stroke: #ffffff;
}


/* ====== RESPONSIVO ====== */
@media (max-width: 600px) {
  .container {
    margin: 20px auto;
  }
  
  .header .title {
    font-size: 1.5rem;
    margin-bottom: 24px;
  }
  
  .download-button,
  .download-link {
    padding: 14px 16px;
    font-size: 0.95rem;
  }
  
  .icon-download {
    width: 20px;
    height: 20px;
  }
}