 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        .header {
            background: white;
            border-bottom: 1px solid #e9ecef;
            padding: 15px 0;
        }

        .nav {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .nav-item {
            display: flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
            color: #333;
            font-weight: 500;
        }

        .nav-item.active {
            color: #28a745;
            font-weight: 700;
        }

        .home-icon {
            width: 20px;
            height: 20px;
        }

        /* Page Header */
        .page-header {
            background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
            color: white;
            padding: 60px 0;
            text-align: center;
            margin-bottom: 40px;
        }

        .page-title {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .page-subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Filter Tabs */
        .filter-tabs {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 40px;
            border-bottom: 1px solid #e9ecef;
        }

        .filter-tab {
            padding: 15px 30px;
            background: none;
            border: none;
            font-size: 1rem;
            font-weight: 600;
            color: #666;
            cursor: pointer;
            border-bottom: 3px solid transparent;
            transition: all 0.3s ease;
        }

        .filter-tab.active {
            color: #28a745;
            border-bottom-color: #28a745;
        }

    
        /* Events Section */
        .events-section {
            margin-bottom: 60px;
        }

        .section-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 30px;
            color: #333;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .section-icon {
            width: 40px;
            height: 40px;
            background: #28a745;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }

        .events-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

        .event-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(40, 167, 69, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-top: 4px solid #28a745;
        }

        .event-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(40, 167, 69, 0.2);
        }

        .event-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .event-content {
            padding: 25px;
        }

        .event-date {
            background: #28a745;
            color: white;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 15px;
        }

        .event-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: #333;
            line-height: 1.4;
        }

        .event-description {
            color: #666;
            margin-bottom: 15px;
            line-height: 1.6;
        }

        .event-location {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #888;
            font-size: 0.9rem;
            margin-bottom: 20px;
        }

        .event-btn {
            background: #28a745;
            color: white;
            padding: 12px 25px;
            border: none;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .event-btn:hover {
            background: #1e7e34;
        }

        /* Awards Section */
        .awards-section {
    margin-bottom: 60px;
    padding: 0 20px;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
    color: #1b1b1b;
    position: relative;
}

.section-title::after {
    content: '';
    width: 60px;
    height: 4px;
    background: #20c997;
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.award-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(32, 201, 151, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid #20c997;
    position: relative;
    overflow: hidden;
}

.award-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(32, 201, 151, 0.25);
}

.award-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.2rem;
    color: #fff;
    box-shadow: 0 4px 10px rgba(32, 201, 151, 0.3);
}

.award-icon-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.award-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #222;
}

.award-year {
    color: #20c997;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 12px;
}

.award-description {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 18px;
}

.award-winner {
    background: #e6f4ea;
    padding: 12px 16px;
    border-radius: 10px;
    font-weight: 600;
    color: #155724;
    border-left: 5px solid #28a745;
    font-size: 0.95rem;
}


        /* Featured Event */
       .featured-event {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border-radius: 20px;
    padding: 40px;
    margin-top: 1px; /* Adicionado para afastar do menu fixo */
    margin-bottom: 60px;
     margin-top: 150px;
    text-align: center;
}

        

        .featured-event h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }

        .featured-event p {
            font-size: 1.1rem;
            opacity: 0.9;
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .featured-btn {
            background: white;
            color: #28a745;
            padding: 15px 35px;
            border: none;
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .featured-btn:hover {
            transform: scale(1.05);
        }

        /* Statistics */
        .stats-section {
            background: white;
            border-radius: 20px;
            padding: 40px;
            margin-bottom: 60px;
            box-shadow: 0 8px 25px rgba(40, 167, 69, 0.1);
            border-top: 4px solid #28a745;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            text-align: center;
        }

        .stat-item {
            padding: 20px;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: #00a81cff;
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 1.1rem;
            color: #666;
            font-weight: 600;
        }

        /* Timeline */
        .timeline-section {
            margin-bottom: 60px;
        }

        .timeline {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 3px;
            background: #28a745;
            transform: translateX(-50%);
        }

        .timeline-item {
            position: relative;
            margin-bottom: 50px;
            width: 50%;
        }

        .timeline-item:nth-child(odd) {
            left: 0;
            padding-right: 40px;
            text-align: right;
        }

        .timeline-item:nth-child(even) {
            left: 50%;
            padding-left: 40px;
        }

        .timeline-content {
            background: white;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(40, 167, 69, 0.1);
            position: relative;
            border-left: 4px solid #20c997;
        }

        .timeline-date {
            background: #28a745;
            color: white;
            padding: 5px 15px;
            border-radius: 15px;
            font-size: 0.9rem;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 15px;
        }

        .timeline-title {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: #333;
        }

        .timeline-description {
            color: #666;
            line-height: 1.6;
        }

        .timeline-dot {
            position: absolute;
            width: 20px;
            height: 20px;
            background: #28a745;
            border-radius: 50%;
            top: 30px;
            border: 4px solid white;
            box-shadow: 0 0 0 3px #28a745;
        }

        .timeline-item:nth-child(odd) .timeline-dot {
            right: -14px;
        }

        .timeline-item:nth-child(even) .timeline-dot {
            left: -14px;
        }

        /* Footer */
        .footer {
            background: #1e7e34;
            color: white;
            text-align: center;
            padding: 40px 0;
            margin-top: 60px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .page-title {
                font-size: 2rem;
            }
            
            .events-grid,
            .awards-grid {
                grid-template-columns: 1fr;
            }
            
            .filter-tabs {
                flex-wrap: wrap;
                gap: 10px;
            }
            
            .timeline::before {
                left: 20px;
            }
            
            .timeline-item {
                width: 100%;
                left: 0 !important;
                padding-left: 50px !important;
                padding-right: 0 !important;
                text-align: left !important;
            }
            
            .timeline-dot {
                left: 10px !important;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Additional green accents */
        .event-card:nth-child(2n) {
            border-top-color: #20c997;
        }

        .event-card:nth-child(3n) {
            border-top-color: #1e7e34;
        }

        .award-card:nth-child(2n) {
            border-top-color: #28a745;
        }

        .award-card:nth-child(3n) {
            border-top-color: #1e7e34;
        }

        /* Hover effects with green theme */
        .nav-item:hover {
            color: #28a745;
        }

        .event-btn:focus,
        .featured-btn:focus {
            outline: 2px solid #28a745;
            outline-offset: 2px;
        }