/* Estilos Gerais */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Arial', sans-serif;
}

body {
	background-color: #ffffff;
	color: #333333;
	line-height: 1.6;
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

.secao {
	padding: 60px 0;
}

.secao-escura {
	background-color: #f5f5f5;
}

.secao-titulo {
	text-align: center;
	margin-bottom: 40px;
	font-size: 32px;
	font-weight: bold;
	color: #222;
}

.texto-destaque {
	color: #A52A2A;
	font-weight: bold;
}

.botao-primario {
	display: inline-block;
	background-color: #A52A2A;
	color: #fff;
	padding: 12px 25px;
	border-radius: 25px;
	text-decoration: none;
	font-weight: bold;
	text-transform: uppercase;
	font-size: 14px;
	transition: all 0.3s ease;
}

.botao-primario:hover {
	background-color: #333;
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.texto-centralizado {
	text-align: center;
}

/* Cabeçalho */
.cabecalho {
	background-color: white;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	position: sticky;
	top: 0;
	z-index: 1000;
	padding: 15px 0;
}

.cabecalho-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	color: #A52A2A;
	background: #eee;
	padding: 4px 12px;
	border-radius: 6px;
	font-weight: bold;
}

.navegacao {
	display: flex;
	align-items: center;
}

.menu {
	display: flex;
	list-style: none;
}

.menu-item {
	margin: 0 15px;
}

.menu-link {
	text-decoration: none;
	color: #333;
	font-weight: 500;
	transition: color 0.3s ease;
}

.menu-link:hover {
	color: #A52A2A;
}

.menu-botao {
	margin-left: 20px;
}

.menu-mobile {
	display: none;
	font-size: 24px;
	cursor: pointer;
}

/* Hero */
.hero {
	position: relative;
	min-height: 500px;
	display: flex;
	align-items: center;
	background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.0)), url('../images/bg-hero-iptv.jpg') center/cover no-repeat;
	color: white;
}

.hero-conteudo {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
	padding: 0 20px;
}

.hero-titulo {
	font-size: 42px;
	margin-bottom: 20px;
}

.hero-subtitulo {
	font-size: 20px;
	margin-bottom: 30px;
}

/* Recursos */
.recursos {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	margin-top: 40px;
}

.recurso-card {
	background-color: white;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	padding: 30px;
	margin-bottom: 30px;
	width: calc(25% - 30px);
	text-align: center;
	transition: transform 0.3s ease;
}

.recurso-card:hover {
	transform: translateY(-10px);
}

.recurso-icone {
	font-size: 40px;
	color: #A52A2A;
	margin-bottom: 20px;
}

.recurso-titulo {
	font-size: 18px;
	margin-bottom: 15px;
	font-weight: bold;
}

.recurso-descricao {
	font-size: 14px;
	color: #666;
}

/* Sobre IPTV */
.sobre-container {
	display: flex;
	align-items: center;
	gap: 50px;
}

.sobre-imagem {
	flex: 1;
	text-align: center;
}

.sobre-imagem img {
	max-width: 100%;
	min-height: 301px;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.sobre-conteudo {
	flex: 1;
}

.sobre-titulo {
	font-size: 32px;
	margin-bottom: 20px;
}

.sobre-texto {
	margin-bottom: 25px;
}

/* Campeonatos */
.campeonatos {
	background-color: #f9f9f9 ;
	background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.0)), url('../images/jogos-brasileirao.jpg') center/cover no-repeat;
	text-align: center;
	padding: 120px 0;
}

.campeonatos-titulo {
	color: #fff;
	margin-bottom: 20px;
}

.campeonatos-subtitulo {
	max-width: 800px;
	margin: 0 auto 30px;
	color:#fff;
}

/* Requisitos */
.requisitos-container {
	display: flex;
	align-items: center;
	gap: 50px;
}

.requisitos-imagem {
	flex: 1;
}

.requisitos-imagem img {
	max-width: 100%;
	border-radius: 10px;
}

.requisitos-conteudo {
	flex: 1;
}

.requisitos-titulo {
	font-size: 28px;
	margin-bottom: 25px;
}

.requisitos-lista {
	list-style: none;
}

.requisitos-item {
	margin-bottom: 15px;
	position: relative;
	padding-left: 30px;
}

.requisitos-item:before {
	content: '✓';
	color: #A52A2A;
	position: absolute;
	left: 0;
	top: 0;
	font-weight: bold;
}

/* Depoimentos */
.depoimentos-container {
	margin-top: 40px;
}

.depoimentos-lista {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 20px;
}

.depoimento-card {
	background-color: #333;
	color: white;
	border-radius: 10px;
	padding: 25px;
	width: calc(33.333% - 20px);
	margin-bottom: 30px;
}

.depoimento-texto {
	font-style: italic;
	margin-bottom: 20px;
}

.depoimento-autor {
	display: flex;
	align-items: center;
}

.depoimento-avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	margin-right: 15px;
}

.depoimento-info h4 {
	margin-bottom: 5px;
}

.depoimento-info p {
	font-size: 14px;
	opacity: 0.8;
}

.depoimento-nome {
	font-size: 18px!important;
	font-weight: bold;
	margin-bottom: 5px;
	color: #fff!important;
}

/* FAQ */
.faq-container {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	margin-bottom: 20px;
	border-bottom: 1px solid #eee;
	padding-bottom: 20px;
}

.faq-pergunta {
	display: flex;
	align-items: center;
	cursor: pointer;
	font-weight: bold;
	font-size: 18px;
}

.faq-pergunta i {
	margin-right: 10px;
	color: #A52A2A;
}

.faq-resposta {
	margin-top: 15px;
	padding-left: 30px;
	display: none;
}
.faq-resposta *{
	margin-bottom:20px;
}

/* Rodapé */
.rodape {
	background-color: #222;
	color: white;
	padding: 60px 0 30px;
}

.rodape-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 40px;
}

.rodape-coluna {
	width: calc(25% - 30px);
	margin-bottom: 30px;
}

.rodape-titulo {
	font-size: 20px;
	margin-bottom: 20px;
	color: #fff !important;
	text-shadow: 1px 1px 2px #000;
}

.rodape-links {
	list-style: none;
}

.rodape-item {
	margin-bottom: 10px;
}

.rodape-link {
	color: #ccc;
	text-decoration: none;
	transition: color 0.3s ease;
}

.rodape-link:hover {
	color: #A52A2A;
}

.rodape-contato span {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}

.rodape-contato i {
	margin-right: 10px;
	color: #FFEBCD;
}

.metodos-pagamento img {
	height: 30px;
	margin-right: 10px;
	margin-bottom: 10px;
}

.social-links {
	display: flex;
	gap: 15px;
	margin-top: 20px;
	margin-bottom: 20px;
}

.social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background-color: #333;
	border-radius: 50%;
	color: white;
	text-decoration: none;
	transition: all 0.3s ease;
}

.social-link:hover {
	background-color: #A52A2A;
	transform: translateY(-3px);
}

.copyright {
	text-align: center;
	padding-top: 20px;
	border-top: 1px solid #444;
	font-size: 14px;
	color: #aaa;
}

/* Responsividade */
@media (max-width: 992px) {
	.logo{
		font-size:18px;
	}
	.menu-botao{
		font-size:12px;
	}
	.recurso-card {
		width: calc(50% - 30px);
	}

	.sobre-container, .requisitos-container {
		flex-direction: column;
	}

	.sobre-imagem, .sobre-conteudo, .requisitos-imagem, .requisitos-conteudo {
		flex: none;
		width: 100%;
	}

	.sobre-imagem, .requisitos-imagem {
		margin-bottom: 30px;
	}

	.depoimento-card {
		width: calc(50% - 15px);
	}

	.rodape-coluna {
		width: calc(50% - 15px);
	}
}

@media (max-width: 768px) {
	.cabecalho-container {
		padding: 0 20px;
	}

	.menu {
		display: none;
		position: absolute;
		top: 70px;
		left: 0;
		right: 0;
		background-color: white;
		flex-direction: column;
		box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
		padding: 20px 0;
	}

	.menu.ativo {
		display: flex;
	}

	.menu-item {
		margin: 10px 0;
		text-align: center;
	}

	.menu-mobile {
		display: block;
	}

	.hero-titulo {
		font-size: 32px;
	}

	.hero-subtitulo {
		font-size: 18px;
	}

	.recurso-card {
		width: 100%;
	}

	.depoimento-card {
		width: 100%;
	}

	.rodape-coluna {
		width: 100%;
	}
}

@media (max-width: 576px) {
	.hero {
		min-height: 400px;
	}

	.hero-titulo {
		font-size: 28px;
	}

	.hero-subtitulo {
		font-size: 16px;
	}

	.secao-titulo {
		font-size: 26px;
	}

	.botao-primario {
		width: 100%;
		text-align: center;
	}
}
/* Seção de Planos */
.planos {
	padding: 80px 0;
	background-color: #f9f9f9;
}

.planos-cabecalho {
	text-align: center;
	max-width: 980px;
	margin: 0 auto 60px;
}

.planos-descricao {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 20px;
	line-height: 1.4;
	color: #333;
	text-align: center;
}

.planos-subtitulo {
	font-size: 16px;
	line-height: 1.6;
	color: #555;
	margin-bottom: 30px;
}

.planos-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
}

.plano-card {
	width: 270px;
	background-color: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	position: relative;
}

.plano-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.plano-cabecalho {
	padding: 20px;
	text-align: center;
	color: white;
}

.plano-cabecalho.bronze {
    background-color: #6d4c1b !important; /* Bronze escuro */
    color: #fff !important;
}

.prata {
	background-color: #3253e8;
}

.ouro {
	background-color: #000000;
}

.diamante {
	background-color: #2240c9;
}

.plano-nome {
	font-size: 28px;
	font-weight: bold;
	margin-bottom: 5px;
    color: #fff !important;
    text-shadow: 1px 1px 2px #000;
}

.plano-periodo {
	font-size: 14px;
	text-transform: uppercase;
    color: #fff !important;
    text-shadow: 1px 1px 2px #000;
}

.plano-conteudo {
	padding: 30px 20px;
	text-align: center;
}

.plano-preco {
	margin-bottom: 5px;
	font-weight: bold;
}

.moeda {
	font-size: 18px;
	vertical-align: top;
	display: inline-block;
	margin-top: 7px;
}

.valor {
	font-size: 42px;
}

.plano-periodo-pagamento {
	margin-bottom: 25px;
	font-size: 14px;
	color: #666;
}

.plano-recursos {
	list-style: none;
	margin-bottom: 30px;
	text-align: left;
}

.plano-recursos li {
	margin-bottom: 12px;
	font-size: 14px;
	padding-bottom: 12px;
	border-bottom: 1px solid #eee;
	display: flex;
	align-items: center;
}

.plano-recursos li:last-child {
	border-bottom: none;
}

.plano-recursos i {
	color: #28a745;
	margin-right: 10px;
	font-size: 16px;
}

.botao-plano {
	display: block;
	background-color: #1a1a1a;
	color: #fff;
	padding: 15px;
	border-radius: 25px;
	text-decoration: none;
	font-weight: bold;
	margin-bottom: 10px;
	transition: background-color 0.3s;
}

.botao-plano:hover {
	background-color: #333;
}

.plano-contato {
	font-size: 12px;
	color: #222 !important;
    background: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
    margin-top: 8px;
}

.plano-tag {
	position: absolute;
	top: 0;
	right: 0;
	background-color: #A52A2A;
	color: white;
	padding: 5px 15px;
	font-size: 12px;
	font-weight: bold;
	transform: rotate(45deg) translateX(15px) translateY(-10px);
	width: 120px;
	text-align: center;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
	z-index: 1;
}

.destaque {
	transform: scale(1.05);
	z-index: 2;
}

.destaque:hover {
	transform: scale(1.05) translateY(-10px);
}

/* Responsividade para planos */
@media (max-width: 1200px) {
	.planos-container {
		gap: 15px;
	}
	
	.plano-card {
		width: calc(50% - 15px);
		max-width: 280px;
	}
	
	.destaque {
		transform: scale(1.03);
	}
	
	.destaque:hover {
		transform: scale(1.03) translateY(-10px);
	}
}

@media (max-width: 768px) {
	.planos-descricao {
		font-size: 20px;
	}
	
	.plano-card {
		width: 100%;
		max-width: 320px;
		margin-bottom: 20px;
	}
	
	.destaque {
		transform: none;
	}
	
	.destaque:hover {
		transform: translateY(-10px);
	}
}

@media (max-width: 576px) {
	.planos {
		padding: 50px 0;
	}
	
	.planos-descricao {
		font-size: 18px;
	}
	
	.plano-nome {
		font-size: 24px;
	}
	
	.valor {
		font-size: 36px;
	}
}

/* Seção de Vantagens do Teste */
.vantagens-teste {
	padding: 70px 0;
	background-color: #ffffff;
}

.vantagens-intro {
	font-size: 18px;
	line-height: 1.6;
	max-width: 100%;
	margin: 0 auto 40px;
	text-align: center;
	color: #444;
}

.vantagens-lista {
	counter-reset: vantagem-contador;
	list-style: none;
	max-width: 100%;
	margin: 0 auto;
	padding: 0;
}

.vantagem-item {
	position: relative;
	margin-bottom: 30px;
	padding: 20px 20px 20px 70px;
	background-color: #f9f9f9;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vantagem-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.vantagem-item::before {
	counter-increment: vantagem-contador;
	content: counter(vantagem-contador);
	position: absolute;
	left: 20px;
	top: 20px;
	width: 36px;
	height: 36px;
	background-color: #A52A2A;
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 18px;
}

.vantagem-titulo {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 10px;
	color: #333;
}

.vantagem-descricao {
	font-size: 16px;
	line-height: 1.5;
	color: #555;
}

.vantagens-cta {
	text-align: center;
	margin-top: 40px;
}

/* Estilos responsivos */
@media (max-width: 768px) {
	.vantagens-teste {
		padding: 50px 0;
	}
	
	.vantagens-intro {
		font-size: 16px;
		padding: 0 20px;
	}
	
	.vantagem-item {
		padding: 15px 15px 15px 60px;
	}
	
	.vantagem-item::before {
		left: 15px;
		top: 15px;
		width: 30px;
		height: 30px;
		font-size: 16px;
	}
	
	.vantagem-titulo {
		font-size: 16px;
	}
	
	.vantagem-descricao {
		font-size: 14px;
	}
}

@media (max-width: 576px) {
	.vantagem-item {
		padding: 15px 15px 15px 50px;
	}
	
	.vantagem-item::before {
		width: 24px;
		height: 24px;
		font-size: 14px;
	}
}
/* CTA Banner Estilizado */
.cta-banner {
	background: linear-gradient(90deg, #2240c9 0%, #A52A2A 100%);
	padding: 60px 0;
	position: relative;
	overflow: hidden;
}

.cta-banner::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml;charset=utf-8,%3Csvg xmlns="http://www.w3.org/2000/svg" width="1440" height="200" viewBox="0 0 1440 200"%3E%3Cpath fill="%23ffffff" fill-opacity="0.05" d="M0,192L48,181.3C96,171,192,149,288,133.3C384,117,480,107,576,112C672,117,768,139,864,138.7C960,139,1056,117,1152,112C1248,107,1344,117,1392,122.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"%3E%3C/path%3E%3C/svg%3E') bottom center/cover no-repeat;
	z-index: 0;
}

.cta-conteudo {
	position: relative;
	z-index: 1;
	text-align: center;
	max-width: 900px;
	margin: 0 auto;
	padding: 0 20px;
}

.cta-titulo {
	color: #ffffff;
	font-size: 32px;
	line-height: 1.4;
	margin-bottom: 30px;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
	font-weight: 700;
}

.botao-destaque {
	display: inline-block;
	background-color: #ffffff;
	color: #A52A2A;
	padding: 15px 30px;
	border-radius: 50px;
	font-size: 16px;
	font-weight: bold;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.3s ease;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	position: relative;
	overflow: hidden;
}

.botao-destaque::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transition: all 0.6s ease;
}

.botao-destaque:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
	background-color: #f9f9f9;
}

.botao-destaque:hover::before {
	left: 100%;
}
.como-funciona *{
	margin-bottom:20px;
}

/* Responsividade para o CTA */
@media (max-width: 768px) {
	.cta-banner {
		padding: 50px 0;
	}
	
	.cta-titulo {
		font-size: 26px;
	}
	
	.botao-destaque {
		padding: 12px 25px;
		font-size: 14px;
	}
}

@media (max-width: 576px) {
	.cta-banner {
		padding: 40px 0;
	}
	
	.cta-titulo {
		font-size: 22px;
		margin-bottom: 25px;
	}
	
	.botao-destaque {
		width: 100%;
		padding: 15px 20px;
	}
}
.teste-iptv .teste-subtitulo {
    text-align: center;
    font-size: 20px;
    color: #666;
    margin-bottom: 40px;
}

.teste-intro {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.teste-beneficios, 
.teste-como-funciona {
    width: 48%;
}

.teste-beneficios ul,
.teste-como-funciona ol {
    list-style: none;
    padding: 0;
}

.teste-beneficios li,
.teste-como-funciona li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.teste-beneficios li i,
.teste-como-funciona li::marker {
    color: #A52A2A;
    margin-right: 10px;
    font-size: 20px;
}

.teste-detalhes {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.teste-detalhes p {
    margin-bottom: 10px;
}

.teste-detalhes i {
    color: #A52A2A;
    margin-right: 10px;
}

.teste-cta {
    text-align: center;
    margin-bottom: 40px;
}

.dispositivos-lista {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.dispositivo-item {
    text-align: center;
    width: 150px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    margin-bottom: 20px;
}

.dispositivo-item i {
    font-size: 40px;
    color: #A52A2A;
    margin-bottom: 10px;
}

/* Responsividade */
@media (max-width: 768px) {
    .teste-intro {
        flex-direction: column;
    }
    
    .teste-beneficios, 
    .teste-como-funciona {
        width: 100%;
        margin-bottom: 30px;
    }
}
.contato-container {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.contato-informacoes {
    width: 40%;
}

.contato-formulario {
    width: 55%;
}

.contato-info-card {
    display: flex;
    align-items: center;
    background-color: #f9f9f9;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.contato-icone {
    font-size: 40px;
    color: #A52A2A;
    margin-right: 20px;
    width: 70px;
    text-align: center;
}

.contato-detalhes h3 {
    margin-bottom: 10px;
    color: #333;
}

.contato-detalhes p {
    margin: 5px 0;
    color: #666;
}

.contato-social {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.contato-social h3 {
    margin-bottom: 15px;
    color: #333;
}

.formulario-grupo {
    margin-bottom: 20px;
}

.formulario-grupo label {
    display: block;
    margin-bottom: 8px;
    color: #333;
}

.formulario-grupo input, 
.formulario-grupo select, 
.formulario-grupo textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: border-color 0.3s ease;
}

.formulario-grupo input:focus, 
.formulario-grupo select:focus, 
.formulario-grupo textarea:focus {
    border-color: #A52A2A;
    outline: none;
}

.formulario-grupo textarea {
    height: 150px;
    resize: vertical;
}

.checkbox-grupo {
    display: flex;
    align-items: center;
}

.checkbox-grupo input {
    width: auto;
    margin-right: 10px;
}

.mapa-localizacao {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.mapa-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Responsividade */
@media (max-width: 992px) {
    .contato-container {
        flex-direction: column;
    }
    
    .contato-informacoes, 
    .contato-formulario {
        width: 100%;
    }
    
    .contato-formulario {
        margin-top: 40px;
    }
}

@media (max-width: 576px) {
    .contato-info-card {
        flex-direction: column;
        text-align: center;
    }
    
    .contato-icone {
        margin-right: 0;
        margin-bottom: 15px;
    }
}
.planos-conteudo-adicional {
    background-color: #f9f9f9;
    padding: 40px 20px;
    border-radius: 10px;
    margin-top: 40px;
    text-align: center;
}

.teste-iptv-introducao p {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.6;
}

.teste-iptv-beneficios {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin: 30px 0;
}

.teste-iptv-beneficios h3 {
    color: #333;
    margin-bottom: 20px;
}

.teste-iptv-beneficios ul {
    list-style: none;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.teste-iptv-beneficios li {
    margin: 10px;
    color: #666;
    display: flex;
    align-items: center;
}

.teste-iptv-beneficios li::before {
    content: '✓';
    color: #A52A2A;
    margin-right: 10px;
    font-weight: bold;
}

.faq-planos {
    background-color: #ffffff;
    padding: 60px 0;
}

/* Responsividade */
@media (max-width: 768px) {
    .teste-iptv-beneficios ul {
        flex-direction: column;
        align-items: center;
    }
}
.conteudo-iptv {
    background-color: #f9f9f9;
    padding: 60px 0;
}

.conteudo-iptv .secao-conteudo {
    max-width: 800px;
    margin: 0 auto;
}

.conteudo-iptv .texto-introducao,
.conteudo-iptv .secao-topico {
    margin-bottom: 30px;
}

.conteudo-iptv .texto-introducao p,
.conteudo-iptv .secao-topico p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #555;
}

.conteudo-iptv .subtitulo {
    color: #A52A2A;
    margin-bottom: 20px;
    font-size: 24px;
    border-bottom: 2px solid #A52A2A;
    padding-bottom: 10px;
}

@media (max-width: 768px) {
    .conteudo-iptv {
        padding: 30px 15px;
    }

    .conteudo-iptv .subtitulo {
        font-size: 20px;
    }
}

/* Blog - Grid e Layout */
.lista-blog .row,
.posts-relacionados .row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.card-post,
.card-post-relacionado {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-post:hover,
.card-post-relacionado:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.card-post img,
.card-post-relacionado img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-post .conteudo-card,
.card-post-relacionado a {
    padding: 15px;
    display: block;
}

.card-post h3,
.card-post-relacionado h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.data-post {
    color: #777;
    font-size: 14px;
}

/* Página de Detalhe do Post */
.blog-detalhes .imagem-destaque {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}
.blog-detalhes h2, .blog-detalhes h3, .blog-detalhes h4{margin-bottom:1em;}

.meta-post {
    margin-bottom: 20px;
    color: #666;
    font-size: 14px;
}

.conteudo-post .texto-post {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #333;
}

/* Posts Relacionados */
.posts-relacionados {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

/* Responsividade */
@media (max-width: 1200px) {
    .lista-blog .row,
    .posts-relacionados .row {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .lista-blog .row,
    .posts-relacionados .row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .lista-blog .row,
    .posts-relacionados .row {
        grid-template-columns: 1fr;
    }

    .blog-detalhes .imagem-destaque {
        max-height: 300px;
    }
}

/* Hero Interno */
.hero-interna {
    background-color: #f9f9f9;
    padding: 60px 0;
    text-align: center;
}

.hero-interna .hero-titulo {
    font-size: 36px;
    color: #333;
}

.hero-interna .hero-subtitulo {
    font-size: 18px;
    color: #666;
    margin-top: 10px;
}
.card-post a, .card-post-relacionado a {text-decoration:none;}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #0C642F;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float:hover {
    background-color: #042511;
    transform: scale(1.1);
}

.whatsapp-my-float {
    margin-top: 16px;
}

.whatsapp-text-button {
    position: fixed;
    width: auto;
    height: auto;
    bottom: 40px;
    right: 40px;
    background-color: #0C642F;
    color: #FFF;
    border-radius: 10px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    padding: 10px 15px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    transition: all 0.3s;
	text-decoration:none;display:flex;align-items:center;
	line-height:30px;
}
.whatsapp-text-button i{margin-right:5px;}

.whatsapp-text-button:hover {
    background-color: #042511;
    transform: scale(1.05);
}

/* Para dispositivos móveis */
@media screen and (max-width: 767px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
    
    .whatsapp-text-button {
        bottom: 20px;
        right: 80px;
        font-size: 14px;
        padding: 8px 12px;
    }
}