/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --yellow: #ffd255;
    --blue: #0f75bc;
    --pink: #dc0c82;
    --dark: #333;
    --gray: #666;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, var(--blue), var(--pink));
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--blue);
}

.logo i {
    color: var(--yellow);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--blue);
}

.cta-button {
    background: var(--pink);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 12, 130, 0.3);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(15, 117, 188, 0.1), rgba(220, 12, 130, 0.1));
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--gray);
    margin-bottom: 30px;
}

.hero-player {
    margin-bottom: 30px;
}

.player-card {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.episode-tag {
    background: var(--yellow);
    color: var(--dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
}

.player-info h3 {
    color: var(--dark);
    margin-bottom: 5px;
}

.player-info p {
    color: var(--gray);
}

.play-btn-large {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient);
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s;
}

.play-btn-large:hover {
    transform: scale(1.1);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--blue);
    border: 2px solid var(--blue);
}

.btn-secondary:hover {
    background: var(--blue);
    color: var(--white);
}

.hero-image {
    display: flex;
    justify-content: center;
}

.hero-illustration {
    width: 300px;
    height: 300px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.hero-illustration i {
    font-size: 8rem;
    color: var(--white);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--dark);
    position: relative;
}

.section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background: var(--gradient);
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

/* Episodes Section */
.recent-episodes {
    padding: 80px 0;
    background: var(--light-gray);
}

.episodes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.episode-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.episode-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.episode-thumbnail {
    position: relative;
    height: 200px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
}

.episode-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-btn-overlay {
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    border: none;
    color: var(--pink);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
}

.play-btn-overlay:hover {
    transform: scale(1.1);
    background: var(--yellow);
}

.episode-content {
    padding: 20px;
}

.episode-number {
    background: var(--yellow);
    color: var(--dark);
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.episode-title {
    margin: 15px 0 10px;
    color: var(--dark);
}

.episode-guest {
    color: var(--blue);
    font-weight: 500;
    margin-bottom: 10px;
}

.episode-description {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.episode-meta {
    display: flex;
    gap: 20px;
    color: var(--gray);
    font-size: 0.9rem;
}

/* About Section */
.about {
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: start;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.about-text p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    color: var(--gray);
    font-size: 0.95rem;
}

.host-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.host-image {
    width: 120px;
    height: 120px;
    background: var(--gradient);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.host-image i {
    font-size: 3.5rem;
    color: var(--white);
}

.host-card h4 {
    color: var(--gray);
    font-weight: 400;
    margin-bottom: 5px;
}

.host-card h3 {
    color: var(--dark);
    margin-bottom: 15px;
}

.host-card p {
    color: var(--gray);
    margin-bottom: 20px;
}

.host-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.host-social a {
    width: 40px;
    height: 40px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    transition: all 0.3s;
}

.host-social a:hover {
    background: var(--gradient);
    color: var(--white);
}

/* Featured Guests Section */
.featured-guests {
    padding: 80px 0;
    background: var(--light-gray);
}

.guests-slider-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.guests-slider {
    overflow: hidden;
    position: relative;
    height: 400px;
}

.guest-card {
    position: absolute;
    width: 100%;
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    opacity: 0;
    transition: all 0.5s;
    transform: translateX(100%);
}

.guest-card.active {
    opacity: 1;
    transform: translateX(0);
}

.guest-image {
    width: 100px;
    height: 100px;
    background: var(--gradient);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guest-image i {
    font-size: 3rem;
    color: var(--white);
}

.guest-card h3 {
    color: var(--dark);
    margin-bottom: 5px;
}

.guest-company {
    color: var(--blue);
    font-weight: 500;
    margin-bottom: 20px;
}

.guest-card blockquote {
    font-style: italic;
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.guest-episode-link {
    color: var(--pink);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.guest-episode-link:hover {
    color: var(--blue);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
}

.slider-btn:hover {
    background: var(--gradient);
    color: var(--white);
}

.slider-btn.prev {
    left: -25px;
}

.slider-btn.next {
    right: -25px;
}

/* Categories Section */
.categories {
    padding: 80px 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.category-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 210, 85, 0.2), rgba(220, 12, 130, 0.2));
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon i {
    font-size: 2rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.category-card h3 {
    color: var(--dark);
    margin-bottom: 10px;
}

.category-card p {
    color: var(--gray);
}

/* Newsletter Section */
.newsletter {
    padding: 80px 0;
    background: var(--gradient);
}

.newsletter-content {
    text-align: center;
}

.newsletter-text h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.newsletter-text p {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 25px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    min-width: 200px;
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.newsletter-form .btn {
    background: var(--yellow);
    color: var(--dark);
}

.newsletter-form .btn:hover {
    background: var(--white);
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-logo i {
    color: var(--yellow);
}

.footer-section h4 {
    margin-bottom: 20px;
    color: var(--yellow);
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.8;
}

.platform-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.platform-link {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.platform-link:hover {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--gradient);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.6;
}

/* Adicionar estas classes ao seu CSS existente */

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-overlay.active {
    display: flex;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid var(--blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.whatsapp-float:hover {
    background: #1ebe57;
    transform: scale(1.1);
    color: white;
    text-decoration: none;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 100px;
    width: 45px;
    height: 45px;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: all 0.3s;
    z-index: 99;
}

.scroll-to-top.show {
    display: flex;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

/* Toast Container */
.toast-container {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
}

.toast {
    background: var(--dark);
    color: white;
    padding: 15px 25px;
    border-radius: 5px;
    margin-bottom: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    animation: slideUp 0.3s ease-out;
}

.toast.success {
    background: #28a745;
}

.toast.error {
    background: #dc3545;
}

.toast.warning {
    background: #ffc107;
    color: var(--dark);
}

@keyframes slideUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Episodes Highlight (Mais Vistos) */
.popular-episodes {
    background: var(--light-gray);
}

.episodes-highlight {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.highlight-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    position: relative;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.highlight-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--gradient);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.highlight-badge i {
    color: var(--yellow);
    margin-right: 5px;
}

.guest-info {
    background: var(--light-gray);
    padding: 10px 15px;
    border-radius: 8px;
    margin: 15px 0;
    font-size: 0.95rem;
    color: var(--blue);
}

.episode-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.btn-watch {
    background: var(--gradient);
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-watch:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Events Section */
.events-section {
    padding: 80px 0;
    background: white;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 1.1rem;
    margin-top: -30px;
    margin-bottom: 50px;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.event-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.event-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-date-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--yellow);
    color: var(--dark);
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    font-weight: bold;
}

.event-date-badge .day {
    display: block;
    font-size: 1.5rem;
}

.event-date-badge .month {
    display: block;
    font-size: 0.8rem;
}

.event-content {
    padding: 25px;
}

.event-title a {
    color: var(--dark);
    text-decoration: none;
    transition: color 0.3s;
}

.event-title a:hover {
    color: var(--blue);
}

.event-info {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 20px 0;
    font-size: 0.9rem;
    color: var(--gray);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.info-item i {
    color: var(--pink);
}

/* About Section Updates */
.about-video {
    position: relative;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-placeholder {
    background: var(--gradient);
    height: 400px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.video-placeholder i {
    font-size: 4rem;
    margin-bottom: 20px;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
    margin: 20px 0;
}

.host-info-inline {
    background: var(--light-gray);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--gradient);
}

.host-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--blue);
    margin: 10px 0;
}

.host-bio {
    color: var(--gray);
}

/* Footer Updates */
.footer-stats {
    display: flex;
    gap: 20px;
    margin-top: 15px;
    font-size: 0.9rem;
}

.footer-stats span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(255,255,255,0.8);
}

.footer-stats i {
    color: var(--yellow);
}

.platform-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.platform-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.platform-link:hover {
    background: rgba(255,255,255,0.2);
    transform: translateX(5px);
}

.platform-link.youtube { border-left: 3px solid #FF0000; }
.platform-link.spotify { border-left: 3px solid #1DB954; }
.platform-link.apple { border-left: 3px solid #FC3C44; }

.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: rgba(255,255,255,0.8);
}

.contact-info i {
    color: var(--yellow);
    width: 20px;
}

.contact-info a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.contact-info a:hover {
    color: white;
}

.footer-legal {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 10px;
}

.footer-legal a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: white;
}

/* Responsive Updates */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
    
    .scroll-to-top {
        right: 20px;
        bottom: 80px;
    }
    
    .episodes-highlight {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-video {
        margin-top: 30px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        padding: 20px;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-illustration {
        width: 200px;
        height: 200px;
    }

    .hero-illustration i {
        font-size: 5rem;
    }

    .episodes-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .stats {
        justify-content: space-around;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .slider-btn.prev {
        left: 10px;
    }

    .slider-btn.next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

/* Page Hero Sections */
.page-hero, .about-hero, .blog-hero, .contact-hero {
    background: var(--gradient);
    padding: 120px 0 80px;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.page-hero h1, .about-hero h1, .blog-hero h1, .contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.page-hero p, .about-hero p, .blog-hero p, .contact-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* Search and Filter Bar */
.search-filter-bar {
    background: white;
    padding: 30px;
    border-radius: 15px;
    margin-top: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.search-form {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.search-input-group {
    flex: 1;
    display: flex;
    position: relative;
}

.search-input-group input {
    flex: 1;
    padding: 15px 50px 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 30px;
    font-size: 1rem;
}

.search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gradient);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
}

/* Episodes Extended Card */
.episode-card-extended {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    display: grid;
    grid-template-columns: 300px 1fr;
    margin-bottom: 30px;
    transition: all 0.3s;
}

.episode-card-extended:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.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-thumbnail:hover .episode-overlay {
    opacity: 1;
}

.episode-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--yellow);
    color: var(--dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
}

.episode-details {
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.episode-guest {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--blue);
    margin: 10px 0;
}

.guest-role {
    color: var(--gray);
}

.episode-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
}

.page-numbers {
    display: flex;
    gap: 10px;
}

.page-number, .page-link {
    padding: 10px 15px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    color: var(--dark);
    text-decoration: none;
    transition: all 0.3s;
}

.page-number.active, .page-number:hover {
    background: var(--gradient);
    color: white;
    border-color: transparent;
}

/* About Page Specific */
.mission-vision .content-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card-icon i {
    font-size: 2rem;
    color: white;
}

.story-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: center;
}

.story-quote {
    background: var(--light-gray);
    padding: 30px;
    border-left: 4px solid var(--gradient);
    margin: 30px 0;
}

.story-quote blockquote {
    font-size: 1.2rem;
    font-style: italic;
    margin: 0;
}

.stats-section {
    background: var(--gradient);
    padding: 80px 0;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.stat-card {
    text-align: center;
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.stat-value {
    font-size: 3rem;
    font-weight: 700;
}

.host-profile {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 50px;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.host-details h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.host-title {
    color: var(--blue);
    font-weight: 600;
    margin-bottom: 20px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.testimonial-rating {
    color: var(--yellow);
    margin-bottom: 20px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card i {
    font-size: 3rem;
    color: var(--gradient);
    margin-bottom: 20px;
}

/* Events Page */
.event-filters {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.filter-btn {
    padding: 12px 30px;
    background: white;
    border: 2px solid white;
    border-radius: 25px;
    color: var(--dark);
    text-decoration: none;
    transition: all 0.3s;
}

.filter-btn.active {
    background: var(--yellow);
    border-color: var(--yellow);
    color: var(--dark);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.event-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.event-card.past-event {
    opacity: 0.7;
}

.event-header {
    position: relative;
    height: 200px;
    background: var(--gradient);
}

.event-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.event-date .day {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--blue);
}

.event-date .month {
    display: block;
    font-size: 0.9rem;
    color: var(--gray);
}

.event-body {
    padding: 25px;
}

.event-details {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--gray);
}

.detail-item i {
    color: var(--pink);
}

.events-newsletter {
    background: var(--light-gray);
    padding: 80px 0;
    text-align: center;
}

.newsletter-box {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form-inline {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.newsletter-form-inline input {
    flex: 1;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
}

/* Blog Page */
.blog-search {
    max-width: 500px;
    margin: 30px auto 0;
}

.featured-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.featured-post {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.main-featured {
    grid-row: span 2;
}

.post-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.main-featured .post-image {
    height: 400px;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--yellow);
    color: var(--dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
}

.post-content {
    padding: 25px;
}

.blog-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.blog-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-card-content {
    padding: 25px;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.read-more {
    color: var(--blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.read-more:hover {
    color: var(--pink);
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: white;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.category-list {
    list-style: none;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--dark);
    transition: all 0.3s;
}

.category-list a:hover, .category-list a.active {
    background: var(--light-gray);
}

.category-count {
    background: var(--gradient);
    color: white;
    padding: 2px 10px;
    border-radius: 15px;
    font-size: 0.85rem;
}

.popular-posts {
    list-style: none;
}

.popular-posts li {
    border-bottom: 1px solid #e0e0e0;
    padding: 15px 0;
}

.popular-posts li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.popular-posts h4 {
    font-size: 0.95rem;
    margin-bottom: 5px;
    color: var(--dark);
}

.post-views {
    font-size: 0.85rem;
    color: var(--gray);
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    background: var(--light-gray);
    padding: 5px 15px;
    border-radius: 20px;
    text-decoration: none;
    color: var(--dark);
    font-size: 0.9rem;
    transition: all 0.3s;
}

.tag:hover {
    background: var(--gradient);
    color: white;
}

/* Contact Page */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.info-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
}

.contact-sidebar .sidebar-box {
    background: white;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.social-links-vertical {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-links-vertical a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: var(--light-gray);
    border-radius: 8px;
    text-decoration: none;
    color: var(--dark);
    transition: all 0.3s;
}

.social-links-vertical a:hover {
    background: var(--gradient);
    color: white;
}

.faq-list {
    list-style: none;
}

.faq-list li {
    margin-bottom: 20px;
}

.contact-map {
    margin-top: 80px;
}

.map-container {
    height: 400px;
    filter: grayscale(1);
    transition: filter 0.3s;
}

.map-container:hover {
    filter: grayscale(0);
}

/* Alerts */
.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* No Results */
.no-results, .no-posts {
    text-align: center;
    padding: 60px 20px;
}

.no-results i, .no-posts i {
    font-size: 4rem;
    color: var(--gray);
    margin-bottom: 20px;
}

.no-results h3, .no-posts h3 {
    color: var(--dark);
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 1024px) {
    .episode-card-extended {
        grid-template-columns: 1fr;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-container {
        grid-template-columns: 1fr;
    }
    
    .blog-sidebar {
        position: static;
        margin-top: 40px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .host-profile {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .page-hero h1, .about-hero h1, .blog-hero h1, .contact-hero h1 {
        font-size: 2rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form-inline {
        flex-direction: column;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
    }
}

