@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Fira+Code:wght@300..700&family=Manrope:wght@200..800&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

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


/* DIV INICIAL - TOPO */

.top {
	position: relative;
	width: 100%;
	margin: 0;
	padding: 20px;

}

.top::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url('./images/top-background.jpeg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;

	filter: brightness(0.3);
	/* escurece levemente */
	z-index: -1;
}


.top>header {
	width: 90%;
	margin: auto;
	display: flex;
	justify-content: space-between;
}

.top>header>.logo {
	width: 4rem;
}

.elements {
	display: flex;
	align-items: center;
	color: white;
}

.elements>a {
	color: rgb(236, 236, 236);
	text-decoration: none;
	font-family: 'Fira Code', sans-serif;
	font-weight: 300;
	margin: 10px;
}

.elements>a::after {
	color: rgb(236, 236, 236);
	text-decoration: none;
}

#menu_button {
	display: none;
}

#baixar_agora {
	background: rgb(1, 252, 1);
	color: black;
	padding: 8px;
	border-radius: 5px;
	font-weight: 600;
}

.video {
	width: 90%;
	margin: auto;
	margin-top: 30px;
}

@media screen and (max-width:800px) {
	.elements {
		display: none;
	}

	#menu_button {
		display: block;
		width: 1.3rem;
	}
}


.menu-overlay {
	font-family: "Chakra Petch", sans-serif;

	position: fixed;
	top: 0;
	right: -100%;
	width: 16rem;
	height: 100vh;
	background-color: rgb(19, 19, 19);
	z-index: 2000;
	transition: right 0.4s ease;
	padding: 40px 24px;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}


.menu-overlay.active {
	right: 0;
}

.menu-overlay .element {
	color: white;
	font-size: 24px;
	margin-bottom: 20px;
	text-decoration: none;
	text-align: start;
}

.menu-overlay .close-btn {
	font-size: 28px;
	color: white;
	cursor: pointer;
	align-self: flex-end;
	margin-bottom: 40px;
}

/* RESPONSIVO */
@media (max-width: 768px) {
	.elements {
		display: none;
	}

	#menu_button {
		display: block;
	}
}

/* Travar scroll quando menu estiver aberto */
body.menu-open {
	overflow: hidden;
}


.responsive-iframe-container {
	position: relative;
	max-width: 800px;
	margin: auto;
	margin-top: 20px;
	padding-bottom: 56.25%;
	/* 16:9 para mobile */
	height: 0;
	overflow: hidden;
	border-radius: 12px;
}

.responsive-iframe-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
}

/* Para telas grandes, limita a altura */
@media (min-width: 768px) {
	.responsive-iframe-container {
		padding-bottom: 0;
		height: 480px;
		/* você pode ajustar conforme sua preferência */
	}

	.responsive-iframe-container iframe {
		height: 100%;
		width: 100%;
	}
}


.video_title {
	font-family: 'Arial', sans-serif;
	text-align: center;
	font-size: 1.4rem;
	color: white
}

.video_play {
	max-width: 90%;
	margin: 10px auto;
	height: 30rem;
	background-color: aqua;
}


#div_users {
	text-align: center;
	color: rgb(0, 255, 0);
	margin-top: 10px;
}

#div_users>svg {
	position: relative;
	top: 3px;
	right: 5px;
}

.payment_method {
	max-width: 300px;
	margin: 10px auto;
	display: flex;
}

/* FIM DIV INICIAL TOPO */


/* DIV 2 */

:root {
	--gaming-black-700: #1a1a1a;
	--gaming-black-800: #121212;
	--gaming-black-900: #0a0a0a;
	--gaming-red-500: #ff2d2d;
	--gaming-red-600: #e60000;
	--neon-green: #00ff5f;

	--gaming-black-700: #1a1a1a;
	--gaming-black-900: #0a0a0a;
	--gaming-red-500: rgba(255, 0, 0, 0.2);
	--neon-green: rgba(0, 255, 95, 0.2);
	--text-silver-900: #cbd5e1;
	--text-silver-700: #94a3b8;
}

.section {
	position: relative;
	padding: 4rem 1rem;
	background: var(--gaming-black-800);
	overflow: hidden;
}

.section .background-layer {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.section .gradient-bg {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(26, 26, 26, 0.3), var(--gaming-black-800), rgba(10, 10, 10, 0.5));
}

.section .circuit-pattern {
	position: absolute;
	inset: 0;
	opacity: 0.05;
}

.section .red-glow {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 24rem;
	height: 0.5rem;
	background: var(--gaming-red-600);
	filter: blur(1rem);
	opacity: 0.3;
}

.dot {
	position: absolute;
	border-radius: 9999px;
	animation: ping 2s infinite;
}

.dot.green {
	background-color: var(--neon-green);
}

.dot.red {
	background-color: var(--gaming-red-500);
}

@keyframes ping {
	0% {
		transform: scale(1);
		opacity: 0.5;
	}

	70% {
		transform: scale(2);
		opacity: 0;
	}

	100% {
		transform: scale(2.5);
		opacity: 0;
	}
}

.container {
	position: relative;
	z-index: 10;
	max-width: 1200px;
	margin: 0 auto;
}

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

.card {
	position: relative;
	background: rgba(26, 26, 26, 0.9);
	backdrop-filter: blur(4px);
	padding: 1.5rem;
	border-radius: 1rem;
	text-align: center;
	border: 1px solid rgba(40, 40, 40, 0.6);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
	overflow: hidden;
	transition: all 0.5s ease;
}

.card:hover {
	transform: translateY(-8px);
	border-color: rgba(200, 30, 30, 0.8);
	box-shadow: 0 12px 32px rgba(255, 0, 0, 0.2);
}

.card .corner {
	position: absolute;
	width: 2rem;
	height: 2rem;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.card:hover .corner {
	opacity: 1;
}

.corner.tl {
	top: 0;
	left: 0;
	border-left: 2px solid rgba(0, 255, 100, 0.4);
	border-top: 2px solid rgba(0, 255, 100, 0.4);
	border-top-left-radius: 1rem;
}

.corner.br {
	bottom: 0;
	right: 0;
	border-right: 2px solid rgba(255, 0, 0, 0.4);
	border-bottom: 2px solid rgba(255, 0, 0, 0.4);
	border-bottom-right-radius: 1rem;
}

.card h3 {
	font-family: Arial, Helvetica, sans-serif;
	margin-top: 1rem;
	color: #00ff00;
	transition: color 0.3s ease;
}

.card:hover h3 {
	color: #00ff8b;
}

.card p {
	margin-top: 10px;
	;
	font-family: Arial, Helvetica, sans-serif;
	color: #c0c0c0;
	font-size: 0.9rem;
	line-height: 1.4;
	transition: color 0.3s ease;
}

.card:hover p {
	color: #d5d5d5;
}

.card .line {
	width: 48px;
	height: 4px;
	background: linear-gradient(to right, var(--gaming-red-500), var(--neon-green));
	margin: 1rem auto 0;
	border-radius: 999px;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.card:hover .line {
	opacity: 1;
}

/* JOGOS */

.jogos>h3 {
	padding: 10px;
	text-align: center;
	margin-top: 30px;
}


.flex-center {
	margin-top: 20px;
	display: flex;
	justify-content: center;
	margin-bottom: 1.5rem;
	/* mb-6 equivale a 1.5rem */
}

/* Animação bounce */
@keyframes bounce {

	0%,
	100% {
		transform: translateY(0);
		animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
	}

	50% {
		transform: translateY(-25%);
		animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
	}
}

/* Animação pulse (opacidade suave) */
@keyframes pulse {

	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0.5;
	}
}

.animate-bounce {
	display: inline-block;
	animation: bounce 2s infinite;
}

.animate-pulse {
	animation: pulse 2s infinite;
	color: #ff1f1f;
	/* cor vermelha similar à classe text-gaming-red-500 */
	stroke: currentColor;
}


.carousel-container {
	max-width: 1200px;
	width: 100%;
	position: relative;

	backdrop-filter: blur(10px);
	border-radius: 20px;
	padding: 40px 20px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.carousel-title {
	text-align: center;
	color: white;
	font-size: 2.5rem;
	margin-bottom: 30px;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.carousel-wrapper {
	position: relative;
	overflow: hidden;
	border-radius: 15px;
	mask: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
	-webkit-mask: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
}

.carousel {
	display: flex;
	transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	gap: 20px;
	padding: 20px 0;
}

.carousel-item {
	flex: 0 0 auto;
	width: 280px;
	height: 500px;
	border-radius: 15px;
	overflow: hidden;
	position: relative;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.carousel-item:hover {
	transform: translateY(-10px) scale(1.05);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.carousel-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.carousel-item:hover img {
	transform: scale(1.1);
}

.carousel-item::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(45deg, rgba(102, 126, 234, 0.8), rgba(118, 75, 162, 0.8));
	opacity: 0;
	transition: opacity 0.3s ease;
}

.carousel-item:hover::after {
	opacity: 1;
}

.carousel-item .item-content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 20px;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
	color: white;
	transform: translateY(100%);
	transition: transform 0.3s ease;
}

.carousel-item:hover .item-content {
	transform: translateY(0);
}

.carousel-item .item-title {
	font-size: 1.2rem;
	font-weight: bold;
	margin-bottom: 5px;
}

.carousel-item .item-description {
	font-size: 0.9rem;
	opacity: 0.9;
}

.carousel-controls {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-top: 30px;
}

.control-btn {
	background: rgba(255, 255, 255, 0.2);
	border: 2px solid rgba(255, 255, 255, 0.3);
	color: white;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.control-btn:hover {
	background: rgba(255, 255, 255, 0.3);
	border-color: rgba(255, 255, 255, 0.5);
	transform: scale(1.1);
}

.control-btn:active {
	transform: scale(0.95);
}

.carousel-indicators {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 20px;
}

.indicator {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
	cursor: pointer;
	transition: all 0.3s ease;
}

.indicator.active {
	background: white;
	transform: scale(1.2);
}

/* Responsividade */
@media (max-width: 768px) {
	.carousel-title {
		font-size: 2rem;
	}

	.carousel-item {
		width: 240px;
		height: 500px;
	}

	.carousel-controls {
		gap: 15px;
	}

	.control-btn {
		width: 50px;
		height: 50px;
		font-size: 1.2rem;
	}
}

@media (max-width: 480px) {
	.carousel-container {
		padding: 20px 10px;
	}

	.carousel-title {
		font-size: 1.5rem;
	}

	.carousel-item {
		width: 200px;
		height: 500px;
	}

	.carousel {
		gap: 15px;
	}
}

/* Animação de entrada */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.carousel-container {
	animation: fadeInUp 0.8s ease-out;
	margin: auto;
}


.section-gaming {
	position: relative;
	background-color: #8b0000;
	/* bg-gaming-red-800 */
	padding: 4rem 1rem;
	overflow: hidden;
	font-family: Arial, Helvetica, sans-serif;
}

.section-gaming .top-gradient,
.section-gaming .bottom-gradient {
	position: absolute;
	left: 0;
	width: 100%;
	height: 4rem;
}

.section-gaming .top-gradient {
	top: 0;
	background: linear-gradient(to bottom, #0d0d0d, transparent);
	/* gaming-black-700 */
}

.section-gaming .bottom-gradient {
	bottom: 0;
	background: linear-gradient(to top, #0d0d0d, transparent);
}

.section-gaming .decoration-1 {
	position: absolute;
	top: 2.5rem;
	right: 2.5rem;
	width: 4rem;
	height: 4rem;
	background: #c0c0c0;
	opacity: 0.1;
	transform: rotate(45deg);
}

.section-gaming .decoration-2 {
	position: absolute;
	bottom: 5rem;
	left: 2.5rem;
	width: 2rem;
	height: 2rem;
	background: #c0c0c0;
	opacity: 0.1;
}

.section-gaming .decoration-3 {
	position: absolute;
	bottom: 33%;
	right: 33%;
	width: 1.5rem;
	height: 1.5rem;
	background: #39ff14;
	opacity: 0.2;
	transform: rotate(12deg);
}

.section-gaming .container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

@media (min-width: 768px) {
	.section-gaming .container {
		flex-direction: row;
		align-items: center;
		padding: 0 1rem;
	}
}

.section-gaming img {
	border-radius: 0.5rem;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
	border: 4px solid #0d0d0d;
	max-width: 100%;
	transition: opacity 0.5s ease;
}

.section-gaming .text-content {
	padding-left: 0;
}

@media (min-width: 768px) {
	.section-gaming .text-content {
		padding-left: 3rem;
	}
}

.section-gaming h2 {
	font-size: 2rem;
	font-weight: bold;
	color: #dcdcdc;
	margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
	.section-gaming h2 {
		font-size: 2.5rem;
	}
}

.section-gaming h2 span {
	color: #39ff14;
	animation: pulse 2s infinite;
}

@keyframes pulse {

	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0.4;
	}
}

.section-gaming p {
	color: #b0b0b0;
	font-size: 1.125rem;
	margin-bottom: 1rem;
}

.section-gaming .mini-review {
	font-size: 0.875rem;
	color: #fff;
	font-style: italic;
	border-left: 4px solid #39ff14;
	padding-left: 1rem;
	background: rgba(13, 13, 13, 0.3);
	padding: 0.5rem 1rem;
	border-radius: 0 0.5rem 0.5rem 0;
}

.image {
	width: 100%;
}

.text-content>h2 {
	font-family: "Chakra Petch", sans-serif;

}

.section-requisitos {
	position: relative;
	padding: 6rem 1rem;
	overflow: hidden;
	background: linear-gradient(to bottom right, #000000, #1a1a1a, #39ff14);
}

.bg-svg-pattern {
	position: absolute;
	inset: 0;
	opacity: 0.1;
	z-index: 0;
}

.float-anim {
	animation: float 6s ease-in-out infinite;
}

@keyframes float {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-10px);
	}
}

.requisitos-container {
	position: relative;
	z-index: 10;
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
}

@media (min-width: 768px) {
	.requisitos-container {
		grid-template-columns: repeat(2, 1fr);
	}
}

.card-requisito {
	background-color: rgba(25, 25, 25, 0.95);
	border: 1px solid rgba(155, 0, 0, 0.4);
	border-radius: 0.75rem;
	padding: 2rem;
	position: relative;
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(6px);
}

.card-requisito h3 {
	color: #ccc;
	font-size: 1.5rem;
	margin-left: 0.75rem;
}

.card-requisito ul {
	list-style: none;
	padding: 0;
	margin-top: 1rem;
}

.card-requisito li {
	font-family: Arial, Helvetica, sans-serif;
	display: flex;
	align-items: flex-start;
	margin-bottom: 0.75rem;
	color: #aaa;
}

.card-requisito li::before {
	content: "\2022";
	color: #990000;
	font-size: 1.2rem;
	margin-right: 0.5rem;
}

.card-note {
	font-family: 'Roboto', sans-serif;
	background-color: rgba(0, 0, 0, 0.7);
	border: 1px solid rgba(155, 0, 0, 0.4);
	padding: 1rem;
	border-radius: 0.5rem;
	font-size: 0.9rem;
	color: #ccc;
}

.card-note>strong {
	color: rgb(0, 255, 0);
}

section#oferta {
	position: relative;
	padding: 4rem 1rem;
	overflow: hidden;
	background: linear-gradient(135deg, rgb(53 0 0), #111111);
}

.alerta {
	background: rgb(83, 0, 0);
	padding: 0.75rem;
	margin-bottom: 2rem;
	text-align: center;
	color: white;
	font-weight: bold;
	font-family: 'Roboto', sans-serif;
}

.container {
	max-width: 1100px;
	margin: auto;
	position: relative;
	z-index: 10;
}

.caixa-oferta {
	background: rgba(20, 20, 20, 0.9);
	border: 2px solid rgba(0, 255, 0, 0.5);
	border-radius: 1rem;
	padding: 2rem;
	position: relative;
	overflow: hidden;
}

.caixa-oferta::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to right, rgba(0, 255, 0, 0.1), transparent, rgba(255, 0, 0, 0.1));
	animation: pulse 4s infinite;
	z-index: 0;
}

@keyframes pulse {

	0%,
	100% {
		opacity: 0.2;
	}

	50% {
		opacity: 0.5;
	}
}

.caixa-oferta * {
	position: relative;
	z-index: 1;
}

.temporizador {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 2rem;
}

.tempo-item {
	background: #111;
	border: 1px solid #b30000;
	padding: 1rem;
	border-radius: 0.5rem;
	text-align: center;
	font-family: "Chakra Petch", sans-serif;
}

.tempo-item .numero {
	font-size: 1.75rem;
	font-weight: bold;
	color: #00ff00;
	font-family: "Chakra Petch", sans-serif;
}

.tempo-item .rotulo {
	font-size: 0.75rem;
	color: #999;
}

.titulo-oferta {
	color: white;
	font-family: "Chakra Petch", sans-serif;
	text-align: center;
	font-size: 2rem;
	font-weight: bold;
	margin-bottom: 1rem;

}

.titulo-oferta span {
	display: block;
	color: #00ff00;
}

.subtitulo {
	text-align: center;
	font-size: 1.2rem;
	margin-bottom: 2rem;
	color: #ccc;
	font-family: "Chakra Petch", sans-serif;
}

.preco-box {
	background: #111;
	padding: 1rem;
	text-align: center;
	border-radius: 0.5rem;
	margin-bottom: 2rem;
	border: 1px solid #b30000;
}

.desconto {
	background: #b30000;
	display: inline-block;
	color: white;
	padding: 0.5rem 1rem;
	border-radius: 999px;
	font-weight: bold;
	margin-bottom: 1rem;
	font-family: "Roboto", sans-serif;
}

.valor-anterior {
	text-decoration: line-through;
	color: #999;
	margin-bottom: 0.5rem;
	font-size: 1.25rem;
	font-family: "Chakra Petch", sans-serif;
}

.valor-atual {
	font-size: 2.5rem;
	font-weight: bold;
	color: #00ff00;
	margin-bottom: 0.25rem;
	font-family: "Roboto", sans-serif;
}

.parcelamento {
	color: #aaa;
	font-family: "Chakra Petch", sans-serif;
}

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

.beneficio-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-family: "Chakra Petch", sans-serif;
	color: #ccc;
}

.botao-compra {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(to right, #00ff00, #ff3333);
	color: #000;
	font-weight: bold;
	padding: 1rem 2rem;
	border-radius: 0.5rem;
	text-decoration: none;
	font-size: 1.2rem;
	transition: transform 0.3s;
	font-family: "Roboto", sans-serif;
}

.botao-compra:hover {
	transform: scale(1.05);
	box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
}

.ping {
	position: absolute;
	width: 4px;
	height: 4px;
	background-color: #00ff00;
	border-radius: 999px;
	animation: ping 3s infinite;
}

@keyframes ping {
	0% {
		transform: scale(1);
		opacity: 1;
	}

	100% {
		transform: scale(2);
		opacity: 0;
	}
}


.faq-section {
	position: relative;
	padding: 4rem 1rem;
	background: linear-gradient(to bottom, #1a1a1a, #0a0a0a);
}

.faq-container {
	max-width: 800px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.faq-title {
	text-align: center;
	margin-bottom: 2rem;
}

.faq-title h2 {
	font-family: "Chakra Petch", sans-serif;
	font-size: 2rem;
	color: #8f0000;
	margin-bottom: 0.5rem;
}

.faq-title p {
	color: #aaa;
	font-family: "Chakra Petch", sans-serif;

}

.faq-item {
	background: #111;
	border: 1px solid #222;
	border-radius: 0.5rem;
	margin-bottom: 1rem;
	overflow: hidden;
	transition: all 0.3s ease-in-out;
}

.faq-question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem;
	cursor: pointer;
	font-weight: bold;
	color: #eee;
	font-family: "Chakra Petch", sans-serif;

}

.faq-answer {
	padding: 0 1rem;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	color: #bbb;
	font-family: "Chakra Petch", sans-serif;

}

.faq-item.active .faq-answer {
	max-height: 200px;
	padding: 1rem;
}

.chevron {
	transition: transform 0.3s;
}

.faq-item.active .chevron {
	transform: rotate(180deg);
}


:root {
	--black-900: #0a0a0a;
	--black-800: #121212;
	--red-900: #7a0000;
	--red-600: #b22222;
	--red-500: #e34c4c;
	--green-neon: #39ff14;
	--green-neon-opacity: rgba(57, 255, 20, 0.6);
	--green-neon-light: rgba(57, 255, 20, 0.2);
	--green-neon-border: rgba(57, 255, 20, 0.4);
	--text-silver-dark: #ccc;
	--text-silver-light: #eee;
}

/* Reset básico e container */
.section-hero {
	position: relative;
	padding: 4rem 1rem;
	background-color: var(--black-900);
	overflow: hidden;
	color: var(--text-silver-light);
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	user-select: none;
}

.bg-layer {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
}

/* Gradient fundo */
.gradient-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(225deg, var(--black-900), var(--black-800), rgba(122, 0, 0, 0.3));
}

/* Hex pattern SVG */
.pattern-hex {
	position: absolute;
	inset: 0;
	opacity: 0.15;
	pointer-events: none;
}

/* FLOATING BADGES */

@keyframes floatAnim {

	0%,
	100% {
		transform: translateY(0)
	}

	50% {
		transform: translateY(-15px)
	}
}

.float-badge {
	position: absolute;
	animation: floatAnim 6s ease-in-out infinite;
}

.float-badge-check {
	top: 4rem;
	right: 4rem;
	width: 6rem;
	height: 6rem;
	opacity: 0.2;
}

.float-badge-truck {
	bottom: 6rem;
	left: 4rem;
	width: 7rem;
	height: 7rem;
	opacity: 0.15;
	transform: rotate(12deg);
	animation-delay: 1.5s;
}

.float-badge-square {
	top: 33%;
	left: 25%;
	width: 5rem;
	height: 5rem;
	opacity: 0.1;
	transform: rotate(45deg);
	animation-delay: 2.5s;
}

.float-badge-headphones {
	bottom: 25%;
	right: 33%;
	width: 8rem;
	height: 8rem;
	opacity: 0.15;
	animation-delay: 0.8s;
}

/* Badge shapes and borders */

.badge-circle {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.neon-border {
	background-color: var(--green-neon-light);
	border: 2px solid var(--green-neon-border);
}

.red-border {
	background-color: rgba(178, 34, 34, 0.2);
	border: 2px solid rgba(178, 34, 34, 0.25);
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 0.5rem;
}

.badge-rotated-square {
	width: 100%;
	height: 100%;
	background-color: rgba(227, 76, 76, 0.3);
	border-radius: 0.5rem;
}

.red-bg {
	background-color: var(--red-500);
}

.red-bg-light {
	background-color: rgba(178, 34, 34, 0.3);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(178, 34, 34, 0.5);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 1rem;
}

/* Icon styling */
.icon {
	width: 2rem;
	height: 3rem;
	stroke-width: 2;
}

.neon-color {
	stroke: var(--green-neon);
}

.red-color {
	stroke: #cd0000;
}

.neon-color-opacity {
	stroke: rgba(57, 255, 20, 0.6);
}

.border-glow {
	border: 4px solid rgba(57, 255, 20, 0.3);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
}

/* Grid lines */

.grid-lines {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.grid-lines::before,
.grid-lines::after {
	content: "";
	position: absolute;
	width: 1px;
	height: 100%;
	background: linear-gradient(to bottom, var(--green-neon), var(--red-500));
	opacity: 0.05;
}

.grid-lines::before {
	left: 25%;
}

.grid-lines::after {
	left: 50%;
}

/* Glow pulse animations */

@keyframes pulseAnim {

	0%,
	100% {
		opacity: 0.08;
	}

	50% {
		opacity: 0.15;
	}
}

.glow-pulse {
	position: absolute;
	border-radius: 50%;
	filter: blur(100px);
	animation: pulseAnim 6s infinite ease-in-out;
}

.pulse-green {
	top: 20%;
	left: 50%;
	width: 24rem;
	height: 24rem;
	background-color: var(--green-neon);
	opacity: 0.08;
}

.pulse-red {
	bottom: 20%;
	right: 25%;
	width: 20rem;
	height: 20rem;
	background-color: var(--red-600);
	opacity: 0.1;
	animation-delay: 2s;
}

/* Ping dots */

@keyframes pingAnim {
	0% {
		transform: scale(1);
		opacity: 0.6;
	}

	75%,
	100% {
		transform: scale(2);
		opacity: 0;
	}
}

.ping-dot {
	position: absolute;
	border-radius: 50%;
	background-color: var(--green-neon);
	width: 0.5rem;
	height: 0.5rem;
	animation: pingAnim 2.5s infinite;
	opacity: 0.6;
}

.ping-red {
	background-color: var(--red-500);
	opacity: 0.4;
	animation-delay: 1s;
}

.ping-green {
	animation-delay: 0s;
}

/* Gradient lines top and bottom */

.gradient-lines {
	position: absolute;
	inset: 0;
	opacity: 0.1;
	pointer-events: none;
}

.gradient-lines::before,
.gradient-lines::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 1px;
	background: linear-gradient(to right, transparent, var(--green-neon), transparent);
	transform-origin: left;
	top: 0;
	left: 0;
	transform: rotate(12deg);
}

.gradient-lines::after {
	background: linear-gradient(to right, transparent, var(--red-500), transparent);
	bottom: 0;
	top: auto;
	right: 0;
	left: auto;
	transform: rotate(-12deg);
	transform-origin: right;
}

/* CONTENT */

.content-container {
	position: relative;
	z-index: 10;
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 1rem;
	color: var(--text-silver-light);
}

.quote-wrapper {
	text-align: center;
	margin-bottom: 3rem;
}

.quote-text {
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--green-neon);
	text-shadow: 0 0 6px var(--green-neon);
	user-select: none;
}

.cards-wrapper {
	max-width: 900px;
	margin: 0 auto;
}

.cards-header h2 {
	font-weight: 700;
	font-size: 2rem;
	color: var(--text-silver-dark);
	text-align: center;
	margin-bottom: 2rem;
	text-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
}

.highlight-green {
	color: var(--green-neon);
}

.cards-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

@media (min-width: 768px) {
	.cards-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.card {
	background: rgba(18, 18, 18, 0.9);
	backdrop-filter: blur(6px);
	border-radius: 0.75rem;
	padding: 1.5rem;
	text-align: center;
	border: 1px solid #222;
	box-shadow: 0 10px 25px rgba(57, 255, 20, 0.2);
	transition: all 0.3s ease;
	cursor: default;
}

.card:hover {
	border-color: var(--red-600);
	box-shadow: 0 12px 25px rgba(57, 255, 20, 0.4);
	transform: translateY(-8px);
}

.icon-bg {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	margin-bottom: 1rem;
	width: 4rem;
	height: 4rem;
}

h3 {
	font-weight: 700;
	font-size: 1.25rem;
	color: var(--text-silver-dark);
	margin-bottom: 0.75rem;
}

p {
	color: #bbb;
	font-size: 1rem;
	line-height: 1.4;
}

/* BUTTON */

.button-wrapper {
	text-align: center;
	margin-top: 3rem;
}

.btn-download {
	background-color: var(--green-neon);
	color: var(--black-900);
	font-weight: 700;
	padding: 1rem 2rem;
	border-radius: 0.75rem;
	font-size: 1.125rem;
	box-shadow: 0 6px 20px rgba(57, 255, 20, 0.3);
	text-decoration: none;
	display: inline-block;
	transition: all 0.25s ease;
	user-select: none;
}

.btn-download:hover {
	box-shadow: 0 8px 30px rgba(57, 255, 20, 0.6);
	transform: translateY(-4px) scale(1.05);
}

.footer-dark {
	background-color: var(--gaming-black-900);
	color: var(--gaming-silver-700);
	border-top: 1px solid var(--gaming-black-600);
}

.border-top {
	border-top: 1px solid;
}

.border-dark-gray {
	border-color: var(--gaming-black-600);
}

.border-darker-gray {
	border-color: var(--gaming-black-700);
}

.pt-12 {
	padding-top: 3rem;
}

.pb-6 {
	padding-bottom: 1.5rem;
}

.pt-6 {
	padding-top: 1.5rem;
}

.container-center {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

.px-4 {
	padding-left: 1rem;
	padding-right: 1rem;
}

/* Flex helpers */
.flex-col-md-row {
	display: flex;
	flex-direction: column;
}

@media (min-width: 768px) {
	.flex-col-md-row {
		flex-direction: row;
	}
}

.flex-space-between {
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
}

/* Width helpers */
.md-width-1-3 {
	width: 100%;
	margin-bottom: 2rem;
}

@media (min-width: 768px) {
	.md-width-1-3 {
		width: 33.3333%;
		margin-bottom: 0;
	}
}

.md-width-1-4 {
	width: 100%;
	margin-bottom: 2rem;
	margin-top: 20px;
}

@media (min-width: 768px) {
	.md-width-1-4 {
		width: 25%;
		margin-bottom: 0;
	}
}

.mb-8 {
	margin-bottom: 2rem;
}

.md-mb-0 {
	margin-bottom: 0;
}

.mt-8 {
	margin-top: 2rem;
}

.md-mt-0 {
	margin-top: 20px;

}

/* Logo */
.logo-wrapper {
	display: flex;
	align-items: center;
	position: relative;
	margin-bottom: 1rem;
}

.logo-img {
	transition: opacity 0.3s ease;
	opacity: 1;
}

/* Text */
.text-muted {
	color: var(--gaming-silver-700);
}

.text-bright {
	color: var(--gaming-silver-900);
}

.text-sm {
	font-size: 0.875rem;
}

/* Typography */
.font-bold {
	font-weight: 700;
}

.mb-4 {
	margin-bottom: 1rem;
}

/* Social links */
.social-links {
	display: flex;
	gap: 1rem;
}

.flex-space-x-4>*+* {
	margin-left: 1rem;
}

.icon-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--gaming-silver-700);
	transition: color 0.3s ease;
}

.icon-link:hover {
	color: var(--gaming-silver-900);
}

/* Icons */
.icon-sm {
	width: 1.25rem;
	/* 20px */
	height: 1.25rem;
}

/* Footer Titles */
.footer-title {
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	color: var(--gaming-silver-900);
	margin-bottom: 1rem;
	color: white;

}

/* Links */
.footer-links {
	list-style: none;
	padding: 0;
	font-family: 'Chakra Petch', sans-serif;
	color: rgb(184, 184, 184);
}

.footer-links li {
	margin-top: 10px;
}

.footer-links li a {

	color: var(--gaming-silver-700);
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-links li a:hover {
	color: var(--neon-green);
}

/* Contact info */
.contact-info p,
.legal-notice p {
	margin: 0;
	margin-bottom: 0.5rem;
}

/* Text center */
.text-center {
	text-align: center;
}


.icon-title {
	display: flex;
}

.icon-title>svg {
	color: red;
}

.icon-title>h3 {
	font-family: 'Chakra Petch', sans-serif;
}


.requirements-section {
	position: relative;
	padding: 4rem 1rem;
	background: linear-gradient(135deg, #0a0a0a, #1a1a1a, #39ff14);
	overflow: hidden;
	color: #ccc;
}

.pattern-bg {
	position: absolute;
	inset: 0;
	opacity: 0.1;
	z-index: 0;
}

.requirements-container {
	position: relative;
	z-index: 10;
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
}

@media (min-width: 768px) {
	.requirements-container {
		grid-template-columns: repeat(2, 1fr);
	}
}

.card {
	background: rgba(20, 20, 20, 0.95);
	padding: 2rem;
	border-radius: 0.75rem;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(155, 0, 0, 0.4);
	box-shadow: 0 10px 25px rgba(0, 255, 0, 0.05);
	position: relative;
	overflow: hidden;
}

.card h3 {
	color: #e6e6e6;
	font-size: 1.5rem;
	color: #00ff00;
	align-items: center;
	font-family: Chakra Petch, sans-serif;
}

.card h3 svg {
	margin-right: 0.75rem;
	stroke: #ff3333;
}

.card ul {
	list-style: none;
	padding: 0;
	margin-top: 1.5rem;
}

.card ul li {
	display: flex;
	align-items: flex-start;
	margin-bottom: 1rem;
	font-family: 'Roboto', sans-serif;
}

.card ul li .bullet {
	width: 1rem;
	height: 1rem;
	background-color: #9b0000;
	border-radius: 50%;
	margin-right: 0.75rem;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #e6e6e6;
	font-size: 0.75rem;
	margin-top: 0.25rem;
}

.highlight-box {
	background: rgba(20, 20, 20, 0.9);
	border: 1px solid rgba(155, 0, 0, 0.4);
	padding: 1rem;
	border-radius: 0.5rem;
	font-size: 0.9rem;
	line-height: 1.5;
	color: #aaa;
}

.highlight-box .highlight {
	color: #39ff14;
	font-weight: bold;
	background: transparent;
}

.float {
	animation: float 6s ease-in-out infinite;
}

@keyframes float {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-15px);
	}
}

.blur-circle {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	opacity: 0.1;
	animation: pulse 5s infinite;
}

@keyframes pulse {

	0%,
	100% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.1);
	}
}

.green-glow {
	background-color: #39ff14;
	width: 300px;
	height: 300px;
	top: 25%;
	left: 50%;
}

.red-glow {
	background-color: #9b0000;
	width: 250px;
	height: 250px;
	bottom: 20%;
	right: 25%;
}

.garantia-box {
	background-color: rgba(30, 30, 30, 0.5);
	border: 1px solid rgba(255, 0, 0, 0.3);
	border-radius: 12px;
	padding: 16px;
	text-align: center;
	max-width: 400px;
	margin: 2rem auto;
}

.garantia-top {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 10px;
}

.garantia-top svg {
	margin-right: 8px;
	stroke: #39ff14;
}

.garantia-title {
	font-weight: bold;
	color: #eee;
	font-family: "Roboto", sans-serif;
}

.garantia-text {
	color: #aaa;
	font-size: 14px;
	font-family: "Chakra Petch", sans-serif;
}

#svg-comprar {
	margin-right: 10px;
}


.logo-wrapper>img {
	width: 3rem;
}

.text-muted {
	font-family: "Chakra Petch", sans-serif;
	color: rgb(175, 175, 175);
}

.review-container {
	background: rgb(0, 0, 0);
	backdrop-filter: blur(10px);
	border-radius: 20px;
	padding: 30px;
	max-width: 600px;
	width: 100%;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	margin-top: 20px;
}

.review-container:hover {
	transform: translateY(-5px);
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.reviewer-info {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 20px;
}

.profile-pic {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	border: 3px solid #667eea;
	object-fit: cover;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.reviewer-details h3 {
	color: #ffffff;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 5px;
	font-family: 'Roboto', sans-serif;
}

.stars {
	font-size: 20px;
	color: #ffc107;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.review-title {
	font-family: 'Roboto', sans-serif;
	font-size: 20px;
	font-weight: bold;
	color: #ffffff;
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.review-text {
	line-height: 1.7;
	color: #cccccc;
	font-size: 16px;
	font-family: 'Chakra Petch', sans-serif;
}

.highlight {
	background: linear-gradient(120deg, #667eea 0%, #764ba2 100%);
	padding: 2px 6px;
	border-radius: 4px;
	font-weight: 600;
	color: #ffffff;
}

.verified-badge {
	background: #28a745;
	color: white;
	font-size: 12px;
	padding: 4px 8px;
	border-radius: 12px;
	font-weight: 500;
	margin-left: auto;
	font-family: 'Chakra Petch', sans-serif;
}

@media (max-width: 768px) {
	.review-container {
		padding: 20px;
		margin: 0 10px;
	}

	.reviewer-info {
		flex-direction: column;
		text-align: center;
	}
}


.cont {
	display: grid;
	justify-content: center;
	padding: 20px;
	background: rgb(0, 0, 0);
}

.cont h1 {
	color: #8b0000;
}

.cont strong {
	color: white;
}

.cont h1,
.cont p {
	font-family: 'Chakra Petch', sans-serif;
	text-align: center;
}


.box {
	background-color: rgba(25, 25, 25, 0.445);
	border: 1px solid #2a2a2a;
	border-radius: 12px;
	padding: 24px;
	max-width: 500px;
	margin: 0 auto;
}

.box h4 {
	color: #f8f8f8;
	font-size: 1.25rem;
	margin-bottom: 16px;
	text-align: center;
	font-family: 'Roboto', sans-serif;
}

.purchase-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
	font-size: 0.95rem;
	color: #c7c7c7;
	text-align: center;
}

.purchase-item {
	font-family: 'Chakra Petch', sans-serif;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	opacity: 0;
	transform: translateY(10px);
	animation: slide-in 0.5s ease-out forwards;
}

/* Entrada */
@keyframes slide-in {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Saída */
.purchase-item.exit {
	animation: fade-out 0.4s ease forwards;
}

@keyframes fade-out {
	to {
		opacity: 0;
		transform: translateY(-10px);
	}
}