        :root {
            --font-serif: 'Playfair Display', serif;
            --font-sans: 'Inter', sans-serif;
            --color-primary: #f59e0b;
            --color-secondary: #6366f1;
            --color-dark-background: #111827;
        }

        .stories-section {
            background: #0f172a;
            padding: 6rem 1.5rem;
            position: relative;
            overflow: hidden;
        }

        /* Efeitos de fundo animados */
        .stories-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at 30% 50%, rgba(99, 102, 241, 0.15) 0%, transparent 30%),
                        radial-gradient(circle at 70% 80%, rgba(245, 158, 11, 0.1) 0%, transparent 40%);
            animation: float 20s ease-in-out infinite;
            pointer-events: none;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            33% { transform: translate(30px, -30px) rotate(5deg); }
            66% { transform: translate(-30px, 30px) rotate(-5deg); }
        }

        .stories-section::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 1px;
           
        }

        .stories-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .stories-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .stories-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(79, 70, 229, 0.2) 100%);
            border: 1px solid rgba(99, 102, 241, 0.3);
            padding: 0.5rem 1.25rem;
            border-radius: 999px;
            color: #818cf8;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            backdrop-filter: blur(10px);
        }

        .stories-badge i {
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.7; transform: scale(1.1); }
        }

        .stories-title {
            font-family: var(--font-serif);
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 800;
            background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
            line-height: 1.2;
            text-shadow: 0 0 40px rgba(99, 102, 241, 0.3);
        }

        .stories-subtitle {
            font-size: 1.25rem;
            color: #cbd5e1;
            max-width: 650px;
            margin: 0 auto;
            line-height: 1.7;
        }

        .stories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
            max-width: 1100px;
            margin: 0 auto;
        }

        @media (min-width: 768px) {
            .stories-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .story-card {
            position: relative;
            border-radius: 2rem;
            overflow: hidden;
            background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                        0 0 0 1px rgba(255, 255, 255, 0.05);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            aspect-ratio: 9 / 16;
        }

        .story-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(from 0deg at 50% 50%, 
                rgba(99, 102, 241, 0) 0deg,
                rgba(99, 102, 241, 0.2) 90deg,
                rgba(245, 158, 11, 0.2) 180deg,
                rgba(99, 102, 241, 0.2) 270deg,
                rgba(99, 102, 241, 0) 360deg);
            animation: rotate 8s linear infinite;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        @keyframes rotate {
            100% { transform: rotate(360deg); }
        }

        .story-card:hover::before {
            opacity: 1;
        }

        .story-card::after {
            content: '';
            position: absolute;
            inset: 2px;
            background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
            border-radius: calc(2rem - 2px);
            z-index: 1;
        }

        .story-card:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: 0 30px 80px rgba(99, 102, 241, 0.4),
                        0 0 0 1px rgba(99, 102, 241, 0.2);
        }

        .story-video-wrapper {
            position: relative;
            width: 100%;
            height: 100%;
            background: #000;
            z-index: 2;
        }

        .story-video-wrapper iframe {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Barra de progresso glamourosa */
        .progress-bar {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: rgba(15, 23, 42, 0.8);
            z-index: 10;
            overflow: hidden;
            backdrop-filter: blur(10px);
        }

        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, 
                #6366f1 0%, 
                #8b5cf6 25%, 
                #f59e0b 50%, 
                #ec4899 75%, 
                #6366f1 100%);
            background-size: 200% 100%;
            width: 0%;
            transition: width 0.1s linear;
            animation: shimmer 3s linear infinite;
            box-shadow: 0 0 15px rgba(99, 102, 241, 0.6);
        }

        @keyframes shimmer {
            0% { background-position: 200% 0; }
            100% { background-position: -200% 0; }
        }

        /* Overlay sofisticado */
        .story-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, 
                rgba(0,0,0,0.7) 0%, 
                transparent 20%, 
                transparent 80%, 
                rgba(0,0,0,0.8) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 5;
            pointer-events: none;
        }

        .story-card:hover .story-overlay {
            opacity: 1;
        }

        /* Botão de áudio premium */
        .audio-toggle {
            position: absolute;
            bottom: 1.5rem;
            right: 1.5rem;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4),
                        0 0 0 1px rgba(255, 255, 255, 0.1);
            pointer-events: auto;
            backdrop-filter: blur(10px);
        }

        .audio-toggle::before {
            content: '';
            position: absolute;
            inset: -3px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: -1;
        }

        .audio-toggle:hover {
            transform: scale(1.15) rotate(5deg);
            box-shadow: 0 12px 32px rgba(99, 102, 241, 0.5),
                        0 0 0 4px rgba(99, 102, 241, 0.2);
        }

        .audio-toggle:hover::before {
            opacity: 1;
        }

        .audio-toggle i {
            font-size: 1.4rem;
            color: #111827;
            transition: all 0.3s ease;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
        }

        .audio-toggle:hover i {
            color: #ffffff;
            transform: scale(1.1);
        }

        .audio-toggle.active {
            background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
            box-shadow: 0 12px 32px rgba(99, 102, 241, 0.6),
                        0 0 20px rgba(99, 102, 241, 0.4);
        }

        .audio-toggle.active i {
            color: #ffffff;
            animation: soundWave 1s ease-in-out infinite;
        }

        @keyframes soundWave {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        /* Label elegante */
        .story-label {
            position: absolute;
            top: 1.75rem;
            left: 1.75rem;
            right: 1.75rem;
            z-index: 10;
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.9) 0%, rgba(139, 92, 246, 0.9) 100%);
            color: white;
            font-weight: 700;
            font-size: 0.875rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            padding: 0.625rem 1rem;
            border-radius: 999px;
            text-align: center;
            box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            opacity: 0;
            transform: translateY(-10px);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .story-card:hover .story-label {
            opacity: 1;
            transform: translateY(0);
        }

        /* Loading spinner elegante */
        .loading-spinner {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 50px;
            height: 50px;
            border: 4px solid rgba(99, 102, 241, 0.2);
            border-top-color: var(--color-primary);
            border-right-color: var(--color-secondary);
            border-radius: 50%;
            animation: spin 1s cubic-bezier(0.5, 0, 0.5, 1) infinite;
            z-index: 1;
            box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
        }

        @keyframes spin {
            to { transform: translate(-50%, -50%) rotate(360deg); }
        }

        /* Animação de entrada escalonada */
        .story-card {
            opacity: 0;
            transform: translateY(60px) scale(0.9);
            animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        }

        .story-card:nth-child(1) { animation-delay: 0.1s; }
        .story-card:nth-child(2) { animation-delay: 0.25s; }
        .story-card:nth-child(3) { animation-delay: 0.4s; }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        /* Efeito de brilho ao passar o mouse */
        .story-card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            z-index: 2;
        }

        .shine-effect {
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, 
                transparent 0%, 
                rgba(255, 255, 255, 0.1) 50%, 
                transparent 100%);
            z-index: 8;
            pointer-events: none;
        }

        .story-card:hover .shine-effect {
            animation: shine 1.5s ease-in-out;
        }

        @keyframes shine {
            to { left: 100%; }
        }

        /* Responsivo aprimorado */
        @media (max-width: 768px) {
            .stories-section {
                padding: 4rem 1rem;
            }

            .stories-grid {
                gap: 2rem;
                grid-template-columns: 1fr;
                max-width: 400px;
            }

            .audio-toggle {
                width: 50px;
                height: 50px;
                bottom: 1.25rem;
                right: 1.25rem;
            }

            .story-label {
                font-size: 0.8125rem;
                top: 1.25rem;
                left: 1.25rem;
                right: 1.25rem;
                padding: 0.5rem 0.875rem;
            }

            .stories-title {
                font-size: 2rem;
            }

            .stories-subtitle {
                font-size: 1.125rem;
            }
        }

        /* Efeito de partículas (opcional) */
        .particle {
            position: absolute;
            width: 3px;
            height: 3px;
            background: rgba(99, 102, 241, 0.5);
            border-radius: 50%;
            pointer-events: none;
            animation: float-particle 4s ease-in-out infinite;
        }

        @keyframes float-particle {
            0%, 100% { transform: translateY(0) translateX(0); opacity: 0; }
            50% { opacity: 1; }
        }