/* =====================================================
   SILICON NEWS - ESTILO REVISTA/EDITORIAL
   Usa cores e fontes padrão do projeto (Poppins)
   ===================================================== */

/* ===== ALERTA WEEKDONE ===== */
.news-alert {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, #fff3cd 0%, #ffeeba 100%);
    border: 1px solid #ffc107;
    border-left: 4px solid #ffc107;
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 24px;
}

.news-alert .alert-logo {
    width: 80px;
    height: auto;
    flex-shrink: 0;
}

.news-alert .alert-content strong {
    font-size: 15px;
    color: #856404;
    display: block;
    margin-bottom: 4px;
}

.news-alert .alert-content p {
    font-size: 13px;
    color: #856404;
    margin: 0;
    line-height: 1.5;
}

/* ===== GRID PRINCIPAL - 2 COLUNAS ESTILO REVISTA ===== */
.news-magazine-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.news-column-left,
.news-column-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ===== SEÇÕES ===== */
.news-section {
    background: #fff;
    border-radius: 8px;
    padding: 20px 24px;
    box-shadow: var(--widget-shadow, 0 6px 18px rgba(0,0,0,0.06));
}

.news-section h2 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color, #333);
    margin: 0 0 16px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f0f0;
}

.news-section h2 .highlight-text {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
    color: #fff;
    padding: 6px 14px;
    border-radius: 8px;
    display: inline-block;
}

.news-section h2 .highlight-text.highlight-orange {
    background: linear-gradient(135deg, #F03200 0%, #ff6b35 100%);
}

.news-section .section-intro {
    font-size: 14px;
    color: var(--text-color-light, #777);
    margin-bottom: 16px;
}

/* ===== SEÇÃO DESTAQUE (Bruno) ===== */
.highlight-section {
    background: linear-gradient(135deg, #f8f4ff 0%, #fff 100%);
    border: 1px solid rgba(127, 63, 152, 0.2);
}

.highlight-section h2 {
    color: var(--color-purple, #7F3F98);
    border-bottom-color: rgba(127, 63, 152, 0.2);
}

.highlight-section .congrats {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-purple, #7F3F98);
    margin-bottom: 16px;
}

.highlight-section .quote {
    font-style: italic;
    color: var(--text-color-light, #777);
    border-left: 3px solid var(--color-purple, #7F3F98);
    padding-left: 16px;
    margin: 16px 0 0 0;
}

/* ===== CARDS DE MEMBROS ===== */
.members-cards {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.member-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #f9f9f9;
    border-radius: 8px;
    padding: 16px 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.member-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.member-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    margin-bottom: 12px;
}

.member-card .member-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color, #333);
    margin: 0 0 4px 0;
}

.member-card .member-info .role {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    color: #fff;
    background: var(--color-purple, #7F3F98);
    padding: 2px 10px;
    border-radius: 12px;
    margin-bottom: 8px;
}

.member-card .member-info p {
    font-size: 11px;
    color: var(--text-color-light, #777);
    margin: 0;
    line-height: 1.4;
}

.welcome-msg {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-purple, #7F3F98);
    text-align: center;
    margin: 0;
}

/* ===== LISTA DE PILARES ===== */
.pillars-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pillar-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 16px;
    background: #f9f9f9;
    border-radius: 8px;
    border-left: 3px solid #e0e0e0;
    transition: border-color 0.2s ease;
}

.pillar-item:hover {
    border-left-color: var(--color-purple, #7F3F98);
}

.pillar-item.highlight {
    background: linear-gradient(90deg, #e8f5e9, #f9f9f9);
    border-left-color: #4caf50;
}

.pillar-item .pillar-icon {
    font-size: 20px;
    line-height: 1;
}

.pillar-item strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-color, #333);
    margin-bottom: 2px;
}

.pillar-item p {
    font-size: 12px;
    color: var(--text-color-light, #777);
    margin: 0;
    line-height: 1.4;
}

/* ===== LISTA DE DESTAQUES ===== */
.highlights-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
}

.highlights-list li {
    font-size: 13px;
    color: var(--text-color, #333);
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    line-height: 1.5;
}

.highlights-list li:last-child {
    border-bottom: none;
}

.hot-projects {
    background: linear-gradient(90deg, #fff5f5, #fff);
    border-left: 3px solid var(--color-orange, #F03200);
    padding: 12px 16px;
    border-radius: 0 8px 8px 0;
    font-size: 13px;
    color: var(--text-color, #333);
}

/* ===== NÚMEROS ===== */
.numbers-section .numbers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 12px;
}

.number-card {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    border: 1px solid #e0e0e0;
}

.number-card.featured {
    background: linear-gradient(135deg, var(--color-purple, #7F3F98) 0%, #9b4dca 100%);
    border: none;
}

.number-card .number {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-color, #333);
    margin-bottom: 4px;
}

.number-card.featured .number {
    color: #fff;
}

.number-card .label {
    font-size: 12px;
    color: var(--text-color-light, #777);
}

.number-card.featured .label {
    color: rgba(255,255,255,0.9);
}

.numbers-note {
    font-size: 12px;
    color: var(--text-color-light, #777);
    text-align: center;
    font-style: italic;
    margin: 0;
}

/* ===== IMAGENS DESTAQUE ===== */
.feature-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* ===== ALERT BOX ===== */
.alert-box {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 8px;
    padding: 12px 16px;
    margin-top: 12px;
}

.alert-box p {
    font-size: 13px;
    color: #856404;
    margin: 0;
}

/* ===== INFO LIST ===== */
.info-list p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-color, #333);
    margin: 0 0 12px 0;
}

.info-list p:last-child {
    margin-bottom: 0;
}

.info-list .small-note {
    font-size: 11px;
    color: var(--text-color-light, #777);
    font-style: italic;
}

/* ===== EVOLUTION LIST ===== */
.evolution-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.evo-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 16px;
    background: linear-gradient(90deg, #e3f2fd, #fff);
    border-radius: 8px;
    border-left: 3px solid #2196f3;
}

.evo-item span {
    font-size: 18px;
    line-height: 1;
}

.evo-item p {
    font-size: 13px;
    color: var(--text-color, #333);
    margin: 0;
    line-height: 1.5;
}

/* ===== SEÇÃO DE FECHAMENTO ===== */
.closing-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border: 1px solid #e0e0e0;
    text-align: center;
}

.closing-section h2 {
    border-bottom: none;
    padding-bottom: 0;
}

.closing-section .closing-note {
    font-size: 12px;
    color: var(--text-color-light, #777);
    font-style: italic;
    margin-bottom: 16px;
}

.closing-section .closing-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.closing-section .closing-message {
    max-width: 700px;
    margin: 0 auto;
}

.closing-section .closing-message p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-color, #333);
    margin: 0 0 12px 0;
}

.closing-section .farewell {
    font-size: 24px;
    font-weight: 600;
    color: var(--color-purple, #7F3F98);
    margin-top: 20px;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 1200px) {
    .news-magazine-grid {
        grid-template-columns: 1fr;
    }

    .members-cards {
        flex-wrap: wrap;
    }

    .member-card {
        min-width: 150px;
    }
}

@media (max-width: 768px) {
    .news-alert {
        flex-direction: column;
        text-align: center;
    }

    .numbers-section .numbers-grid {
        grid-template-columns: 1fr;
    }

    .members-cards {
        flex-direction: column;
    }

    .member-card {
        flex-direction: row;
        text-align: left;
    }

    .member-card img {
        width: 60px;
        height: 60px;
        margin-bottom: 0;
        margin-right: 16px;
    }
}
