        /* Destaques - Grid */
        #destaques {
            background-color: #f8f9fa;
            padding-top: 3rem;
            padding-bottom: 3rem;
        }
        
        #destaques .section-title {
            margin-bottom: 2rem;
        }
        
        /* Grid de Destaques */
        .destaques-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 30px;
        }
        
        /* Destaque Principal */
        .destaque-principal {
            grid-column: 1;
            grid-row: 1 / span 2;
        }
        
        /* Destaques Secundários */
        .destaques-secundarios {
            grid-column: 2;
            grid-row: 1 / span 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: 1fr 1fr;
            gap: 15px;
        }
        
        /* Estilos comuns para os cards de destaque */
        .destaque-card {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            height: 100%;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .destaque-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }
        
        .destaque-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .destaque-card:hover img {
            transform: scale(1.05);
        }
        
        .destaque-card .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.7) 100%);
            z-index: 1;
        }
        
        .destaque-content {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 1.5rem;
            z-index: 2;
            color: white;
        }
        
        .destaque-principal .destaque-content {
            padding-bottom: 2rem;
        }
        
        .destaque-card h3 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        
        .destaque-card h4 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            line-height: 1.2;
        }
        
        .destaque-card p {
            font-size: 1rem;
            margin-bottom: 1rem;
            opacity: 0.9;
        }
        
        .destaque-tag {
            display: inline-block;
            background-color: #114293;
            color: white;
            padding: 0.3rem 0.8rem;
            font-size: 0.8rem;
            font-weight: 700;
            border-radius: 4px;
            margin-bottom: 0.8rem;
        }
        
        .badge {
            color: white;
            padding: 0.3rem 0.8rem;
            font-size: 0.8rem;
            font-weight: 700;
            border-radius: 4px;
        }
        
        /* Responsividade */
        @media (max-width: 991px) {
            .destaques-grid {
                grid-template-columns: 1fr;
            }
            
            .destaque-principal {
                grid-column: 1;
                grid-row: 1;
                margin-bottom: 15px;
                height: 400px;
            }
            
            .destaques-secundarios {
                grid-column: 1;
                grid-row: 2;
                height: auto;
            }
            
            .destaque-card h3 {
                font-size: 1.5rem;
            }
        }
        
        @media (max-width: 767px) {
            .destaque-card h3 {
                font-size: 1.3rem;
            }
            
            .destaque-card h4 {
                font-size: 1rem;
            }
            
            .destaque-card p {
                font-size: 0.9rem;
            }
            
            .destaque-principal {
                height: 350px;
            }
            
            .destaque-principal .destaque-card {
                height: 100%;
            }
            
            .destaque-secundario {
                height: 200px;
            }
        }
        
        @media (max-width: 576px) {
            .destaques-secundarios {
                grid-template-columns: 1fr;
                grid-template-rows: repeat(4, 150px);
            }
            
            .destaque-secundario {
                height: 100%;
            }
        }

        /* Notícias e Eventos */
        #noticias {
            background-color: #fff;
            position: relative;
            overflow: hidden;
        }
        
        #noticias:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 200px;
            background: linear-gradient(180deg, #f0f5ff 0%, rgba(255,255,255,0) 100%);
            z-index: 0;
        }
        
        #noticias .container {
            position: relative;
            z-index: 1;
        }

        /* Cards de notícias */
        .news-card {
            border: none;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .news-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }
        
        .news-card .card-body {
            padding: 1.75rem;
            display: flex;
            flex-direction: column;
            flex: 1;
        }
        
        .news-card .card-title {
            font-weight: 700;
            margin-bottom: 1rem;
            color: #114293;
        }
        
        .news-card .card-text {
            color: #555;
            margin-bottom: 1.5rem;
            flex: 1;
        }
        
        .news-card .text-muted {
            font-size: 0.8rem;
        }

        .news-img-container {
            height: 200px;
            overflow: hidden;
        }
        
        .news-img-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .news-card:hover .news-img-container img {
            transform: scale(1.1);
        }

        /* Botão Ler Mais */
        .btn-leia-mais-noticia {
            display: inline-flex;
            align-items: center;
            padding: 0.5rem 1rem;
            font-weight: 600;
            font-size: 0.875rem;
            color: #114293;
            text-decoration: none;
            border: 1.5px solid #114293 !important;
            border-radius: 2rem;
            transition: all 0.2s ease;
            white-space: nowrap;
            background-color: transparent;
            margin-top: auto;
        }

        .btn-leia-mais-noticia:hover {
            background: #114293 !important;
            color: white !important;
            border-color: #114293 !important;
            text-decoration: none;
        }

        @media (max-width: 768px) {
            .btn-leia-mais-noticia {
                width: 100%;
                justify-content: center;
            }
        }