/* Adding styles for Conselho Diretor page */

/* Conselho Diretor Header */
.conselho-header {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, #fef3c7, #dbeafe);
  text-align: center;
}

.page-title-conselho {
  font-size: 3.5rem;
  font-weight: bold;
  color: var(--dark-gray);
  margin-bottom: 20px;
}

.conselho-subtitle {
  font-size: 1.2rem;
  color: var(--gray);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Current Status Section */
.conselho-status {
  padding: 60px 0;
  background: white;
}

.status-card-conselho {
  background: linear-gradient(135deg, #1e3a8a, #1e40af);
  color: white;
  padding: 50px;
  border-radius: 20px;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  text-align: center;
}

.status-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 30px;
  color: #fbbf24;
}

.status-info {
  list-style: none;
  margin-bottom: 40px;
  text-align: left;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.status-info li {
  font-size: 1.1rem;
  margin-bottom: 15px;
  line-height: 1.6;
  padding-left: 30px;
  position: relative;
}

.status-info li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #fbbf24;
  font-size: 1.5rem;
}

.status-info strong {
  font-weight: 600;
  color: white;
}

.btn-primary-conselho {
  background: var(--orange);
  color: white;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  display: inline-block;
  transition: all 0.3s;
  box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
}

.btn-primary-conselho:hover {
  background: #ea580c;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(249, 115, 22, 0.4);
}

/* Timeline Section */
.conselho-timeline {
  padding: 80px 0;
  background: var(--light-gray);
}

.conselho-section-title {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  color: var(--dark-gray);
  margin-bottom: 50px;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.timeline-stage {
  background: linear-gradient(135deg, #1e3a8a, #1e40af);
  color: white;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.timeline-stage:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.stage-title {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 25px;
  color: #fbbf24;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 15px;
}

.stage-content {
  font-size: 0.95rem;
  line-height: 1.6;
}

.stage-label {
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
  color: #cbd5e1;
}

.stage-description {
  margin-bottom: 20px;
  opacity: 0.95;
  line-height: 1.7;
}

.stage-links {
  list-style: none;
  margin-top: 15px;
}

.stage-links li {
  margin-bottom: 10px;
}

.doc-link {
  color: #93c5fd;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  display: inline-block;
  position: relative;
  padding-left: 18px;
}

.doc-link::before {
  content: "📄";
  position: absolute;
  left: 0;
  font-size: 0.9rem;
}

.doc-link:hover {
  color: white;
  text-decoration: underline;
}

.highlight-doc {
  color: #fbbf24;
  font-weight: 600;
}

.highlight-doc::before {
  content: "🗳️";
}

.disabled-link {
  color: #64748b;
  cursor: not-allowed;
  opacity: 0.6;
}

.disabled-link:hover {
  text-decoration: none;
  color: #64748b;
}

/* Candidates Section */
.conselho-candidates {
  padding: 80px 0;
  background: white;
}

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

.candidate-card {
  background: linear-gradient(135deg, #1e3a8a, #1e40af);
  color: white;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.candidate-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.candidate-image {
  width: 120px;
  height: 120px;
  margin: 0 auto 25px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
}

.candidate-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.candidate-name {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #fbbf24;
}

.candidate-description {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 30px;
  opacity: 0.95;
}

.btn-candidate {
  background: var(--orange);
  color: white;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s;
  font-size: 0.95rem;
}

.btn-candidate:hover {
  background: #ea580c;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
}

/* Documents Archive Section */
.conselho-documents {
  padding: 80px 0;
  background: var(--light-gray);
}

.documents-table-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.documents-table {
  width: 100%;
  border-collapse: collapse;
}

.documents-table thead {
  background: linear-gradient(135deg, #1e3a8a, #1e40af);
  color: white;
}

.documents-table th {
  padding: 20px;
  text-align: left;
  font-weight: 600;
  font-size: 1.1rem;
}

.documents-table tbody tr {
  border-bottom: 1px solid #e2e8f0;
  transition: background 0.3s;
}

.documents-table tbody tr:hover {
  background: #f8fafc;
}

.documents-table tbody tr:last-child {
  border-bottom: none;
}

.documents-table td {
  padding: 20px;
  color: var(--gray);
  font-size: 0.95rem;
}

.download-link {
  background: var(--blue);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  display: inline-block;
  transition: all 0.3s;
}

.download-link:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

/* Responsive Design for Conselho Diretor */
@media (max-width: 768px) {
  .page-title-conselho {
    font-size: 2.5rem;
  }

  .conselho-subtitle {
    font-size: 1rem;
  }

  .status-card-conselho {
    padding: 30px 20px;
  }

  .status-title {
    font-size: 1.5rem;
  }

  .status-info li {
    font-size: 1rem;
  }

  .timeline-grid {
    grid-template-columns: 1fr;
  }

  .candidates-grid {
    grid-template-columns: 1fr;
  }

  .documents-table-wrapper {
    overflow-x: auto;
  }

  .documents-table {
    min-width: 600px;
  }

  .conselho-section-title {
    font-size: 2rem;
  }
}
/*conselho diretor */
/* ===================================
   Board Composition Section (Conselho Diretor)
   =================================== */
.text-center {
  text-align: center;
}

.board-composition {
  padding: 80px 0;
  background: var(--light-gray);
}

.board-composition .section-subtitle {
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 60px;
  font-size: 1.3rem;
}

.board-category {
  margin-bottom: 70px;
}

.board-category-title {
  font-size: 1.8rem;
  color: var(--dark-blue);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.board-category-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--orange);
  margin: 15px auto 0;
  border-radius: 2px;
}

.board-grid {
  display: grid;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.board-grid.top-board {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.board-grid.reps-board {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  justify-content: center;
}

.board-card {
  background: white;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
  border-bottom: 4px solid var(--orange);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.board-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.member-role {
  font-size: 0.85rem;
  color: var(--gray);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.member-name {
  font-size: 1.25rem;
  color: var(--dark-gray);
  font-weight: 600;
  line-height: 1.4;
}

.member-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.member-list li {
  font-size: 1.15rem;
  color: var(--dark-gray);
  font-weight: 500;
}

/* Responsivo para os Cards do Conselho */
@media (max-width: 768px) {

  .board-grid.top-board,
  .board-grid.reps-board {
    grid-template-columns: 1fr;
  }

  .board-category-title {
    font-size: 1.5rem;
  }

  .board-card {
    padding: 30px 20px;
  }
}

/* Estatuto Section Styles */
.statutes-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #fef3c7, #dbeafe);
}

.statutes-content {
  background: white;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 600px;
  margin: 40px auto 0;
}

.statutes-content p {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 30px;
  line-height: 1.6;
}

.statutes-content .btn {
  display: inline-block;
  padding: 15px 30px;
  background: var(--orange);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s;
}

.statutes-content .btn:hover {
  background: #ea580c;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
}