:root {
    --primary-color: #0066CC;
    --secondary-color: #FFFFFF;
    --accent-color: #FF5722;
    --text-color: #333333;
    --text-light: #666666;
    --background-color: #F5F5F5;
    --background-alt: #E8F0FF;
    --border-color: #DDDDDD;
    --transition: all 0.3s ease;
    --shadow: 0 5px 15px rgba(0,0,0,0.1);
    --border-radius: 8px;
}

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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #0055aa;
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.divider {
    height: 4px;
    width: 70px;
    background: var(--accent-color);
    margin: 0 auto;
}

/* Header */
.header {
    background-color: var(--secondary-color);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    height: 60px;
    width: auto;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 5px 0;
    transition: var(--transition);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

nav a:hover, nav a.active {
    color: var(--accent-color);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

nav a:hover::after, nav a.active::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('WhatsApp Image 2025-04-16 at 11.44.19.jpeg');
    background-size: cover;
    background-position: center;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-cta {
    margin-bottom: 2rem;
}

.hero-cta a {
    margin: 0 0.5rem;
}

.platforms {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 2.5rem;
}

.platforms a {
    color: var(--secondary-color);
    opacity: 0.8;
    transition: var(--transition);
}

.platforms a:hover {
    color: var(--accent-color);
    opacity: 1;
    transform: translateY(-5px);
}

/* Sections */
section {
    padding: 100px 0;
}

.sobre {
    background: linear-gradient(135deg, var(--background-color) 0%, var(--background-alt) 100%);
}

.sobre-content {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.sobre-text {
    flex: 1;
}

.sobre-text p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
}

.sobre-icons {
    display: flex;
    gap: 2rem;
}

.icon-card {
    text-align: center;
    padding: 2rem;
    background: var(--secondary-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    width: 170px;
}

.icon-card:hover {
    transform: translateY(-10px);
}

.icon-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.icon-card p {
    font-weight: 500;
    color: var(--text-color);
}

/* Episódios */
.episodios {
    background-color: var(--secondary-color);
}

.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.tab-btn {
    background: none;
    border: none;
    padding: 0.8rem 1.5rem;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.tab-btn.active {
    color: var(--primary-color);
}

.tab-btn.active::after {
    width: 30px;
}

.playlist-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.main-video {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.main-video iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.video-card {
    background: var(--background-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

.video-card img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.video-card h3 {
    padding: 1rem;
    font-size: 1.1rem;
    color: var(--text-color);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.ver-mais {
    text-align: center;
    margin-top: 3rem;
}

/* Apresentadores */
.apresentadores {
    background-color: var(--background-alt);
}

.apresentadores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.apresentador-card {
    background: var(--secondary-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.apresentador-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.apresentador-img {
    height: 300px;
    overflow: hidden;
}

.apresentador-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.apresentador-card:hover .apresentador-img img {
    transform: scale(1.05);
}

.apresentador-card h3 {
    margin: 1.5rem 0 0.5rem;
    color: var(--primary-color);
}

.apresentador-card p {
    padding: 0 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.apresentador-card .social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.apresentador-card .social-links a {
    color: var(--text-light);
    font-size: 1.2rem;
}

.apresentador-card .social-links a:hover {
    color: var(--primary-color);
}

/* Novidades */
.novidades {
    background-color: var(--secondary-color);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.news-card {
    display: flex;
    flex-direction: column;
    background: var(--background-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.news-img {
    height: 200px;
    overflow: hidden;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.news-card:hover .news-img img {
    transform: scale(1.05);
}

.news-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-date {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.news-content h3 {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.news-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.read-more {
    align-self: flex-start;
    color: var(--primary-color);
    font-weight: 500;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--accent-color);
}

/* Newsletter */
.newsletter {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('WhatsApp Image 2025-04-16 at 11.44.19.jpeg');
    background-size: cover;
    background-position: center;
    color: var(--secondary-color);
    text-align: center;
}

.newsletter-content {
    max-width: 700px;
    margin: 0 auto;
}

.newsletter h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.newsletter p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
}

.newsletter-form button {
    padding-left: 2rem;
    padding-right: 2rem;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 5rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-info h3,
.footer-links h3 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-info p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.footer-logo {
    height: 80px;
    width: auto;
    filter: brightness(0) invert(1);
    margin: 0 auto;
}

.social-links {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.social-links a {
    color: var(--secondary-color);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

.social-links a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.contact-info {
    margin-top: 1.5rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info i {
    margin-right: 0.5rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--secondary-color);
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    padding-left: 5px;
    color: var(--accent-color);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Responsividade */
@media (max-width: 992px) {
    .sobre-content,
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--secondary-color);
        transition: var(--transition);
        z-index: 1000;
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
        padding: 3rem 0;
    }
    
    nav li {
        margin: 1rem 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .sobre-content {
        flex-direction: column;
        text-align: center;
    }

    .sobre-icons {
        flex-direction: column;
        align-items: center;
    }

    .icon-card {
        width: 100%;
        max-width: 250px;
    }
    
    .stats {
        justify-content: center;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .sobre h2,
    .episodios h2 {
        font-size: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form button {
        width: 100%;
    }

    .episode-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .episode-button {
        width: 100%;
        max-width: 350px;
    }
}

@media (max-width: 576px) {
    section {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .platforms {
        gap: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .stats {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Toast */
.toast {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: bottom 0.3s ease;
}

.toast.show {
    bottom: 30px;
}

/* Animações */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Atraso na animação por grupo */
.icon-card:nth-child(1) { transition-delay: 0.1s; }
.icon-card:nth-child(2) { transition-delay: 0.2s; }
.icon-card:nth-child(3) { transition-delay: 0.3s; }

.apresentador-card:nth-child(1) { transition-delay: 0.1s; }
.apresentador-card:nth-child(2) { transition-delay: 0.2s; }

.news-card:nth-child(1) { transition-delay: 0.1s; }
.news-card:nth-child(2) { transition-delay: 0.2s; }

/* Categoria no sistema de abas */
.category-header {
    grid-column: 1 / -1;
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 500;
    position: relative;
    padding-left: 15px;
}

.category-header::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 20px;
    background-color: var(--accent-color);
    border-radius: 3px;
}

/* Menu Mobile Ativo */
.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Metadados do vídeo */
.card-content {
    padding: 1rem;
}

.video-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.video-meta i {
    margin-right: 5px;
}

/* Playlist Description */
.playlist-description {
    margin: 2rem 0;
    text-align: center;
}

.playlist-description h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.playlist-description p {
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

/* Episode Buttons */
.episode-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.episode-button {
    background-color: var(--background-alt);
    border: none;
    border-radius: var(--border-radius);
    padding: 1rem 1.5rem;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 200px;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.episode-button:hover {
    transform: translateY(-5px);
    background-color: var(--primary-color);
}

.episode-button:hover .episode-number,
.episode-button:hover .episode-title {
    color: white;
}

.episode-number {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    transition: var(--transition);
}

.episode-title {
    font-size: 0.9rem;
    color: var(--text-color);
    text-align: center;
    transition: var(--transition);
}

.episode-button.active {
    background-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.15);
}

.episode-button.active .episode-number,
.episode-button.active .episode-title {
    color: white;
}