/* News Section Styles - BANDA O POÇO Theme */
:root {
    --news-primary-color: #cc1573;       /* Rosa Neon Principal */
    --news-bg-color: #121212;            /* Fundo Escuro */
    --news-card-bg: #1e1e1e;             /* Fundo dos Cards */
    --news-text-color: #ffffff;          /* Texto Branco */
    --news-meta-color: #aaaaaa;          /* Texto Secundário */
    --news-tip-gradient-start: #cc1573;  /* Gradiente Dica */
    --news-tip-gradient-end: #8a0e4d;    /* Fim Gradiente */
}

.news-section { 
    padding: 100px 0; 
    background-color: var(--news-bg-color); 
}

.news-section .section-heading h2 {
    color: #fff;
}

.news-grid { 
    display: grid; 
    grid-template-columns: 1.5fr 1fr; 
    gap: 30px; 
    margin-bottom: 40px; 
}

.featured-news { 
    background: var(--news-card-bg); 
    border-radius: 12px; 
    overflow: hidden; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.5); 
    height: 100%; 
    display: flex; 
    flex-direction: column; 
    border: 1px solid rgba(255,255,255,0.05);
}

.featured-img-container { 
    height: 400px; 
    overflow: hidden; 
    position: relative; 
    background-color: #222; 
}

.featured-img-container img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.2, 1); 
}

.featured-news:hover .featured-img-container img { 
    transform: scale(1.08); 
}

.featured-content { 
    padding: 35px; 
    flex-grow: 1; 
    display: flex; 
    flex-direction: column; 
}

.news-meta { 
    font-size: 0.8rem; 
    color: var(--news-meta-color); 
    margin-bottom: 15px; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    font-weight: 600;
}

.news-source { 
    color: var(--news-primary-color); 
    font-weight: 700; 
    margin-right: 15px; 
    border-right: 1px solid #444;
    padding-right: 15px;
}

.featured-title { 
    font-size: 2rem; 
    font-weight: 700; 
    margin-bottom: 20px; 
    line-height: 1.2; 
    color: var(--news-text-color); 
}

.featured-excerpt { 
    color: #ccc; 
    margin-bottom: 30px; 
    line-height: 1.7; 
    flex-grow: 1; 
}

.flat-button {
    background-color: var(--news-primary-color);
    color: #fff !important;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    transition: all 0.3s;
    text-align: center;
}

.flat-button:hover {
    background-color: #fff;
    color: var(--news-primary-color) !important;
}

.secondary-news-list { 
    display: flex; 
    flex-direction: column; 
    gap: 20px; 
}

.secondary-news-item { 
    background: var(--news-card-bg); 
    padding: 15px; 
    border-radius: 10px; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.2); 
    display: flex; 
    gap: 20px; 
    transition: all 0.3s ease; 
    text-decoration: none !important; 
    border: 1px solid rgba(255,255,255,0.03);
}

.secondary-news-item:hover { 
    transform: translateX(10px); 
    border-color: var(--news-primary-color);
    box-shadow: 0 6px 20px rgba(204, 21, 115, 0.2);
}

.secondary-img { 
    width: 100px; 
    height: 100px; 
    border-radius: 8px; 
    object-fit: cover; 
    flex-shrink: 0; 
    background-color: #333; 
}

.secondary-content { 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
}

.secondary-title { 
    font-size: 1.1rem; 
    font-weight: 600; 
    color: var(--news-text-color); 
    margin-bottom: 5px; 
    line-height: 1.4; 
}

.specialist-tip-block { 
    background: linear-gradient(135deg, var(--news-tip-gradient-start) 0%, var(--news-tip-gradient-end) 100%); 
    border-radius: 15px; 
    padding: 40px; 
    color: #fff; 
    margin-top: 60px; 
    position: relative; 
    overflow: hidden; 
    box-shadow: 0 10px 30px rgba(204, 21, 115, 0.3);
}

.specialist-tip-block::before {
    content: "\f0eb"; /* FontAwesome Lightbulb */
    font-family: FontAwesome;
    position: absolute;
    right: -20px;
    bottom: -20px;
    font-size: 150px;
    opacity: 0.1;
    transform: rotate(-15deg);
}

.tip-header { 
    display: flex; 
    align-items: center; 
    margin-bottom: 20px; 
}

.tip-icon { 
    font-size: 2.5rem; 
    color: #fff; 
    margin-right: 20px; 
}

.tip-title { 
    font-size: 1.8rem; 
    font-weight: 700; 
    margin: 0; 
    color: #fff; 
    text-transform: uppercase;
    letter-spacing: 1px;
}

.specialist-tip-block p {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-whatsapp { 
    background-color: #ffffff; 
    color: var(--news-primary-color) !important; 
    padding: 15px 35px; 
    border-radius: 50px; 
    font-weight: 700; 
    display: inline-flex; 
    align-items: center; 
    gap: 12px; 
    transition: all 0.3s ease; 
    text-decoration: none !important; 
    text-transform: uppercase;
}

.btn-whatsapp:hover { 
    background-color: #25d366; 
    color: #fff !important; 
    transform: translateY(-5px); 
}

@media (max-width: 991px) {
    .news-grid { grid-template-columns: 1fr; }
    .featured-img-container { height: 300px; }
}
