/* CSS DA PÁGINA DE TRANSPARÊNCIA */

.transparencia-page {
  padding-top: 80px;
}

/* Hero Section */
.hero {
  background: var(--branco);
  padding: 60px 0 10px;
  /* Reduced bottom padding */
  text-align: center;
}

.hero h1 {
  color: var(--azul-principal);
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  /* Reduced margin */
  opacity: 0;
  transform: translateY(50px);
  animation: scrollFloat 0.8s ease forwards;
}

.hero-text {
  max-width: 900px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(30px);
  animation: scrollFloat 0.8s ease 0.2s forwards;
}

.hero-text p {
  color: var(--texto);
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 0;
}

.hero-text strong {
  color: var(--azul-principal);
  font-weight: 700;
}

.destaque {
  color: var(--azul-principal);
  font-weight: bold;
}

.quote-text {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  border-radius: 10px;
  opacity: 0;
  transform: translateY(30px);
  animation: scrollFloat 0.8s ease 0.4s forwards;
  display: none;
  /* Hiding quote text as it's being removed/replaced */
}

.quote-text p {
  color: var(--texto);
  font-size: 16px;
  line-height: 1.6;
  font-style: italic;
  margin: 0;
}

@keyframes scrollFloat {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Seção de Documentos */
.documentos-section {
  padding: 20px 0 60px;
  /* Reduced top padding */
}

.secao-documentos {
  margin-bottom: 60px;
}

.secao-documentos:last-child {
  margin-bottom: 0;
}

.secao-documentos h2 {
  color: var(--azul-principal);
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(30px);
  animation: scrollFloat 0.8s ease 0.6s forwards;
}

.documentos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

/* Botões de Documentos */
.doc-btn {
  background: #EAEAEA;
  border-radius: 15px;
  padding: 30px 20px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.doc-btn:hover {
  background: var(--amarelo-destaque);
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.doc-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.doc-btn:hover .doc-icon {
  content: url('../images/Transparencia/file_W.png');
}

.doc-text {
  color: var(--texto);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  transition: all 0.3s ease;
}

.doc-btn:hover .doc-text {
  color: var(--cinza-claro);
}

/* Responsividade */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 36px;
  }

  .hero-text p {
    font-size: 14px;
    text-align: center;
  }

  .quote-text p {
    font-size: 14px;
  }

  .documentos-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .secao-documentos h2 {
    font-size: 28px;
  }
}