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

:root {
    --bg-primary: #0A1D37;
    --bg-secondary: #0d2442;
    --text-primary: #FFFFFF;
    --text-secondary: #B8C5D6;
    --accent: #FFFFFF;
    --line-color: rgba(255, 255, 255, 0.15);
    --line-bright: rgba(255, 255, 255, 0.3);
}

body {
    font-family: 'Roboto Mono', monospace;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

.header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(10, 29, 55, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line-color);
    z-index: 1000;
    padding: 20px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-icon {
    width: 40px;
    height: 40px;
    position: relative;
    border: 2px solid var(--accent);
    background: transparent;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent);
    border-radius: 50%;
}

.logo-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 28px;
    height: 2px;
    background: var(--accent);
}

.logo-text {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s;
}

.nav a:hover {
    color: var(--accent);
}

.nav a:hover::after {
    width: 100%;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.grid-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(var(--line-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--line-color) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    z-index: 0;
    animation: gridPulse 4s ease-in-out infinite;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    box-shadow: 0 0 10px var(--accent);
    animation: scanLine 8s linear infinite;
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    animation: fadeInUp 0.8s ease-out, glitchEffect 0.3s ease-in-out 6s infinite;
    opacity: 0;
    animation-fill-mode: forwards;
}

.hero-subtitle {
    font-size: 24px;
    color: var(--text-secondary);
    margin-bottom: 15px;
    animation: fadeInUp 0.8s ease-out 0.3s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.hero-description {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
    animation: fadeInUp 0.8s ease-out 0.6s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.cta-button {
    display: inline-block;
    padding: 18px 40px;
    background: transparent;
    color: var(--accent);
    text-decoration: none;
    border: 2px solid var(--accent);
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeInUp 0.8s ease-out 0.9s, borderGlow 2s ease-in-out infinite;
    opacity: 0;
    animation-fill-mode: forwards;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent);
    transition: left 0.3s;
    z-index: -1;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -2;
}

.cta-button:hover::before {
    left: 0;
}

.cta-button:hover::after {
    opacity: 0.3;
}

.cta-button:hover {
    color: var(--bg-primary);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.section {
    padding: 100px 0;
    position: relative;
}

.section-alt {
    background-color: var(--bg-secondary);
}

.section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent);
}

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

.benefit-card {
    padding: 40px 30px;
    border: 1px solid var(--line-color);
    text-align: center;
    transition: all 0.3s;
    background: transparent;
}

.benefit-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.benefit-card h3 {
    font-size: 20px;
    margin: 20px 0 15px;
}

.benefit-card p {
    color: var(--text-secondary);
    font-size: 14px;
}

.icon {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    position: relative;
}

.icon-quality::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 2px solid var(--accent);
}

.icon-quality::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 40px;
    height: 40px;
    border: 2px solid var(--accent);
}

.icon-channels::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 10px;
    width: 40px;
    height: 30px;
    border: 2px solid var(--accent);
    border-radius: 3px;
}

.icon-channels::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 8px;
    border: 2px solid var(--accent);
    border-top: none;
}

.icon-devices::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 15px;
    width: 30px;
    height: 20px;
    border: 2px solid var(--accent);
}

.icon-devices::after {
    content: '';
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 20px;
    height: 25px;
    border: 2px solid var(--accent);
    border-radius: 2px;
}

.icon-support::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    border: 2px solid var(--accent);
    border-radius: 50%;
}

.icon-support::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 15px;
    border: 2px solid var(--accent);
    border-top: none;
    border-radius: 0 0 20px 20px;
}

.steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 250px;
    padding: 40px 30px;
    border: 1px solid var(--line-color);
    text-align: center;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 20px;
    opacity: 0.3;
}

.step h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.step p {
    color: var(--text-secondary);
    font-size: 14px;
}

.step-connector {
    width: 40px;
    height: 2px;
    background: var(--line-bright);
    flex-shrink: 0;
}

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

.channel-category {
    padding: 40px 30px;
    border: 1px solid var(--line-color);
    text-align: center;
    transition: all 0.3s;
}

.channel-category:hover {
    border-color: var(--accent);
}

.channel-category h3 {
    font-size: 20px;
    margin: 20px 0 15px;
}

.channel-category p {
    color: var(--text-secondary);
    font-size: 14px;
}

.icon-sports::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 35px;
    height: 35px;
    border: 2px solid var(--accent);
    border-radius: 50%;
}

.icon-sports::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 15px;
    width: 30px;
    height: 20px;
    border-left: 2px solid var(--accent);
    border-right: 2px solid var(--accent);
}

.icon-movies::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 10px;
    width: 40px;
    height: 30px;
    border: 2px solid var(--accent);
}

.icon-movies::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-left: 15px solid var(--accent);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.icon-news::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: 40px;
    height: 40px;
    border: 2px solid var(--accent);
}

.icon-news::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 15px;
    width: 30px;
    height: 2px;
    background: var(--accent);
    box-shadow: 0 8px 0 var(--accent), 0 16px 0 var(--accent);
}

.icon-kids::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 25px;
    height: 25px;
    border: 2px solid var(--accent);
    border-radius: 50%;
}

.icon-kids::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 20px solid var(--accent);
}

.features-list {
    max-width: 800px;
    margin: 0 auto;
}

.feature {
    display: flex;
    gap: 30px;
    padding: 30px;
    border: 1px solid var(--line-color);
    margin-bottom: 20px;
    transition: all 0.3s;
}

.feature:hover {
    border-color: var(--accent);
}

.feature-icon {
    flex-shrink: 0;
}

.icon-check {
    width: 40px;
    height: 40px;
    border: 2px solid var(--accent);
    position: relative;
}

.icon-check::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    width: 10px;
    height: 18px;
    border-right: 3px solid var(--accent);
    border-bottom: 3px solid var(--accent);
    transform: rotate(45deg);
}

.feature-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.feature-content p {
    color: var(--text-secondary);
    font-size: 14px;
}

.section-form {
    background: var(--bg-secondary);
}

.form-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-size: 16px;
}

.teste-form {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.teste-form .cta-button {
    width: 100%;
    max-width: 400px;
    cursor: pointer;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.plan-card {
    padding: 40px 30px;
    border: 1px solid var(--line-color);
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.plan-card:hover {
    border-color: var(--accent);
    transform: translateY(-10px);
}

.plan-featured {
    border-color: var(--accent);
    border-width: 2px;
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--bg-primary);
    padding: 5px 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.plan-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.price-discount {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px 0;
    border-top: 1px solid var(--line-color);
    border-bottom: 1px solid var(--line-color);
}

.plan-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.plan-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--line-color);
    color: var(--text-secondary);
    font-size: 14px;
}

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

.plan-button {
    display: inline-block;
    padding: 15px 35px;
    background: transparent;
    color: var(--accent);
    text-decoration: none;
    border: 2px solid var(--accent);
    font-size: 14px;
    transition: all 0.3s;
    text-transform: uppercase;
}

.plan-button:hover {
    background: var(--accent);
    color: var(--bg-primary);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    padding: 30px;
    border: 1px solid var(--line-color);
    margin-bottom: 20px;
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.faq-item p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.8;
}

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

.testimonial {
    padding: 30px 25px;
    border: 1px solid var(--line-color);
    position: relative;
    transition: all 0.3s;
}

.testimonial:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
}

.testimonial-icon {
    margin-bottom: 20px;
}

.icon-quote::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border-left: 3px solid var(--accent);
    border-top: 3px solid var(--accent);
}

.icon-quote::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: 20px;
    height: 20px;
    border-left: 3px solid var(--accent);
    border-top: 3px solid var(--accent);
}

.testimonial p {
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 15px;
    font-style: italic;
    min-height: 60px;
}

.testimonial-author {
    color: var(--accent);
    font-size: 12px;
    font-weight: 500;
    display: block;
}

.section-cta {
    text-align: center;
    background: var(--bg-secondary);
}

.section-cta h2 {
    margin-bottom: 20px;
    display: block;
    left: 0;
    transform: none;
    width: 100%;
}

.section-cta h2::after {
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
}

.section-cta p {
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-large {
    font-size: 18px;
    padding: 20px 50px;
}

.footer {
    background-color: var(--bg-primary);
    border-top: 1px solid var(--line-color);
    padding: 40px 0;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer p {
    color: var(--text-secondary);
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 15px 0;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent);
}

/* Páginas Legais */
.legal-page {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.legal-page h1 {
    font-size: 48px;
    margin-bottom: 10px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.last-update {
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 60px;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--line-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.legal-content h3 {
    font-size: 20px;
    margin: 30px 0 15px;
    color: var(--accent);
}

.legal-content p {
    margin-bottom: 20px;
    color: var(--text-secondary);
    font-size: 15px;
}

.legal-content ul {
    margin: 20px 0 20px 30px;
    color: var(--text-secondary);
}

.legal-content li {
    margin-bottom: 10px;
    font-size: 15px;
}

.legal-content a {
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.legal-content a:hover {
    border-bottom-color: var(--accent);
}

.legal-content strong {
    color: var(--text-primary);
}

.cta-box {
    margin: 60px 0 40px;
    padding: 40px;
    border: 2px solid var(--accent);
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
}

.cta-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.cta-box p {
    margin-bottom: 25px;
    font-size: 16px;
}

.cta-box .cta-button {
    display: inline-block;
    margin-top: 10px;
}

/* Animações Hero Section */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glitchEffect {
    0%, 100% {
        transform: translateX(0);
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    }
    20% {
        transform: translateX(-2px);
        text-shadow: 2px 0 rgba(255, 0, 0, 0.5), -2px 0 rgba(0, 255, 255, 0.5);
    }
    40% {
        transform: translateX(2px);
        text-shadow: -2px 0 rgba(255, 0, 0, 0.5), 2px 0 rgba(0, 255, 255, 0.5);
    }
    60% {
        transform: translateX(-1px);
        text-shadow: 1px 0 rgba(255, 0, 0, 0.5), -1px 0 rgba(0, 255, 255, 0.5);
    }
    80% {
        transform: translateX(1px);
        text-shadow: -1px 0 rgba(255, 0, 0, 0.5), 1px 0 rgba(0, 255, 255, 0.5);
    }
}

@keyframes scanLine {
    0% {
        top: 0;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        top: 100%;
        opacity: 0;
    }
}

@keyframes gridPulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.4;
    }
}

@keyframes borderGlow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
    }
}

/* Suporte para usuários com preferência de movimento reduzido */
@media (prefers-reduced-motion: reduce) {
    .hero h1,
    .hero-subtitle,
    .hero-description,
    .cta-button {
        animation: none;
        opacity: 1;
    }
    
    .hero::before {
        animation: none;
        display: none;
    }
    
    .grid-background {
        animation: none;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section h2 {
        font-size: 28px;
    }
    
    .steps {
        flex-direction: column;
    }
    
    .step-connector {
        width: 2px;
        height: 40px;
    }
    
    .benefits-grid,
    .channels-grid,
    .plans-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}
