/* ===========================================================
   FVDF - Calendário de Torneios 2026 (2026-08-07)
   Ver fvdf-calendario-2026.js. Cores por categoria, mantendo a paleta
   oficial da marca (navy/dourado/verde) + laranja e roxo do PDF original
   pra diferenciar as 4 categorias sem perder legibilidade.
   =========================================================== */

.fvdf-cal26 {
  max-width: 900px;
  margin: 20px auto 40px;
  padding: 0 20px;
}

.fvdf-cal26-intro {
  font-size: 15px;
  color: #6B7280;
  margin-bottom: 28px;
  text-align: center;
}

.fvdf-cal26-month h3 {
  text-align: center;
}

.fvdf-cal26-month {
  margin-bottom: 32px;
}
.fvdf-cal26-month h3 {
  font-size: 18px;
  font-weight: 800;
  color: #21266E;
  margin: 0 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(33, 38, 110, 0.1);
}

.fvdf-cal26-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
}

.fvdf-cal26-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #ffffff;
  border: 1px solid rgba(19, 30, 63, 0.08);
  border-left: 4px solid #21266E;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 6px 18px rgba(19, 30, 63, 0.06);
  transition: transform .15s ease, box-shadow .15s ease;
}
.fvdf-cal26-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(19, 30, 63, 0.12);
}

.fvdf-cal26-card--azul { border-left-color: #1151D3; }
.fvdf-cal26-card--laranja { border-left-color: #E08A00; }
.fvdf-cal26-card--verde { border-left-color: #2A9540; }
.fvdf-cal26-card--roxo { border-left-color: #7A3FE0; }

.fvdf-cal26-day {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #F7F8FA;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: #21266E;
}

.fvdf-cal26-info {
  flex: 1;
  min-width: 0;
}

.fvdf-cal26-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .03em;
  color: #6B7280;
  margin-bottom: 4px;
}

.fvdf-cal26-info h4 {
  font-size: 15px;
  font-weight: 700;
  color: #21266E;
  margin: 0 0 4px;
  line-height: 1.35;
}

.fvdf-cal26-dias {
  display: block;
  font-size: 12.5px;
  color: #6B7280;
  font-weight: 600;
}

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