/* ===========================
   ABOUT
   =========================== */
#about { background: var(--bg2); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.about-text p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.about-text p strong { 
  color: var(--text); 
  font-weight: 600; 
}

.tl-tabs {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.tl-tab {
  background: none;
  border: 1px solid transparent;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.45rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}

.tl-tab.active {
  background: var(--accent-glow);
  color: #B8950A;
  border-color: rgba(255,215,0,0.3);
}

.tl-items { display: none; }
.tl-items.active { display: block; }

.tl-item {
  position: relative;
  padding-left: 1.8rem;
  padding-bottom: 2rem;
  border-left: 2px solid var(--tl-border);
}

.tl-item:last-child {
  border-left-color: transparent;
  padding-bottom: 0;
}

.tl-item::before {
  content: '';
  position: absolute;
  left: -5px; top: 5px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(255,215,0,0.5);
}

.tl-date {
  display: inline-block;
  width: fit-content;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: #0dc745;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
}

.tl-role {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.rem;
}

.tl-role img {
  width: 110px;
  height: 36px;
  object-fit: contain;
  background-color: #EFEFEF;
  padding: 4px 6px;
  border-radius: 6px;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

.tl-role img[alt*="Bradesco"] {
  padding: 3px 4px;
}

.tl-org {
  font-size: 0.82rem;
  font-weight: 800;
  color: #db9c68;
  margin-bottom: 0.25rem;
}

.tl-desc {
  font-size: 0.96rem;
  color: var(--muted);
  line-height: 1.55;
}

.tl-desc strong {
  color: var(--text);
  font-weight: 600;
}