/* ==========================================================================
   Página de Detalhes do Conselho - Francisco Beltrão
   ========================================================================== */

/* Logo do Conselho no Header */
.council-logo-header {
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 16px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.council-logo-header img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.council-icon-header {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Lista de Informações */
.info-list li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.info-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.info-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-light, #e8f4f8);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1rem;
}

/* Lista de Membros */
.members-list {
    max-height: 500px;
    overflow-y: auto;
}

.member-item {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.member-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.member-item:last-child {
    margin-bottom: 0;
}

.member-entity {
    font-weight: 600;
    color: var(--text-dark, #212529);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.member-names {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.member-primary,
.member-alternate {
    font-size: 0.875rem;
    display: flex;
    align-items: center;
}

.member-alternate {
    color: #6c757d;
}

.member-contact {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.member-contact-item {
    font-size: 0.8rem;
    display: flex;
    align-items: flex-start;
    line-height: 1.35;
    word-break: break-word;
}

.member-contact-item a {
    color: #495057;
    text-decoration: none;
}

.member-contact-item a:hover {
    color: var(--bs-primary, #0d6efd);
    text-decoration: underline;
}

.member-contact-item i {
    margin-top: 0.15rem;
    flex-shrink: 0;
}

/* Cards de Reunião */
.meeting-card {
    transition: all 0.3s ease;
}

.meeting-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.meeting-date-badge {
    width: 60px;
    padding: 10px;
    background: var(--primary-color, #0066a1);
    border-radius: 10px;
    text-align: center;
    color: white;
    flex-shrink: 0;
}

.meeting-date-badge .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.meeting-date-badge .month {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.meeting-date-badge .year {
    display: block;
    font-size: 0.7rem;
    opacity: 0.8;
}

/* Scrollbar personalizada para lista de membros */
.members-list::-webkit-scrollbar {
    width: 6px;
}

.members-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.members-list::-webkit-scrollbar-thumb {
    background: var(--primary-color, #0066a1);
    border-radius: 3px;
}

.members-list::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark, #004d7a);
}

/* Descrição do Conselho */
.council-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
}

.council-description p {
    margin-bottom: 1.25rem;
}

.council-description p:last-child {
    margin-bottom: 0;
}

.council-description h2,
.council-description h3,
.council-description h4 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--primary-color, #0066a1);
}

.council-description h2 {
    font-size: 1.5rem;
}

.council-description h3 {
    font-size: 1.3rem;
}

.council-description h4 {
    font-size: 1.15rem;
}

.council-description ul,
.council-description ol {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}

.council-description li {
    margin-bottom: 0.5rem;
}

.council-description strong {
    color: var(--text-dark, #212529);
    font-weight: 600;
}

.council-description a {
    color: var(--primary-color, #0066a1);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.council-description a:hover {
    color: var(--primary-dark, #004d7a);
    text-decoration: underline;
}

/* Responsividade */
@media (max-width: 991.98px) {
    .council-logo-header,
    .council-icon-header {
        width: 100px;
        height: 100px;
        margin: 0 auto;
    }
    
    .meeting-date-badge {
        width: 50px;
        padding: 8px;
    }
    
    .meeting-date-badge .day {
        font-size: 1.25rem;
    }
    
    .council-description {
        font-size: 1rem;
    }
}

@media (max-width: 767.98px) {
    .members-list {
        max-height: 400px;
    }
    
    .member-names {
        flex-direction: column;
    }
    
    .council-description {
        font-size: 0.95rem;
    }
}


