/* =====================================================
   FCBT CORE — Estilos visuais
   Paleta extraída do logo oficial: vermelho #DF2735, verde #15B250
   Base neutra: navy #16324F / areia #E8D9BE
   ===================================================== */

.fcbt-wrap{
  --fcbt-sand: #E8D9BE;
  --fcbt-sand-light: #F5EFDD;
  --fcbt-red: #DF2735;
  --fcbt-red-dark: #B81E2A;
  --fcbt-green: #15B250;
  --fcbt-green-dark: #0F8F3F;
  --fcbt-navy: #16324F;
  --fcbt-navy-deep: #0E2138;
  --fcbt-chalk: #FAFAF7;
  --fcbt-gold: #D9A14A;
  --fcbt-line: rgba(22,50,79,0.14);

  font-family: 'Inter', sans-serif;
  color: var(--fcbt-navy);
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 0;
}

.fcbt-wrap *{box-sizing:border-box;}
.fcbt-wrap h3, .fcbt-wrap h4{
  font-family:'Inter', sans-serif;
}

.fcbt-empty{
  padding: 30px;
  text-align: center;
  color: #5a6b7a;
  background: var(--fcbt-sand-light);
  border-radius: 4px;
}

/* ============ RANKING TABLE ============ */
.fcbt-rank-table{
  width: 100%;
  border-collapse: collapse;
  background: var(--fcbt-navy);
  color: var(--fcbt-chalk);
  border-radius: 6px;
  overflow: hidden;
}
.fcbt-rank-table th{
  text-align: left;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(250,250,247,0.5);
  font-weight: 600;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(250,250,247,0.15);
}
.fcbt-rank-table td{
  padding: 16px;
  border-bottom: 1px solid rgba(250,250,247,0.08);
  font-size: 15px;
}
.fcbt-rank-pos{
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
  color: var(--fcbt-gold);
  font-size: 16px;
}
.fcbt-rank-pos.fcbt-top1{ color: #fff; }
.fcbt-rank-name{ font-weight: 700; }
.fcbt-rank-city{ color: rgba(250,250,247,0.65); font-size: 13.5px; }
.fcbt-rank-pts{
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
  text-align: right;
}
.fcbt-rank-table tr:hover td{ background: rgba(250,250,247,0.04); }

@media (max-width: 640px){
  .fcbt-rank-table{ font-size: 13px; }
  .fcbt-rank-table th:nth-child(3), .fcbt-rank-table td:nth-child(3){ display:none; }
}

/* ============ CALENDÁRIO ============ */
.fcbt-cal-month-group{ margin-bottom: 48px; }
.fcbt-cal-month-label{
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 22px;
}
.fcbt-cal-month-label h3{
  font-family: 'Archivo Black', sans-serif;
  text-transform: uppercase;
  font-size: 20px;
  color: var(--fcbt-navy);
  letter-spacing: -0.01em;
  margin: 0;
}
.fcbt-rule{ flex: 1; height: 1px; background: var(--fcbt-line); }

.fcbt-event-list{ display: flex; flex-direction: column; gap: 10px; }
.fcbt-event-row{
  display: grid;
  grid-template-columns: 80px 1fr auto auto;
  align-items: center;
  gap: 20px;
  background: var(--fcbt-chalk);
  border: 1px solid var(--fcbt-line);
  border-radius: 4px;
  padding: 18px 22px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.fcbt-event-row:hover{ border-color: var(--fcbt-red); }

.fcbt-event-date{
  text-align: center;
  border-right: 1px solid var(--fcbt-line);
  padding-right: 16px;
}
.fcbt-day{
  font-family: 'JetBrains Mono', monospace;
  font-size: 24px;
  font-weight: 600;
  color: var(--fcbt-red);
  line-height: 1;
  display: block;
}
.fcbt-mon{
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #5a6b7a;
  font-weight: 600;
}
.fcbt-event-info h4{
  font-size: 16px;
  color: var(--fcbt-navy);
  font-weight: 800;
  margin: 0 0 6px;
}
.fcbt-meta{
  font-size: 13px;
  color: #5a6b7a;
  display: flex; gap: 14px; flex-wrap: wrap;
}
.fcbt-event-status{
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 6px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.fcbt-status-aberto{ background: rgba(21,178,80,0.12); color: var(--fcbt-green-dark); }
.fcbt-status-em-breve{ background: rgba(217,161,74,0.16); color: #9a6b1f; }
.fcbt-status-encerrado{ background: rgba(22,50,79,0.08); color: #5a6b7a; }
.fcbt-event-link{
  font-size: 13px; font-weight: 700;
  color: var(--fcbt-red);
  white-space: nowrap;
  text-decoration: none;
}

@media (max-width: 720px){
  .fcbt-event-row{
    grid-template-columns: 60px 1fr;
    grid-template-areas: "date info" "date status" "date link";
    row-gap: 8px;
  }
  .fcbt-event-date{ grid-area: date; }
  .fcbt-event-info{ grid-area: info; }
  .fcbt-event-status{ grid-area: status; justify-self: start; }
  .fcbt-event-link{ grid-area: link; justify-self: start; }
}

/* ============ DIRETORIA ============ */
.fcbt-org-tier-label{ text-align: center; margin: 40px 0 28px; }
.fcbt-org-tier-label:first-child{ margin-top: 0; }
.fcbt-org-tier-label span{
  font-size: 12px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fcbt-red);
  background: rgba(223,39,53,0.08);
  padding: 6px 16px;
  border-radius: 20px;
}
.fcbt-board-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 20px;
}
.fcbt-board-card{
  background: var(--fcbt-chalk);
  border: 1px solid var(--fcbt-line);
  border-radius: 4px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.fcbt-board-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 16px 32px -16px rgba(22,50,79,0.2);
}
.fcbt-board-photo{
  aspect-ratio: 1;
  background: linear-gradient(145deg, var(--fcbt-navy), var(--fcbt-navy-deep));
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.fcbt-board-photo::after{
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 4px;
  background: var(--fcbt-red);
}
.fcbt-board-initials{
  font-family: 'Archivo Black', sans-serif;
  font-size: 32px;
  color: rgba(250,250,247,0.85);
}
.fcbt-board-info{ padding: 18px 14px; }
.fcbt-board-info h4{
  font-size: 15px; color: var(--fcbt-navy);
  font-weight: 800; margin: 0 0 4px;
}
.fcbt-role{
  font-size: 12px; font-weight: 700;
  color: var(--fcbt-red);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.fcbt-city{ font-size: 12.5px; color: #5a6b7a; }
.fcbt-board-card.fcbt-president .fcbt-board-photo{
  background: linear-gradient(145deg, var(--fcbt-red), var(--fcbt-red-dark));
}
.fcbt-board-card.fcbt-president .fcbt-board-initials{ color: var(--fcbt-chalk); }
.fcbt-board-card.fcbt-president .fcbt-board-photo::after{ background: var(--fcbt-green); }

@media (max-width: 900px){ .fcbt-board-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .fcbt-board-grid{ grid-template-columns: 1fr; } }

/* ============ FAQ ACCORDION ============ */
.fcbt-faq-list{
  max-width: 760px;
  display: flex; flex-direction: column; gap: 10px;
}
.fcbt-faq-item{
  background: var(--fcbt-chalk);
  border: 1px solid var(--fcbt-line);
  border-radius: 4px;
  overflow: hidden;
}
.fcbt-faq-question{
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.fcbt-faq-question h4{
  font-size: 16px; color: var(--fcbt-navy);
  font-weight: 700; line-height: 1.4; margin: 0;
}
.fcbt-faq-icon{
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--fcbt-sand-light);
  flex-shrink: 0;
  position: relative;
  transition: background 0.2s ease;
}
.fcbt-faq-icon::before, .fcbt-faq-icon::after{
  content: '';
  position: absolute; top: 50%; left: 50%;
  background: var(--fcbt-navy);
  transition: transform 0.3s ease, background 0.2s ease;
}
.fcbt-faq-icon::before{ width: 12px; height: 2px; transform: translate(-50%,-50%); }
.fcbt-faq-icon::after{ width: 2px; height: 12px; transform: translate(-50%,-50%); }
.fcbt-faq-item.fcbt-open .fcbt-faq-icon{ background: var(--fcbt-red); }
.fcbt-faq-item.fcbt-open .fcbt-faq-icon::before,
.fcbt-faq-item.fcbt-open .fcbt-faq-icon::after{ background: var(--fcbt-chalk); }
.fcbt-faq-item.fcbt-open .fcbt-faq-icon::after{ transform: translate(-50%,-50%) rotate(90deg) scaleY(0); }
.fcbt-faq-answer{ max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.fcbt-faq-answer-inner{
  padding: 0 24px 22px;
  font-size: 14.5px;
  color: #5a6b7a;
  line-height: 1.7;
}
.fcbt-faq-item.fcbt-open .fcbt-faq-answer{ max-height: 600px; }
