        body {
            padding-top: 56px;
            margin: 0;
        }
        .custom-navbar {
            background-color: rgba(0, 0, 0, 0.6); 
            backdrop-filter: blur(4px); 
        }
        
        .background-fixed {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background-image: url('https://images.pexels.com/photos/5278835/pexels-photo-5278835.jpeg');
           /* background-image: url('pexels-photo-5278835_16x9.jpeg');*/
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            z-index: -1;
            animation: zoomEffect 10s infinite alternate ease-in-out;
        }
        @keyframes zoomEffect {
            0% { transform: scale(1); }
            100% { transform: scale(1.1); }
        }
        .content-section {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 20px;
            color: white;
            position: relative;
        }
        .content-section h1, .content-section h2 {
            margin-top: 25px;
            text-align: center;
            text-transform: uppercase;
            font-weight: bold;
            margin-bottom: 60px;
        }
        .content-section h1 {
            font-size: 3rem;
            margin-bottom: 1rem; 
       }

        .content-section h2 {
            font-size: 1.5rem; 
            font-weight: bold; 
            margin-top: 1rem;      
            margin-bottom: 3rem; 
         }

         .content-section h3 {
            margin-top: 3.5rem;
            text-align: center;
            text-transform: uppercase;
            font-weight: bold;        
         }
        .content-section h4 {
            font-size: 1rem;
            margin-top: 1rem;
            text-align: center;
            text-transform: uppercase;
            font-weight: bold;        
         }
        .content-section p {
            text-align: left;
            font-size: 1.2rem;
        }
        .card-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 30px; 
    justify-content: center;
}

.custom-card {
        width: 280px; 
        height: 380px; 
        padding: 20px;
        text-align: center;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        background: #fff;
        color: black;
    }
    
    .custom-card img {
        width: 180px; 
        height: 180px;
        border-radius: 50%;
        object-fit: cover;
        margin-bottom: 15px;
    }

    @media (max-width: 991px) {
        .custom-card {
            width: 80%; 
            height: auto;
        }
    }
/* Schedule Section */
.schedule-table {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
}

.schedule-table thead {
    background-color: #343a40;
    color: white;
}

.schedule-table th, .schedule-table td {
    text-align: center;
    padding: 12px;
}

.schedule-table tbody tr:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

/* Estilo para os dias */
.schedule-day {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

pre {
    font-style: italic;
    white-space: pre-wrap;       
    word-break: break-word;      
    font-size: 1rem;             
    line-height: 1.5;            
    width: 100%;                 
    font-family: inherit;        
    color: #000;                
    background: transparent;     
    margin: 0;                  
    padding: 0;
}



.bg-dark-overlay {
    background: rgba(33, 33, 33, 0.6);
}

        .sponsors-bar {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1rem;
            padding: 1rem 2rem;
            background-color: rgba(0, 0, 0, 0.6); 
            color: white;
            border-radius: 8px;
            backdrop-filter: blur(4px); 
       }
        .sponsors-bar img {
            height: 100px;
            margin: 0 15px;
        }
        .sponsor-text {
            font-weight: 600;
            font-size: 1.1rem;
            color: #fff;
        }  
        
         