        /* ========================================
           HERO SECTION - Impacto + CTA
           ======================================== */
        .examples-hero {
            background: linear-gradient(135deg, #FFF0F5 0%, #FFE4EC 50%, #FFFFFF 100%);
            padding: 3rem 1rem 2.5rem;
            text-align: center;
            position: relative;
        }

        .hero-title {
            font-size: 2.2rem;
            font-weight: 800;
            color: #d63384;
            margin-bottom: 0.5rem;
            line-height: 1.2;
        }

        .hero-subtitle {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 0.8rem;
            font-style: italic;
        }

        .hero-proof {
            font-size: 0.85rem;
            color: #888;
            margin-bottom: 1.5rem;
        }

        .hero-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, #FF6B9D 0%, #FF4081 100%);
            color: white;
            padding: 0.9rem 2rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            text-decoration: none;
            box-shadow: 0 6px 20px rgba(255, 107, 157, 0.4);
            transition: all 0.3s;
            margin-bottom: 1.5rem;
        }

        .hero-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 107, 157, 0.5);
            color: white;
        }

        /* ========================================
           FILTROS - App Style
           ======================================== */
        .filters-bar {
            background: white;
            padding: 0.6rem;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            display: flex;
            gap: 0.4rem;
            flex-wrap: wrap;
            justify-content: center;
            margin-top: 1rem;
            align-items: center;
            border: 1px solid #f0f0f0;
        }

        .filter-pill {
            padding: 0.7rem 1rem;
            border-radius: 12px;
            text-decoration: none;
            color: #666;
            font-weight: 600;
            font-size: 0.85rem;
            transition: all 0.2s;
            border: 2px solid transparent;
            display: flex;
            align-items: center;
            gap: 0.4rem;
            background: #f8f9fa;
        }

        .filter-pill .filter-count {
            background: #e0e0e0;
            color: #666;
            font-size: 0.7rem;
            padding: 0.15rem 0.5rem;
            border-radius: 10px;
            font-weight: 700;
        }

        .filter-pill:hover {
            background: #fff0f5;
            border-color: #FFB6C1;
        }

        .filter-pill.active {
            background: linear-gradient(135deg, #FF6B9D 0%, #FF4081 100%);
            color: white;
            border-color: #FF4081;
            box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
        }

        .filter-pill.active .filter-count {
            background: rgba(255, 255, 255, 0.3);
            color: white;
        }

        .search-container {
            display: flex;
            align-items: center;
            background: #f8f9fa;
            border-radius: 12px;
            padding: 0.4rem 0.8rem;
            border: 2px solid transparent;
            transition: all 0.2s;
        }

        .search-container:focus-within {
            border-color: #FF6B9D;
            background: white;
        }

        .search-container input {
            border: none;
            background: transparent;
            padding: 0.5rem;
            outline: none;
            font-size: 0.85rem;
            width: 160px;
        }

        .search-container button {
            background: none;
            border: none;
            color: #FF6B9D;
            cursor: pointer;
            padding: 0.3rem;
        }

        /* ========================================
           SEÇÕES - Netflix Style
           ======================================== */
        .section-reais {
            background: linear-gradient(180deg, #FFF8FA 0%, #FFFFFF 100%);
            padding: 2.5rem 0;
        }

        .section-extras {
            background: #fff;
            padding: 2.5rem 0;
            border-top: 1px solid #f0f0f0;
        }

        .section-biblioteca {
            background: #f9f9f9;
            padding: 2.5rem 0;
        }

        .section-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .section-title .badge-count {
            background: #FF6B9D;
            color: white;
            font-size: 0.75rem;
            padding: 0.2rem 0.6rem;
            border-radius: 20px;
        }

        /* ========================================
           GRID DE CARDS
           ======================================== */
        .examples-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* ========================================
           CARD - Estilo PRAVC (Mini Página Completa)
           ======================================== */
        .example-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
            transition: all 0.3s;
            border: 1px solid #f0f0f0;
            display: flex;
            flex-direction: column;
        }

        .pravc-style-card {
            background: linear-gradient(180deg, #1a0b2e 0%, #2d1b4e 30%, #4a2c6a 60%, #6b3d8a 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .example-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
        }

        /* Header estilo PRAVC */
        .card-header-pravc {
            text-align: center;
            padding: 1rem 1rem 0.5rem;
            position: relative;
            z-index: 10;
        }

        .card-header-icon {
            font-size: 1.5rem;
            margin-bottom: 0.3rem;
            text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
            animation: pulse-heart-card 2s infinite ease-in-out;
        }

        @keyframes pulse-heart-card {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.1);
            }
        }

        .card-header-title {
            color: white;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 0.3rem;
            text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
            line-height: 1.3;
        }

        .card-header-subtitle {
            display: flex;
            flex-direction: column;
            gap: 2px;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
        }

        .card-header-from {
            color: rgba(255, 255, 255, 0.85);
            font-size: 0.7rem;
        }

        .card-header-to {
            font-size: 1rem;
            font-weight: 800;
            background: linear-gradient(90deg, #FFD700, #FF6B9D, #FFD700);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: shine-card 3s linear infinite;
        }

        @keyframes shine-card {
            to {
                background-position: 200% center;
            }
        }

        .card-body-pravc {
            padding: 1rem;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

        /* Badge compacto */
        .tipo-badge-wrapper-pravc {
            text-align: center;
            margin-bottom: 0.3rem;
        }

        .tipo-badge-pravc {
            display: inline-block;
            font-size: 0.7rem;
            font-weight: 700;
            padding: 0.25rem 0.6rem;
            border-radius: 15px;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            backdrop-filter: blur(10px);
        }

        /* Player estilo PRAVC */
        .player-hint-pravc {
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.75rem;
            text-align: center;
            margin-bottom: 0.5rem;
        }

        .player-section-pravc {
            margin: 0 auto;
            width: 100%;
            max-width: 100%;
        }

        .player-controls-pravc {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.8rem;
            margin-bottom: 0.5rem;
        }

        .control-with-label-pravc {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.3rem;
        }

        .control-with-label-pravc.main-pravc {
            flex: 1;
        }

        .btn-control-pravc {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: none;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            font-size: 0.9rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            backdrop-filter: blur(10px);
        }

        .btn-control-pravc:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.1);
        }

        .main-play-pravc {
            width: 50px !important;
            height: 50px !important;
            background: linear-gradient(135deg, #FF6B9D 0%, #FF4081 100%);
            box-shadow: 0 4px 15px rgba(255, 107, 157, 0.5);
            font-size: 1.1rem;
        }

        .main-play-pravc.playing {
            animation: pulse-play 1.2s infinite;
        }

        @keyframes pulse-play {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.1);
            }
        }

        .btn-label-pravc {
            font-size: 0.6rem;
            color: rgba(255, 255, 255, 0.8);
            text-align: center;
        }

        .play-label-pravc {
            font-weight: 800;
            color: #FFD700;
            transform: scale(1.05);
        }

        .progress-container-pravc {
            margin-top: 0.5rem;
        }

        .progress-bar-pravc {
            width: 100%;
            height: 4px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 2px;
            cursor: pointer;
            position: relative;
            margin-bottom: 0.3rem;
        }

        .progress-fill-pravc {
            height: 100%;
            width: 0%;
            background: linear-gradient(90deg, #FF6B9D, #FF4081);
            border-radius: 2px;
            transition: width 0.1s;
        }

        .time-display-pravc {
            display: flex;
            justify-content: space-between;
            font-size: 0.65rem;
            color: rgba(255, 255, 255, 0.7);
        }

        /* Reações estilo PRAVC */
        .reactions-section-pravc {
            margin-top: 0.5rem;
        }

        .reactions-hint-pravc {
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.7rem;
            text-align: center;
            margin-bottom: 0.5rem;
        }

        .reactions-bar-pravc {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0.4rem;
        }

        .reaction-btn-pravc {
            background: rgba(255, 255, 255, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            padding: 0.4rem 0.3rem;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.2rem;
            backdrop-filter: blur(10px);
        }

        .reaction-btn-pravc:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: scale(1.05);
        }

        .reaction-emoji-pravc {
            font-size: 1rem;
        }

        .reaction-label-pravc {
            font-size: 0.55rem;
            color: rgba(255, 255, 255, 0.9);
        }

        .reaction-count-pravc {
            font-size: 0.5rem;
            color: rgba(255, 255, 255, 0.7);
            font-weight: 600;
        }

        /* Preview da Letra estilo PRAVC */
        .lyrics-preview-pravc {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            padding: 0.8rem;
            margin-top: 0.5rem;
            position: relative;
            backdrop-filter: blur(10px);
        }

        .lyrics-preview-label-pravc {
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.7rem;
            margin-bottom: 0.4rem;
            text-align: center;
        }

        .lyrics-preview-text-pravc {
            color: rgba(255, 255, 255, 0.85);
            font-size: 0.65rem;
            line-height: 1.4;
            text-align: center;
            margin-bottom: 0.5rem;
            max-height: 2.5rem;
            overflow: hidden;
        }

        .btn-lyrics-expand-pravc {
            width: 100%;
            background: rgba(255, 255, 255, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 8px;
            padding: 0.5rem;
            color: white;
            font-size: 0.7rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-lyrics-expand-pravc:hover {
            background: rgba(255, 255, 255, 0.3);
        }

        /* Botões de ação */
        .card-actions-pravc {
            margin-top: 0.5rem;
        }

        .btn-primary-action-pravc {
            width: 100%;
            padding: 0.7rem 1rem;
            border-radius: 10px;
            font-size: 0.85rem;
            font-weight: 700;
            border: none;
            cursor: pointer;
            text-decoration: none;
            background: linear-gradient(135deg, #FF6B9D 0%, #FF4081 100%);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            transition: all 0.2s;
            box-shadow: 0 3px 10px rgba(255, 107, 157, 0.3);
        }

        .btn-primary-action-pravc:hover {
            transform: translateY(-1px);
            box-shadow: 0 5px 15px rgba(255, 107, 157, 0.4);
            color: white;
        }

        /* Áudio indisponível */
        .audio-unavailable-pravc {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            padding: 1rem;
            color: rgba(255, 255, 255, 0.7);
            text-align: center;
            font-size: 0.8rem;
            backdrop-filter: blur(10px);
        }

        /* Texto expandido */
        .text-content-pravc {
            display: none;
            background: rgba(255, 255, 255, 0.95);
            padding: 1rem;
            font-size: 0.8rem;
            text-align: left;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            line-height: 1.6;
            color: #333;
        }

        .text-content-pravc.show {
            display: block;
        }

        /* Badge do tipo */
        .tipo-badge-wrapper {
            margin-bottom: 0.6rem;
        }

        .tipo-badge {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 0.35rem 0.8rem;
            border-radius: 20px;
        }

        .badge-musica {
            background: #e3f2fd;
            color: #1565c0;
        }

        .badge-homenagem {
            background: #f3e5f5;
            color: #7b1fa2;
        }

        .badge-combo {
            background: #fff3e0;
            color: #e65100;
        }

        .badge-video {
            background: #ffebee;
            color: #c62828;
        }

        /* Título */
        .card-title {
            font-size: 1.05rem;
            color: #333;
            margin-bottom: 0.3rem;
            line-height: 1.3;
            font-weight: 700;
        }

        /* Descrição do tipo */
        .tipo-desc {
            font-size: 0.75rem;
            color: #999;
            margin-bottom: 1rem;
            margin-top: 0;
        }

        /* ========================================
           PLAYER - Visual Claro
           ======================================== */
        .branded-player {
            background: linear-gradient(135deg, #fff 0%, #fff5f8 100%);
            border: 1px solid #ffe4ec;
            border-radius: 12px;
            padding: 0.8rem;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .play-container {
            position: relative;
            width: 44px;
            height: 44px;
            flex-shrink: 0;
        }

        .play-btn-heart {
            width: 100%;
            height: 100%;
            background: none;
            border: none;
            color: #FF6B9D;
            font-size: 2.2rem;
            cursor: pointer;
            transition: transform 0.2s;
            padding: 0;
        }

        .play-btn-heart:hover {
            transform: scale(1.1);
        }

        .play-icon-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-size: 0.75rem;
        }

        .play-btn-heart.playing {
            animation: pulse 1.2s infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.1);
            }
        }

        .player-info {
            flex: 1;
            min-width: 0;
        }

        .player-cta {
            font-size: 0.8rem;
            font-weight: 700;
            color: #FF6B9D;
            margin-bottom: 0.3rem;
        }

        .progress-track {
            height: 4px;
            background: #ffe4e1;
            border-radius: 2px;
            width: 100%;
            margin-bottom: 0.2rem;
        }

        .progress-fill {
            height: 100%;
            width: 0%;
            background: #FF6B9D;
            border-radius: 2px;
            transition: width 0.1s;
        }

        .time-label {
            font-size: 0.7rem;
            color: #aaa;
            text-align: right;
        }

        /* Áudio indisponível */
        .audio-unavailable {
            background: #f8f9fa;
            border-radius: 12px;
            padding: 1rem;
            color: #999;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            font-size: 0.85rem;
        }

        /* ========================================
           BOTÕES DE AÇÃO - 1 Principal + 1 Secundário
           ======================================== */
        .card-actions {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            margin-top: auto;
        }

        .btn-primary-action {
            width: 100%;
            padding: 0.8rem 1rem;
            border-radius: 10px;
            font-size: 0.9rem;
            font-weight: 700;
            border: none;
            cursor: pointer;
            text-decoration: none;
            background: linear-gradient(135deg, #FF6B9D 0%, #FF4081 100%);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            transition: all 0.2s;
            box-shadow: 0 3px 10px rgba(255, 107, 157, 0.3);
        }

        .btn-primary-action:hover {
            transform: translateY(-1px);
            box-shadow: 0 5px 15px rgba(255, 107, 157, 0.4);
            color: white;
        }

        .btn-primary-action.btn-disabled {
            background: #e0e0e0;
            color: #999;
            cursor: not-allowed;
            box-shadow: none;
        }

        .btn-secondary-action {
            width: 100%;
            padding: 0.6rem 1rem;
            border-radius: 8px;
            font-size: 0.8rem;
            font-weight: 600;
            border: 1px solid #ddd;
            cursor: pointer;
            background: white;
            color: #666;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.4rem;
            transition: all 0.2s;
        }

        .btn-secondary-action:hover {
            background: #f8f9fa;
            border-color: #FF6B9D;
            color: #FF6B9D;
        }

        /* Texto expandido */
        .text-content {
            display: none;
            background: #fafafa;
            padding: 1rem;
            font-size: 0.85rem;
            text-align: left;
            border-top: 1px solid #eee;
            line-height: 1.6;
            color: #555;
        }

        .text-content.show {
            display: block;
        }

        /* ========================================
           CTA FINAL - Conversão
           ======================================== */
        .final-cta-section {
            background: linear-gradient(135deg, #FF6B9D 0%, #FF4081 100%);
            padding: 3rem 1rem;
            text-align: center;
            color: white;
        }

        .final-cta-title {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
        }

        .final-cta-subtitle {
            font-size: 1rem;
            opacity: 0.9;
            margin-bottom: 1.5rem;
        }

        .final-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: white;
            color: #FF4081;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: 800;
            font-size: 1.1rem;
            text-decoration: none;
            box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
            transition: all 0.3s;
        }

        .final-cta-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 35px rgba(0, 0, 0, 0.3);
        }

        /* Empty state */
        .empty-state {
            text-align: center;
            padding: 3rem;
            background: #f8f9fa;
            border-radius: 20px;
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 1.6rem;
            }

            .examples-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .filters-bar {
                gap: 0.3rem;
            }

            .filter-pill {
                padding: 0.5rem 0.7rem;
                font-size: 0.8rem;
            }
        }
