        * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        }

        html, body {
        height: 100%;
        font-family: 'Montserrat', sans-serif;
        background: #1E3A8A;
        color: #ffffff;
        overflow-x: hidden;
        font-size: 14px;
        scroll-behavior: smooth;
        }

        /* Advanced Background System */
        .bg-gradient {
            background: linear-gradient(135deg, #1E3A8A 0%, #2563EB 25%, #3B82F6 50%, #1D4ED8 75%, #1E40AF 100%);
            position: relative;
            overflow: hidden;
        }

        .bg-gradient::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.15) 0%, transparent 40%),
                radial-gradient(circle at 80% 30%, rgba(59, 130, 246, 0.12) 0%, transparent 45%),
                radial-gradient(circle at 40% 70%, rgba(139, 69, 19, 0.08) 0%, transparent 35%),
                radial-gradient(circle at 70% 80%, rgba(255, 20, 147, 0.1) 0%, transparent 40%);
            pointer-events: none;
            animation: ambientGlow 8s ease-in-out infinite alternate;
        }

        @keyframes ambientGlow {
            0% { opacity: 0.6; transform: scale(1); }
            100% { opacity: 1; transform: scale(1.02); }
        }

        /* Floating particles effect */
        .bg-gradient::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(2px 2px at 20px 30px, rgba(255, 215, 0, 0.3), transparent),
                radial-gradient(2px 2px at 40px 70px, rgba(59, 130, 246, 0.2), transparent),
                radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.4), transparent),
                radial-gradient(1px 1px at 130px 80px, rgba(255, 20, 147, 0.3), transparent);
            background-repeat: repeat;
            background-size: 150px 100px;
            animation: floatingParticles 20s linear infinite;
            pointer-events: none;
            opacity: 0.6;
        }

        @keyframes floatingParticles {
            0% { transform: translateY(0px) translateX(0px); }
            100% { transform: translateY(-100px) translateX(50px); }
        }

        /* Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: linear-gradient(90deg, rgba(30, 58, 138, 0.95), rgba(37, 99, 235, 0.95), rgba(29, 78, 216, 0.95));
            backdrop-filter: blur(20px);
            border-bottom: 2px solid rgba(255, 215, 0, 0.3);
            padding: 1rem 0;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 2rem;
            position: relative;
        }

        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            color: #FFD700;
            text-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
            letter-spacing: 3px;
            flex-shrink: 0;
            position: relative;
            background: linear-gradient(45deg, #FFD700, #FFA500, #FFD700);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: logoGlow 3s ease-in-out infinite alternate;
        }

        @keyframes logoGlow {
            0% { filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5)); }
            100% { filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8)); }
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 0.3rem;
            align-items: center;
            margin: 0;
            padding: 0 0.5rem;
            overflow-x: auto;
            overflow-y: hidden;
            scrollbar-width: none;
            -ms-overflow-style: none;
            flex: 1;
            justify-content: flex-start;
            max-width: calc(100vw - 350px);
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
        }

        .nav-menu::-webkit-scrollbar {
            display: none;
        }

        .nav-item {
            color: #ffffff;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.4s ease;
            padding: 0.6rem 0.8rem;
            border-radius: 20px;
            white-space: nowrap;
            font-size: 0.8rem;
            border: 1px solid transparent;
            flex-shrink: 0;
            min-width: 75px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            line-height: 1.2;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            user-select: none;
        }

        .nav-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
            transition: left 0.5s;
        }

        .nav-item:hover::before {
            left: 100%;
        }

        .nav-item .emoji {
            font-size: 1.1rem;
            margin-bottom: 0.2rem;
            display: block;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
        }

        .nav-item .text {
            font-size: 0.7rem;
            display: block;
            font-weight: 600;
        }

        .nav-item:hover {
            color: #FFD700;
            text-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(59, 130, 246, 0.1));
            border-color: rgba(255, 215, 0, 0.4);
            transform: translateY(-2px) scale(1.05);
            box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
        }

        .cta-button {
            background: linear-gradient(45deg, #FFD700, #FFA500, #FF8C00);
            color: #000000;
            padding: 0.8rem 1.8rem;
            border: none;
            border-radius: 30px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.4s ease;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
            position: relative;
            overflow: hidden;
            font-size: 0.95rem;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
            background: linear-gradient(45deg, #FFA500, #FF8C00, #FFD700);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            background-image: 
                linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.85) 50%, rgba(15, 23, 42, 0.9) 100%),
                url("https://i.imgur.com/hRoDjtJ.jpeg");
            background-size: cover;
            background-position: center;
        }

        .hero-content {
            max-width: 900px;
            padding: 2rem;
            animation: heroEntrance 1.2s ease-out;
            position: relative;
            z-index: 2;
        }

        @keyframes heroEntrance {
            0% {
                opacity: 0;
                transform: translateY(50px) scale(0.9);
            }
            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .hero-title {
            font-size: 4.5rem;
            font-weight: 900;
            margin-bottom: 2rem;
            background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B6B, #4ECDC4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.1;
            text-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            animation: titleGlow 4s ease-in-out infinite alternate;
        }

        @keyframes titleGlow {
            0% { filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.3)); }
            100% { filter: drop-shadow(0 0 40px rgba(255, 215, 0, 0.6)); }
        }

        .hero-subtitle {
            font-size: 1.4rem;
            color: #E0E0E0;
            margin-bottom: 3rem;
            line-height: 1.6;
            font-weight: 500;
            text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
        }

        .hero-cta {
            font-size: 1.3rem;
            padding: 1.2rem 3rem;
            background: linear-gradient(45deg, #FFD700, #FFA500, #FF8C00, #FFB347);
            border-radius: 50px;
            box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .hero-cta:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 25px 60px rgba(255, 215, 0, 0.6);
        }

        .section {
            padding: 6rem 1.5rem;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;

        }
        .section-title {
            font-size: 3rem;
            font-weight: 800;
            text-align: center;
            margin-bottom: 4rem;
            background: linear-gradient(45deg, #FFD700, #FFA500);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 8px 32px rgba(255, 215, 0, 0.2);
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(45deg, #FFD700, #FFA500);
            border-radius: 2px;
        }

        .section-content {
            text-align: center;
            font-size: 1.2rem;
            line-height: 1.8;
            color: #E0E0E0;
            max-width: 800px;
            margin: 0 auto;
            font-weight: 400;
        }

        /* Enhanced Content Sections */
        .content-section {
            background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
            position: relative;
            overflow: hidden;
        }

        .content-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 30% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
            pointer-events: none;
        }

        /* Blue Background Sections */
        .blue-section {
            background: linear-gradient(135deg, #1E3A8A 0%, #1E40AF 25%, #2563EB 50%, #1D4ED8 75%, #1E3A8A 100%);
            position: relative;
            overflow: hidden;
        }

        .blue-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 25% 25%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(59, 130, 246, 0.12) 0%, transparent 50%);
            pointer-events: none;
            animation: blueGlow 8s ease-in-out infinite alternate;
        }

        @keyframes blueGlow {
            0% { opacity: 0.7; transform: scale(1); }
            100% { opacity: 1; transform: scale(1.02); }
        }

        .content-categories {
            display: grid;
            gap: 4rem;
            margin-top: 4rem;
            position: relative;
            z-index: 1;
        }

        .content-category {
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
            padding: 3rem;
            border-radius: 25px;
            border: 1px solid rgba(255, 215, 0, 0.2);
            backdrop-filter: blur(20px);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .content-category::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(59, 130, 246, 0.05));
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .content-category:hover::before {
            opacity: 1;
        }

        .content-category:hover {
            border-color: rgba(255, 215, 0, 0.4);
            box-shadow: 0 20px 60px rgba(255, 215, 0, 0.1);
            transform: translateY(-8px);
        }

        .category-header {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            margin-bottom: 2rem;
            position: relative;
            z-index: 1;
        }

        .category-icon {
            font-size: 3rem;
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(59, 130, 246, 0.15));
            padding: 1rem;
            border-radius: 20px;
            border: 2px solid rgba(255, 215, 0, 0.3);
            backdrop-filter: blur(10px);
        }

        .category-header h3 {
            color: #FFD700;
            font-size: 1.8rem;
            font-weight: 700;
            margin: 0;
            text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        }

        .category-description {
            color: #E0E0E0;
            font-size: 1.1rem;
            margin-bottom: 2.5rem;
            line-height: 1.6;
            position: relative;
            z-index: 1;
        }

        /* Enhanced Carousels */
        .channels-carousel, .platforms-grid, .compatibility-grid, .benefits-carousel, .plans-carousel, .comments-carousel {
            margin-top: 3rem;
            overflow: hidden;
            position: relative;
        }

        .channels-track, .platforms-track, .compatibility-track, .benefits-track, .plans-grid, .comments-track {
            display: flex;
            gap: 2.5rem;
            animation: scroll 40s linear infinite;
            width: max-content;
        }

        .channels-track:hover, .platforms-track:hover, .compatibility-track:hover, .benefits-track:hover, .plans-grid:hover, .comments-track:hover {
            animation-play-state: paused;
        }

        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* Enhanced Cards */
        .channel-icon-item, .platform-item, .device-category, .benefit-card, .plan-card, .comment-card {
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
            padding: 2rem;
            border-radius: 20px;
            border: 2px solid rgba(255, 215, 0, 0.2);
            backdrop-filter: blur(15px);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            flex-shrink: 0;
        }

        .channel-icon-item::before, .platform-item::before, .device-category::before, .benefit-card::before, .plan-card::before, .comment-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(59, 130, 246, 0.1));
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .channel-icon-item:hover::before, .platform-item:hover::before, .device-category:hover::before, .benefit-card:hover::before, .plan-card:hover::before, .comment-card:hover::before {
            opacity: 1;
        }

        .channel-icon-item:hover, .platform-item:hover, .device-category:hover, .benefit-card:hover, .plan-card:hover, .comment-card:hover {
            border-color: rgba(255, 215, 0, 0.6);
            box-shadow: 0 20px 60px rgba(255, 215, 0, 0.2);
            transform: translateY(-10px) scale(1.02);
        }

        /* Specific card styles */
        .channel-icon-item, .platform-item {
            min-width: 160px;
            max-width: 160px;
            height: 160px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .channel-icon, .platform-icon {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
        }

        .channel-name, .platform-name {
            color: #ffffff;
            font-size: 1rem;
            font-weight: 600;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
            position: relative;
            z-index: 1;
        }

        .device-category {
            min-width: 300px;
            max-width: 300px;
            text-align: center;
        }

        .device-category .device-icon {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            display: block;
            filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
        }

        .device-category h3 {
            color: #FFD700;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 1;
        }

        .device-category ul {
            list-style: none;
            padding: 0;
            position: relative;
            z-index: 1;
        }

        .device-category li {
            color: #E0E0E0;
            font-size: 1rem;
            margin-bottom: 0.8rem;
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            font-weight: 500;
        }

        .device-category li:last-child {
            border-bottom: none;
        }

        /* Planos - Carrossel Horizontal */
        .plans-carousel {
            margin-top: 3rem;
            overflow: hidden;
            position: relative;
        }

        .plans-track {
            display: flex;
            gap: 2.5rem;
            animation: scroll 40s linear infinite;
            width: max-content;
        }

        .plans-track:hover {
            animation-play-state: paused;
        }

        .plan-card {
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
            padding: 2.5rem 2rem;
            border-radius: 20px;
            border: 2px solid rgba(255, 215, 0, 0.2);
            backdrop-filter: blur(15px);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            flex-shrink: 0;
            min-width: 290px;
            max-width: 290px;
            text-align: center;
        }

        .plan-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(59, 130, 246, 0.1));
            opacity: 0;
            transition: opacity 0.4s ease;
        }

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

        .plan-card:hover {
            border-color: rgba(255, 215, 0, 0.6);
            box-shadow: 0 20px 60px rgba(255, 215, 0, 0.2);
            transform: translateY(-10px) scale(1.02);
        }

        .plan-name {
            font-size: 1.3rem;
            font-weight: bold;
            color: #FFD700;
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
        }

        .plan-price {
            font-size: 2rem;
            font-weight: bold;
            color: #ffffff;
            margin-bottom: 0.5rem;
            position: relative;
            z-index: 1;
        }

        .plan-period {
            font-size: 1rem;
            color: #E0E0E0;
        }

        .plan-features {
            margin: 2rem 0;
            position: relative;
            z-index: 1;
        }

        .plan-feature {
            text-align: left;
            font-size: 0.95rem;
            margin: 0.8rem 0;
            padding: 0.5rem 0;
            color: #E0E0E0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .plan-feature:last-child {
            border-bottom: none;
        }

        .plan-button {
            background: linear-gradient(to right, #FFD700, #FFA500);
            color: #000000;
            font-weight: bold;
            padding: 1rem 2rem;
            border-radius: 50px;
            border: none;
            cursor: pointer;
            width: 100%;
            font-size: 1rem;
            transition: all 0.4s ease;
            position: relative;
            z-index: 1;
        }

        .plan-button:hover {
            background: linear-gradient(to right, #FFA500, #FF8C00);
            transform: scale(1.05);
            box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
        }

        .plan-card.popular {
            border: 2px solid #FFD700;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
        }

        .plan-card.popular::after {
            content: "🔥 Mais Popular";
            position: absolute;
            top: 15px;
            right: -25px;
            background: linear-gradient(45deg, #FFD700, #FFA500);
            color: #000;
            font-size: 0.7rem;
            font-weight: 800;
            padding: 0.3rem 1.5rem;
            transform: rotate(45deg);
            border-radius: 4px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
            z-index: 10;
        }

        @media (max-width: 768px) {
            .plan-card {
                min-width: 260px;
                max-width: 260px;
            }
        }

        /* Benefits Section */
        .benefit-card {
            min-width: 280px;
            max-width: 280px;
            padding: 2.5rem;
            text-align: center;
            position: relative;
        }

        .benefit-icon {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            display: block;
            filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
        }

        .benefit-card h4 {
            color: #FFD700;
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 1;
        }

        .benefit-reward {
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 1;
        }

        .reward-main {
            display: block;
            font-size: 2.2rem;
            font-weight: 900;
            color: #ffffff;
            text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
        }

        .reward-period {
            display: block;
            font-size: 1rem;
            color: #E0E0E0;
            margin-top: 0.5rem;
        }

        .benefit-description {
            color: #E0E0E0;
            font-size: 1rem;
            position: relative;
            z-index: 1;
        }

        .vip-badge {
            position: absolute;
            top: -10px;
            right: 15px;
            background: linear-gradient(45deg, #FFD700, #FFA500);
            color: #000;
            padding: 0.4rem 0.8rem;
            border-radius: 12px;
            font-size: 0.7rem;
            font-weight: 700;
            box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
            z-index: 2;
        }

        /* Comments Section */
        .comments {
            background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
            overflow: hidden;
            position: relative;
        }

        .comment-card {
            min-width: 380px;
            max-width: 380px;
            padding: 2.5rem;
            border-left: 4px solid #FFD700;
        }

        .stars {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            text-align: center;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
        }

        .comment-text {
            font-style: italic;
            margin-bottom: 1.5rem;
            color: #E0E0E0;
            line-height: 1.6;
            font-size: 1rem;
            position: relative;
            z-index: 1;
        }

        .comment-author {
            color: #FFD700;
            font-weight: 600;
            text-align: right;
            font-size: 0.95rem;
            position: relative;
            z-index: 1;
        }

        /* FAQ Section */
        .faq {
            background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
            position: relative;
        }

        .faq-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .faq-item {
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
            border-radius: 20px;
            margin-bottom: 2rem;
            border: 1px solid rgba(255, 215, 0, 0.2);
            overflow: hidden;
            transition: all 0.4s ease;
            backdrop-filter: blur(15px);
        }

        .faq-item:hover {
            border-color: rgba(255, 215, 0, 0.4);
            box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
        }

        .faq-question {
            padding: 2rem 2.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(255, 215, 0, 0.02));
            transition: all 0.4s ease;
            font-weight: 600;
            font-size: 1.2rem;
            color: #ffffff;
        }

        .faq-question:hover {
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.05));
        }

        .faq-question.active {
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 215, 0, 0.08));
            color: #FFD700;
        }

        .faq-icon {
            font-size: 2rem;
            font-weight: bold;
            color: #FFD700;
            transition: transform 0.4s ease;
        }

        .faq-question.active .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            padding: 0 2.5rem;
            max-height: 0;
            overflow: hidden;
            transition: all 0.5s ease;
            background: rgba(255, 255, 255, 0.02);
        }

        .faq-answer.active {
            padding: 2rem 2.5rem;
            max-height: 400px;
        }

        .faq-answer p {
            color: #E0E0E0;
            line-height: 1.7;
            margin-bottom: 1.2rem;
            font-size: 1.1rem;
        }

        .faq-answer p:last-child {
            margin-bottom: 0;
        }

        .faq-answer strong {
            color: #FFD700;
        }

        /* Test Section */
        .test-section {
            background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B6B);
            color: #000000;
            position: relative;
            overflow: hidden;
        }

        .test-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(0, 0, 0, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .test-section .section-title {
            color: #000000;
            text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            background: none;
            -webkit-text-fill-color: #000000;
        }

        .test-section .section-content {
            color: #333333;
            font-weight: 600;
            position: relative;
            z-index: 1;
        }

        /* Contact Section */
        .contact {
            background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
            position: relative;
        }

        .contact-container {
            display: flex;
            justify-content: center;
            margin-top: 3rem;
        }

        .contact-info {
            text-align: center;
            max-width: 600px;
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
            padding: 3rem;
            border-radius: 25px;
            border: 1px solid rgba(255, 215, 0, 0.3);
            backdrop-filter: blur(20px);
        }

        .contact-info h3 {
            color: #FFD700;
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .contact-info p {
            color: #E0E0E0;
            line-height: 1.6;
            margin-bottom: 2.5rem;
            font-size: 1.1rem;
        }

        .whatsapp-button {
            background: linear-gradient(45deg, #25D366, #128C7E) !important;
            color: #ffffff !important;
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4) !important;
            font-size: 1.2rem;
            padding: 1.2rem 3rem;
        }

        .whatsapp-button:hover {
            background: linear-gradient(45deg, #128C7E, #075E54) !important;
            box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6) !important;
        }

        /* Footer */
        .footer {
            background: linear-gradient(135deg, #1E3A8A 0%, #0F1B3C 50%, #1E40AF 100%);
            padding: 4rem 2rem 3rem;
            text-align: center;
            border-top: 2px solid rgba(255, 215, 0, 0.4);
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 30% 20%, rgba(255, 215, 0, 0.15) 0%, transparent 40%),
                radial-gradient(circle at 70% 80%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 60%);
            pointer-events: none;
            animation: footerGlow 6s ease-in-out infinite alternate;
        }

        @keyframes footerGlow {
            0% { opacity: 0.7; transform: scale(1); }
            100% { opacity: 1; transform: scale(1.02); }
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .footer-text {
            color: #E0E0E0;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            font-weight: 500;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .footer-dev {
            color: #FFD700;
            font-weight: 700;
            margin-bottom: 2.5rem;
            font-size: 1.2rem;
            text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
            filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
        }

        .social-links {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .social-text-container {
            position: relative;
            display: inline-block;
        }

        .social-text {
            color: #ffffff;
            text-decoration: none;
            font-size: 1.3rem;
            font-weight: 600;
            transition: all 0.4s ease;
            padding: 1.2rem 2rem;
            border-radius: 20px;
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
            border: 2px solid rgba(255, 215, 0, 0.3);
            backdrop-filter: blur(15px);
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
            display: inline-block;
            cursor: pointer;
        }

        .social-text::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
            transition: left 0.6s;
        }

        .social-text-container:hover .social-text::before {
            left: 100%;
        }

        .social-text-container:hover .social-text {
            color: #FFD700;
            background: linear-gradient(145deg, rgba(255, 215, 0, 0.2), rgba(255, 215, 0, 0.1));
            border-color: rgba(255, 215, 0, 0.6);
            text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
        }

        .invisible-link {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            z-index: 10;
            cursor: pointer;
        }

        .social-separator {
            color: rgba(255, 215, 0, 0.6);
            font-size: 1.5rem;
            font-weight: bold;
            margin: 0 0.5rem;
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
        }
        /* --- LIBERAR ARRASTE NO CELULAR PARA OS CARROSSEIS --- */
        @media (max-width: 900px) {
        .channels-carousel,
        .platforms-grid,
        .compatibility-grid,
        .benefits-carousel,
        .plans-carousel,
        .comments-carousel {
            overflow-x: auto;
            scrollbar-width: none;      /* Firefox */
        }
        .channels-carousel::-webkit-scrollbar,
        .platforms-grid::-webkit-scrollbar,
        .compatibility-grid::-webkit-scrollbar,
        .benefits-carousel::-webkit-scrollbar,
        .plans-carousel::-webkit-scrollbar,
        .comments-carousel::-webkit-scrollbar {
            display: none;              /* Chrome/Safari */
        }
        }

        /* quando estiver arrastando, muda cursor e desliga smooth */
        .is-dragging {
        cursor: grabbing;
        scroll-behavior: auto !important;
        }

        /* Mobile Responsiveness - ULTRA OTIMIZADO PARA TODOS OS 10 ÍCONES */
        @media (max-width: 1600px) {
            .nav-menu {
                gap: 0.2rem;
                max-width: calc(100vw - 400px);
                padding: 0 0.5rem;
            }
            
            .nav-item {
                padding: 0.5rem 0.6rem;
                min-width: 70px;
                font-size: 0.75rem;
            }
            
            .nav-item .emoji {
                font-size: 1rem;
                margin-bottom: 0.15rem;
            }
            
            .nav-item .text {
                font-size: 0.65rem;
            }
        }

        @media (max-width: 1400px) {
            .nav-menu {
                gap: 0.15rem;
                max-width: calc(100vw - 360px);
                padding: 0 0.4rem;
            }
            
            .nav-item {
                padding: 0.45rem 0.55rem;
                min-width: 65px;
            }
            
            .nav-item .emoji {
                font-size: 0.95rem;
                margin-bottom: 0.1rem;
            }
            
            .nav-item .text {
                font-size: 0.6rem;
            }
        }

        @media (max-width: 1200px) {
            .nav-menu {
                gap: 0.1rem;
                max-width: calc(100vw - 320px);
                padding: 0 0.3rem;
            }
            
            .nav-item {
                padding: 0.4rem 0.5rem;
                min-width: 60px;
            }
            
            .nav-item .emoji {
                font-size: 0.9rem;
                margin-bottom: 0.1rem;
            }
            
            .nav-item .text {
                font-size: 0.55rem;
            }
        }

        @media (max-width: 1100px) {
            .nav-menu {
                gap: 0.08rem;
                max-width: calc(100vw - 300px);
                padding: 0 0.25rem;
            }
            
            .nav-item {
                padding: 0.35rem 0.45rem;
                min-width: 55px;
            }
            
            .nav-item .emoji {
                font-size: 0.85rem;
                margin-bottom: 0.08rem;
            }
            
            .nav-item .text {
                font-size: 0.5rem;
            }
        }

        @media (max-width: 1000px) {
            .nav-menu {
                gap: 0.05rem;
                max-width: calc(100vw - 280px);
                padding: 0 0.2rem;
            }
            
            .nav-item {
                padding: 0.3rem 0.4rem;
                min-width: 50px;
            }
            
            .nav-item .emoji {
                font-size: 0.8rem;
                margin-bottom: 0.05rem;
            }
            
            .nav-item .text {
                font-size: 0.45rem;
            }
        }

        @media (max-width: 950px) {
            .nav-menu {
                gap: 0.03rem;
                max-width: calc(100vw - 260px);
                padding: 0 0.15rem;
            }
            
            .nav-item {
                padding: 0.25rem 0.35rem;
                min-width: 48px;
            }
            
            .nav-item .emoji {
                font-size: 0.75rem;
                margin-bottom: 0.03rem;
            }
            
            .nav-item .text {
                font-size: 0.42rem;
            }
        }

        @media (max-width: 900px) {
            .nav-menu {
                gap: 0.02rem;
                max-width: calc(100vw - 240px);
                padding: 0 0.1rem;
            }
            
            .nav-item {
                padding: 0.2rem 0.3rem;
                min-width: 45px;
            }
            
            .nav-item .emoji {
                font-size: 0.7rem;
                margin-bottom: 0.02rem;
            }
            
            .nav-item .text {
                font-size: 0.4rem;
            }
        }

        @media (max-width: 850px) {
            .nav-menu {
                gap: 0.01rem;
                max-width: calc(100vw - 220px);
                padding: 0 0.05rem;
            }
            
            .nav-item {
                padding: 0.18rem 0.25rem;
                min-width: 42px;
            }
            
            .nav-item .emoji {
                font-size: 0.65rem;
                margin-bottom: 0.01rem;
            }
            
            .nav-item .text {
                font-size: 0.38rem;
            }
        }

        @media (max-width: 800px) {
            .nav-menu {
                gap: 0;
                max-width: calc(100vw - 200px);
                padding: 0;
            }
            
            .nav-item {
                padding: 0.15rem 0.2rem;
                min-width: 40px;
            }
            
            .nav-item .emoji {
                font-size: 0.6rem;
                margin-bottom: 0;
            }
            
            .nav-item .text {
                font-size: 0.35rem;
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: linear-gradient(135deg, rgba(10, 10, 10, 0.98), rgba(26, 26, 46, 0.98));
                backdrop-filter: blur(30px);
                flex-direction: column;
                gap: 0;
                padding: 2rem 0;
                border-top: 1px solid rgba(255, 215, 0, 0.3);
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: all 0.4s ease;
                max-width: none;
                overflow: visible;
                z-index: 1000;
                box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            }
            
            .nav-menu.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }
            
            .nav-item {
                padding: 1.5rem 2rem;
                width: 100%;
                text-align: center;
                border-radius: 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
                flex-direction: row;
                gap: 1rem;
                justify-content: center;
                font-size: 1rem;
                min-width: auto;
            }
            
            .nav-item .emoji {
                font-size: 1.5rem;
                margin-bottom: 0;
            }
            
            .nav-item .text {
                font-size: 1rem;
                font-weight: 600;
            }
            
            .nav-item:last-child {
                border-bottom: none;
            }
            
            .hero-title {
                font-size: 3rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }
            
            .section {
                padding: 5rem 1rem;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .nav-container {
                padding: 0 1rem;
            }
        }

        /* Mobile menu toggle */
        .mobile-menu-toggle {
            display: none;
            background: linear-gradient(45deg, rgba(255, 215, 0, 0.2), rgba(59, 130, 246, 0.2));
            border: 1px solid rgba(255, 215, 0, 0.3);
            color: #ffffff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.8rem;
            border-radius: 12px;
            transition: all 0.4s ease;
            backdrop-filter: blur(10px);
        }

        .mobile-menu-toggle:hover {
            background: linear-gradient(45deg, rgba(255, 215, 0, 0.3), rgba(59, 130, 246, 0.3));
            color: #FFD700;
            transform: scale(1.05);
        }

        @media (max-width: 768px) {
            .mobile-menu-toggle {
                display: block;
            }
        }

        /* Enhanced Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            animation: fadeInUp 1s ease-out;
        }

        /* Performance optimizations */
        * {
            will-change: auto;
        }

        .nav-item, .cta-button, .plan-button, .channel-icon-item, .platform-item, .device-category, .benefit-card, .plan-card, .comment-card {
            will-change: transform;
        }
    

        @view-transition { navigation: auto; }


        /* habilita rolagem horizontal nos carrosséis no desktop */
        .channels-carousel,
        .platforms-grid,
        .benefits-carousel,
        .plans-carousel,
        .comments-carousel {
        overflow-x: auto !important;
        scrollbar-width: none;
        cursor: grab;
        }
        .channels-carousel::-webkit-scrollbar,
        .platforms-grid::-webkit-scrollbar,
        .benefits-carousel::-webkit-scrollbar,
        .plans-carousel::-webkit-scrollbar,
        .comments-carousel::-webkit-scrollbar {
        display: none;
        }
        .is-dragging {
        cursor: grabbing;
        scroll-behavior: auto !important;
        }
        
        .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        }

        .faq-answer.open {
        max-height: 500px; /* Ajuste se necessário */
        }

        /* ===== Overrides só do Catálogo (#content) ===== */
        #content.section,
        #content.content-section {
        background: #0A1E3A;            /* azul TVON */
        color: #fff;
        padding: 48px 16px;
        }

        #content .section-title {
        color: #fff;
        margin-bottom: 10px;
        text-shadow: 0 1px 12px rgba(0,0,0,.25);
        }

        #content .content-categories {
        display: flex;
        flex-direction: column;
        gap: 24px;
        }

        /* Card/box de cada bloco ("Plataformas", "Canais") */
        #content .content-category {
        background: rgba(255,255,255,0.02);
        border: 1px solid rgba(255,255,255,0.06);
        border-radius: 20px;
        padding: 18px;
        }

        /* Cabeçalho do bloco */
        #content .category-header {
        display: flex;
        align-items: center;
        gap: 12px;
        margin: 6px 0 8px;
        }
        #content .category-icon {
        width: 36px; height: 36px; border-radius: 50%;
        background: rgba(255,255,255,0.08);
        display: flex; align-items: center; justify-content: center;
        font-size: 18px;
        }
        #content .category-description {
        color: #E0E0E0;
        margin-bottom: 12px;
        }

        /* Trilhas (mantém carrossel/arraste do seu JS) */
        #content .platforms-grid,
        #content .channels-carousel {
        overflow-x: auto;
        padding-bottom: 6px;
        }
        #content .platforms-track,
        #content .channels-track {
        display: flex;
        gap: 16px;
        align-items: stretch;
        }

        /* Cards de logo (plataformas e canais) */
        #content .platform-item,
        #content .channel-icon-item {
        flex: 0 0 auto;
        width: 160px;
        padding: 14px;
        border-radius: 16px;
        background: rgba(255,255,255,0.06);
        border: 1px solid rgba(255,255,255,0.08);
        box-shadow: 0 8px 20px rgba(0,0,0,0.25);
        display: flex; flex-direction: column;
        align-items: center; justify-content: center;
        gap: 8px;
        transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
        }
        #content .platform-item:hover,
        #content .channel-icon-item:hover {
        transform: translateY(-3px);
        border-color: rgba(238,193,4,.45); /* amarelo TVON #EEC104 */
        box-shadow: 0 12px 28px rgba(0,0,0,0.35);
        }

        /* Imagens e nomes */
        #content .platform-item img,
        #content .channel-icon-item img {
        width: 72px; height: 72px;
        object-fit: contain; display: block;
        filter: drop-shadow(0 2px 8px rgba(0,0,0,.25));
        }
        #content .platform-item .platform-name,
        #content .channel-icon-item span {
        font-size: .95rem;
        color: #fff;
        text-align: center;
        opacity: .95;
        }

        /* Responsivo */
        @media (max-width: 768px) {
        #content .platform-item,
        #content .channel-icon-item { width: 132px; }
        #content .platform-item img,
        #content .channel-icon-item img { width: 64px; height: 64px; }
        }
       
        /* ===== Quem Somos (#about) — azul e moderno ===== */
        #about.section,
        #about.blue-section {
        /* Azul TVON com suave brilho */
        background: linear-gradient(135deg, #0A1E3A 0%, #102652 45%, #1E3A8A 100%);
        color: #fff;
        position: relative;
        overflow: hidden;
        padding: 56px 18px; /* um pouco mais de respiro */
        }

        #about.section::before {
        content: "";
        position: absolute; inset: 0;
        background:
            radial-gradient(600px 200px at 15% 20%, rgba(238,193,4,.12) 0%, rgba(238,193,4,0) 60%),
            radial-gradient(500px 220px at 85% 80%, rgba(59,130,246,.12) 0%, rgba(59,130,246,0) 60%);
        pointer-events: none;
        animation: aboutGlow 8s ease-in-out infinite alternate;
        }
        @keyframes aboutGlow { 0% {opacity:.7; transform:scale(1);} 100% {opacity:1; transform:scale(1.02);} }

        /* Título */
        #about .section-title {
        color: #fff;
        background: none;              /* remove gradiente dourado global */
        -webkit-text-fill-color: #fff; /* garante branco */
        text-shadow: 0 8px 28px rgba(0,0,0,.35);
        margin-bottom: 24px;
        }
        #about .section-title::after {
        width: 120px; height: 4px;
        background: linear-gradient(90deg, #FFD700, #FFA500);
        }

        /* Layout dos blocos (Missão, Filosofia, Números, Diferenciais) */
        #about {
        display: grid;
        grid-template-columns: 1fr;
        gap: 22px;
        }
        #about .section-content { grid-column: 1 / -1; }       /* se existir */
        #about .section-title   { grid-column: 1 / -1; }       /* título ocupa toda a largura */

        @media (min-width: 900px) {
        #about { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; }
        }

        /* Cartões */
        #about .content-category {
        background: rgba(255,255,255,0.04);
        border: 1px solid rgba(255,255,255,0.10);
        border-radius: 20px;
        padding: 18px 18px 16px;
        backdrop-filter: blur(10px);
        transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
        }
        #about .content-category:hover {
        transform: translateY(-3px);
        border-color: rgba(238,193,4,.45);
        box-shadow: 0 18px 36px rgba(0,0,0,.35);
        }

        /* Cabeçalho de cada bloco */
        #about .category-header {
        display: flex; align-items: center; gap: 12px;
        margin: 4px 0 10px;
        }
        #about .category-icon {
        width: 40px; height: 40px; border-radius: 12px;
        background: rgba(255,255,255,0.08);
        display: grid; place-items: center;
        font-size: 18px;
        border: 1px solid rgba(255,255,255,0.12);
        }
        #about .category-header h3 {
        margin: 0;
        color: #FFD700;
        font-weight: 800;
        letter-spacing: .2px;
        text-shadow: 0 2px 10px rgba(0,0,0,.35);
        font-size: clamp(1.15rem, 1.05rem + 0.5vw, 1.45rem);
        }

        /* Texto */
        #about .category-description {
        color: #E5E7EB;
        line-height: 1.65;
        font-size: 1.02rem;
        }
        #about .category-description strong {
        color: #fff;
        }

        /* Responsivo fino */
        @media (max-width: 768px) {
        #about { gap: 18px; }
        #about .content-category { padding: 16px; }
        #about .category-icon { width: 36px; height: 36px; }
        #about .tvon-highlight { color: #EEC104 !important; }         /* amarelo TVON */
        #about .tvon-highlight strong { color: inherit !important; }  /* mantém o amarelo no <strong> */

        }
  
        /* Azul-marinho só para a seção Compatibilidade Universal */
        #app.blue-section {
        background: #132A5F !important;  /* navy chapado */
        /* se preferir leve profundidade, troque pela linha abaixo e remova a de cima:
        background: linear-gradient(135deg, #132A5F 0%, #0F244E 100%) !important;
        */
        }

        /* (opcional) Se o brilho da camada ::before ficar forte nesse navy, suavize: */
        #app.blue-section::before { opacity: .75; }

        /* ===== Divisor reto preto entre Planos → FAQ ===== */
        #faq.section.faq {
        position: relative;
        overflow: visible;  
        }
        /* Alinhar os botões dos planos na mesma altura do Família/VIP */
        @media (min-width: 768px) {
        /* dá o mesmo “espaço” que os cards com 5 itens possuem */
        #plans .plan-features { 
            min-height: 220px;   /* se ainda ficar 1–2px diferente, ajuste para 230px */
        }
        }

        /* 🔆 Glow + brilho para os botões do rodapé */
        .footer .social-text{
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: .7rem 1.2rem;
        border-radius: 14px;
        border: 1px solid rgba(255,215,0,.45); /* amarelo TVON suave */
        background: rgba(255,255,255,.06);
        text-decoration: none;
        transition:
            box-shadow .3s ease,
            background .3s ease,
            border-color .3s ease,
            color .15s ease,
            transform .15s ease;
        box-shadow:
            0 0 0 rgba(255,215,0,0),            /* glow externo */
            inset 0 0 0 rgba(255,215,0,0);      /* glow interno */
        }

        /* hover com glow */
        .footer .social-text:hover{
        transform: translateY(-1px);
        border-color: rgba(255,215,0,.9);
        background: rgba(255,215,0,.09);
        box-shadow:
            0 0 18px rgba(255,215,0,.35),
            inset 0 0 44px rgba(255,215,0,.12);
        }

        /* acessibilidade no teclado */
        .footer .social-text:focus-visible{
        outline: 2px solid #FFD700;
        outline-offset: 2px;
        border-color: #FFD700;
        }

        /* ✨ “faixa de brilho” que varre o botão */
        .footer .social-text::after{
        content: "";
        position: absolute;
        top: 0;
        left: -40%;
        width: 30%;
        height: 100%;
        background: linear-gradient(
            120deg,
            transparent 0%,
            rgba(255,255,255,.65) 50%,
            transparent 100%
        );
        transform: skewX(-20deg);
        opacity: 0;
        pointer-events: none;
        }

        /* brilho ao passar o mouse (1 varredura) */
        .footer .social-text:hover::after{
        animation: btn-sweep 1.2s linear 1;
        opacity: 1;
        }

        /* brilho contínuo: ative com a classe .shine-always */
        .footer .social-text.shine-always::after{
        animation: btn-sweep 2.4s linear infinite;
        opacity: 1;
        }

        @keyframes btn-sweep{
        0%   { left: -40%; opacity: 0; }
        10%  { opacity: 1; }
        100% { left: 140%; opacity: 0; }
        }

        /* respeita usuários que preferem menos movimento */
        @media (prefers-reduced-motion: reduce){
        .footer .social-text{ transition: none; }
        .footer .social-text::after{ animation: none !important; }
        }

        /* Inércia e gesto horizontal suave em TODOS os carrosséis */
        .channels-carousel,
        .platforms-grid,
        .compatibility-grid,
        .benefits-carousel,
        .plans-carousel,
        .comments-carousel {
        -webkit-overflow-scrolling: touch; /* inércia no iOS */
        overscroll-behavior-x: contain;    /* não puxa a página junto */
        touch-action: pan-x;               /* deixa claro: gesto é na horizontal */
        }

                
        /* 1) Deixa o menu encolher dentro do flex (ESSENCIAL) */
        .nav-menu { min-width: 0; }

        /* 2) Em telas médias, evita estouro do cálculo de largura do menu */
        @media (max-width: 1200px) {
        .nav-menu { max-width: calc(100vw - 240px); } /* era -350px */
        }

        /* 3) Mobile: ativa o hambúrguer e transforma o menu em drop-down */
        @media (max-width: 860px) {
        /* mostra o botão hambúrguer */
        .mobile-menu-toggle {
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        /* dá um respiro nas laterais */
        .nav-container { padding: 0 1rem; }

        /* menu vira painel suspenso */
        .nav-menu {
            position: absolute;
            top: 100%;
            left: 0; right: 0;
            background: rgba(10,10,10,0.98);
            transform: translateY(-100%);
            opacity: 0; visibility: hidden;
            display: flex;
            flex-direction: column;
            gap: 0;
            max-width: none;      /* ignora o limite do desktop */
            overflow: visible;
            border-bottom-left-radius: 12px;
            border-bottom-right-radius: 12px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            z-index: 1000;
        }
        .nav-menu.active {
            transform: translateY(0);
            opacity: 1; visibility: visible;
        }

        /* itens em coluna, ocupando 100% */
        .nav-item {
            width: 100%;
            padding: 1rem 1.25rem;
            text-align: left;
            border-radius: 0;
            border-bottom: 1px solid rgba(255,255,255,0.08);
            flex-direction: row;
            gap: .75rem;
        }
        .nav-item .emoji { margin: 0 .4rem 0 0; }

        /* esconde o CTA do WhatsApp no header para sobrar espaço */
        .nav-container .cta-button { display: none; }
        }

        /* 4) Microtelas: compacta mais um pouco */
        @media (max-width: 380px) {
        .logo { font-size: 1.6rem; }
        .nav-item .text { font-size: .95rem; }
        }

