/* ==================================================================== */
/* 00. CONFIGURAÇÕES GLOBAIS E RESET */
/* ==================================================================== */

:root {
	--color-blue: #121858;
	--color-orange: #ff8a00;
	--color-dark-grey: #272727;
	--color-light-grey: #efefee;
	--color-white: #ffffff;
	--color-black: #000000;
	--font-heading: 'Oswald', sans-serif;
	--font-body: 'Lato', sans-serif;

	--spacing-xs: 1rem;
	--spacing-sm: 1.5rem;
	--spacing-md: 3rem;
	--spacing-lg: 5rem;
}

*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	font-size: 62.5%;
	overflow-x: hidden;
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-body);
	background-color: var(--color-white);
	color: var(--color-dark-grey);
	line-height: 1.6;
	overflow-x: hidden;
	width: 100%;
	font-size: 1.6rem;
}

.heading-oswald {
	font-family: var(--font-heading) !important;
}

/* ==================================================================== */
/* 01. ESTRUTURA E LAYOUT */
/* ==================================================================== */

.container {
	margin: 0 auto;
	padding: 0 var(--spacing-sm);
	width: 100%;
}

.column-100 {
	width: 100%;
}
.column-33 {
	width: 33.33%;
}

.column-100,
.column-33 {
	padding: var(--spacing-sm);
}

/* ==================================================================== */
/* 02. ESTILOS DE COMPONENTES E SEÇÕES */
/* ==================================================================== */

.heading-black {
	color: var(--color-black);
	text-align: center;
	margin: 1rem 0;
}

/* --- LOGO E BOTOES --- */

.logo-bar {
	padding: var(--spacing-sm) 0;
	position: relative;
	z-index: 5;
	box-shadow: inset 0 0 10rem 10rem rgba(0, 0, 0, 0.7);
}

.logo-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 0;
}

.logo-online-fox-tv {
	text-align: center;
}

.logo-online-fox-tv img {
	max-width: 30rem;
	height: auto;
	display: inline-block;
}

.widget-button {
	text-align: center;
}

.cta-button {
	display: inline-block;
	color: var(--color-white);
	text-decoration: none;
	text-align: center;
	padding: 1.5rem 4rem;
	font-size: 3.1rem;
	border: 0.1rem solid transparent;
	font-weight: 700;
	font-family: var(--font-heading);
	text-transform: uppercase;
	transition: transform 0.3s ease, background-color 0.3s ease;
}

.cta-button:hover {
	transform: scale(1.05);
	filter: brightness(1.1);
}

.btn-round-250 {
	border-radius: 25rem;
}

.btn-main {
	background-color: var(--color-orange);
	border-color: var(--color-orange);
	margin-top: var(--spacing-lg);
	padding: 2.1rem 4rem;
	font-size: 3.1rem;
}
.btn-main:hover {
	background-color: var(--color-dark-grey);
	border-color: var(--color-dark-grey);
}

/* --- VÍDEO PROMOCIONAL NO TOPO --- */
.widget-video {
	text-align: center;
	width: 100%;
	max-width: 650px;
	margin: var(--spacing-sm) auto var(--spacing-md) auto;
	max-width: 65rem;
	width: 90%;
	border-radius: 0.8rem;
	overflow: hidden;
}
.widget-video video {
	width: 100%;
	height: auto;
	display: block;
}

/* ------------------------------------------- */
/* SECTION HERO (TOPO) */
/* ------------------------------------------- */
.section-hero {
	background-image: url('images/fundo-streaming.png');
	background-size: cover;
	background-position: center center;
	background-attachment: fixed;
	background-color: var(--color-blue);
	position: relative;
	padding: 0 0 var(--spacing-md) 0;
	text-align: center;
	z-index: 1;
}

.section-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 2;
}

.hero-content,
.logo-content {
	position: relative;
	z-index: 3;
}

.editor-1 p {
	color: var(--color-orange);
	font-size: 3rem;
	font-weight: 700;
	margin-top: 1rem;
	margin-bottom: 2rem;
	text-shadow: 0.1rem 0.1rem 0.3rem rgba(0, 0, 0, 0.5);
	text-align: center !important;
}

.main-title {
	color: var(--color-white);
	font-size: 5rem;
	padding-bottom: 2.5rem;
	line-height: 1.2;
}

/* ------------------------------------------- */
/* SECTION: IPTV BENEFITS */
/* ------------------------------------------- */
.iptv-benefits-section-wrapper {
	padding: 8rem var(--spacing-sm);
	background-color: var(--color-blue);
	background-image: linear-gradient(to bottom, var(--color-blue), #0e1245);
}
.container-iptv-benefits {
	max-width: 120rem;
	margin: 0 auto;
	width: 100%;
}
.iptv-benefits-header {
	text-align: center;
	margin-bottom: var(--spacing-lg);
}
.iptv-benefits-header h2 {
	font-family: var(--font-heading);
	font-size: 2.5rem;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--color-white);
	margin-bottom: var(--spacing-sm);
	letter-spacing: 0.1rem;
}
.iptv-benefits-highlight {
	color: var(--color-orange);
}
.iptv-benefits-lead {
	font-family: var(--font-body);
	font-size: 1.8rem;
	color: var(--color-light-grey);
	max-width: 70rem;
	margin: 0 auto;
	opacity: 0.9;
}

.iptv-benefits-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--spacing-md);
}

.iptv-benefits-card {
	background-color: var(--color-blue);
	padding: var(--spacing-md);
	border-radius: 0.8rem;
	border: 0.2rem solid var(--color-dark-grey);
	text-align: left;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}
.iptv-benefits-card:hover {
	transform: translateY(-0.5rem);
	border-color: var(--color-orange);
	box-shadow: 0 1rem 3rem -1rem rgba(255, 138, 0, 0.4);
}
.iptv-benefits-icon-wrapper {
	font-size: 3rem;
	margin-bottom: var(--spacing-sm);
	display: inline-block;
	color: var(--color-orange);
}
.iptv-benefits-card h3 {
	font-family: var(--font-heading);
	font-size: 1.8rem;
	font-weight: 500;
	color: var(--color-white);
	margin-bottom: var(--spacing-xs);
	text-transform: uppercase;
}
.iptv-benefits-card p {
	font-family: var(--font-body);
	color: var(--color-light-grey);
	font-size: 1.6rem;
}

.iptv-benefits-cta-wrapper {
	text-align: center;
	margin-top: var(--spacing-lg);
}

/* ------------------------------------------- */
/* SECTION: DEPOIMENTOS / PROVA SOCIAL (PARALLAX) */
/* ------------------------------------------- */
.section-testimonials {
	background-image: url('images/fundo-fox.png');
	background-size: cover;
	background-position: center center;
	background-attachment: fixed;
	position: relative;
	z-index: 1;
	padding: 8rem var(--spacing-sm);
}

.section-testimonials::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.85);
	z-index: 2;
}
.container-testimonials {
	position: relative;
	z-index: 3;
	max-width: 120rem;
}
.testimonial-title {
	font-size: 3.8rem;
	color: var(--color-dark-grey);
	text-align: center;
	margin-bottom: var(--spacing-md);
	line-height: 1.2;
}
.testimonial-icon {
	color: var(--color-orange);
	margin: 0 1rem;
}
.review-score {
	text-align: center;
	margin-bottom: var(--spacing-lg);
}
.review-score i {
	color: var(--color-orange);
	font-size: 2.4rem;
	margin: 0 0.2rem;
}
.review-score p {
	font-size: 1.8rem;
	font-weight: 700;
	margin-top: 1rem;
	color: var(--color-dark-grey);
}
.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--spacing-md);
}
.testimonial-card {
	background-color: var(--color-white);
	padding: var(--spacing-md);
	border-radius: 0.8rem;
	box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.1);
	transition: transform 0.3s;
}
.testimonial-card:hover {
	transform: translateY(-0.5rem);
}
.testimonial-header {
	display: flex;
	align-items: center;
	margin-bottom: var(--spacing-sm);
}
.testimonial-avatar {
	width: 6rem;
	height: 6rem;
	border-radius: 50%;
	object-fit: cover;
	margin-right: var(--spacing-sm);
	border: 0.2rem solid var(--color-orange);
}
.testimonial-info h4 {
	font-family: var(--font-heading);
	font-size: 1.8rem;
	color: var(--color-blue);
	margin-bottom: 0.5rem;
}
.testimonial-stars i {
	color: var(--color-orange);
	font-size: 1.4rem;
}
.testimonial-card p {
	font-style: italic;
	font-size: 1.6rem;
	color: #555;
	line-height: 1.5;
}

/* ------------------------------------------- */
/* SECTION: TV BOX (QUEBRA DE OBJEÇÃO) */
/* ------------------------------------------- */
.section-tv-box-objection-break {
	background-color: var(--color-dark-grey);
	padding: var(--spacing-lg) 0;
	text-align: center;
}

.tv-box-image-wrapper {
	text-align: center;
	margin-bottom: 0;
}

.tv-box-image {
	max-width: 90rem;
	width: 80%;
	height: auto;
	display: inline-block;
}

.tv-box-icon {
	color: var(--color-orange);
	font-size: 1.1em;
	margin-right: 1rem;
}

.tv-box-heading {
	font-family: var(--font-heading);
	font-size: 3.8rem;
	font-weight: 700;
	color: var(--color-white);
	text-transform: uppercase;
	margin-top: 0;
	margin-bottom: var(--spacing-xs);
	line-height: 1.1;
	padding-bottom: var(--spacing-md);
}

.tv-box-subheading {
	font-family: var(--font-body);
	font-size: 2.4rem;
	color: var(--color-white);
	margin-bottom: var(--spacing-md);
}

.tv-box-explanation {
	font-family: var(--font-body);
	font-size: 1.8rem;
	color: var(--color-light-grey);
	max-width: 80rem;
	margin: var(--spacing-md) auto;
	padding: var(--spacing-sm) var(--spacing-md);
	border: 0.2rem solid var(--color-orange);
	border-radius: 1rem;
	background-color: #383838;
	text-align: center;
}

.section-tv-box-objection-break .cta-button {
	margin-top: 0;
	padding: 1.5rem 3rem;
	font-size: 2.4rem;
}

/* ------------------------------------------- */
/* SECTION: FAQ (PERGUNTAS FREQUENTES) */
/* ------------------------------------------- */
.section-faq {
	padding: var(--spacing-lg) var(--spacing-sm);
	background-color: var(--color-white);
}
.container-faq {
	max-width: 90rem;
	margin: 0 auto;
}
.faq-title {
	font-size: 3.5rem;
	color: var(--color-dark-grey);
	text-align: center;
	margin-bottom: var(--spacing-lg);
	text-transform: uppercase;
}
.faq-accordion {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}
.faq-item {
	border: 0.1rem solid var(--color-light-grey);
	border-radius: 0.8rem;
	overflow: hidden;
}
.faq-checkbox {
	display: none;
}
.faq-question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.8rem 2.5rem;
	background-color: var(--color-blue);
	color: var(--color-white);
	cursor: pointer;
	font-size: 1.8rem;
	font-weight: 700;
	transition: background-color 0.3s;
}
.faq-question:hover {
	background-color: #0e1245;
}
.faq-question i {
	transition: transform 0.3s;
	color: var(--color-orange);
}
.faq-answer {
	max-height: 0;
	line-height: 1.8;
	font-size: 1.5rem;
	overflow: hidden;
	padding: 0 2.5rem;
	background-color: #f7f7f7;
	color: #333;
	transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}
.faq-checkbox:checked ~ .faq-answer {
	max-height: 20rem;
	padding: 1.5rem 2.5rem;
}
.faq-checkbox:checked ~ .faq-question i {
	transform: rotate(180deg);
}

/* ------------------------------------------- */
/* SECTION: SUPORTE CTA (BOTÃO WHATSAPP) */
/* ------------------------------------------- */
.section-support-cta {
	background-color: var(--color-blue);
	padding: var(--spacing-lg) var(--spacing-sm);
	text-align: center;
	color: var(--color-white);
}

.support-cta-title {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: var(--spacing-xs);
	text-transform: uppercase;
	color: var(--color-orange);
}

.support-cta-subtitle {
	font-size: 1.8rem;
	margin-bottom: var(--spacing-md);
	max-width: 60rem;
	margin-left: auto;
	margin-right: auto;
}

.btn-whatsapp {
	background-color: #25d366;
	border-color: #25d366;
	margin-top: 0 !important;
	font-size: 2.6rem !important;
	padding: 1.8rem 3.5rem !important;
}

.btn-whatsapp:hover {
	background-color: #128c7e;
	border-color: #128c7e;
}

.btn-whatsapp i {
	margin-right: 1rem;
}

/* ------------------------------------------- */
/* SECTION: CARROSSEL */
/* ------------------------------------------- */
.heading-carousel-title {
	color: var(--color-light-grey);
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 0;
}

.carousel-content-highlight {
	font-family: var(--font-heading);
	font-size: 2.8rem;
	font-weight: 700;
	color: var(--color-orange);
	text-align: center;
	margin-bottom: var(--spacing-sm);
	margin-top: var(--spacing-xs);
	text-transform: uppercase;
}

.new-swiper-section-wrapper {
	position: relative;
	width: 100%;
	padding: var(--spacing-lg) 0;
	background-color: var(--color-black);
}

.swiper-new-carousel {
	width: 100%;
	padding-top: 5rem;
	padding-bottom: 5rem;
	margin: 0 auto;
	cursor: grab;
}

.swiper-slide {
	width: 35rem;
	height: 45rem;
	box-shadow: 0 1.5rem 5rem rgba(0, 0, 0, 0.2);
	filter: blur(0.1rem);
	border-radius: 1rem;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-start;
	overflow: hidden;
	background-color: transparent !important;
}

.swiper-slide-active {
	filter: blur(0px);
}

.swiper-pagination {
	display: none;
}

.swiper-slide span {
	text-transform: uppercase;
	color: var(--color-white);
	background: var(--color-orange);
	padding: 0.7rem 1.8rem 0.7rem 2.5rem;
	display: inline-block;
	border-radius: 0 2rem 2rem 0rem;
	letter-spacing: 0.2rem;
	font-size: 1.6rem;
	font-family: var(--font-body);
	font-weight: 600;
}

.swiper-slide h2 {
	color: var(--color-white);
	font-family: var(--font-body);
	font-weight: 500;
	font-size: 1.8rem;
	line-height: 1.4;
	margin-bottom: 1.5rem;
	padding: 2.5rem 4.5rem 0 2.5rem;
	text-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.8);
}

.swiper-slide p {
	color: var(--color-white);
	font-family: var(--font-body);
	font-weight: 400;
	display: flex;
	align-items: center;
	padding: 0 2.5rem 3.5rem 2.5rem;
	text-shadow: 0 0 0.3rem rgba(0, 0, 0, 0.8);
}

.swiper-slide svg {
	color: var(--color-white);
	width: 2.2rem;
	height: 2.2rem;
	margin-right: 0.7rem;
}

/* --- DEFINIÇÃO DAS IMAGENS DE FUNDO --- */
.swiper-slide--one {
	background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent 70%),
		url('images/carousel/01.jpg') no-repeat 50% 50% / cover;
}
.swiper-slide--two {
	background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent 70%),
		url('images/carousel/02.jpg') no-repeat 50% 50% / cover;
}
.swiper-slide--three {
	background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent 70%),
		url('images/carousel/03.jpeg') no-repeat 50% 50% / cover;
}
.swiper-slide--four {
	background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent 70%),
		url('images/carousel/04.jpg') no-repeat 50% 50% / cover;
}
.swiper-slide--five {
	background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent 70%),
		url('images/carousel/05.webp') no-repeat 50% 50% / cover;
}
.swiper-slide--six {
	background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent 70%),
		url('images/carousel/06.avif') no-repeat 50% 50% / cover;
}
.swiper-slide--seven {
	background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent 70%),
		url('images/carousel/07.png') no-repeat 50% 50% / cover;
}
.swiper-slide--eight {
	background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent 70%),
		url('images/carousel/poster_ufc_div.jpg_30.webp') no-repeat 50% 50% / cover;
}
.swiper-slide--nine {
	background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent 70%),
		url('images/carousel/08.png') no-repeat 50% 50% / cover;
}
.swiper-slide--ten {
	background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent 70%),
		url('images/carousel/09.jpg') no-repeat 50% 50% / cover;
}
.swiper-slide--twelve {
	background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent 70%),
		url('images/carousel/11.jpg') no-repeat 50% 50% / cover;
}

/* ------------------------------------------- */
/* SECTION: CTA APÓS CARROSSEL */
/* ------------------------------------------- */
.section-cta-after-carousel {
	padding: var(--spacing-md) 0;
	text-align: center;
	background-color: var(--color-black);
}

.cta-price-highlight {
	font-family: var(--font-heading);
	font-size: 2.8rem;
	font-weight: 700;
	color: var(--color-white);
	text-align: center;
	margin-bottom: var(--spacing-lg);
	text-transform: uppercase;
	line-height: 1.2;
}

.cta-price-highlight .price-value-emphasis {
	font-size: 5rem;
	font-weight: 900;
	color: var(--color-orange);
	display: inline-block;
	padding: 0 0.5rem;
	text-shadow: 0.2rem 0.2rem 0.5rem rgba(0, 0, 0, 0.4);
}

.cta-price-highlight .price-disclaimer {
	display: block;
	font-family: var(--font-body);
	font-size: 1.4rem;
	font-weight: 400;
	text-transform: none;
	color: var(--color-light-grey);
	margin-top: 1rem;
	line-height: 1.5;
}

/* ------------------------------------------- */
/* NOVO ESTILO: CONTADOR REGRESSIVO */
/* ------------------------------------------- */

.timer-style {
	text-align: center;
	margin-top: 3rem;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 3rem;
	padding: 1.5rem 1rem;
	background-color: #e74c3c;
	border-radius: 0.8rem;
	box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.5);
	color: var(--color-white);
	font-family: var(--font-heading);
	letter-spacing: 0.1rem;
	max-width: 50rem;
	border: 2px dashed rgba(255, 255, 255, 0.4);
	animation: pulse-border 2s infinite;
}

.timer-style p {
	font-size: 2.8rem;
	font-weight: 700;
	margin-bottom: 1rem;
	line-height: 1.1;
	text-transform: uppercase;
}

.timer-style .time-unit {
	display: inline-block;
	margin: 0 1rem;
	font-size: 4.5rem;
	font-weight: 900;
}

.timer-style .time-label {
	display: block;
	font-size: 1.4rem;
	font-weight: 400;
	text-transform: uppercase;
	margin-top: -0.5rem;
}

@keyframes pulse-border {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.02);
	}
	100% {
		transform: scale(1);
	}
}

/* ------------------------------------------- */
/* SECTION: REVENDEDORES / PARCEIROS */
/* ------------------------------------------- */
.section-reseller-cta {
	background-color: var(--color-orange);
	background-image: linear-gradient(to right, #ff8a00, #ffb84d);
	padding: var(--spacing-lg) var(--spacing-sm);
	text-align: center;
	color: var(--color-white);
}

.reseller-title {
	font-size: 4rem;
	font-weight: 900;
	margin-bottom: var(--spacing-xs);
	text-transform: uppercase;
	color: var(--color-blue);
	text-shadow: 0.1rem 0.1rem 0 #fff;
}

.reseller-title i {
	margin-right: 1rem;
}

.subtitle-highlight {
	font-family: var(--font-heading);
	font-size: 2.4rem;
	font-weight: 700;
	color: var(--color-dark-grey);
	margin-bottom: 1rem;
	display: block;
}

.reseller-callout {
	font-family: var(--font-heading);
	font-size: 2.8rem;
	font-weight: 700;
	color: #e74c3c;
	margin-bottom: var(--spacing-md);
	display: block;
}

.reseller-benefits-list {
	list-style: none;
	padding: 0;
	max-width: 60rem;
	margin: 0 auto 3rem auto;
	text-align: left;
}

.reseller-benefits-list li {
	font-size: 1.6rem;
	color: var(--color-dark-grey);
	margin-bottom: 0.8rem;
	font-weight: 700;
}

.reseller-benefits-list i {
	color: #25d366;
	margin-right: 1rem;
}

.btn-reseller {
	background-color: #25d366;
	border-color: #25d366;
	margin-top: var(--spacing-sm) !important;
	padding: 1.8rem 4rem !important;
	font-size: 2.8rem !important;
	color: var(--color-white) !important;
}

.btn-reseller:hover {
	background-color: #128c7e;
	border-color: #128c7e;
}

/* ------------------------------------------- */
/* FOOTER (RODAPÉ) */
/* ------------------------------------------- */

.site-footer {
	background-color: var(--color-dark-grey);
	color: var(--color-light-grey);
	padding-top: var(--spacing-lg);
	font-family: var(--font-body);
}

.container-footer {
	max-width: 120rem;
	margin: 0 auto;
	padding: 0 var(--spacing-sm) var(--spacing-lg) var(--spacing-sm);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: var(--spacing-md);
}

.footer-column {
	flex: 1;
	width: 100%;
}

.footer-qrcode {
	text-align: center;
}

.qrcode-container {
	background: #fff;
	padding: 10px;
	border-radius: 10px;
	display: inline-block;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.qrcode-container img {
	width: 110px;
	height: 110px;
	display: block;
}

.qrcode-container p {
	color: #161616;
	font-size: 0.6rem;
	font-weight: bold;
	margin-top: 5px;
}

.footer-logo,
.footer-contact,
.footer-links {
	flex: 1 1 30rem;
	padding: 0 var(--spacing-sm);
}

.footer-logo img {
	max-width: 20rem;
	margin-bottom: var(--spacing-xs);
}

.footer-description {
	font-size: 1.4rem;
	line-height: 1.5;
	color: #aaa;
}

.footer-title {
	font-size: 1.8rem;
	color: var(--color-orange);
	margin-bottom: var(--spacing-sm);
	text-transform: uppercase;
}

.footer-contact p {
	font-size: 1.6rem;
	margin-bottom: 0.5rem;
}

.footer-whatsapp-link {
	color: var(--color-white);
	text-decoration: none;
	font-weight: 700;
	font-size: 1.6rem;
	transition: color 0.3s;
}
.footer-whatsapp-link:hover {
	color: var(--color-orange);
}

.footer-links ul {
	list-style: none;
	padding: 0;
}

.footer-links li {
	margin-bottom: 0.8rem;
}

.footer-links a {
	color: var(--color-light-grey);
	text-decoration: none;
	font-size: 1.5rem;
	transition: color 0.3s;
}

.footer-links a:hover {
	color: var(--color-orange);
}

.footer-bottom {
	border-top: 0.1rem solid #444;
	padding: var(--spacing-sm) 0;
	background-color: var(--color-black);
}

.container-footer-bottom {
	max-width: 120rem;
	margin: 0 auto;
	padding: 0 var(--spacing-sm);
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 1.4rem;
}

.payment-icons i {
	font-size: 2.2rem;
	margin-left: var(--spacing-xs);
	color: var(--color-light-grey);
	opacity: 0.8;
}

.developer-credit a {
	color: var(--color-orange);
	text-decoration: none;
	font-weight: 700;
	transition: color 0.2s;
}

.developer-credit a:hover {
	color: var(--color-white);
}

/* ==================================================================== */
/* 04. RESPONSIVIDADE (MOBILE) */
/* ==================================================================== */

@media (max-width: 768px) {
	.column-100,
	.column-33 {
		width: 100%;
		padding: var(--spacing-xs);
	}

	.text-left-on-desktop * {
		text-align: center !important;
	}

	.section-hero {
		padding: 0 0 var(--spacing-sm) 0;
	}

	.editor-1 p {
		font-size: 2.4rem;
	}

	.main-title {
		font-size: 3rem;
	}

	.btn-main {
		font-size: 2.4rem;
		padding: 2rem 3rem;
		margin-top: var(--spacing-md);
	}

	.logo-online-fox-tv img {
		max-width: 22rem;
	}

	.iptv-benefits-grid {
		grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
	}

	.testimonials-grid {
		grid-template-columns: 1fr;
	}
	.testimonial-title {
		font-size: 3rem;
	}

	.section-tv-box-objection-break .container {
		padding: var(--spacing-md);
	}
	.tv-box-heading {
		font-size: 3rem;
		padding-bottom: var(--spacing-sm);
	}
	.tv-box-subheading {
		font-size: 1.8rem;
	}
	.tv-box-explanation {
		font-size: 1.6rem;
		margin: var(--spacing-sm) auto;
		padding: var(--spacing-sm) var(--spacing-xs);
		max-width: 95%;
	}
	.section-tv-box-objection-break .cta-button {
		font-size: 2rem;
		padding: 1.2rem 2.5rem;
	}
	.tv-box-image {
		width: 100%;
		max-width: 35rem;
	}

	.faq-title {
		font-size: 2.8rem;
	}
	.faq-question {
		font-size: 1.6rem;
		padding: 1.5rem 2rem;
	}

	.support-cta-title {
		font-size: 2.4rem;
	}
	.support-cta-subtitle {
		font-size: 1.6rem;
	}
	.btn-whatsapp {
		font-size: 2.2rem !important;
		padding: 1.5rem 3rem !important;
	}

	.swiper-slide {
		height: 35rem;
		width: 25rem;
	}
	.swiper-new-carousel {
		padding-top: 3rem;
		padding-bottom: 3rem;
	}
	.carousel-content-highlight {
		font-size: 2rem;
	}

	.cta-price-highlight {
		font-size: 2.4rem;
	}
	.cta-price-highlight .price-value-emphasis {
		font-size: 4rem;
	}
	.cta-price-highlight .price-disclaimer {
		font-size: 1.2rem;
	}

	.reseller-title {
		font-size: 3.2rem;
		line-height: 1.2;
	}
	.subtitle-highlight {
		font-size: 2rem;
	}
	.reseller-callout {
		font-size: 2.4rem;
	}
	.reseller-subtitle {
		font-size: 1.6rem;
	}
	.btn-reseller {
		font-size: 2.2rem !important;
		padding: 1.5rem 3rem !important;
	}
	.reseller-benefits-list {
		text-align: center;
		padding: 0 1rem;
	}

	.container-footer {
		flex-direction: column;
		gap: var(--spacing-md);
		padding: var(--spacing-md) var(--spacing-sm);
	}
	.footer-logo,
	.footer-contact,
	.footer-links {
		padding: 0;
		text-align: center;
	}
	.footer-logo img {
		display: block;
		margin: 0 auto 1rem auto;
	}
	.footer-description {
		text-align: center;
	}

	.footer-contact p,
	.footer-whatsapp-link {
		display: block;
	}

	.footer-links ul {
		padding: 0;
		text-align: center;
	}

	.footer-links li {
		display: block;
		margin-bottom: 0.5rem;
	}

	.footer-contact i {
		margin-right: 0.5rem;
	}
	.container-footer-bottom {
		flex-direction: column;
		text-align: center;
	}
	.footer-bottom p {
		margin-bottom: var(--spacing-xs);
		line-height: 1.4;
	}
	.developer-credit {
		display: block;
	}
	.payment-icons {
		margin-top: var(--spacing-xs);
	}
}
