 :root {
            --primary-green: #00C853;
            --primary-green-dark: #00A844;
            --primary-green-light: #69F0AE;
            --secondary-blue: #2979FF;
            --secondary-blue-light: #448AFF;
            --accent-pink: #E91E63;
            --accent-pink-light: #F8BBD0;
            --neutral-dark: #212121;
            --neutral-medium: #616161;
            --neutral-light: #F5F6F5;
            --white: #FFFFFF;
            --header-dark: #1A1A1A;
            --glass-bg: rgba(255, 255, 255, 0.1);
            --glass-border: rgba(255, 255, 255, 0.2);
            --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
            --radius: 12px;
            --radius-lg: 16px;
            --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            /* Variáveis de Background Hero (ATUALIZADAS) */
            --hero-bg-desktop: url('https://www.niointernet.com.br/data/files/2C/E0/34/3D/5F5D691098FF3D69191849A8/banner-desktop.webp');
            --hero-bg-mobile: url('https://cdn.prod.website-files.com/66b20efa354b4fcd31ed9581/68a8ba844cafce3c169617c0_GRAFISMOS_v2-5%20copiar.png');
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', system-ui, -apple-system, sans-serif;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 80px;
            overflow-x: hidden; 
        }

        body {
            background-color: var(--white);
            color: var(--neutral-dark);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            
            /* Ajuste profissional: Removido scale(0.8) para evitar distorções; usar media queries para responsividade */
            width: 100%;
            
            /* Scrollbar: Manter escondida para design limpo, mas acessível */
            -ms-overflow-style: none;
            scrollbar-width: none;
        }

        /* Scrollbar escondida apenas quando necessário */
        ::-webkit-scrollbar {
            width: 0;
            height: 0;
            display: none;
        }

        .container {
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 20px;
        }

        section {
            padding: 80px 0;
        }

        .scroll-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            border: 1px solid var(--glass-border);
            color: var(--primary-green);
            border-radius: var(--radius);
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 20px;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 1000;
            box-shadow: var(--glass-shadow);
        }

        .scroll-to-top.show {
            opacity: 1;
            visibility: visible;
        }

        .scroll-to-top:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

        .ribbon {
            background: linear-gradient(90deg, var(--primary-green), var(--primary-green-dark));
            color: var(--white);
            text-align: center;
            padding: 12px 16px;
            font-weight: 600;
            letter-spacing: 0.2px;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 80;
            display: flex;
            justify-content: center;
            gap: 12px;
            align-items: center;
            font-size: 14px;
            box-shadow: var(--glass-shadow);
            animation: slideInDown 1s ease forwards;
        }

        @keyframes slideInDown {
            from { transform: translateY(-100%); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        header {
            position: sticky;
            top: 0;
            background: rgba(26, 26, 26, 0.95);
            backdrop-filter: blur(15px);
            z-index: 90;
            box-shadow: var(--glass-shadow);
            transition: var(--transition);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .logo img {
            height: 44px;
            transition: var(--transition);
        }

        .logo:hover img {
            transform: scale(1.05);
        }

        .logo-text {
            font-weight: 700;
            color: var(--white);
            font-size: 22px;
            letter-spacing: -0.5px;
        }

        .logo-text span {
            color: var(--primary-green);
        }

        .logo-subtext {
            font-size: 12px;
            color: var(--neutral-medium);
            font-weight: 500;
        }

        .nav-buttons {
            display: flex;
            gap: 12px;
            align-items: center;
        }

        .menu-btn, .help-btn {
            padding: 10px 20px;
            border-radius: var(--radius);
            border: 1px solid var(--glass-border);
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            color: var(--white);
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .menu-btn:hover, .help-btn:hover {
            background: var(--primary-green);
            color: var(--white);
            transform: translateY(-2px);
            box-shadow: var(--glass-shadow);
        }

        .desktop-menu {
            display: flex;
        }

        .desktop-help {
            display: flex;
        }

        .mobile-menu {
            display: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--white);
            transition: var(--transition);
        }

        .mobile-menu:hover {
            color: var(--primary-green);
        }

        .mobile-nav {
            position: fixed;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100vh;
            background: var(--white);
            z-index: 1000;
            transition: left 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            overflow-y: auto;
            padding: 80px 20px 30px;
        }

        .mobile-nav.active {
            left: 0;
        }

        .mobile-nav-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }

        .mobile-nav-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .mobile-nav-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            border-bottom: 1px solid var(--glass-border);
            margin-bottom: 20px;
        }

        .mobile-nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .mobile-nav-logo img {
            height: 36px;
        }

        .mobile-nav-logo-text {
            font-weight: 700;
            color: var(--neutral-dark);
            font-size: 18px;
        }

        .mobile-nav-close {
            font-size: 24px;
            color: var(--neutral-medium);
            cursor: pointer;
            transition: var(--transition);
        }

        .mobile-nav-close:hover {
            color: var(--primary-green);
        }

        .mobile-nav-menu {
            list-style: none;
            margin-bottom: 30px;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
        }

        .mobile-nav-menu li {
            margin-bottom: 10px;
        }

        .mobile-nav-menu li a {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 8px;
            padding: 15px 10px;
            border-radius: var(--radius);
            background: var(--neutral-light);
            color: var(--neutral-dark);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            height: 100%;
        }

        .mobile-nav-menu li a:hover {
            background: var(--primary-green-light);
            color: var(--neutral-dark);
            box-shadow: var(--shadow);
            transform: translateY(-3px);
        }

        .mobile-nav-menu li a i {
            width: 24px;
            height: 24px;
            text-align: center;
            font-size: 20px;
            color: var(--primary-green);
            margin-bottom: 5px;
        }

        .mobile-nav-menu li a span {
            font-size: 12px;
            line-height: 1.2;
        }

        .mobile-nav-cta {
            display: flex;
            flex-direction: column;
            gap: 12px;
            padding-top: 20px;
            border-top: 1px solid var(--glass-border);
        }

        /* Fundo Hero - Desktop Padrão */
        .hero {
            position: relative;
            overflow: hidden;
            min-height: 85vh;
            display: flex;
            align-items: center;
            padding: 100px 0 60px;
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), var(--hero-bg-desktop) center/cover no-repeat;
            background-size: cover;
            color: var(--white);
            border-bottom: 5px solid var(--primary-green-dark);
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 600px;
        }

        .kicker {
            display: inline-block;
            background: var(--accent-pink);
            color: var(--white);
            padding: 8px 16px;
            border-radius: 50px;
            font-weight: 600;
            margin-bottom: 20px;
            font-size: 14px;
            box-shadow: var(--glass-shadow);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        .hero-title {
            font-size: 48px;
            line-height: 1.1;
            color: var(--white);
            margin-bottom: 20px;
            font-weight: 700;
            animation: slideInLeft 1s ease;
        }

        .hero-subtitle {
            color: var(--white);
            font-size: 18px;
            max-width: 640px;
            margin-bottom: 30px;
            font-weight: 500;
            animation: slideInLeft 1s ease 0.2s;
            opacity: 0;
            animation-fill-mode: forwards;
        }

        .hero-badges {
            display: flex;
            gap: 15px;
            margin-bottom: 30px;
            flex-wrap: wrap;
            animation: slideInUp 1s ease 0.4s;
            opacity: 0;
            animation-fill-mode: forwards;
        }

        .badge {
            background: var(--glass-bg); 
            backdrop-filter: blur(10px);
            border-radius: var(--radius);
            padding: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: var(--glass-shadow);
            min-width: 200px;
            transition: var(--transition);
            flex: 1;
            color: var(--white);
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            text-align: left;
        }
        .badge i {
            color: var(--primary-green-light);
            font-size: 24px;
            margin-bottom: 10px;
        }

        .badge:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
            background: rgba(255, 255, 255, 0.25);
        }

        .badge strong {
            display: block;
            color: var(--white);
            font-size: 18px;
            margin-bottom: 5px;
        }

        .badge small {
            color: rgba(255, 255, 255, 0.8);
            display: block;
            font-size: 14px;
            line-height: 1.4;
        }

        .hero-cta {
            display: flex;
            gap: 15px;
            align-items: center;
            margin-bottom: 30px;
            flex-wrap: wrap;
            animation: slideInUp 1s ease 0.6s;
            opacity: 0;
            animation-fill-mode: forwards;
        }

        .btn-primary {
            background: var(--primary-green);
            color: var(--white);
            padding: 12px 24px;
            border-radius: var(--radius);
            font-weight: 600;
            border: none;
            text-decoration: none;
            box-shadow: var(--glass-shadow);
            transition: var(--transition);
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-primary:hover {
            background: var(--primary-green-dark);
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
        }

        .btn-outline {
            padding: 10px 20px;
            border-radius: var(--radius);
            border: 1px solid rgba(255, 255, 255, 0.3);
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            color: var(--white);
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-outline:hover {
            background: var(--primary-green);
            color: var(--white);
            transform: translateY(-2px);
            box-shadow: var(--glass-shadow);
        }

        .hero-visual {
            position: relative;
            z-index: 2;
            justify-self: end;
        }

        .animated-img {
            width: 100%;
            max-width: 500px;
            animation: float 6s ease-in-out infinite;
        }

        .animated-img img {
            width: 100%;
            height: auto;
            object-fit: contain;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(-1deg); }
            50% { transform: translateY(-15px) rotate(1deg); }
            100% { transform: translateY(0px) rotate(-1deg); }
        }

        @keyframes slideInLeft {
            from { opacity: 0; transform: translateX(-50px); }
            to { opacity: 1; transform: translateX(0); }
        }

        @keyframes slideInUp {
            from { opacity: 0; transform: translateY(50px); }
            to { opacity: 1; transform: translateY(0); }
        }

        #features {
            background: var(--white);
        }

        .section-title {
            font-size: 36px;
            color: var(--neutral-dark);
            margin-bottom: 20px;
            font-weight: 700;
            text-align: center;
            position: relative;
            padding-bottom: 15px;
            animation: slideInUp 1s ease;
            opacity: 0;
            animation-fill-mode: forwards;
        }

        .section-title::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: var(--primary-green);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .section-subtitle {
            text-align: center;
            color: var(--neutral-medium);
            max-width: 700px;
            margin: 0 auto 50px;
            font-size: 18px;
            animation: slideInUp 1s ease 0.2s;
            opacity: 0;
            animation-fill-mode: forwards;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .feature {
            background: var(--neutral-light); 
            backdrop-filter: blur(12px);
            border-radius: var(--radius);
            padding: 40px 30px;
            box-shadow: var(--glass-shadow);
            text-align: center;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(0, 0, 0, 0.05);
            animation: slideInUp 1s ease;
            opacity: 0;
            animation-fill-mode: forwards;
        }

        .feature:nth-child(1) { animation-delay: 0.2s; }
        .feature:nth-child(2) { animation-delay: 0.4s; }
        .feature:nth-child(3) { animation-delay: 0.6s; }
        .feature:nth-child(4) { animation-delay: 0.8s; }

        .feature::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--primary-green);
            transform: scaleX(0);
            transform-origin: left;
            transition: var(--transition);
        }

        .feature:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
            border-color: var(--primary-green-light);
        }

        .feature:hover::before {
            transform: scaleX(1);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 25px;
            background: var(--primary-green-light);
            backdrop-filter: blur(10px);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--neutral-dark);
            font-size: 32px;
            box-shadow: var(--glass-shadow);
            transition: var(--transition);
            border: 1px solid var(--glass-border);
        }

        .feature:hover .feature-icon {
            transform: scale(1.1) rotate(5deg);
            background: var(--primary-green);
            color: var(--white);
        }

        .feature h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--neutral-dark);
            font-weight: 600;
        }

        .feature p {
            color: var(--neutral-medium);
            font-size: 16px;
            line-height: 1.6;
        }

        #plans {
            background: var(--white);
        }

        .plans-carousel-container {
            position: relative;
            margin-top: 50px;
            overflow: hidden; 
        }

        .plans-grid {
            display: grid; 
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            width: 100%;
            overflow-x: hidden;
            padding-bottom: 10px; 
        }

        .plan-card {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--glass-shadow);
            transition: var(--transition);
            animation: slideInUp 1s ease;
            opacity: 0;
            animation-fill-mode: forwards;
            width: 100%;
        }

        .plan-card:nth-child(1) { animation-delay: 0.2s; }
        .plan-card:nth-child(2) { animation-delay: 0.4s; }
        .plan-card:nth-child(3) { animation-delay: 0.6s; }

        .plan-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

        .plan-card.featured {
            border: 2px solid var(--primary-green);
            transform: scale(1.05);
        }

        .plan-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }

        .badge-top {
            position: absolute;
            right: 20px;
            top: 20px;
            background: linear-gradient(90deg, var(--primary-green-light), var(--primary-green));
            color: var(--white);
            padding: 8px 16px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 12px;
            box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
            z-index: 10;
            animation: pulse 2s infinite;
        }

        .plan-visual-wrapper {
            position: relative;
            height: 400px;
            overflow: hidden;
        }

        .plan-visual {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease, filter 0.3s ease;
            filter: brightness(0.8) contrast(1.1);
        }

        .plan-card:hover .plan-visual {
            transform: scale(1.05);
            filter: brightness(1) contrast(1.2);
        }

        .plan-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
            display: flex;
            flex-direction: column;
            justify-content: flex-end; 
            padding: 30px;
            color: var(--white);
            transition: var(--transition);
        }

        .plan-overlay:hover {
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
        }

        .plan-name {
            font-weight: 700;
            font-size: 28px;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .plan-tag {
            font-weight: 600;
            font-size: 16px;
            color: var(--primary-green-light);
        }

        .plan-price {
            font-weight: 700;
            font-size: 36px;
            margin-bottom: 15px;
        }

        .plan-price small {
            display: block;
            font-weight: 500;
            font-size: 16px;
            margin-top: 5px;
        }

        .plan-list {
            margin: 20px 0;
            padding-left: 0;
            list-style: none;
        }

        .plan-list li {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
            font-size: 16px;
            color: rgba(255, 255, 255, 0.9);
        }

        .plan-list li i {
            color: var(--primary-green-light);
            font-size: 18px;
        }

        .plan-cta {
            display: flex;
            gap: 12px;
            justify-content: center;
        }

        .carousel-btn {
            display: none; 
        }

        .streaming-promo {
            background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
            color: var(--white);
            text-align: center;
            border-radius: var(--radius-lg);
            padding: 80px 40px;
            margin-top: 80px;
            position: relative;
            overflow: hidden;
        }

        .streaming-promo::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
            opacity: 0.1;
            z-index: 1;
        }

        .streaming-promo > * {
            position: relative;
            z-index: 2;
        }

        .streaming-promo h2 {
            font-size: 42px;
            margin-bottom: 20px;
            font-weight: 700;
            animation: slideInUp 1s ease;
            opacity: 0;
            animation-fill-mode: forwards;
        }

        .streaming-promo p {
            font-size: 20px;
            max-width: 800px;
            margin: 0 auto 40px;
            line-height: 1.6;
            animation: slideInUp 1s ease 0.2s;
            opacity: 0;
            animation-fill-mode: forwards;
        }

        .streaming-icons-large {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin: 50px 0;
            flex-wrap: wrap;
            animation: slideInUp 1s ease 0.4s;
            opacity: 0;
            animation-fill-mode: forwards;
        }

        .streaming-icon-large {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
            transition: var(--transition);
            opacity: 0;
            animation: slideInLeft 0.5s ease forwards;
        }

        .streaming-icon-large:nth-child(1) { animation-delay: 0.2s; }
        .streaming-icon-large:nth-child(2) { animation-delay: 0.4s; }
        .streaming-icon-large:nth-child(3) { animation-delay: 0.6s; }

        .streaming-icon-large:hover {
            transform: translateY(-10px);
        }

        .streaming-logo {
            width: 150px;
            height: auto;
            filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
            transition: var(--transition);
        }

        .streaming-icon-large:hover .streaming-logo {
            filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.4));
        }


        .series-carousel-container {
            position: relative;
            margin-top: 50px;
            overflow: hidden; 
        }

        .series-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            animation: slideInUp 1s ease 0.6s;
            opacity: 0;
            animation-fill-mode: forwards;
            overflow-x: hidden;
        }

        .series-card {
            border-radius: 12px;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.1); 
            box-shadow: var(--glass-shadow);
            transition: var(--transition);
            position: relative;
            height: 200px;
            opacity: 0;
            animation: fadeIn 1s ease forwards;
        }

        .series-card:nth-child(1) { animation-delay: 0.2s; }
        .series-card:nth-child(2) { animation-delay: 0.4s; }
        .series-card:nth-child(3) { animation-delay: 0.6s; }
        .series-card:nth-child(4) { animation-delay: 0.8s; }

        .series-card:hover {
            transform: scale(1.05);
        }

        .series-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease, filter 0.3s ease;
            filter: brightness(1.1) contrast(1.1);
        }

        .series-card:hover img {
            transform: scale(1.1);
            filter: brightness(1.2) contrast(1.2);
        }

        .series-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);
            opacity: 0;
            transition: var(--transition);
        }

        .series-card:hover::after {
            opacity: 1;
        }

        .comparison-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 10000;
            transition: opacity 0.3s ease;
        }

        .comparison-modal.show {
            display: flex;
            animation: fadeInModal 0.3s ease forwards;
        }

        .comparison-content {
            background: var(--white);
            padding: 40px;
            border-radius: var(--radius-lg);
            width: 90%;
            max-width: 1200px;
            max-height: 80vh;
            overflow-y: auto;
            position: relative;
            box-shadow: var(--glass-shadow);
            animation: scaleIn 0.3s ease;
        }

        @keyframes scaleIn {
            from { transform: scale(0.8); opacity: 0; }
            to { transform: scale(1); opacity: 1; }
        }

        .comparison-content h3 {
            font-size: 24px;
            margin-bottom: 20px;
            color: var(--primary-green);
            font-weight: 600;
        }

        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 20px;
        }

        .comparison-table th, .comparison-table td {
            padding: 12px;
            text-align: center;
            border-bottom: 1px solid var(--glass-border);
        }

        .comparison-table th {
            background: var(--primary-green-light);
            color: var(--neutral-dark);
            font-weight: 600;
        }

        .comparison-table td:first-child {
            font-weight: 600;
            text-align: left;
        }

        .comparison-table .nio-column {
            background: rgba(76, 175, 80, 0.1);
        }

        .comparison-table .highlight {
            color: var(--primary-green);
            font-weight: 600;
        }

        #debt {
            background: var(--white);
        }

        .debt-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            margin-top: 50px;
        }

        .debt-text {
            padding-right: 20px;
        }

        .debt-text h2 {
            font-size: 36px;
            margin-bottom: 20px;
            color: var(--neutral-dark);
            font-weight: 700;
            animation: slideInLeft 1s ease;
            opacity: 0;
            animation-fill-mode: forwards;
        }

        .debt-text p {
            color: var(--neutral-medium);
            font-size: 18px;
            line-height: 1.6;
            margin-bottom: 30px;
            animation: slideInLeft 1s ease 0.2s;
            opacity: 0;
            animation-fill-mode: forwards;
        }

        .debt-visual {
            text-align: center;
        }

        .debt-visual img {
            max-width: 100%;
            height: auto;
            border-radius: var(--radius);
            box-shadow: var(--glass-shadow);
            transition: var(--transition);
            filter: brightness(1.1) contrast(1.1);
            animation: slideInRight 1s ease;
            opacity: 0;
            animation-fill-mode: forwards;
        }

        .debt-visual img:hover {
            transform: scale(1.03);
        }

        .debt-cta {
            display: flex;
            gap: 15px;
            align-items: center;
            margin-bottom: 30px;
            flex-wrap: wrap;
            animation: slideInUp 1s ease 0.6s;
            opacity: 0;
            animation-fill-mode: forwards;
        }

        .media-section {
            background: var(--white);
        }

        .media-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-top: 50px;
        }

        .responsive-embed {
            position: relative;
            padding-top: 56.25%;
            overflow: hidden;
            border-radius: var(--radius);
            border: 1px solid var(--glass-border);
            background: #000;
            transition: var(--transition);
            box-shadow: var(--glass-shadow);
            animation: slideInUp 1s ease;
            opacity: 0;
            animation-fill-mode: forwards;
        }

        .responsive-embed:nth-child(1) { animation-delay: 0.2s; }
        .responsive-embed:nth-child(2) { animation-delay: 0.4s; }

        .responsive-embed:hover {
            transform: scale(1.02);
        }

        .responsive-embed iframe {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }

        #about {
            background: var(--white);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            margin-top: 50px;
        }

        .about-text {
            padding-right: 20px;
        }

        .about-text p {
            margin-bottom: 25px;
            line-height: 1.7;
            color: var(--neutral-medium);
            font-size: 17px;
            animation: slideInLeft 1s ease;
            opacity: 0;
            animation-fill-mode: forwards;
        }

        .about-text p:nth-child(1) { animation-delay: 0.2s; }
        .about-text p:nth-child(2) { animation-delay: 0.4s; }
        .about-text p:nth-child(3) { animation-delay: 0.6s; }

        .about-images {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .about-images img {
            width: 100%;
            border-radius: 12px;
            box-shadow: var(--glass-shadow);
            transition: var(--transition);
            filter: brightness(1.1) contrast(1.1);
            animation: slideInRight 1s ease;
            opacity: 0;
            animation-fill-mode: forwards;
        }

        .about-images img:nth-child(1) { animation-delay: 0.2s; }
        .about-images img:nth-child(2) { animation-delay: 0.4s; }
        .about-images img:nth-child(3) { animation-delay: 0.6s; }

        .about-images img:hover {
            transform: scale(1.03);
        }

        .about-images img:first-child {
            grid-column: 1 / -1;
        }

        .ceo-section {
            background: var(--neutral-light);
            backdrop-filter: blur(10px);
            border-radius: var(--radius-lg);
            padding: 50px;
            margin-top: 60px;
            display: flex;
            align-items: center;
            gap: 40px;
            border: 1px solid rgba(0, 0, 0, 0.1);
            animation: slideInUp 1s ease;
            opacity: 0;
            animation-fill-mode: forwards;
        }

        .ceo-image {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid var(--primary-green);
            box-shadow: var(--glass-shadow);
            filter: brightness(1.1) contrast(1.1);
            transition: var(--transition);
            opacity: 0;
            animation: fadeIn 1s ease forwards;
        }

        .ceo-section:hover .ceo-image {
            transform: scale(1.05);
        }

        .ceo-quote {
            flex: 1;
            opacity: 0;
            animation: slideInRight 1s ease 0.3s forwards;
        }

        .ceo-quote blockquote {
            font-size: 24px;
            font-style: italic;
            margin-bottom: 20px;
            color: var(--neutral-dark);
            line-height: 1.6;
            position: relative;
            padding-left: 30px;
        }

        .ceo-quote blockquote::before {
            content: '"';
            position: absolute;
            left: 0;
            top: -10px;
            font-size: 60px;
            color: var(--primary-green);
            font-family: Georgia, serif;
            line-height: 1;
        }

        .ceo-quote cite {
            font-weight: 600;
            color: var(--primary-green);
            font-size: 18px;
        }

        #why {
            background: var(--white);
        }

        .reasons-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .reason {
            background: var(--neutral-light);
            backdrop-filter: blur(10px);
            border-radius: var(--radius);
            padding: 30px;
            border: 1px solid rgba(0, 0, 0, 0.05);
            box-shadow: var(--glass-shadow);
            display: flex;
            align-items: flex-start;
            gap: 20px;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            animation: slideInUp 1s ease;
            opacity: 0;
            animation-fill-mode: forwards;
        }

        .reason:nth-child(1) { animation-delay: 0.2s; }
        .reason:nth-child(2) { animation-delay: 0.4s; }
        .reason:nth-child(3) { animation-delay: 0.6s; }
        .reason:nth-child(4) { animation-delay: 0.8s; }
        .reason:nth-child(5) { animation-delay: 1.0s; }
        .reason:nth-child(6) { animation-delay: 1.2s; }

        .reason::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: var(--primary-green);
            transform: scaleY(0);
            transform-origin: top;
            transition: var(--transition);
        }

        .reason:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

        .reason:hover::before {
            transform: scaleY(1);
        }

        .reason-icon {
            width: 70px;
            height: 70px;
            background: var(--primary-green-light);
            backdrop-filter: blur(10px);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--neutral-dark);
            font-size: 28px;
            flex-shrink: 0;
            box-shadow: var(--glass-shadow);
            transition: var(--transition);
            border: 1px solid var(--glass-border);
        }

        .reason:hover .reason-icon {
            transform: scale(1.1) rotate(5deg);
            background: var(--primary-green);
            color: var(--white);
        }

        .reason-content {
            flex: 1;
        }

        .reason-content h3 {
            margin-bottom: 10px;
            color: var(--neutral-dark);
            font-size: 22px;
            font-weight: 600;
        }

        .reason-content p {
            color: var(--neutral-medium);
            font-size: 16px;
            line-height: 1.6;
        }

        #esim {
            background: var(--white);
        }

        .esim-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            margin-top: 50px;
        }

        .esim-text {
            padding-right: 20px;
        }

        .esim-text h2 {
            font-size: 36px;
            margin-bottom: 20px;
            color: var(--neutral-dark);
            font-weight: 700;
            animation: slideInLeft 1s ease;
            opacity: 0;
            animation-fill-mode: forwards;
        }

        .esim-text p {
            color: var(--neutral-medium);
            font-size: 18px;
            line-height: 1.6;
            margin-bottom: 30px;
            animation: slideInLeft 1s ease 0.2s;
            opacity: 0;
            animation-fill-mode: forwards;
        }

        .esim-visual {
            text-align: center;
        }

        .esim-visual img {
            max-width: 100%;
            height: auto;
            border-radius: var(--radius);
            box-shadow: var(--glass-shadow);
            transition: var(--transition);
            filter: brightness(1.1) contrast(1.1);
            animation: slideInRight 1s ease;
            opacity: 0;
            animation-fill-mode: forwards;
        }

        .esim-visual img:hover {
            transform: scale(1.03);
        }

        footer {
            background: var(--header-dark);
            color: var(--white);
            padding: 60px 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column {
            animation: slideInUp 1s ease;
            opacity: 0;
            animation-fill-mode: forwards;
        }

        .footer-column:nth-child(1) { animation-delay: 0.2s; }
        .footer-column:nth-child(2) { animation-delay: 0.4s; }
        .footer-column:nth-child(3) { animation-delay: 0.6s; }
        .footer-column:nth-child(4) { animation-delay: 0.8s; }

        .footer-logo img {
            height: 50px;
            margin-bottom: 20px;
        }

        .footer-column p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 20px;
            font-weight: 600;
            color: var(--white);
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 12px;
        }

        .footer-column ul li a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: var(--transition);
        }

        .footer-column ul li a:hover {
            color: var(--primary-green);
            transform: translateX(5px);
        }

        .footer-column ul li a i {
            color: var(--primary-green);
            font-size: 18px;
        }

        .social-icons {
            display: flex;
            gap: 15px;
        }

        .social-icons a {
            width: 40px;
            height: 40px;
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 18px;
            transition: var(--transition);
            border: 1px solid var(--glass-border);
        }

        .social-icons a:hover {
            background: var(--primary-green);
            transform: scale(1.1);
            box-shadow: var(--glass-shadow);
        }

        .newsletter-form {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }

        .newsletter-form input {
            padding: 12px;
            border-radius: var(--radius);
            border: 1px solid var(--glass-border);
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            color: var(--white);
            flex: 1;
            font-size: 16px;
        }

        .newsletter-form input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .newsletter-form button {
            padding: 12px 20px;
            border-radius: var(--radius);
            background: var(--primary-green);
            color: var(--white);
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }

        .newsletter-form button:hover {
            background: var(--primary-green-dark);
            transform: translateY(-2px);
            box-shadow: var(--shadow-hover);
        }

        .copyright {
            text-align: center;
            color: rgba(255, 255, 255, 0.5);
            font-size: 14px;
            padding-top: 20px;
            border-top: 1px solid var(--glass-border);
        }

        .modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 10000;
            transition: opacity 0.3s ease;
        }

        .modal.show {
            display: flex;
            animation: fadeInModal 0.3s ease forwards;
        }

        .comparison-modal.show {
            display: flex;
            animation: fadeInModal 0.3s ease forwards;
        }

        @keyframes fadeInModal {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes scaleIn {
            from { transform: scale(0.8); opacity: 0; }
            to { transform: scale(1); opacity: 1; }
        }

        .modal-content {
            background: var(--white);
            padding: 40px;
            border-radius: var(--radius-lg);
            max-width: 500px;
            width: 90%;
            position: relative;
            box-shadow: var(--glass-shadow);
            animation: scaleIn 0.3s ease;
        }

        .comparison-content {
            background: var(--white);
            padding: 40px;
            border-radius: var(--radius-lg);
            width: 90%;
            max-width: 1200px;
            max-height: 80vh;
            overflow-y: auto;
            position: relative;
            box-shadow: var(--glass-shadow);
            animation: scaleIn 0.3s ease;
        }

        .close-button {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 24px;
            cursor: pointer;
            color: var(--neutral-medium);
            transition: var(--transition);
        }

        .close-button:hover {
            color: var(--primary-green);
        }

        .cep-consult-box {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-bottom: 20px;
        }

        .cep-consult-box input {
            padding: 12px;
            border-radius: var(--radius);
            border: 1px solid var(--glass-border);
            background: var(--neutral-light);
            font-size: 16px;
            transition: var(--transition);
            color: var(--neutral-dark); 
        }

        .cep-consult-box input:focus {
            outline: none;
            border-color: var(--primary-green);
            box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2);
        }

        .cep-result {
            color: var(--neutral-medium);
            font-size: 14px;
            min-height: 20px;
        }

        .terms-content {
            color: var(--neutral-medium);
            font-size: 16px;
            line-height: 1.6;
        }

        .terms-content p {
            margin-bottom: 20px;
        }

        .terms-cta {
            display: flex;
            gap: 15px;
            justify-content: center;
        }

        .cookie-consent {
            position: fixed;
            bottom: 20px;
            left: 20px;
            right: 20px;
            background: var(--header-dark);
            backdrop-filter: blur(15px);
            border-radius: var(--radius);
            padding: 20px;
            box-shadow: var(--glass-shadow);
            border: 1px solid var(--primary-green);
            z-index: 10000;
            display: none;
            animation: slideInUp 0.5s ease;
        }

        .cookie-consent.show {
            display: block;
        }

        .cookie-content {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .cookie-text p {
            color: var(--white);
            font-size: 14px;
            line-height: 1.6;
        }

        .cookie-text a {
            color: var(--primary-green-light);
            text-decoration: underline;
        }

        .cookie-text a:hover {
            color: var(--primary-green);
        }

        .cookie-buttons {
            display: flex;
            gap: 15px;
            justify-content: center;
        }

        .support-whatsapp {
            position: fixed;
            bottom: 100px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: var(--primary-green);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            cursor: pointer;
            box-shadow: var(--glass-shadow);
            transition: var(--transition);
            z-index: 1000;
        }

        .support-whatsapp:hover {
            background: var(--primary-green-dark);
            transform: scale(1.1);
        }

        .support-tooltip {
            position: absolute;
            bottom: 70px;
            right: 0;
            background: var(--neutral-dark);
            color: var(--white);
            padding: 8px 16px;
            border-radius: var(--radius);
            font-size: 14px;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }

        .support-whatsapp:hover .support-tooltip {
            opacity: 1;
            visibility: visible;
            transform: translateY(-10px);
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideInRight {
            from { opacity: 0; transform: translateX(50px); }
            to { opacity: 1; transform: translateX(0); }
        }

        /* Melhorias profissionais: Adicionadas transições suaves em todos os elementos interativos e otimizada responsividade */
        a:focus, button:focus {
            outline: 2px solid var(--primary-green);
            outline-offset: 2px;
        }

        img {
            loading: lazy; /* Otimização de performance */
        }

        @media (max-width: 1024px) {
            .hero-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-content {
                max-width: 100%;
            }

            .hero-visual {
                justify-self: center;
                margin-top: 30px;
            }

            .hero-cta {
                justify-content: center;
            }
            
            .hero-badges {
                justify-content: center;
            }

            .badge {
                min-width: unset;
                width: 48%; 
                align-items: center;
                text-align: center;
            }
            
            .plans-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .plan-card.featured {
                transform: scale(1);
            }

            .plan-card.featured:hover {
                transform: translateY(-10px);
            }

            .debt-content, .esim-content, .about-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .debt-text, .esim-text {
                padding-right: 0;
            }

            .debt-visual, .esim-visual {
                margin-top: 30px;
            }
            
            .debt-cta, .esim-cta {
                justify-content: center;
            }

            .media-row {
                grid-template-columns: 1fr;
            }

            .comparison-content {
                max-height: 90vh;
                padding: 20px;
            }

            .comparison-table th, .comparison-table td {
                font-size: 14px;
                padding: 8px;
            }
            
            .about-images {
                margin-top: 30px;
            }
        }

        @media (max-width: 768px) {
            .hero {
                background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), var(--hero-bg-mobile) center/cover no-repeat;
                background-size: cover;
                min-height: 70vh; 
            }

            .desktop-menu, .desktop-help {
                display: none;
            }

            .mobile-menu {
                display: flex;
            }
            
            .mobile-nav-menu {
                grid-template-columns: 1fr; 
            }
            
            .hero {
                padding: 80px 0 40px;
            }
            
            .cep-consult-box {
                max-width: 400px;
                margin-left: auto;
                margin-right: auto;
            }
            
            .badge {
                width: 100%;
            }

            .section-title {
                font-size: 28px;
            }

            .section-subtitle {
                font-size: 16px;
            }

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

            .plans-grid {
                grid-template-columns: 1fr; 
            }
            
            .series-grid {
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            }

            .series-card {
                height: 150px;
                width: auto;
            }

            .streaming-promo .plan-cta {
                justify-content: center;
                margin-top: 20px;
            }

            .ceo-section {
                flex-direction: column;
                text-align: center;
                padding: 30px;
            }

            .ceo-image {
                margin-bottom: 20px;
            }

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

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-column ul li a {
                justify-content: center;
            }

            .newsletter-form {
                flex-direction: column;
                max-width: 300px;
                margin-left: auto;
                margin-right: auto;
            }

            .newsletter-form input {
                width: 100%;
            }

            .cookie-consent {
                bottom: 10px;
                left: 10px;
                right: 10px;
            }

            .cookie-content {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .cookie-buttons {
                flex-direction: column;
                gap: 10px;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 28px;
            }

            .hero-subtitle {
                font-size: 14px;
            }

            .section-title {
                font-size: 24px;
            }

            .section-subtitle {
                font-size: 14px;
            }

            .plan-visual-wrapper {
                height: 350px;
            }

            .plan-name {
                font-size: 24px;
            }

            .plan-price {
                font-size: 30px;
            }

            .plan-price small {
                font-size: 14px;
            }

            .streaming-logo {
                width: 100px;
            }

            .ceo-quote blockquote {
                font-size: 20px;
            }

            .ceo-quote cite {
                font-size: 16px;
            }

            /* Adição profissional: Reduzir animações em mobile para melhor performance */
            .hero-title, .section-title, .feature, .plan-card, .reason {
                animation-duration: 0.6s;
            }
        }
