<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: url('images/background.png') no-repeat center center fixed;
    background-size: cover;
    color: white;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

header {
    background-color: transparent;
    color: white;
    padding: 20px;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

header p {
    margin: 5px 0 0;
    font-size: 1.2em;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.channel h2 {
    font-size: 2em;
    border-bottom: 2px solid #fff;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.programs {
    display: flex;
    flex-direction: column;
}

.program {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program:hover {
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.3);
}

.program img {
    width: 200px;
    height: 120px;
    object-fit: cover;
    border-right: 2px solid #ddd;
}

.program-details {
    padding: 15px;
    flex: 1;
    position: relative;
    z-index: 1;
}

.program-details h3 {
    margin: 0;
    font-size: 1.6em;
    color: #fff;
}

.program-details .time {
    display: block;
    margin: 5px 0;
    color: #ddd;
    font-size: 1.1em;
}

.program-details p {
    margin: 0;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

/* Cores de classificaÃ§Ã£o indicativa */
.rating {
    position: absolute;
    top: 20px;
    right: 15px;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1em;
    z-index: 1;
}

.rating[data-rating="L"] { 
    background-color: #3CAB5B; /* Verde para "Livre" */
} 

.rating[data-rating="10"] { 
    background-color: #3D6AB8; /* Azul para "10 anos" */
} 

.rating[data-rating="12"] { 
    background-color: #D9D919; /* Amarelo para "12 anos" */
    color: #FFFFFF; /* Texto preto para contraste */
} 

.rating[data-rating="14"] { 
    background-color: #F7941D; /* Laranja para "14 anos" */
} 

.rating[data-rating="16"] { 
    background-color: #ED1C24; /* Vermelho para "16 anos" */
} 

.rating[data-rating="18"] { 
    background-color: #000000; /* Preto para "18 anos" */
}

@media (max-width: 768px) {
    .programs {
        flex-direction: column;
    }

    .program img {
        width: 100%;
        height: auto;
        border-right: none;
        border-bottom: 2px solid #ddd;
    }

    .program {
        flex-direction: column;
        text-align: center;
    }

    .rating {
        top: auto;
        bottom: 15px;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }
}
</pre></body></html>