   /* Seções */
        .premiacao-section {
            padding: 5rem 0;
        }
        .premiacao-section:nth-child(even) {
            background-color: #ffffff;
        }
        .premiacao-section:nth-child(odd) {
            background-color: #f1f5f9;
        }

        /* Cards de conteúdo */
        .premio-card {
            background: white;
            border-radius: 1.5rem;
            padding: 2rem;
            box-shadow: 0 20px 35px -12px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        .premio-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 30px 45px -15px rgba(0,0,0,0.2);
        }
        .premio-badge {
            display: inline-block;
            background: linear-gradient(135deg, #eab308, #facc15);
            color: #0f172a;
            font-weight: bold;
            padding: 0.3rem 1rem;
            border-radius: 40px;
            font-size: 0.8rem;
            margin-bottom: 1rem;
        }
        .premio-title {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: #0f172a;
        }
        .premio-text {
            color: #334155;
            line-height: 1.6;
        }

        /* Carrossel personalizado */
        .custom-carousel {
            border-radius: 1.5rem;
            overflow: hidden;
            box-shadow: 0 20px 35px -12px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }
        .custom-carousel:hover {
            transform: scale(1.02);
        }
        .carousel-item img {
            height: 400px;
            object-fit: cover;
            width: 100%;
        }
        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            background-color: rgba(0,0,0,0.5);
            border-radius: 50%;
            padding: 1.2rem;
        }
        .carousel-indicators button {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            margin: 0 5px;
        }

        /* Footer refinado */
        footer {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            color: #cbd5e1;
            padding: 2rem 0;
            margin-top: 3rem;
        }
        footer a {
            color: #cbd5e1;
            text-decoration: none;
            margin-right: 1.5rem;
            transition: color 0.2s;
        }
        footer a:hover {
            color: #facc15;
        }
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            transition: all 0.3s;
            margin-left: 0.5rem;
        }
        .social-icons a:hover {
            background: #facc15;
            color: #0f172a !important;
            transform: translateY(-3px);
        }
        .footer-brand {
            font-size: 1.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, #fff, #94a3b8);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        /* Linha decorativa */
        .hr-custom {
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #facc15, #eab308);
            margin: 1rem 0 1.5rem 0;
            border-radius: 4px;
        }

        /* Responsividade */
        @media (max-width: 768px) {
            .premiacao-section {
                padding: 3rem 0;
            }
            .premio-title {
                font-size: 1.5rem;
            }
            .carousel-item img {
                height: 250px;
            }
            .navbar-brand {
                font-size: 1.4rem;
            }
        }