:root {
    --primary: #8A2BE2;
    --secondary: #6A0DAD;
    --accent: #00FFFF;
    --background: #0A0A0A;
    --card-bg: #111111;
    --text: #F5F5F5;
    --text-secondary: #BBBBBB;
    --gradient-1: linear-gradient(45deg, #6A0DAD, #8A2BE2);
    --gradient-2: linear-gradient(45deg, #00FFFF, #8A2BE2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}

.bubble {
    position: absolute;
    bottom: -100px;
    background: radial-gradient(circle at 30% 30%, rgba(138, 43, 226, 0.2), rgba(0, 255, 255, 0.05) 70%);
    border-radius: 50%;
    animation: rise var(--duration) ease-in infinite;
    opacity: 0;
}

@keyframes rise {
    0% {
        opacity: 0;
        transform: translateY(0) scale(1);
    }
    5% {
        opacity: var(--opacity);
    }
    95% {
        opacity: var(--opacity);
    }
    100% {
        opacity: 0;
        transform: translateY(-100vh) scale(0.8);
    }
}

header {
    background: rgba(10, 10, 10, 0.8);
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(138, 43, 226, 0.3);
}

.glow-effect {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.4) 0%, rgba(0, 255, 255, 0.2) 40%, rgba(0, 0, 0, 0) 70%);
    filter: blur(20px);
    z-index: -1;
    animation: glow 8s infinite alternate;
}

@keyframes glow {
    0% {
        transform: translate(-40vw, -30px) scale(0.8);
        background: radial-gradient(circle, rgba(138, 43, 226, 0.4) 0%, rgba(0, 255, 255, 0.2) 40%, rgba(0, 0, 0, 0) 70%);
    }
    50% {
        transform: translate(0vw, 30px) scale(1.2);
        background: radial-gradient(circle, rgba(0, 255, 255, 0.4) 0%, rgba(138, 43, 226, 0.2) 40%, rgba(0, 0, 0, 0) 70%);
    }
    100% {
        transform: translate(40vw, -30px) scale(0.8);
        background: radial-gradient(circle, rgba(138, 43, 226, 0.4) 0%, rgba(0, 255, 255, 0.2) 40%, rgba(0, 0, 0, 0) 70%);
    }
}

.logo {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    display: inline-block;
    background: linear-gradient(90deg, var(--accent), var(--primary), var(--secondary), var(--accent));
    background-size: 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient 8s ease infinite;
    text-shadow: 0 0 20px rgba(138, 43, 226, 0.5);
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    animation: line-animation 3s infinite;
}

@keyframes line-animation {
    0% {
        width: 0;
        left: 0;
    }
    50% {
        width: 100%;
    }
    100% {
        width: 0;
        left: 100%;
    }
}

.tagline {
    font-size: 1.2rem;
    color: var(--text);
    opacity: 0.9;
    margin-top: 1rem;
}

nav {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 1rem;
    display: flex;
    justify-content: center;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(106, 13, 173, 0.2);
}

nav a {
    color: var(--text);
    text-decoration: none;
    padding: 0.5rem 1.2rem;
    margin: 0 0.5rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(138, 43, 226, 0.2), transparent);
    transition: all 0.5s ease;
}

nav a:hover::before {
    left: 100%;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

nav a:hover::after {
    width: 70%;
}

nav a:hover {
    color: var(--accent);
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.5);
}

.hero {
    padding: 8rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, var(--background) 0%, rgba(10, 10, 10, 0.7) 50%, rgba(10, 10, 10, 0.8) 100%);
    z-index: -1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 15px rgba(138, 43, 226, 0.5);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s forwards 0.3s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-secondary);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s forwards 0.6s;
}

.btn {
    display: inline-block;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(106, 13, 173, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s forwards 0.9s;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(45deg, var(--accent), var(--primary));
    transition: all 0.5s ease;
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 10px 20px rgba(106, 13, 173, 0.6);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    margin-left: 1rem;
    overflow: hidden;
}

.btn-outline::before {
    background: var(--primary);
}

.btn-outline:hover {
    color: white;
}

.features {
    padding: 6rem 2rem;
    background-color: rgba(17, 17, 17, 0.95);
    position: relative;
    overflow: hidden;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: var(--text);
    position: relative;
    padding-bottom: 1.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background-color: rgba(20, 20, 20, 0.8);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(138, 43, 226, 0.1);
    backdrop-filter: blur(5px);
    transform: translateY(50px);
    opacity: 0;
}

.feature-card.visible {
    transform: translateY(0);
    opacity: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1), rgba(0, 255, 255, 0.05));
    opacity: 0;
    transition: all 0.5s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
    background-size: 200% 100%;
    animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(138, 43, 226, 0.3);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    display: inline-block;
}

.feature-icon i {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.icon-bg {
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.feature-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--text);
    position: relative;
    z-index: 2;
}

.feature-card p {
    color: var(--text-secondary);
    position: relative;
    z-index: 2;
    font-size: 1.05rem;
}

.channels {
    padding: 6rem 2rem;
    background-color: var(--background);
    position: relative;
}

.channel-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.channel-tab {
    padding: 0.8rem 1.5rem;
    background-color: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 30px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.channel-tab.active {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 5px 15px rgba(106, 13, 173, 0.3);
}

.channel-tab:hover {
    background-color: rgba(30, 30, 30, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.channel-content {
    display: none;
    max-width: 1200px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.channel-content.active {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 1.5rem;
    opacity: 1;
    transform: translateY(0);
    animation: fadeIn 0.5s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.channel-item {
    background-color: rgba(20, 20, 20, 0.8);
    border-radius: 12px;
    padding: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(106, 13, 173, 0.1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.channel-item::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.05), rgba(0, 255, 255, 0.02));
    opacity: 0;
    transition: all 0.3s ease;
}

.channel-item:hover::before {
    opacity: 1;
}

.channel-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(106, 13, 173, 0.3);
}

.channel-name {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text);
    position: relative;
}

.channel-quality {
    font-size: 0.85rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.channel-category {
    font-size: 0.85rem;
    color: var(--text-secondary);
    position: relative;
}

.hover-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: skewX(-25deg);
    transition: all 0.6s ease;
}

.channel-item:hover .hover-shine {
    left: 100%;
}

.plans {
    padding: 6rem 2rem;
    background-color: rgba(17, 17, 17, 0.95);
    position: relative;
    overflow: hidden;
}

.plans-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    perspective: 1000px;
}

.plan-card {
    background-color: rgba(20, 20, 20, 0.8);
    border-radius: 20px;
    padding: 3rem 2rem;
    width: 320px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
    transform-style: preserve-3d;
    transform: translateZ(0) rotateX(0) rotateY(0);
    border: 1px solid rgba(138, 43, 226, 0.1);
    opacity: 0;
    transform: translateY(50px);
}

.plan-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.plan-card.featured {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid transparent;
    background: rgba(25, 25, 25, 0.9);
}

.plan-card.featured::after {
    content: 'POPULAR';
    position: absolute;
    top: 30px;
    right: -35px;
    background: var(--primary);
    color: white;
    padding: 0.5rem 3rem;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.plan-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(138, 43, 226, 0.3);
}

.plan-card.featured:hover {
    transform: translateY(-10px) scale(1.07);
}

.plan-card-inner {
    position: relative;
    z-index: 2;
}

.plan-name {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text);
    position: relative;
    display: inline-block;
}

.plan-price {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 1.5rem 0;
    color: var(--accent);
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
    position: relative;
}

.plan-price span {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-secondary);
    vertical-align: baseline;
    position: relative;
    top: -1.5rem;
}

.plan-price small {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-secondary);
    display: inline-block;
    margin-left: 5px;
}

.plan-features {
    list-style-type: none;
    margin: an2rem 0;
    flex-grow: 1;
}

.plan-features li {
    padding: 0.7rem 0;
    color: var(--text-secondary);
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.plan-features li:hover {
    color: var(--text);
    transform: translateX(5px);
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features i {
    color: var(--accent);
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.plan-card .btn {
    margin-top: 1rem;
}

.faq {
    padding: 6rem 2rem;
    background-color: var(--background);
    position: relative;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background-color: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(138, 43, 226, 0.1);
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.5s ease;
}

.faq-item.visible {
    transform: translateY(0);
    opacity: 1;
}

.faq-question {
    padding: 1.5rem;
    background-color: rgba(106, 13, 173, 0.1);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.faq-question:hover {
    background-color: rgba(106, 13, 173, 0.2);
}

.faq-question i {
    transition: all 0.3s ease;
    color: var(--accent);
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    color: var(--text-secondary);
    background-color: rgba(20, 20, 20, 0.5);
    backdrop-filter: blur(5px);
}

.faq-answer.active {
    padding: 1.5rem;
    max-height: 500px;
}

.faq-question i.active {
    transform: rotate(180deg);
}

.cta {
    padding: 8rem 2rem;
    text-align: center;
    background: linear-gradient(rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.95));
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 2;
    transform: translateY(50px);
    opacity: 0;
}

.cta-content.visible {
    transform: translateY(0);
    opacity: 1;
    transition: all 0.8s ease;
}

.cta h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text);
    position: relative;
    display: inline-block;
}

.cta h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.cta p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--text-secondary);
}

.cta .btn {
    font-size: 1.1rem;
    padding: 1.2rem 3rem;
}

footer {
    background-color: #050505;
    padding: 4rem 2rem 2rem;
    color: var(--text-secondary);
    text-align: center;
    position: relative;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    padding: 1rem;
    text-align: left;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: var(--text);
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.footer-links {
    list-style-type: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-links a:hover::after {
    width: 100%;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    transition: all 0.3s ease;
    opacity: 0;
    z-index: -1;
}

.social-links a:hover::before {
    opacity: 1;
}

.social-links a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    color: white;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
    font-size: 0.9rem;
}

.whatsapp-float {
    position: fixed;
    width: 65px;
    height: 65px;
    bottom: 40px;
    right: 40px;
    background: linear-gradient(135deg, #25d366, #128C7E);
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.whatsapp-text {
    position: absolute;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 14px;
    top: -40px;
    opacity: 0;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.whatsapp-float:hover .whatsapp-text {
    opacity: 1;
    top: -50px;
}

.cursor {
    width: 30px;
    height: 30px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    mix-blend-mode: difference;
    transition: all 0.1s ease;
    transition-property: width, height, border;
    will-change: width, height, transform, border;
    display: none;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    mix-blend-mode: difference;
    display: none;
}

.expand {
    transform: translate(-50%, -50%) scale(2);
    background: transparent;
    border: 1px solid var(--accent);
}

.loader-wrapper {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: var(--background);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--primary);
    border-bottom-color: var(--accent);
    animation: spin 2s linear infinite;
}

.loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-left-color: var(--primary);
    border-right-color: var(--accent);
    animation: spin 3s linear infinite;
}

.loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--primary);
    border-bottom-color: var(--accent);
    animation: spin 1.5s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.hidden {
    opacity: 0;
    visibility: hidden;
}

@media screen and (max-width: 768px) {
    .logo {
        font-size: 2rem;
    }

    .tagline {
        font-size: 0.9rem;
    }

    nav {
        overflow-x: auto;
        justify-content: flex-start;
        padding: 0.8rem 0.5rem;
        white-space: nowrap;
    }

    nav a {
        padding: 0.5rem 0.8rem;
        margin: 0 0.3rem;
        font-size: 0.9rem;
    }

    .hero {
        padding: 5rem 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .btn-outline {
        margin-left: 0;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }

    .features, .channels, .plans, .testimonials, .faq, .cta {
        padding: 3rem 1rem;
    }

    .features-grid {
        gap: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .feature-card h3 {
        font-size: 1.3rem;
    }

    .counter-container {
        gap: 1rem;
        margin: 2rem auto;
    }

    .counter-item {
        min-width: 140px;
    }

    .counter {
        font-size: 2.5rem;
    }

    .counter-title {
        font-size: 0.9rem;
    }

    .channel-tabs {
        gap: 0.5rem;
        margin-bottom: 2rem;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 1rem;
        justify-content: flex-start;
    }

    .channel-tab {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
        white-space: nowrap;
    }

    .channel-content.active {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
    }

    .channel-item {
        padding: 1rem;
    }

    .channel-name {
        font-size: 1rem;
    }

    .plans-container {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .plan-card {
        width: 100%;
        max-width: 350px;
        padding: 2rem 1.5rem;
    }

    .plan-card.featured {
        transform: scale(1);
    }

    .plan-card.featured:hover {
        transform: translateY(-10px);
    }

    .plan-name {
        font-size: 1.5rem;
    }

    .plan-price {
        font-size: 2.5rem;
        margin: 1rem 0;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-content {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .faq-question {
        padding: 1.2rem;
        font-size: 0.95rem;
    }

    .faq-answer.active {
        padding: 1.2rem;
        font-size: 0.9rem;
    }

    .cta h2 {
        font-size: 2rem;
    }

    .cta p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .footer-section {
        min-width: 100%;
        padding: 0;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links {
        justify-content: center;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
        right: 15px;
        bottom: 15px;
    }

    .back-to-top {
        left: 15px;
        bottom: 15px;
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .cursor, .cursor-dot {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    .logo {
        font-size: 1.8rem;
    }

    header {
        padding: 1rem;
    }

    .hero h1 {
        font-size: 1.7rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .channel-content.active {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    }

    .channel-name {
        font-size: 0.9rem;
    }

    .channel-quality, .channel-category {
        font-size: 0.8rem;
    }

    .plan-card {
        padding: 1.5rem 1rem;
    }

    .plan-features li {
        font-size: 0.9rem;
        padding: 0.5rem 0;
    }

    .cta h2 {
        font-size: 1.7rem;
    }

    .cta p {
        font-size: 0.9rem;
    }

    .copyright {
        font-size: 0.8rem;
    }
}

@media screen and (min-width: 769px) {
    .cursor, .cursor-dot {
        display: block;
    }
}

.testimonials {
    padding: 6rem 2rem;
    background-color: var(--background);
    position: relative;
}

.testimonials-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.testimonial-slider {
    overflow: hidden;
    position: relative;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    flex: 0 0 100%;
    padding: 1rem;
    opacity: 0.3;
    transform: scale(0.85);
    transition: all 0.5s ease;
}

.testimonial-slide.active {
    opacity: 1;
    transform: scale(1);
}

.testimonial-card {
    background-color: rgba(20, 20, 20, 0.8);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(138, 43, 226, 0.1);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.05), rgba(0, 255, 255, 0.02));
    opacity: 0;
    transition: all 0.3s ease;
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    position: relative;
}

.testimonial-content::before {
    content: '\201C';
    font-size: 5rem;
    position: absolute;
    left: -1.5rem;
    top: -3rem;
    color: rgba(138, 43, 226, 0.2);
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-info {
    margin-left: 1rem;
}

.author-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.2rem;
}

.author-title {
    font-size: 0.9rem;
    color: var(--accent);
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(138, 43, 226, 0.3);
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background-color: var(--accent);
    transform: scale(1.3);
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.back-to-top {
    position: fixed;
    bottom: 40px;
    left: 40px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
    cursor: pointer;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(106, 13, 173, 0.3);
}

@media screen and (max-width: 768px) {
    .back-to-top {
        left: 20px;
        bottom: 80px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

.counter-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 4rem auto;
    max-width: 1000px;
}

.counter-item {
    text-align: center;
    min-width: 200px;
}

/* Estilo atualizado para o counter */
.counter {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.counter.animate {
    opacity: 1;
    transform: translateY(0);
    animation: glow-pulse 2s infinite alternate;
}

@keyframes glow-pulse {
    0% {
        text-shadow: 0 0 5px rgba(138, 43, 226, 0.3);
    }
    100% {
        text-shadow: 0 0 15px rgba(0, 255, 255, 0.7), 0 0 25px rgba(138, 43, 226, 0.5);
    }
}

.counter-title {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.counter-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.neon-text {
    color: var(--text);
    text-shadow:
        0 0 5px rgba(0, 255, 255, 0.3),
        0 0 10px rgba(0, 255, 255, 0.3),
        0 0 15px rgba(0, 255, 255, 0.3),
        0 0 20px rgba(138, 43, 226, 0.3);
    animation: flicker 3s infinite alternate;
}

@keyframes flicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        text-shadow:
            0 0 5px rgba(0, 255, 255, 0.3),
            0 0 10px rgba(0, 255, 255, 0.3),
            0 0 15px rgba(0, 255, 255, 0.3),
            0 0 20px rgba(138, 43, 226, 0.3);
    }
    20%, 24%, 55% {
        text-shadow: none;
    }
}