/* ===========================
   SEÇÃO DE NOTÍCIAS
   =========================== */

/* News Section */
.news-section {
    background: linear-gradient(135deg, rgba(20, 20, 30, 0.9), rgba(40, 30, 60, 0.9));
    backdrop-filter: blur(10px);
    padding: 80px 0; /* Padding específico para esta seção */
}

.news-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.news-tab {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #d4af37;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-tab:hover,
.news-tab.active {
    background: linear-gradient(135deg, #d4af37, #b8941f);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.news-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.news-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(10px);
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
    border-color: #d4af37;
}

.news-card.featured {
    grid-column: span 2;
}

.news-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-content {
    padding: 20px;
}

.news-content h3 {
    color: #d4af37;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.news-content p {
    color: #cccccc;
    margin-bottom: 15px;
    line-height: 1.6;
}

.news-date {
    color: #888;
    font-size: 0.9rem;
    font-weight: 600;
}

