/* Episódios Page Styles */
.episodios-hero {
    background: linear-gradient(135deg, var(--blue), var(--pink));
    padding: 140px 0 100px;
}

.hero-stats {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 30px;
    font-size: 1.1rem;
    opacity: 0.95;
}

.hero-stats span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-stats i {
    color: var(--yellow);
}

/* Search and Filter Section */
.search-filter-section {
    background: white;
    padding: 40px 0;
    border-bottom: 1px solid #e0e0e0;
}

.search-filter-bar {
    background: var(--light-gray);
    padding: 25px;
    border-radius: 15px;
}

.filter-options {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-group label {
    font-weight: 500;
    color: var(--dark);
}

.filter-group select {
    padding: 8px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: white;
    cursor: pointer;
}

.clear-filters {
    margin-left: auto;
    color: var(--pink);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.clear-filters:hover {
    text-decoration: underline;
}

/* Featured Episode Section */
.featured-episode-section {
    padding: 60px 0;
    background: white;
}

.featured-badge {
    background: var(--gradient);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
    font-weight: 600;
}

.featured-badge i {
    color: var(--yellow);
}

.featured-episode {
    display: grid;
    grid-template-columns: 500px 1fr;
    gap: 40px;
    background: var(--light-gray);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.featured-thumbnail {
    position: relative;
    height: 100%;
    min-height: 350px;
}

.featured-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn-large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    color: var(--pink);
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s;
}

.play-btn-large:hover {
    transform: scale(1.1);
    background: var(--yellow);
    color: var(--dark);
}

.featured-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.episode-header {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.guest-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.guest-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Episodes List Section */
.episodes-list-section {
    padding: 60px 0;
    background: var(--light-gray);
}

.episodes-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.episode-card-extended {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 300px 1fr;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.episode-card-extended:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.episode-card-extended .episode-thumbnail {
    position: relative;
    height: 200px;
}

.thumbnail-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.episode-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.episode-card-extended:hover .episode-overlay {
    opacity: 1;
}

.play-btn-overlay {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    color: var(--pink);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
}

.play-btn-overlay:hover {
    transform: scale(1.1);
    background: var(--yellow);
    color: var(--dark);
}

.episode-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--yellow);
    color: var(--dark);
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
}

.episode-details {
    padding: 25px 30px;
    display: flex;
    flex-direction: column;
}

.episode-details h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.episode-details h3 a {
    color: var(--dark);
    text-decoration: none;
    transition: color 0.3s;
}

.episode-details h3 a:hover {
    color: var(--blue);
}

.episode-guest {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--blue);
}

.guest-role {
    color: var(--gray);
}

.episode-description {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.episode-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.episode-meta {
    display: flex;
    gap: 20px;
    color: var(--gray);
    font-size: 0.9rem;
}

.episode-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.episode-links {
    display: flex;
    gap: 10px;
}

.platform-link {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
}

.platform-link.youtube {
    background: #FF0000;
}

.platform-link.spotify {
    background: #1DB954;
}

.platform-link.website {
    background: var(--blue);
}

.platform-link:hover {
    transform: scale(1.1);
}

/* Newsletter CTA */
.newsletter-cta {
    background: var(--gradient);
    padding: 60px 0;
}

.cta-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.cta-text h3 {
    color: var(--dark);
    margin-bottom: 10px;
}

.cta-text p {
    color: var(--gray);
}

.newsletter-inline {
    display: flex;
    gap: 15px;
    min-width: 400px;
}

.newsletter-inline input {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
}

/* Responsive */
@media (max-width: 1024px) {
    .featured-episode {
        grid-template-columns: 1fr;
    }
    
    .featured-thumbnail {
        min-height: 250px;
    }
}

@media (max-width: 768px) {
    .episode-card-extended {
        grid-template-columns: 1fr;
    }
    
    .episode-card-extended .episode-thumbnail {
        height: 200px;
    }
    
    .filter-options {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .clear-filters {
        margin-left: 0;
        margin-top: 10px;
        justify-content: center;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-inline {
        min-width: 100%;
        flex-direction: column;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 10px;
    }
}