|
<!DOCTYPE html> |
|
<html lang="pt-BR"> |
|
<head> |
|
<meta charset="UTF-8"> |
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
<title>Premium IPTV - A Melhor Experiência em Streaming</title> |
|
<script src="https://cdn.tailwindcss.com"></script> |
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> |
|
<style> |
|
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap'); |
|
|
|
body { |
|
font-family: 'Poppins', sans-serif; |
|
background-color: #0f172a; |
|
color: #f8fafc; |
|
scroll-behavior: smooth; |
|
} |
|
|
|
.hero-gradient { |
|
position: relative; |
|
overflow: hidden; |
|
height: 100vh; |
|
} |
|
|
|
.video-background { |
|
position: absolute; |
|
top: 0; |
|
left: 0; |
|
width: 100%; |
|
height: 100%; |
|
z-index: 0; |
|
overflow: hidden; |
|
} |
|
|
|
.video-overlay { |
|
position: absolute; |
|
top: 0; |
|
left: 0; |
|
width: 100%; |
|
height: 100%; |
|
background-color: rgba(15, 23, 42, 0.7); |
|
z-index: 1; |
|
} |
|
|
|
.hero-content { |
|
position: relative; |
|
z-index: 2; |
|
height: 100%; |
|
display: flex; |
|
align-items: center; |
|
} |
|
|
|
.channel-card { |
|
transition: all 0.3s ease; |
|
background: rgba(15, 23, 42, 0.7); |
|
backdrop-filter: blur(10px); |
|
} |
|
|
|
.channel-card:hover { |
|
transform: translateY(-5px); |
|
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3); |
|
} |
|
|
|
.pricing-card { |
|
transition: all 0.3s ease; |
|
background: rgba(15, 23, 42, 0.7); |
|
border: 1px solid #1e40af; |
|
} |
|
|
|
.pricing-card:hover { |
|
transform: scale(1.03); |
|
box-shadow: 0 10px 25px rgba(30, 64, 175, 0.3); |
|
} |
|
|
|
.feature-icon { |
|
width: 50px; |
|
height: 50px; |
|
display: flex; |
|
align-items: center; |
|
justify-content: center; |
|
border-radius: 12px; |
|
background: rgba(30, 64, 175, 0.2); |
|
} |
|
|
|
.whatsapp-button { |
|
background: #25D366; |
|
transition: all 0.3s ease; |
|
} |
|
|
|
.whatsapp-button:hover { |
|
background: #128C7E; |
|
transform: translateY(-2px); |
|
} |
|
|
|
.glow { |
|
animation: glow 2s infinite alternate; |
|
} |
|
|
|
@keyframes glow { |
|
from { |
|
box-shadow: 0 0 5px rgba(30, 64, 175, 0.5); |
|
} |
|
to { |
|
box-shadow: 0 0 20px rgba(30, 64, 175, 0.8); |
|
} |
|
} |
|
|
|
|
|
.youtube-iframe { |
|
position: absolute; |
|
top: 50%; |
|
left: 50%; |
|
width: 100vw; |
|
height: 56.25vw; |
|
min-height: 100vh; |
|
min-width: 177.77vh; |
|
transform: translate(-50%, -50%); |
|
pointer-events: none; |
|
} |
|
</style> |
|
</head> |
|
<body> |
|
|
|
<header class="fixed w-full z-50 bg-gray-900/90 backdrop-blur-sm"> |
|
<div class="container mx-auto px-6 py-4"> |
|
<div class="flex justify-between items-center"> |
|
<div class="flex items-center"> |
|
<i class="fas fa-tv text-blue-500 text-2xl mr-2"></i> |
|
<span class="text-xl font-bold bg-gradient-to-r from-blue-500 to-blue-300 bg-clip-text text-transparent">PREMIUM IPTV</span> |
|
</div> |
|
<nav class="hidden md:flex space-x-8"> |
|
<a href="#home" class="text-gray-300 hover:text-white transition">Início</a> |
|
<a href="#channels" class="text-gray-300 hover:text-white transition">Canais</a> |
|
<a href="#features" class="text-gray-300 hover:text-white transition">Recursos</a> |
|
<a href="#pricing" class="text-gray-300 hover:text-white transition">Planos</a> |
|
</nav> |
|
<a href="#contact" class="bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded-lg font-medium transition flex items-center"> |
|
<i class="fab fa-whatsapp mr-2"></i> Contato |
|
</a> |
|
</div> |
|
</div> |
|
</header> |
|
|
|
|
|
<section id="home" class="hero-gradient"> |
|
|
|
<div class="video-background"> |
|
<iframe class="youtube-iframe" src="https://www.youtube.com/embed/uo1GEL7pVRk?autoplay=1&mute=1&loop=1&playlist=uo1GEL7pVRk&controls=0&disablekb=1&fs=0&modestbranding=1&rel=0&showinfo=0" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe> |
|
<div class="video-overlay"></div> |
|
</div> |
|
|
|
<div class="container mx-auto px-6 hero-content"> |
|
<div class="flex flex-col md:flex-row items-center w-full"> |
|
<div class="md:w-1/2 mb-12 md:mb-0"> |
|
<h1 class="text-4xl md:text-5xl font-bold leading-tight mb-6"> |
|
<span class="bg-gradient-to-r from-blue-400 to-blue-600 bg-clip-text text-transparent">A Melhor</span> Experiência em IPTV |
|
</h1> |
|
<p class="text-xl text-gray-300 mb-8"> |
|
Mais de 15.000 canais em Full HD/4K, filmes, séries e esportes ao vivo. |
|
Transmissão estável em qualquer dispositivo, a qualquer hora. |
|
</p> |
|
<div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4"> |
|
<a href="#pricing" class="bg-blue-600 hover:bg-blue-700 text-white px-6 py-3 rounded-lg font-medium text-center transition"> |
|
Assinar Agora |
|
</a> |
|
<a href="#channels" class="border border-blue-500 text-blue-400 hover:bg-blue-900/30 px-6 py-3 rounded-lg font-medium text-center transition"> |
|
Ver Canais |
|
</a> |
|
</div> |
|
</div> |
|
<div class="md:w-1/2 relative"> |
|
<img src="https://images.unsplash.com/photo-1603202662742-7a35f6f20b8e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" |
|
alt="IPTV Streaming" |
|
class="rounded-xl shadow-2xl glow border border-blue-500/30"> |
|
<div class="absolute -bottom-5 -left-5 bg-blue-600/20 backdrop-blur-sm p-4 rounded-xl border border-blue-500/30"> |
|
<div class="flex items-center"> |
|
<div class="bg-blue-500 p-2 rounded-lg mr-3"> |
|
<i class="fas fa-play text-white"></i> |
|
</div> |
|
<div> |
|
<p class="text-sm text-gray-300">Assistindo agora</p> |
|
<p class="font-medium">Premier League</p> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</section> |
|
|
|
|
|
<section id="channels" class="py-20 px-6 bg-gray-900"> |
|
<div class="container mx-auto"> |
|
<div class="text-center mb-16"> |
|
<h2 class="text-3xl md:text-4xl font-bold mb-4">Nossos Canais Premium</h2> |
|
<p class="text-xl text-gray-400 max-w-3xl mx-auto"> |
|
Acesso a milhares de canais internacionais, incluindo esportes, filmes, notícias e entretenimento. |
|
</p> |
|
</div> |
|
|
|
<div class="grid grid-cols-2 md:grid-cols-4 lg:grid-cols-6 gap-6"> |
|
|
|
<div class="channel-card p-4 rounded-xl flex flex-col items-center"> |
|
<img src="https://logos-world.net/wp-content/uploads/2020/11/HBO-Logo.png" alt="HBO" class="h-16 object-contain mb-3"> |
|
<p class="font-medium">HBO Max</p> |
|
<p class="text-sm text-gray-400">Filmes & Séries</p> |
|
</div> |
|
|
|
|
|
<div class="channel-card p-4 rounded-xl flex flex-col items-center"> |
|
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/b/b1/ESPN_logo.svg/2560px-ESPN_logo.svg.png" alt="ESPN" class="h-16 object-contain mb-3"> |
|
<p class="font-medium">ESPN</p> |
|
<p class="text-sm text-gray-400">Esportes</p> |
|
</div> |
|
|
|
|
|
<div class="channel-card p-4 rounded-xl flex flex-col items-center"> |
|
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/a/a0/Discovery_Channel_Logo_2018.svg/1200px-Discovery_Channel_Logo_2018.svg.png" alt="Discovery" class="h-16 object-contain mb-3"> |
|
<p class="font-medium">Discovery</p> |
|
<p class="text-sm text-gray-400">Documentários</p> |
|
</div> |
|
|
|
|
|
<div class="channel-card p-4 rounded-xl flex flex-col items-center"> |
|
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/9/98/Nickelodeon_2009_logo.svg/2560px-Nickelodeon_2009_logo.svg.png" alt="Nickelodeon" class="h-16 object-contain mb-3"> |
|
<p class="font-medium">Nickelodeon</p> |
|
<p class="text-sm text-gray-400">Infantil</p> |
|
</div> |
|
|
|
|
|
<div class="channel-card p-4 rounded-xl flex flex-col items-center"> |
|
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/7/77/Globo_logo.svg/2560px-Globo_logo.svg.png" alt="Globo" class="h-16 object-contain mb-3"> |
|
<p class="font-medium">TV Globo</p> |
|
<p class="text-sm text-gray-400">Entretenimento</p> |
|
</div> |
|
|
|
|
|
<div class="channel-card p-4 rounded-xl flex flex-col items-center"> |
|
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/3/39/CNN_International_logo.svg/1200px-CNN_International_logo.svg.png" alt="CNN" class="h-16 object-contain mb-3"> |
|
<p class="font-medium">CNN</p> |
|
<p class="text-sm text-gray-400">Notícias</p> |
|
</div> |
|
</div> |
|
|
|
<div class="text-center mt-12"> |
|
<a href="#contact" class="inline-flex items-center px-6 py-3 border border-blue-500 text-blue-400 hover:bg-blue-900/30 rounded-lg font-medium transition"> |
|
<i class="fas fa-list mr-2"></i> Ver Lista Completa de Canais |
|
</a> |
|
</div> |
|
</div> |
|
</section> |
|
|
|
|
|
<section id="features" class="py-20 px-6 bg-gray-800"> |
|
<div class="container mx-auto"> |
|
<div class="text-center mb-16"> |
|
<h2 class="text-3xl md:text-4xl font-bold mb-4">Por Que Escolher Nosso IPTV?</h2> |
|
<p class="text-xl text-gray-400 max-w-3xl mx-auto"> |
|
Oferecemos a melhor qualidade de streaming com recursos exclusivos. |
|
</p> |
|
</div> |
|
|
|
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8"> |
|
|
|
<div class="bg-gray-900/50 p-6 rounded-xl border border-gray-700 hover:border-blue-500 transition"> |
|
<div class="feature-icon mb-4 text-blue-500"> |
|
<i class="fas fa-tv text-2xl"></i> |
|
</div> |
|
<h3 class="text-xl font-semibold mb-3">Multiplataforma</h3> |
|
<p class="text-gray-400"> |
|
Assista em qualquer dispositivo: Smart TV, Android, iOS, PC, Firestick, MAG e muito mais. |
|
</p> |
|
</div> |
|
|
|
|
|
<div class="bg-gray-900/50 p-6 rounded-xl border border-gray-700 hover:border-blue-500 transition"> |
|
<div class="feature-icon mb-4 text-blue-500"> |
|
<i class="fas fa-film text-2xl"></i> |
|
</div> |
|
<h3 class="text-xl font-semibold mb-3">Biblioteca Completa</h3> |
|
<p class="text-gray-400"> |
|
Mais de 15.000 canais e 50.000 filmes/séries disponíveis, incluindo conteúdo 4K e HDR. |
|
</p> |
|
</div> |
|
|
|
|
|
<div class="bg-gray-900/50 p-6 rounded-xl border border-gray-700 hover:border-blue-500 transition"> |
|
<div class="feature-icon mb-4 text-blue-500"> |
|
<i class="fas fa-bolt text-2xl"></i> |
|
</div> |
|
<h3 class="text-xl font-semibold mb-3">Velocidade Máxima</h3> |
|
<p class="text-gray-400"> |
|
Servidores dedicados para garantir streaming sem buffering e qualidade HD estável. |
|
</p> |
|
</div> |
|
|
|
|
|
<div class="bg-gray-900/50 p-6 rounded-xl border border-gray-700 hover:border-blue-500 transition"> |
|
<div class="feature-icon mb-4 text-blue-500"> |
|
<i class="fas fa-futbol text-2xl"></i> |
|
</div> |
|
<h3 class="text-xl font-semibold mb-3">Eventos Esportivos</h3> |
|
<p class="text-gray-400"> |
|
Todos os jogos de futebol, UFC, NBA, NFL e outros esportes ao vivo sem atrasos. |
|
</p> |
|
</div> |
|
|
|
|
|
<div class="bg-gray-900/50 p-6 rounded-xl border border-gray-700 hover:border-blue-500 transition"> |
|
<div class="feature-icon mb-4 text-blue-500"> |
|
<i class="fas fa-history text-2xl"></i> |
|
</div> |
|
<h3 class="text-xl font-semibold mb-3">Catch-Up TV</h3> |
|
<p class="text-gray-400"> |
|
Assista programas que já passaram com nosso sistema de catch-up de até 7 dias. |
|
</p> |
|
</div> |
|
|
|
|
|
<div class="bg-gray-900/50 p-6 rounded-xl border border-gray-700 hover:border-blue-500 transition"> |
|
<div class="feature-icon mb-4 text-blue-500"> |
|
<i class="fas fa-headset text-2xl"></i> |
|
</div> |
|
<h3 class="text-xl font-semibold mb-3">Suporte 24/7</h3> |
|
<p class="text-gray-400"> |
|
Equipe de suporte disponível 24 horas por dia via WhatsApp para resolver qualquer problema. |
|
</p> |
|
</div> |
|
</div> |
|
</div> |
|
</section> |
|
|
|
|
|
<section id="pricing" class="py-20 px-6 bg-gray-900"> |
|
<div class="container mx-auto"> |
|
<div class="text-center mb-16"> |
|
<h2 class="text-3xl md:text-4xl font-bold mb-4">Nossos Planos IPTV</h2> |
|
<p class="text-xl text-gray-400 max-w-3xl mx-auto"> |
|
Escolha o plano que melhor atende às suas necessidades e comece a assistir hoje mesmo. |
|
</p> |
|
</div> |
|
|
|
<div class="grid md:grid-cols-3 gap-8 max-w-5xl mx-auto"> |
|
|
|
<div class="pricing-card p-8 rounded-xl"> |
|
<div class="text-center mb-6"> |
|
<h3 class="text-2xl font-bold mb-2">Plano Mensal</h3> |
|
<p class="text-gray-400">Ideal para testar nosso serviço</p> |
|
</div> |
|
<div class="text-center mb-8"> |
|
<span class="text-5xl font-bold text-blue-500">R$39,99</span> |
|
<span class="text-gray-400">/mês</span> |
|
</div> |
|
<ul class="space-y-3 mb-8"> |
|
<li class="flex items-center"> |
|
<i class="fas fa-check text-green-500 mr-2"></i> |
|
<span>15.000+ Canais</span> |
|
</li> |
|
<li class="flex items-center"> |
|
<i class="fas fa-check text-green-500 mr-2"></i> |
|
<span>50.000+ VOD</span> |
|
</li> |
|
<li class="flex items-center"> |
|
<i class="fas fa-check text-green-500 mr-2"></i> |
|
<span>Full HD/4K</span> |
|
</li> |
|
<li class="flex items-center"> |
|
<i class="fas fa-check text-green-500 mr-2"></i> |
|
<span>3 Dispositivos</span> |
|
</li> |
|
<li class="flex items-center"> |
|
<i class="fas fa-check text-green-500 mr-2"></i> |
|
<span>Suporte 24/7</span> |
|
</li> |
|
</ul> |
|
<a href="#contact" class="block text-center bg-blue-600 hover:bg-blue-700 text-white px-6 py-3 rounded-lg font-medium transition"> |
|
Assinar Agora |
|
</a> |
|
</div> |
|
|
|
|
|
<div class="pricing-card p-8 rounded-xl relative border-2 border-blue-500 transform scale-105"> |
|
<div class="absolute top-0 right-0 bg-blue-500 text-white px-3 py-1 rounded-bl-lg rounded-tr-lg text-sm font-medium"> |
|
RECOMENDADO |
|
</div> |
|
<div class="text-center mb-6"> |
|
<h3 class="text-2xl font-bold mb-2">Plano Trimestral</h3> |
|
<p class="text-gray-400">Economize 5%</p> |
|
</div> |
|
<div class="text-center mb-8"> |
|
<span class="text-5xl font-bold text-blue-500">R$114,00</span> |
|
<span class="text-gray-400">/3 meses</span> |
|
<div class="text-sm text-green-400 mt-2">Economize R$5,97</div> |
|
</div> |
|
<ul class="space-y-3 mb-8"> |
|
<li class="flex items-center"> |
|
<i class="fas fa-check text-green-500 mr-2"></i> |
|
<span>15.000+ Canais</span> |
|
</li> |
|
<li class="flex items-center"> |
|
<i class="fas fa-check text-green-500 mr-2"></i> |
|
<span>50.000+ VOD</span> |
|
</li> |
|
<li class="flex items-center"> |
|
<i class="fas fa-check text-green-500 mr-2"></i> |
|
<span>Full HD/4K</span> |
|
</li> |
|
<li class="flex items-center"> |
|
<i class="fas fa-check text-green-500 mr-2"></i> |
|
<span>5 Dispositivos</span> |
|
</li> |
|
<li class="flex items-center"> |
|
<i class="fas fa-check text-green-500 mr-2"></i> |
|
<span>Suporte Prioritário</span> |
|
</li> |
|
</ul> |
|
<a href="#contact" class="block text-center bg-blue-600 hover:bg-blue-700 text-white px-6 py-3 rounded-lg font-medium transition"> |
|
Assinar Agora |
|
</a> |
|
</div> |
|
|
|
|
|
<div class="pricing-card p-8 rounded-xl"> |
|
<div class="text-center mb-6"> |
|
<h3 class="text-2xl font-bold mb-2">Plano Anual</h3> |
|
<p class="text-gray-400">Melhor custo-benefício</p> |
|
</div> |
|
<div class="text-center mb-8"> |
|
<span class="text-5xl font-bold text-blue-500">R$419,00</span> |
|
<span class="text-gray-400">/ano</span> |
|
<div class="text-sm text-green-400 mt-2">Economize R$60,88</div> |
|
</div> |
|
<ul class="space-y-3 mb-8"> |
|
<li class="flex items-center"> |
|
<i class="fas fa-check text-green-500 mr-2"></i> |
|
<span>15.000+ Canais</span> |
|
</li> |
|
<li class="flex items-center"> |
|
<i class="fas fa-check text-green-500 mr-2"></i> |
|
<span>50.000+ VOD</span> |
|
</li> |
|
<li class="flex items-center"> |
|
<i class="fas fa-check text-green-500 mr-2"></i> |
|
<span>Full HD/4K</span> |
|
</li> |
|
<li class="flex items-center"> |
|
<i class="fas fa-check text-green-500 mr-2"></i> |
|
<span>7 Dispositivos</span> |
|
</li> |
|
<li class="flex items-center"> |
|
<i class="fas fa-check text-green-500 mr-2"></i> |
|
<span>Suporte VIP</span> |
|
</li> |
|
</ul> |
|
<a href="#contact" class="block text-center bg-blue-600 hover:bg-blue-700 text-white px-6 py-3 rounded-lg font-medium transition"> |
|
Assinar Agora |
|
</a> |
|
</div> |
|
</div> |
|
</div> |
|
</section> |
|
|
|
|
|
<section class="py-20 px-6 bg-gray-800"> |
|
<div class="container mx-auto"> |
|
<div class="text-center mb-16"> |
|
<h2 class="text-3xl md:text-4xl font-bold mb-4">O Que Nossos Clientes Dizem</h2> |
|
<p class="text-xl text-gray-400 max-w-3xl mx-auto"> |
|
Avaliações reais de clientes satisfeitos com nosso serviço. |
|
</p> |
|
</div> |
|
|
|
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8"> |
|
|
|
<div class="bg-gray-900/50 p-6 rounded-xl border border-gray-700"> |
|
<div class="flex items-center mb-4"> |
|
<div class="w-12 h-12 rounded-full bg-blue-500 flex items-center justify-center text-white font-bold mr-4">JP</div> |
|
<div> |
|
<h4 class="font-semibold">João Pedro</h4> |
|
<div class="flex text-yellow-400"> |
|
<i class="fas fa-star"></i> |
|
<i class="fas fa-star"></i> |
|
<i class="fas fa-star"></i> |
|
<i class="fas fa-star"></i> |
|
<i class="fas fa-star"></i> |
|
</div> |
|
</div> |
|
</div> |
|
<p class="text-gray-300"> |
|
"O melhor IPTV que já usei! Todos os canais de futebol funcionam perfeitamente, sem travamentos. Recomendo!" |
|
</p> |
|
</div> |
|
|
|
|
|
<div class="bg-gray-900/50 p-6 rounded-xl border border-gray-700"> |
|
<div class="flex items-center mb-4"> |
|
<div class="w-12 h-12 rounded-full bg-blue-500 flex items-center justify-center text-white font-bold mr-4">AM</div> |
|
<div> |
|
<h4 class="font-semibold">Ana Maria</h4> |
|
<div class="flex text-yellow-400"> |
|
<i class="fas fa-star"></i> |
|
<i class="fas fa-star"></i> |
|
<i class="fas fa-star"></i> |
|
<i class="fas fa-star"></i> |
|
<i class="fas fa-star"></i> |
|
</div> |
|
</div> |
|
</div> |
|
<p class="text-gray-300"> |
|
"Adoro a variedade de filmes e séries. O suporte é excelente e sempre me ajudam quando preciso. Vale cada centavo!" |
|
</p> |
|
</div> |
|
|
|
|
|
<div class="bg-gray-900/50 p-6 rounded-xl border border-gray-700"> |
|
<div class="flex items-center mb-4"> |
|
<div class="w-12 h-12 rounded-full bg-blue-500 flex items-center justify-center text-white font-bold mr-4">CS</div> |
|
<div> |
|
<h4 class="font-semibold">Carlos Silva</h4> |
|
<div class="flex text-yellow-400"> |
|
<i class="fas fa-star"></i> |
|
<i class="fas fa-star"></i> |
|
<i class="fas fa-star"></i> |
|
<i class="fas fa-star"></i> |
|
<i class="fas fa-star-half-alt"></i> |
|
</div> |
|
</div> |
|
</div> |
|
<p class="text-gray-300"> |
|
"Depois de testar vários serviços, finalmente encontrei um que funciona bem em todos os meus dispositivos. Ótima qualidade!" |
|
</p> |
|
</div> |
|
</div> |
|
</div> |
|
</section> |
|
|
|
|
|
<section id="contact" class="py-20 px-6 bg-gray-900"> |
|
<div class="container mx-auto max-w-4xl"> |
|
<div class="text-center mb-16"> |
|
<h2 class="text-3xl md:text-4xl font-bold mb-4">Entre em Contato</h2> |
|
<p class="text-xl text-gray-400 max-w-3xl mx-auto"> |
|
Tire suas dúvidas ou assine agora mesmo pelo WhatsApp. |
|
</p> |
|
</div> |
|
|
|
<div class="bg-gray-800 rounded-xl p-8 md:p-12 flex flex-col md:flex-row items-center"> |
|
<div class="md:w-1/2 mb-8 md:mb-0 md:pr-8"> |
|
<h3 class="text-2xl font-bold mb-4">Fale Conosco</h3> |
|
<p class="text-gray-400 mb-6"> |
|
Nossa equipe está disponível 24 horas por dia para tirar suas dúvidas, ajudar na instalação ou processar sua assinatura. |
|
</p> |
|
<div class="space-y-4"> |
|
<div class="flex items-center"> |
|
<div class="bg-blue-500/20 p-3 rounded-lg mr-4"> |
|
<i class="fab fa-whatsapp text-blue-500 text-xl"></i> |
|
</div> |
|
<div> |
|
<p class="text-gray-400 text-sm">WhatsApp</p> |
|
<p class="font-medium">(11) 98765-4321</p> |
|
</div> |
|
</div> |
|
<div class="flex items-center"> |
|
<div class="bg-blue-500/20 p-3 rounded-lg mr-4"> |
|
<i class="fas fa-envelope text-blue-500 text-xl"></i> |
|
</div> |
|
<div> |
|
<p class="text-gray-400 text-sm">Email</p> |
|
<p class="font-medium">[email protected]</p> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
<div class="md:w-1/2"> |
|
<a href="https://wa.me/5511987654321?text=Olá,%20gostaria%20de%20assinar%20o%20serviço%20de%20IPTV" |
|
class="whatsapp-button flex items-center justify-center px-8 py-4 rounded-lg text-white font-bold text-lg w-full"> |
|
<i class="fab fa-whatsapp text-2xl mr-3"></i> Fale Conosco no WhatsApp |
|
</a> |
|
|
|
<div class="mt-6 bg-gray-900/50 p-4 rounded-lg border border-gray-700"> |
|
<h4 class="font-semibold mb-2 text-center">Horário de Atendimento</h4> |
|
<p class="text-gray-400 text-sm text-center"> |
|
Segunda a Domingo, 24 horas por dia |
|
</p> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</section> |
|
|
|
|
|
<section class="py-20 px-6 bg-gray-800"> |
|
<div class="container mx-auto max-w-4xl"> |
|
<div class="text-center mb-16"> |
|
<h2 class="text-3xl md:text-4xl font-bold mb-4">Perguntas Frequentes</h2> |
|
<p class="text-xl text-gray-400 max-w-3xl mx-auto"> |
|
Tire suas dúvidas sobre nosso serviço de IPTV. |
|
</p> |
|
</div> |
|
|
|
<div class="space-y-4"> |
|
|
|
<div class="bg-gray-900/50 rounded-xl border border-gray-700 overflow-hidden"> |
|
<button class="faq-toggle w-full text-left p-5 flex justify-between items-center"> |
|
<span class="font-medium">Como faço para assinar o serviço?</span> |
|
<i class="fas fa-chevron-down transition-transform"></i> |
|
</button> |
|
<div class="faq-content hidden px-5 pb-5"> |
|
<p class="text-gray-400"> |
|
Basta entrar em contato conosco pelo WhatsApp clicando no botão acima. Nossa equipe irá guiá-lo através do processo de assinatura e instalação. |
|
</p> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="bg-gray-900/50 rounded-xl border border-gray-700 overflow-hidden"> |
|
<button class="faq-toggle w-full text-left p-5 flex justify-between items-center"> |
|
<span class="font-medium">Quais dispositivos são compatíveis?</span> |
|
<i class="fas fa-chevron-down transition-transform"></i> |
|
</button> |
|
<div class="faq-content hidden px-5 pb-5"> |
|
<p class="text-gray-400"> |
|
Nosso serviço funciona em Smart TVs (Android TV, Samsung, LG), dispositivos móveis (Android/iOS), computadores, Fire TV Stick, MAG Box e muitos outros. Fornecemos aplicativos e configurações para todos os dispositivos. |
|
</p> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="bg-gray-900/50 rounded-xl border border-gray-700 overflow-hidden"> |
|
<button class="faq-toggle w-full text-left p-5 flex justify-between items-center"> |
|
<span class="font-medium">Há algum teste gratuito disponível?</span> |
|
<i class="fas fa-chevron-down transition-transform"></i> |
|
</button> |
|
<div class="faq-content hidden px-5 pb-5"> |
|
<p class="text-gray-400"> |
|
Oferecemos um teste de 12 horas para novos clientes. Entre em contato pelo WhatsApp para solicitar seu teste gratuito. |
|
</p> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="bg-gray-900/50 rounded-xl border border-gray-700 overflow-hidden"> |
|
<button class="faq-toggle w-full text-left p-5 flex justify-between items-center"> |
|
<span class="font-medium">Como é feita a renovação do serviço?</span> |
|
<i class="fas fa-chevron-down transition-transform"></i> |
|
</button> |
|
<div class="faq-content hidden px-5 pb-5"> |
|
<p class="text-gray-400"> |
|
Antes do término do seu plano, nossa equipe entrará em contato pelo WhatsApp para oferecer a renovação. O pagamento pode ser feito via PIX, cartão de crédito ou boleto bancário. |
|
</p> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</section> |
|
|
|
|
|
<footer class="bg-gray-900 py-12 px-6 border-t border-gray-800"> |
|
<div class="container mx-auto"> |
|
<div class="flex flex-col md:flex-row justify-between items-center"> |
|
<div class="flex items-center mb-6 md:mb-0"> |
|
<i class="fas fa-tv text-blue-500 text-2xl mr-2"></i> |
|
<span class="text-xl font-bold bg-gradient-to-r from-blue-500 to-blue-300 bg-clip-text text-transparent">PREMIUM IPTV</span> |
|
</div> |
|
|
|
<div class="flex space-x-6 mb-6 md:mb-0"> |
|
<a href="#" class="text-gray-400 hover:text-blue-500 transition"> |
|
<i class="fab fa-facebook-f"></i> |
|
</a> |
|
<a href="#" class="text-gray-400 hover:text-blue-500 transition"> |
|
<i class="fab fa-instagram"></i> |
|
</a> |
|
<a href="#" class="text-gray-400 hover:text-blue-500 transition"> |
|
<i class="fab fa-telegram"></i> |
|
</a> |
|
<a href="#" class="text-gray-400 hover:text-blue-500 transition"> |
|
<i class="fab fa-youtube"></i> |
|
</a> |
|
</div> |
|
|
|
<div class="text-gray-400 text-sm"> |
|
© 2023 Premium IPTV. Todos os direitos reservados. |
|
</div> |
|
</div> |
|
</div> |
|
</footer> |
|
|
|
|
|
<button id="backToTop" class="fixed bottom-8 right-8 bg-blue-600 text-white p-3 rounded-full shadow-lg opacity-0 invisible transition-all"> |
|
<i class="fas fa-arrow-up"></i> |
|
</button> |
|
|
|
<script> |
|
|
|
document.querySelectorAll('.faq-toggle').forEach(button => { |
|
button.addEventListener('click', () => { |
|
const content = button.nextElementSibling; |
|
const icon = button.querySelector('i'); |
|
|
|
content.classList.toggle('hidden'); |
|
icon.classList.toggle('rotate-180'); |
|
}); |
|
}); |
|
|
|
|
|
const backToTopButton = document.getElementById('backToTop'); |
|
|
|
window.addEventListener('scroll', () => { |
|
if (window.pageYOffset > 300) { |
|
backToTopButton.classList.remove('opacity-0', 'invisible'); |
|
backToTopButton.classList.add('opacity-100', 'visible'); |
|
} else { |
|
backToTopButton.classList.remove('opacity-100', 'visible'); |
|
backToTopButton.classList.add('opacity-0', 'invisible'); |
|
} |
|
}); |
|
|
|
backToTopButton.addEventListener('click', () => { |
|
window.scrollTo({ |
|
top: 0, |
|
behavior: 'smooth' |
|
}); |
|
}); |
|
|
|
|
|
document.querySelectorAll('a[href^="#"]').forEach(anchor => { |
|
anchor.addEventListener('click', function(e) { |
|
e.preventDefault(); |
|
|
|
const targetId = this.getAttribute('href'); |
|
if (targetId === '#') return; |
|
|
|
const targetElement = document.querySelector(targetId); |
|
if (targetElement) { |
|
window.scrollTo({ |
|
top: targetElement.offsetTop - 80, |
|
behavior: 'smooth' |
|
}); |
|
} |
|
}); |
|
}); |
|
</script> |
|
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=xlorfx/iptv" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> |
|
</html> |