.hero-media {
        background: linear-gradient(135deg, #EF4444, #DC2626);
        color: white;
        padding: 80px 0;
        text-align: center;
    }

    .hero-badge-media {
        display: inline-block;
        background: rgba(255,255,255,0.2);
        padding: 10px 25px;
        border-radius: 30px;
        font-weight: 700;
        margin-bottom: 25px;
    }

    .hero-title-media {
        font-family: 'Sora', sans-serif;
        font-size: 3rem;
        font-weight: 800;
        margin-bottom: 20px;
    }

    .hero-description-media {
        font-size: 1.2rem;
        opacity: 0.95;
        max-width: 700px;
        margin: 0 auto;
    }

    .media-tabs-section {
        padding: 60px 0 80px;
    }

    .media-tabs {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-bottom: 60px;
        border-bottom: 2px solid #E2E8F0;
        padding-bottom: 20px;
    }

    .tab-btn {
        padding: 15px 40px;
        background: none;
        border: none;
        font-family: 'Sora', sans-serif;
        font-size: 1.1rem;
        font-weight: 700;
        color: #64748B;
        cursor: pointer;
        position: relative;
        transition: color 0.2s;
    }

    .tab-btn.active {
        color: #EF4444;
    }

    .tab-btn.active::after {
        content: '';
        position: absolute;
        bottom: -22px;
        left: 0;
        right: 0;
        height: 2px;
        background: #EF4444;
    }

    .tab-content {
        display: none;
    }

    .tab-content.active {
        display: block;
    }

    .media-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .media-card-video {
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        cursor: pointer;
        transition: transform 0.3s;
    }

    .media-card-video:hover {
        transform: translateY(-5px);
    }

    .video-thumbnail {
        position: relative;
        height: 200px;
        overflow: hidden;
    }

    .video-thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .play-button {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 60px;
        height: 60px;
        background: rgba(239, 68, 68, 0.95);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.5rem;
    }

    .video-duration {
        position: absolute;
        bottom: 10px;
        right: 10px;
        background: rgba(0,0,0,0.8);
        color: white;
        padding: 4px 10px;
        border-radius: 4px;
        font-size: 0.85rem;
    }

    .video-info {
        padding: 20px;
    }

    .video-info h3 {
        font-size: 1.05rem;
        color: #0A2463;
        margin-bottom: 12px;
        line-height: 1.4;
    }

    .video-meta {
        display: flex;
        gap: 15px;
        font-size: 0.85rem;
        color: #94A3B8;
    }

    .podcasts-list {
        display: grid;
        gap: 25px;
    }

    .podcast-card {
        background: white;
        border-radius: 16px;
        padding: 25px;
        display: grid;
        grid-template-columns: 150px 1fr auto;
        gap: 25px;
        align-items: center;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    }

    .podcast-cover {
        position: relative;
    }

    .podcast-cover img {
        width: 100%;
        border-radius: 8px;
    }

    .btn-play-podcast {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 50px;
        height: 50px;
        background: #EF4444;
        border: none;
        border-radius: 50%;
        color: white;
        font-size: 1.2rem;
        cursor: pointer;
    }

    .podcast-episode {
        display: block;
        font-size: 0.85rem;
        color: #EF4444;
        font-weight: 700;
        margin-bottom: 8px;
    }

    .podcast-info h3 {
        font-family: 'Sora', sans-serif;
        font-size: 1.3rem;
        color: #0A2463;
        margin-bottom: 10px;
    }

    .podcast-info p {
        color: #64748B;
        margin-bottom: 12px;
    }

    .podcast-meta {
        display: flex;
        gap: 15px;
        font-size: 0.85rem;
        color: #94A3B8;
    }

    .podcast-actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .btn-download,
    .btn-share {
        width: 40px;
        height: 40px;
        border: none;
        background: #F8FAFC;
        border-radius: 8px;
        cursor: pointer;
        font-size: 1.2rem;
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .gallery-card {
        background: white;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    }

    .gallery-preview {
        position: relative;
        height: 300px;
    }

    .gallery-preview img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .gallery-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(transparent, rgba(0,0,0,0.7));
        display: flex;
        align-items: flex-end;
        padding: 20px;
    }

    .gallery-count {
        background: white;
        color: #0A2463;
        padding: 8px 15px;
        border-radius: 20px;
        font-weight: 700;
        font-size: 0.9rem;
    }

    .gallery-info {
        padding: 25px;
    }

    .gallery-info h3 {
        font-family: 'Sora', sans-serif;
        font-size: 1.3rem;
        color: #0A2463;
        margin-bottom: 15px;
    }

    .btn-view-gallery {
        color: #EF4444;
        text-decoration: none;
        font-weight: 700;
        transition: transform 0.2s;
        display: inline-block;
    }

    .btn-view-gallery:hover {
        transform: translateX(5px);
    }

    .cta-video-newsletter {
        background: linear-gradient(135deg, #0A2463, #1e293b);
        padding: 80px 0;
    }

    .cta-video-card {
        text-align: center;
        color: white;
    }

    .cta-video-card h2 {
        font-family: 'Sora', sans-serif;
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .cta-video-card p {
        font-size: 1.2rem;
        opacity: 0.9;
        margin-bottom: 35px;
    }

    .btn-youtube {
        display: inline-block;
        background: #EF4444;
        color: white;
        padding: 18px 40px;
        border-radius: 10px;
        text-decoration: none;
        font-weight: 700;
        font-size: 1.1rem;
        transition: transform 0.2s;
    }

    .btn-youtube:hover {
        transform: scale(1.05);
    }

    @media (max-width: 1024px) {
        .media-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .gallery-grid {
            grid-template-columns: 1fr;
        }

        .podcast-card {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 768px) {
        .media-grid {
            grid-template-columns: 1fr;
        }

        .media-tabs {
            flex-wrap: wrap;
        }
    }
