/* Reset e Configurações Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.8;
    color: #2c3e50;
    background-color: #f8f9fa;
}

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

/* Header */
.header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(52, 73, 94, 0.15);
}

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

.logo h1 {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(45deg, #3498db, #2980b9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo a {
    text-decoration: none;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover,
.nav a.active {
    color: #3498db;
}

.btn-whatsapp {
    background: linear-gradient(45deg, #25d366, #128c7e);
    color: white !important;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    padding: 8rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

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

.hero h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero h2 span {
    color: #ecf0f1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
    background: linear-gradient(45deg, #c0392b, #a93226);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border: 2px solid white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: white;
    color: #764ba2;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.page-hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.8;
}

/* Features Section */
.features {
    background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
    color: #2c3e50;
    padding: 6rem 0;
    position: relative;
}

.features::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(180deg, transparent 0%, rgba(236, 240, 241, 0.8) 100%);
}

.features h3 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #2c3e50;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.feature-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(44, 62, 80, 0.1);
    border: 1px solid rgba(52, 152, 219, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(44, 62, 80, 0.15);
    border-color: rgba(52, 152, 219, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h4 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Plans Section */
.plans-preview {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color: white;
    padding: 6rem 0;
    position: relative;
}

.plans-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="white" opacity="0.1"/><circle cx="80" cy="80" r="2" fill="white" opacity="0.1"/></svg>');
    z-index: 1;
}

.plans-preview .container {
    position: relative;
    z-index: 2;
}

.plans-preview h3 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #ecf0f1;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.plan-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

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

.plan-card.featured {
    border: 2px solid #00f2fe;
    transform: scale(1.05);
}

.badge {
    background: linear-gradient(45deg, #00f2fe, #4facfe);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.plan-card h4 {
    font-size: 1.5rem;
    margin: 1rem 0;
    color: #00f2fe;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00f2fe;
}

.price span {
    font-size: 1rem;
    color: #ccc;
}

.total {
    font-size: 1rem;
    color: #ccc;
    margin: 0.5rem 0;
}

.btn-plan {
    background: linear-gradient(45deg, #00f2fe, #4facfe);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-plan:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.4);
}

.plans-cta {
    text-align: center;
    margin-top: 2rem;
}

.plans-cta a {
    color: #00f2fe;
    text-decoration: none;
    font-size: 1.1rem;
    border-bottom: 1px solid transparent;
    transition: border-bottom 0.3s ease;
}

.plans-cta a:hover {
    border-bottom: 1px solid #00f2fe;
}

/* Test Free Section */
.test-free {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.test-free h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.test-free p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-test {
    background: linear-gradient(45deg, #25d366, #128c7e);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-test:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* Testimonials */
.testimonials {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: white;
    padding: 6rem 0;
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.1);
    z-index: 1;
}

.testimonials .container {
    position: relative;
    z-index: 2;
}

.testimonials h3 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

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

.testimonial {
    background: rgba(255, 255, 255, 0.15);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.testimonial span {
    color: #ecf0f1;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Pricing Page */
.pricing {
    background: #0a0a0a;
    color: white;
    padding: 5rem 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
}

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

.pricing-card.featured {
    border: 2px solid #00f2fe;
}

.pricing-card.premium {
    border: 2px solid #ffd700;
}

.plan-header {
    padding: 2rem;
    text-align: center;
    background: linear-gradient(135deg, #2a2a5a 0%, #1e1e3e 100%);
}

.plan-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #00f2fe;
}

.price-display {
    margin: 1rem 0;
}

.price-display .price {
    font-size: 3rem;
    font-weight: 700;
    color: #00f2fe;
}

.price-display .period {
    font-size: 1.2rem;
    color: #ccc;
}

.total-price {
    color: #ccc;
    font-size: 1rem;
}

.features-list {
    list-style: none;
    padding: 2rem;
}

.features-list li {
    padding: 0.5rem 0;
    font-size: 1rem;
}

.plan-footer {
    padding: 2rem;
    text-align: center;
}

.pricing-benefits {
    background: #111;
    color: white;
    padding: 5rem 0;
}

.pricing-benefits h3 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #00f2fe;
}

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

.benefit {
    text-align: center;
    padding: 1.5rem;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit h4 {
    color: #00f2fe;
    margin-bottom: 1rem;
}

/* Test CTA */
.test-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.test-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Payment Info */
.payment-info {
    background: #0a0a0a;
    color: white;
    padding: 4rem 0;
}

.payment-info h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #00f2fe;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.payment-item {
    text-align: center;
    padding: 1.5rem;
}

.payment-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.payment-item h4 {
    color: #00f2fe;
    margin-bottom: 0.5rem;
}

.payment-note {
    text-align: center;
    font-size: 1.1rem;
    color: #00f2fe;
    margin-top: 2rem;
}

/* FAQ Styles */
.faq {
    background: #0a0a0a;
    color: white;
    padding: 5rem 0;
}

.faq-category {
    margin-bottom: 3rem;
}

.faq-category h3 {
    font-size: 2rem;
    color: #00f2fe;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #333;
}

.faq-item {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(79, 172, 254, 0.1);
}

.faq-question h4 {
    font-size: 1.2rem;
    color: white;
}

.faq-icon {
    font-size: 1.5rem;
    color: #00f2fe;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: #ccc;
    line-height: 1.6;
}

.faq-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 3rem;
}

.faq-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.btn-contact {
    background: linear-gradient(45deg, #00f2fe, #4facfe);
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
    display: inline-block;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.4);
}

/* Sobre IPTV Styles */
.iptv-intro {
    background: #111;
    color: white;
    padding: 5rem 0;
}

.intro-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.intro-content h3 {
    font-size: 2.5rem;
    color: #00f2fe;
    margin-bottom: 2rem;
}

.intro-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #ccc;
}

.how-works {
    background: linear-gradient(135deg, #95a5a6 0%, #7f8c8d 100%);
    color: #2c3e50;
    padding: 6rem 0;
    position: relative;
}

.how-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 25%, rgba(255,255,255,0.1) 50%, transparent 75%);
    z-index: 1;
}

.how-works .container {
    position: relative;
    z-index: 2;
}

.how-works h3 {
    text-align: center;
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.step {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(44, 62, 80, 0.1);
    border: 1px solid rgba(52, 152, 219, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #3498db, #2980b9);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 2rem;
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
    transition: all 0.3s ease;
}

.step h4 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.advantages {
    background: #111;
    color: white;
    padding: 5rem 0;
}

.advantages h3 {
    text-align: center;
    font-size: 2.5rem;
    color: #00f2fe;
    margin-bottom: 3rem;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.advantage {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.advantage:hover {
    transform: translateY(-5px);
}

.advantage-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.advantage h4 {
    color: #00f2fe;
    margin-bottom: 1rem;
}

/* Technology Section */
.technology {
    background: #0a0a0a;
    color: white;
    padding: 5rem 0;
}

.technology h3 {
    text-align: center;
    font-size: 2.5rem;
    color: #00f2fe;
    margin-bottom: 3rem;
}

.tech-content {
    display: grid;
    gap: 2rem;
}

.tech-item {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 2rem;
    border-radius: 15px;
}

.tech-item h4 {
    color: #00f2fe;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Comparison Table */
.comparison {
    background: #111;
    color: white;
    padding: 5rem 0;
}

.comparison h3 {
    text-align: center;
    font-size: 2.5rem;
    color: #00f2fe;
    margin-bottom: 3rem;
}

.comparison-table {
    display: grid;
    gap: 1px;
    background: #333;
    border-radius: 10px;
    overflow: hidden;
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: linear-gradient(45deg, #00f2fe, #4facfe);
}

.comparison-header > div {
    padding: 1rem;
    font-weight: 700;
    text-align: center;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: #1a1a2e;
}

.comparison-row > div {
    padding: 1rem;
    text-align: center;
}

.iptv-feature {
    color: #00f2fe;
    font-weight: 600;
}

.traditional-feature {
    color: #ff6b6b;
}

/* Requirements */
.requirements {
    background: #0a0a0a;
    color: white;
    padding: 5rem 0;
}

.requirements h3 {
    text-align: center;
    font-size: 2.5rem;
    color: #00f2fe;
    margin-bottom: 3rem;
}

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

.requirement {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 15px;
}

.req-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.requirement h4 {
    color: #00f2fe;
    margin-bottom: 1rem;
}

/* Future Section */
.future {
    background: #111;
    color: white;
    padding: 5rem 0;
}

.future h3 {
    text-align: center;
    font-size: 2.5rem;
    color: #00f2fe;
    margin-bottom: 3rem;
}

.future-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.future-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #ccc;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.cta-section h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Canais Page */
.channels-stats {
    background: #111;
    color: white;
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 15px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #00f2fe;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #ccc;
}

.channels-categories {
    background: #0a0a0a;
    color: white;
    padding: 5rem 0;
}

.channels-categories h3 {
    text-align: center;
    font-size: 2.5rem;
    color: #00f2fe;
    margin-bottom: 3rem;
}

.category-section {
    margin-bottom: 4rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 3rem;
    border-radius: 15px;
}

.category-section h4 {
    font-size: 2rem;
    color: #00f2fe;
    margin-bottom: 2rem;
    text-align: center;
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.channel-item {
    background: rgba(79, 172, 254, 0.1);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    transition: background 0.3s ease;
}

.channel-item:hover {
    background: rgba(79, 172, 254, 0.2);
}

.category-description {
    text-align: center;
    font-size: 1.1rem;
    color: #ccc;
    font-style: italic;
}

/* VOD Section */
.vod-section {
    background: #111;
    color: white;
    padding: 5rem 0;
}

.vod-section h3 {
    text-align: center;
    font-size: 2.5rem;
    color: #00f2fe;
    margin-bottom: 3rem;
}

.vod-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.vod-feature {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 2rem;
    border-radius: 15px;
}

.vod-feature h4 {
    font-size: 1.5rem;
    color: #00f2fe;
    margin-bottom: 1rem;
    text-align: center;
}

.vod-feature ul {
    list-style: none;
}

.vod-feature li {
    padding: 0.5rem 0;
    font-size: 1rem;
}

/* Test Channels */
.test-channels {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.test-channels h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.test-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Channel Note */
.channel-note {
    background: #0a0a0a;
    color: white;
    padding: 3rem 0;
}

.note-content {
    background: rgba(79, 172, 254, 0.1);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #00f2fe;
}

.note-content h4 {
    color: #00f2fe;
    margin-bottom: 1rem;
}

/* Support Page */
.support-options {
    background: #0a0a0a;
    color: white;
    padding: 5rem 0;
}

.support-options h3 {
    text-align: center;
    font-size: 2.5rem;
    color: #00f2fe;
    margin-bottom: 3rem;
}

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

.support-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.support-card:hover {
    transform: translateY(-5px);
}

.support-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.support-card h4 {
    color: #00f2fe;
    margin-bottom: 1rem;
}

.btn-support {
    background: linear-gradient(45deg, #00f2fe, #4facfe);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-support:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.4);
}

.btn-support.urgent {
    background: linear-gradient(45deg, #ff6b6b, #ee5a52);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(238, 90, 82, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(238, 90, 82, 0); }
    100% { box-shadow: 0 0 0 0 rgba(238, 90, 82, 0); }
}

/* Tutorials */
.tutorials {
    background: #111;
    color: white;
    padding: 5rem 0;
}

.tutorials h3 {
    text-align: center;
    font-size: 2.5rem;
    color: #00f2fe;
    margin-bottom: 3rem;
}

.tutorials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.tutorial-card {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    transition: transform 0.3s ease;
}

.tutorial-card:hover {
    transform: translateY(-5px);
}

.tutorial-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.tutorial-card h4 {
    color: #00f2fe;
    margin-bottom: 1rem;
}

.btn-tutorial {
    background: linear-gradient(45deg, #25d366, #128c7e);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-tutorial:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

/* Common Problems */
.common-problems {
    background: #0a0a0a;
    color: white;
    padding: 5rem 0;
}

.common-problems h3 {
    text-align: center;
    font-size: 2.5rem;
    color: #00f2fe;
    margin-bottom: 3rem;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.problem-item {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 2rem;
    border-radius: 15px;
}

.problem-item h4 {
    color: #00f2fe;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.problem-item ul {
    list-style: none;
    margin-bottom: 2rem;
}

.problem-item li {
    padding: 0.3rem 0;
    color: #ccc;
}

.btn-help {
    background: linear-gradient(45deg, #ff6b6b, #ee5a52);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-help:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(238, 90, 82, 0.4);
}

/* Apps Recommended */
.apps-recommended {
    background: #111;
    color: white;
    padding: 5rem 0;
}

.apps-recommended h3 {
    text-align: center;
    font-size: 2.5rem;
    color: #00f2fe;
    margin-bottom: 3rem;
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.app-item {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 2rem;
    border-radius: 15px;
}

.app-item h4 {
    color: #00f2fe;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.app-item ul {
    list-style: none;
}

.app-item li {
    padding: 0.3rem 0;
    color: #ccc;
}

.apps-help {
    text-align: center;
    background: rgba(79, 172, 254, 0.1);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.btn-app-help {
    background: linear-gradient(45deg, #00f2fe, #4facfe);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    display: inline-block;
    transition: all 0.3s ease;
}

/* Support Hours */
.support-hours {
    background: #0a0a0a;
    color: white;
    padding: 5rem 0;
}

.support-hours h3 {
    text-align: center;
    font-size: 2.5rem;
    color: #00f2fe;
    margin-bottom: 3rem;
}

.hours-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.hours-card {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.hours-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hours-card h4 {
    color: #00f2fe;
    margin-bottom: 1rem;
}

/* Contact Emergency */
.contact-emergency {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
    padding: 5rem 0;
}

.emergency-card {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.emergency-card h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.btn-emergency {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1rem 2rem;
    border: 2px solid white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    margin-top: 2rem;
    display: inline-block;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.btn-emergency:hover {
    background: white;
    color: #ff6b6b;
}

.emergency-note {
    margin-top: 1rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Terms of Service and Privacy Policy Styles */
.terms-content,
.privacy-content {
    background: #0a0a0a;
    color: white;
    padding: 5rem 0;
}

.terms-text,
.privacy-text {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.terms-text h3,
.privacy-text h3 {
    color: #00f2fe;
    font-size: 1.8rem;
    margin: 3rem 0 1.5rem 0;
    border-bottom: 2px solid #333;
    padding-bottom: 0.5rem;
}

.terms-text h4,
.privacy-text h4 {
    color: #4facfe;
    font-size: 1.4rem;
    margin: 2rem 0 1rem 0;
}

.terms-text p,
.privacy-text p {
    margin-bottom: 1.5rem;
    color: #ccc;
    font-size: 1.1rem;
}

.terms-text ul,
.privacy-text ul {
    margin: 1rem 0 1.5rem 2rem;
    color: #ccc;
}

.terms-text li,
.privacy-text li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.terms-text strong,
.privacy-text strong {
    color: #00f2fe;
}

.terms-footer,
.privacy-footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 3rem;
    text-align: center;
}

.terms-footer p,
.privacy-footer p {
    margin-bottom: 1rem;
}

.terms-footer p:first-child,
.privacy-footer p:first-child {
    font-size: 1.2rem;
    color: #00f2fe;
}

.terms-text a,
.privacy-text a {
    color: #00f2fe;
    text-decoration: none;
}

.terms-text a:hover,
.privacy-text a:hover {
    text-decoration: underline;
}

/* Contact Page */
.contact-main {
    background: #0a0a0a;
    color: white;
    padding: 5rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 2rem;
    color: #00f2fe;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1rem;
}

.contact-icon {
    font-size: 2rem;
    color: #00f2fe;
    min-width: 60px;
}

.contact-details h4 {
    color: #00f2fe;
    margin-bottom: 0.5rem;
}

.btn-contact-direct {
    background: linear-gradient(45deg, #25d366, #128c7e);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.contact-options h3 {
    font-size: 2rem;
    color: #00f2fe;
    margin-bottom: 2rem;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-btn {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    gap: 1rem;
}

.contact-btn:hover {
    transform: translateX(5px);
    background: linear-gradient(135deg, #2a2a5e 0%, #26336e 100%);
}

.btn-icon {
    font-size: 2rem;
    min-width: 60px;
    text-align: center;
}

.btn-text h4 {
    color: #00f2fe;
    margin-bottom: 0.5rem;
}

.btn-text p {
    color: #ccc;
    font-size: 0.9rem;
}

/* Quick Messages */
.quick-messages {
    background: #111;
    color: white;
    padding: 5rem 0;
}

.quick-messages h3 {
    text-align: center;
    font-size: 2rem;
    color: #00f2fe;
    margin-bottom: 1rem;
}

.quick-messages p {
    text-align: center;
    margin-bottom: 2rem;
    color: #ccc;
}

.quick-messages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.quick-msg {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    color: white;
    display: block;
    transition: all 0.3s ease;
    border-left: 4px solid #00f2fe;
    font-style: italic;
}

.quick-msg:hover {
    transform: translateX(5px);
    background: rgba(79, 172, 254, 0.1);
}

/* Contact Benefits */
.contact-benefits {
    background: #0a0a0a;
    color: white;
    padding: 5rem 0;
}

.contact-benefits h3 {
    text-align: center;
    font-size: 2rem;
    color: #00f2fe;
    margin-bottom: 3rem;
}

/* Contact FAQ */
.contact-faq {
    background: #111;
    color: white;
    padding: 5rem 0;
}

.contact-faq h3 {
    text-align: center;
    font-size: 2rem;
    color: #00f2fe;
    margin-bottom: 3rem;
}

.contact-faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Emergency Contact */
.emergency-contact {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
    padding: 5rem 0;
}

.emergency-box {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.emergency-box h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.btn-emergency-contact {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1rem 2rem;
    border: 2px solid white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    margin-top: 2rem;
    display: inline-block;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.btn-emergency-contact:hover {
    background: white;
    color: #ff6b6b;
}

/* Test Section */
.test-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.test-section h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 5rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #3498db 0%, #e74c3c 50%, #f39c12 100%);
}

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

.footer-section h4 {
    color: #3498db;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #3498db;
    transform: translateX(5px);
    transition: all 0.3s ease;
}

.btn-whatsapp-footer {
    background: linear-gradient(45deg, #25d366, #128c7e);
    color: white !important;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-whatsapp-footer:hover {
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #ccc;
}

/* Compatible Devices */
.compatible-devices {
    background: linear-gradient(135deg, #ffffff 0%, #ecf0f1 100%);
    color: #2c3e50;
    padding: 6rem 0;
    position: relative;
}

.compatible-devices::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(180deg, transparent 0%, rgba(236, 240, 241, 0.8) 100%);
}

.compatible-devices h3 {
    text-align: center;
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.devices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.device-item {
    text-align: center;
    padding: 2.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(44, 62, 80, 0.1);
    border: 1px solid rgba(52, 152, 219, 0.1);
    transition: all 0.3s ease;
}

.device-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(44, 62, 80, 0.15);
    border-color: rgba(52, 152, 219, 0.3);
}

.device-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 8px rgba(52, 152, 219, 0.2));
}

.device-item span {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #8e44ad 0%, #9b59b6 100%);
    color: white;
    padding: 8rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
    z-index: 1;
}

.final-cta .container {
    position: relative;
    z-index: 2;
}

.final-cta h3 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.final-cta p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* FAQ Preview */
.faq-preview {
    background: linear-gradient(135deg, #bdc3c7 0%, #95a5a6 100%);
    color: #2c3e50;
    padding: 6rem 0;
    position: relative;
}

.faq-preview h3 {
    text-align: center;
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.faq-cta {
    text-align: center;
    margin-top: 3rem;
}

.faq-cta a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    padding-bottom: 5px;
}

.faq-cta a:hover {
    border-bottom-color: #2c3e50;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .mobile-menu {
        display: flex;
    }

    .hero h2 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .comparison-header > div,
    .comparison-row > div {
        padding: 0.8rem;
    }

    .steps-grid,
    .features-grid,
    .plans-grid,
    .testimonials-grid,
    .pricing-grid,
    .benefits-grid,
    .advantages-grid,
    .stats-grid,
    .support-grid,
    .tutorials-grid,
    .problems-grid,
    .apps-grid,
    .hours-info {
        grid-template-columns: 1fr;
    }

    .plan-card.featured {
        transform: none;
    }

    .container {
        padding: 0 15px;
    }

    .page-hero h2 {
        font-size: 2rem;
    }

    .contact-btn {
        flex-direction: column;
        text-align: center;
    }

    .btn-icon {
        margin-bottom: 1rem;
    }
}