/* ===========================
   DIRETORIA V2
   =========================== */
.dr-page { font-family: 'Montserrat', sans-serif; color: #1A1A1A; background: #F7F8FA; -webkit-font-smoothing: antialiased; }
.dr-page *, .dr-page *::before, .dr-page *::after { box-sizing: border-box; }
.dr-page a { text-decoration: none; }

/* Hero */
.dr-hero { position: relative; height: 280px; overflow: hidden; background: #00402B; }
.dr-hero__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,64,43,0.96) 0%, rgba(0,87,61,0.87) 50%, rgba(45,122,79,0.73) 100%); z-index: 1; }
.dr-hero__content { position: relative; z-index: 2; padding: 0 80px; }
.dr-hero__breadcrumb { display: flex; align-items: center; gap: 6px; padding-top: 80px; font-size: 12px; font-weight: 500; }
.dr-hero__breadcrumb a { color: rgba(255,255,255,0.67); }
.dr-hero__breadcrumb a:hover { color: #fff; }
.dr-hero__breadcrumb .dr-sep { color: rgba(255,255,255,0.4); font-size: 10px; }
.dr-hero__breadcrumb .dr-current { color: rgba(255,255,255,0.8); }
.dr-hero__title-row { display: flex; align-items: flex-start; gap: 16px; margin-top: 32px; }
.dr-hero__accent { width: 4px; height: 44px; background: #91C14D; border-radius: 2px; flex-shrink: 0; margin-top: 4px; }
.dr-hero__title { font-size: 34px; font-weight: 800; color: #fff; margin: 0; line-height: 1.15; }
.dr-hero__subtitle { font-size: 14px; color: rgba(255,255,255,0.7); margin: 10px 0 0 20px; line-height: 1.5; }
.dr-hero__icon { position: absolute; z-index: 2; color: #fff; pointer-events: none; right: 80px; top: -10px; font-size: 240px; opacity: 0.07; }

/* Body */
.dr-body { display: flex; gap: 28px; padding: 48px 80px 64px; align-items: flex-start; }
.dr-main { flex: 1; min-width: 0; max-width: calc(100% - 348px); }
.dr-sidebar { width: 320px; flex-shrink: 0; position: sticky; top: 140px; order: -1; }

/* Selector card */
.dr-selector { background: #fff; border-radius: 12px; border: 1px solid #EBEBEB; overflow: hidden; }
.dr-selector__header { padding: 16px 24px; border-bottom: 1px solid #F0F0F0; display: flex; align-items: center; gap: 8px; }
.dr-selector__dot { width: 4px; height: 18px; background: #00573D; border-radius: 2px; }
.dr-selector__title { font-size: 13px; font-weight: 700; color: #1A1A1A; margin: 0; }
.dr-selector__list { max-height: 600px; overflow-y: auto; padding: 4px 20px; }
.dr-selector__list::-webkit-scrollbar { width: 4px; }
.dr-selector__list::-webkit-scrollbar-thumb { background: #ddd; border-radius: 2px; }
.dr-selector__item { display: block; width: 100%; border: none; background: none; text-align: left; padding: 8px 24px; font-size: 12px; font-weight: 500; color: #666; font-family: 'Montserrat', sans-serif; cursor: pointer; transition: all 0.15s; line-height: 1.3; border-bottom: 1px solid #F5F5F5; }
.dr-selector__item:hover { color: #00573D; background: #f0fdf4; }
.dr-selector__item--active { color: #00573D; font-weight: 700; background: #f0fdf4; border-left: 3px solid #00573D; }

/* Board card */
.dr-board { background: #fff; border-radius: 12px; border: 1px solid #EBEBEB; overflow: hidden; margin-bottom: 24px; }
.dr-board__header { padding: 24px 28px; border-bottom: 1px solid #F0F0F0; display: flex; align-items: center; justify-content: space-between; }
.dr-board__name { font-size: 18px; font-weight: 700; color: #1A1A1A; margin: 0; }
.dr-board__badge { font-size: 10px; font-weight: 700; color: #00573D; background: #f0fdf4; padding: 4px 12px; border-radius: 4px; text-transform: uppercase; letter-spacing: 0.5px; }

/* Member row */
.dr-member { display: flex; align-items: center; padding: 14px 28px; border-bottom: 1px solid #F5F5F5; transition: background 0.15s; }
.dr-member:last-child { border-bottom: none; }
.dr-member:hover { background: #FAFBFC; }
.dr-member__role { width: 240px; flex-shrink: 0; font-size: 12px; font-weight: 600; color: #888; display: flex; align-items: center; gap: 8px; }
.dr-member__role i { color: #00573D; font-size: 14px; width: 18px; text-align: center; }
.dr-member__name { flex: 1; font-size: 14px; font-weight: 600; color: #1A1A1A; }
.dr-member--president { background: #f0fdf4; }
.dr-member--president .dr-member__name { color: #00573D; font-weight: 700; font-size: 15px; }
.dr-member--president .dr-member__role { color: #00573D; font-weight: 700; }

/* Message */
.dr-message { padding: 24px 28px; background: #f0fdf4; border-top: 1px solid #d0e8d0; font-size: 14px; color: #00573D; font-style: italic; line-height: 1.6; }

/* Complementary section */
.dr-complement { margin-top: 0; }
.dr-complement__title { font-size: 14px; font-weight: 700; color: #1A1A1A; margin: 0; }

/* Responsive */
@media (max-width: 1200px) {
    .dr-hero__content { padding: 0 30px; }
    .dr-body { padding: 30px; gap: 30px; }
    .dr-sidebar { width: 100%; }
    .dr-main { max-width: 100%; }
    .dr-member__role { width: 200px; }
}
@media (max-width: 991px) {
    .dr-hero { height: auto; min-height: 220px; }
    .dr-hero__breadcrumb { padding-top: 60px; }
    .dr-hero__title { font-size: 28px; }
    .dr-hero__icon { display: none; }
    .dr-body { flex-direction: column; }
    .dr-sidebar { width: 100%; position: static; }
}
@media (max-width: 767px) {
    .dr-hero__content { padding: 0 20px; }
    .dr-hero__title { font-size: 24px; }
    .dr-body { padding: 20px 16px; }
    .dr-member { flex-direction: column; align-items: flex-start; gap: 4px; padding: 12px 20px; }
    .dr-member__role { width: auto; }
    .dr-board__header { padding: 16px 20px; }
}
