/*--------- Google fonts ------------*/
@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@400;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

/* Footer social styling */
.footer-social {
    background-color: var(--primary-color);
    padding: 2rem 0;
}

.footer-social .container {
    display: flex;
    justify-content: center;
}

.footer-social .row {
    gap: 2rem;
}

.social-link, .map-link {
    font-size: 2rem;
}

.social-link a, .map-link a {
    color: var(--third-color);
    text-decoration: none;
    transition: color 0.3s;
}

.social-link a:hover, .map-link a:hover {
    color: var(--primary-color);
}

a {
	color: black; /* Altere a cor para a desejada */
	text-decoration: none; /* Remover sublinhado */
}
/* Adjust the styles as needed for icon sizes and spacing */


:root
{
	--primary-font: 'Montserrat', sans-serif;
	--heading-font: 'League Spartan', sans-serif;

	/* Altura estimada do header usada para espaçamento do hero */
	--header-height: 96px;

	--primary-color: #024df8;   /*--- Cor de destaque (Azul) ----*/
	--secondry-color: #202020;  /*--- Cor de fundo (Cinza escuro) ----*/
	--third-color: #ffffff;     /*--- Cor do texto (Branco) ----*/
}

/* Header / menu styles */
.main-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
	background: rgba(0,0,0,0.25);
	backdrop-filter: blur(6px);
	transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.main-header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.5rem 1rem;
	gap: 1rem;
	flex-wrap: nowrap; /* força todos os itens em uma única linha */
}

.header-logo {
	width: 160px; /* Aumentei o tamanho do logo */
	height: auto;
	display: block;
}

.main-nav .nav-links {
	list-style: none;
	display: flex;
	align-items: center;
	flex-wrap: nowrap; /* evita que os links quebrem linha */
	white-space: nowrap;
}

.main-nav .nav-links a {
	color: var(--third-color);
	text-decoration: none;
	padding: 0.25rem 0.5rem;
}

.main-nav .nav-links a {
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	padding: 0.6rem 0.9rem;
	border-radius: 8px;
	transition: background 0.18s ease, color 0.18s ease, transform 0.12s ease;
}

.main-nav .nav-links a:hover {
	background: rgba(2,77,248,0.12);
	color: var(--primary-color);
	transform: translateY(-2px);
}

.btn-header {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	border-radius: 999px;
	padding: 0.5rem 0.95rem;
	font-weight: 700;
	color: var(--third-color);
	background: linear-gradient(90deg, #0163f8 0%, #023be6 100%);
	box-shadow: 0 8px 20px rgba(2,77,248,0.18);
	transition: transform 0.12s ease, box-shadow 0.12s ease, opacity 0.12s ease;
	text-decoration: none;
}
.btn-header i { font-size: 1rem; }
.btn-header .btn-text { display: inline-block; }
.btn-header:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 30px rgba(2,77,248,0.26);
}

/* Header when scrolled */
.main-header.scrolled {
	background: rgba(0,0,0,0.9);
	box-shadow: 0 6px 24px rgba(0,0,0,0.5);
	transform: translateY(0);
}

.header-actions {
	display: flex;
	gap: 0.5rem;
	align-items: center;
	flex-shrink: 0; /* evita que os botões encolham e empurrem para baixo */
}

/* Layout: logo à esquerda, nav no centro (flex:1) e ações à direita */
.header-logo-link {
	display: inline-flex;
	align-items: center;
	flex-shrink: 0;
}
.main-nav {
	flex: 1 1 auto;
	display: flex;
	justify-content: flex-end; /* Alinha os links à direita, próximo ao botão */
	min-width: 0; /* permite encolher sem causar overflow */
}
.main-nav .nav-links li {
	list-style: none;
}
.main-nav .nav-links a {
	display: inline-flex;
	align-items: center;
}

/* Hide hamburger on desktop */
.hamburger-menu { display: none; }

@media (max-width: 768px) {
	/* Mostra e estiliza o botão hamburger em telas menores */
	.hamburger-menu {
		display: inline-flex;
		background: none;
		border: none;
		color: var(--third-color);
		font-size: 1.5rem;
		cursor: pointer;
		padding: 0.25rem;
	}

	/* Esconde a navegação por padrão no mobile */
	.main-nav .nav-links {
		display: none;
		position: absolute;
		top: calc(100% + 10px); /* Posiciona abaixo do header com um pequeno espaço */
		right: 1rem;
		background: rgba(10, 10, 10, 0.95);
		backdrop-filter: blur(5px);
		padding: 1rem;
		border-radius: 8px;
		box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
		min-width: 200px;
		z-index: 1000;
	}

	/* Mostra a navegação quando a classe .open é adicionada pelo JS */
	.main-nav.open .nav-links {
		display: flex;
		flex-direction: column;
		align-items: stretch; /* Faz os itens ocuparem a largura total */
		gap: 0.75rem;
	}

}

.logo {
    width: 250px; /* Tamanho do logo aumentado */
    height: auto; /* Isso mantém a proporção da imagem */
}



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

html
{
	font-size: 16px;
	font-weight: 400;
}

html {
	overflow-x: hidden;
}

body
{
	background-color: var(--secondry-color);
	font-family: var(--primary-font);
	overflow-x: hidden;
}

.container
{
	padding: 1rem;
	overflow-x: hidden;
	box-sizing: border-box;
	width: 100%;
	margin: 0 auto;
}

img
{
	max-width: 100%;
	height: auto;
}

.heading
{
	color: var(--third-color);
	font-family: var(--heading-font);
	font-size: 1.3rem;
	font-weight: 900;
	font-style: normal;
	line-height: 1.2;
	text-transform: uppercase;
	margin-bottom: 1.5rem;
	position: relative;
	display: inline-block;
	background: linear-gradient(135deg, var(--third-color), #0163f8);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: slideIn 0.6s ease;
}

@keyframes slideIn {
	from {
		opacity: 0;
		transform: translateX(-30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.heading::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 50px;
	height: 4px;
	background: linear-gradient(90deg, var(--primary-color), #0163f8);
	border-radius: 2px;
}

.white
{
	color: var(--third-color);
}

.sub-heading {
	font-size: 1.1rem;
	font-weight: 500;
	line-height: 1.6;
	opacity: 0.9;
}

.para-line {
	line-height: 1.8;
	font-size: 0.95rem;
	opacity: 0.95;
}

/*-------------- Hero styling starts ------------*/
.hero
{
	min-height: 70vh;
	position: relative;
	overflow: hidden;
	padding-top: calc(var(--header-height) + 1rem);
	display: flex;
	align-items: center;
	background: linear-gradient(135deg, rgba(2, 77, 248, 0.05), rgba(32, 32, 32, 0.95));
}

.hero::before {
	display: none;
}

/* background element inside hero (markup: .hero-bg) */
.hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(img/hero-bg.jpg);
	background-position: center center;
	background-size: cover;
	z-index: 0;
	filter: brightness(0.6) contrast(1.1);
}

.hero .logo-container {
	position: absolute;
	top: 1rem;
	left: 1rem;
	z-index: 3;
}

.logo
{
	color: var(--third-color);
	font-weight: 800;
}

.content
{
	/* Conteúdo do hero: coluna direita no desktop (texto) */
	height: auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	width: 45%;
	padding: 1rem 2rem;
	text-align: left;
	z-index: 2;
}

/* Centraliza o bloco do hero e cria layout com duas colunas */
.hero .container {
	display: flex;
	/* posiciona o bloco à direita (texto) e deixa a imagem na esquerda */
	justify-content: flex-end;
	align-items: center;
	gap: 2rem;
	min-height: 70vh;
	position: relative;
	z-index: 2;
}

.main-heading
{
	color: var(--third-color);
	font-family: var(--heading-font);
	/* Título principal com largura limitada para evitar que ocupe toda a tela */
	font-size: clamp(1.6rem, 2.6vw, 2.6rem);
	font-weight: 800;
	font-style: normal;
	text-transform: uppercase;
	max-width: 50rem;
	line-height: 1.3;
	overflow-wrap: break-word;
	word-wrap: break-word;
	white-space: normal;
	text-align: left;
	margin-bottom: 1rem;
}

/* Mobile: tornar o background full-width e posicionar o texto sobre a imagem */
@media (max-width: 768px) {
	.hero-bg {
		width: 100%;
	}

	.hero .container {
		flex-direction: column;
		padding: 1rem;
		align-items: center;
		text-align: center;
	}

	.content {
		width: 100%;
		align-items: center;
		text-align: center;
		position: relative;
		color: var(--third-color);
		z-index: 3;
		margin-top: 0; /* remove recuo negativo para não esconder o texto sob o menu */
		padding-top: 1rem;
	}

	.main-heading {
		font-size: clamp(1.4rem, 8vw, 2.8rem);
	}

	.btn {
		margin-top: 1rem;
	}
}

.main-heading span
{
	color: var(--primary-color);
}

.btn {
	margin-top: 1rem;
	background-color: var(--primary-color) !important;
	color: var(--third-color) !important;
	border: none;
	outline: none;
	padding: 0.6rem 1.2rem;
	transition: transform 0.18s ease, background 0.18s ease;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
}

/* Padroniza todos os tipos de botões do site */
.btn, .btn-header, .btn-enroll, .btn-join, .back-to-top-btn, .carousel-btn, .btn-link, .btn-plan, .btn-submit, .btn-start {
	border-radius: 999px;
	background: linear-gradient(135deg, var(--primary-color), #0163f8) !important;
	color: var(--third-color) !important;
	border: none;
	position: relative;
	overflow: hidden;
	font-weight: 600;
	letter-spacing: 0.05em;
	transition: all 0.3s ease;
}

.btn::before, .btn-header::before, .btn-enroll::before, .btn-join::before, .btn-plan::before, .btn-submit::before, .btn-start::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.2);
	transition: left 0.5s;
}

.btn:hover::before, .btn-header:hover::before, .btn-enroll:hover::before, .btn-join:hover::before, .btn-plan:hover::before, .btn-submit:hover::before, .btn-start:hover::before {
	left: 100%;
}

.btn:hover, .btn-header:hover, .btn-enroll:hover, .btn-join:hover, .carousel-btn:hover, .back-to-top-btn:hover, .btn-plan:hover, .btn-submit:hover, .btn-start:hover {
	transform: translateY(-4px) scale(1.05);
	cursor: pointer;
	box-shadow: 0 15px 35px rgba(2, 77, 248, 0.4);
}

/* Links internos de botões (âncoras dentro de .btn) devem herdar cor branca */
.btn a, .btn-link a {
	color: var(--third-color) !important;
	text-decoration: none;
	font-size: 0.95rem;
	text-transform: uppercase;
	position: relative;
	z-index: 1;
}
/*-------------- Hero styling ends ------------*/



/*-------------- About section styling start ---------*/
.about .container
{
	padding: 3rem 1rem;
}

.about .container .row
{
	display: flex;
	flex-direction: column-reverse;
	justify-content: center;
	align-items: center;
	gap: 2rem;
}

.btn-link
{
	margin-top: 2rem;
	font-size: 1rem;
	text-transform: capitalize;
	border: none;
	outline: none;
	background-color: #ffffff00;
}

.btn-link a
{
	color: var(--third-color);
	text-decoration: none;
}
/*-------------- About section styling end ---------*/


/*-------------- Offer section styling start -----------*/
.offer .container
{
	padding: 3rem 1rem;
}

.offer-card
{
	height: 60vh;
	width: 100%;
	margin: 2rem 0;
	background-size: cover;
	position: center center;
	display: flex;
	justify-content: center;
	align-items: center;
}

.offer-tour
{
	background-image: url(img/tour.png);
}

.offer-classes
{
	background-image: url(img/classes.png);
}

.offer-training
{
	background-image: url(img/training.png);
}

.offer-name
{
	color: var(--third-color);
	text-transform: uppercase;
	font-size: 1.5rem;
	font-style: italic;
	text-align: center;
}
/*-------------- Offer section styling end -----------*/

/* Layout for offer blocks: alternating image/text on desktop, overlay on mobile */
.offer-block {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 2rem;
	margin: 2.5rem 0;
	position: relative;
	transition: all 0.3s ease;
}

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

.offer-block .offer-text,
.offer-block .offer-image {
	width: 50%;
	transition: all 0.3s ease;
}

.offer-block .offer-text {
	padding: 1rem 2rem;
}

.offer-block .offer-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border-radius: 12px;
	transition: transform 0.3s ease;
}

.offer-block:hover .offer-image img {
	transform: scale(1.05);
}

/* Estilo para o título dentro dos blocos de oferta */
.offer-block .offer-title {
	color: var(--primary-color);
	font-size: 1.8rem;
	font-weight: 800;
	margin-bottom: 1rem;
	position: relative;
	display: inline-block;
}

.offer-block .offer-title::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--primary-color), #0163f8);
	transition: width 0.3s ease;
}

.offer-block:hover .offer-title::after {
	width: 100%;
}

/* Inverter ordem quando usar .reverse */
.offer-block.reverse {
	flex-direction: row-reverse;
}

/* Ajustes para telas médias (notebooks) */
@media (max-width: 1400px) and (min-width: 769px) {
	.offer-block {
		gap: 1.5rem;
	}
	.offer-block .offer-text {
		padding: 1rem;
	}
}

/* Mobile: imagem full-width e texto sobreposto */
@media (max-width: 768px) {
	.offer-block {
		display: block;
		margin: 1.5rem 0;
	}

	.offer-block .offer-image {
		width: 100%;
		height: auto;
	}

	.offer-block .offer-image img {
		width: 100%;
		height: auto;
		border-radius: 8px;
	}

	/* Texto sobre a imagem */
	.offer-block .offer-text {
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		bottom: 12%;
		width: calc(100% - 2rem);
		background: rgba(0,0,0,0.55);
		color: var(--third-color);
		padding: 1rem;
		border-radius: 10px;
		box-sizing: border-box;
		z-index: 5;
		text-align: center;
	}

	/* Garante que o bloco tenha espaço para o overlay (altura da imagem) */
	.offer-block .offer-image {
		display: block;
	}

	/* Reduce heading size slightly on mobile overlay */
	.offer-block .offer-title {
		font-size: 1.25rem;
		margin-bottom: 0.5rem;
	}

}


/*-------------- Trainer section styling start ---------*/
.trainer {
	padding: 3rem 0;
	background-color: var(--secondry-color);
}

.trainer .container {
	padding: 2rem 1rem;
}

.trainer .heading {
	text-align: center;
	margin-bottom: 3rem;
}

.trainer-content {
	display: flex;
	align-items: center;
	gap: 3rem;
	flex-wrap: wrap;
	justify-content: center;
}

.trainer-image {
	flex: 1;
	min-width: 250px;
	max-width: 350px;
	display: flex;
	justify-content: center;
}

.trainer-photo {
	width: 100%;
	height: auto;
	border-radius: 12px;
	object-fit: cover;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
	transition: transform 0.3s ease;
}

.trainer-photo:hover {
	transform: scale(1.05);
}

.trainer-info {
	flex: 1;
	min-width: 280px;
	max-width: 500px;
}

.trainer-subtitle {
	color: var(--primary-color);
	font-size: 1rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	margin-bottom: 0.5rem;
	text-transform: uppercase;
}

.trainer-name {
	color: var(--third-color);
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
}

.trainer-text {
	margin-bottom: 2rem;
}

.trainer-text p {
	margin-bottom: 1.2rem;
	line-height: 1.7;
}

.btn-start {
	display: inline-block;
	padding: 0.8rem 2.5rem;
	font-weight: 600;
	text-transform: uppercase;
	transition: all 0.3s ease;
	font-size: 0.95rem;
}

.btn-start:hover {
	transform: translateY(-3px) scale(1.03);
}

/* Mobile responsivo */
@media (max-width: 768px) {
	.trainer-content {
		flex-direction: column;
		gap: 2rem;
	}

	.trainer-image {
		max-width: 280px;
	}

	.trainer-info {
		max-width: 100%;
	}

	.trainer-name {
		font-size: 1.5rem;
	}

	.trainer-subtitle {
		font-size: 0.9rem;
	}

	.trainer-text p {
		font-size: 0.95rem;
	}
}

/*-------------- Trainer section styling end ---------*/


.testimonial .container
{
	padding: 2rem 1rem;
}

.testimonial-carousel {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    overflow: hidden;
}

.carousel-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.review-card {
    background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    text-align: center;
    min-width: 100%;
    box-sizing: border-box;
    display: none;
    min-height: 420px;
    border: 2px solid rgba(2, 77, 248, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.review-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(2, 77, 248, 0.1), transparent);
	transition: left 0.6s;
	pointer-events: none;
}

.review-card.active::before {
	left: 100%;
}

.review-card.active {
    display: block;
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(2, 77, 248, 0.2);
}

.author-pic {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-color);
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.review {
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.author-name
{
	font-size: 1.2rem;
	font-style: italic;
	color: var(--primary-color);
    font-weight: 600;
}

.carousel-nav {
    text-align: center;
    margin-top: 1.5rem;
}

.carousel-btn {
    position: static; /* Remove o posicionamento absoluto */
    transform: none; /* Remove a transformação */
    background-color: rgba(2, 77, 248, 0.4); /* Aumentei a transparência */
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px; /* Diminuí o tamanho */
    height: 40px; /* Diminuí o tamanho */
    font-size: 1rem; /* Diminuí o ícone */
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    margin: 0 10px; /* Adiciona espaço entre os botões */
}

.carousel-btn:hover {
    background-color: rgba(2, 77, 248, 0.8); /* Efeito suave no hover */
    transform: scale(1.1);
}
/*-------------- Testimonial section styling end ---------*/



/*-------------- Footer widget styling start -------------*/
.footer-widget
{
	height: 60vh;
	background-image: url(img/footer-bg.jpg);
	background-size: cover;
	background-position: center center;
}

.footer-widget .container
{
	padding: 2rem 2rem;
}
/*-------------- Footer widget styling end -------------*/



/*------------ copyright styling start -------------*/
.footer-bottom
{
	background: var(--secondry-color);
}

.footer-bottom .container
{
	padding: 2rem 1.5rem;
}

.footer-bottom .container .row .col
{
	margin: 1.5rem 0;
}

.contact-heading
{
	text-transform: uppercase;
	font-style: italic;
}
.contact-heading,
.contact-heading a {
	color: var(--primary-color);
	text-decoration: none;
}

.contact-para-line a {
	color: var(--third-color);
}
/*------------ copyright styling end -------------*/

/* Crédito no footer */
.footer-credit {
	text-align: center;
	padding: 1rem 0 2rem;
	color: var(--third-color); /* Garante que todo o texto seja branco */
}
.footer-credit a {
	color: var(--third-color);
	text-decoration: none;
}
.footer-credit a:hover {
	color: var(--primary-color);
}


/*------------------------------------------------------------*/
/*---------------- For desktop screen styling ------------------*/
/*------------------------------------------------------------*/
@media screen and (min-width: 768px)
{
	.container
	{
		max-width: 1300px;
		margin: 0 auto;
	}

	.heading
	{
		font-size: 2.5rem;
	}

	@media (max-width: 768px) {
		.heading {
			font-size: 1.5rem;
		}
	}


	/*---------- Hero section styling ------------*/
	.hero .container
	{
		padding: 2.5rem 5rem;
	}

	.logo
	{
		font-size: 1.5rem;
		font-weight: 700;
	}

	.main-heading
	{
		/* Ajuste para desktop: mantém responsivo, mas evita tamanho exagerado/overflow */
		font-size: clamp(2.6rem, 4.8vw, 5rem);
		font-weight: 800;
		white-space: normal;
		max-width: 55ch; /* evita linhas muito longas */
	}

	.btn a
	{
		font-size: 1.5rem;
	}


	/*--------------- About section --------------*/
	.about .container
	{
		padding: 6rem 4rem;
	}

	.about .container .row
	{
		flex-direction: row;
		gap: 5rem;
	}

	.about-content
	{
		width: 40%;
	}

	.about-img
	{
		width: 55%;
	}

	.btn-link
	{
		font-size: 1.3rem;
	}


	/*-------------- Offer section ----------*/
	.offer .container
	{
		padding: 1rem 4rem;
	}

	.offer .container .heading, .offer .container .sub-heading
	{
		text-align: center;
	}

	.offer .container .row
	{
		display: flex;
		flex-direction: row;
		gap: 4rem;
		width: 100%;
	}

	.offer .container .row .col
	{
		width: 100%;
	}

	.testimonial .container
	{
		padding: 1rem 4rem;
	}

	.testimonial .container .heading
	{
		text-align: center;
	}

	.testimonial .container .row
	{
		display: flex;
		flex-direction: row;
		gap: 4rem;
		width: 100%;
	}


	/*--------------- Footer ---------------*/
	.footer-widget
	{
		height: 70vh;
	}

	.footer-widget .container
	{
		padding: 6rem 4rem;
	}


	/*--------------- Footer bottom ----------------*/
	.footer-bottom .container
	{
		padding: 2rem 4rem;
	}

	.footer-bottom .container .row
	{
		display: flex;
		justify-content: space-between;
	}
}

/* Estilos para o accordion */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.accordion-item {
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

@media (max-width: 768px) {
	.accordion-title {
		padding: 0.75rem;
		font-size: 0.9rem;
	}
}

.accordion-title {
    padding: 10px;
    background-color: transparent;
    border: 1px solid var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
	.accordion-content {
		padding: 0.75rem;
		font-size: 0.85rem;
	}
}

.accordion-content {
    padding: 10px;
    display: none;
}

/* Ícones de mais e menos */
.elementor-accordion-icon {
    display: inline-block;
    margin-right: 5px;
}

.elementor-accordion-icon-closed {
    display: inline-block;
}

.elementor-accordion-icon-opened {
    display: none;
}

/* Mostrar/ocultar conteúdo ao clicar */
.accordion-item.active .accordion-title .elementor-accordion-icon-closed {
    color: var(--third-color);
    display: none;
}

.accordion-item.active .accordion-title .elementor-accordion-icon-opened {
    display: inline-block;
}

.accordion-item.active .accordion-content {
    display: block;
}

/* Adiciona uma transição suave para a animação */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer {
	color: var(--third-color);
}

/* Define a altura máxima para o conteúdo quando está ativo */
.accordion-item.active .accordion-content {
    max-height: 500px; /* Ajuste conforme necessário */
}
#paragrafoAcesso {
    color: rgb(255, 255, 255); /* Ou qualquer outra cor desejada */
}

/*-------------- Pre-enrollment section styling start ---------*/
@media (max-width: 768px) {
	.pre-enrollment {
		padding: 1.5rem 0.5rem;
		text-align: center;
		background-color: #1a1a1a;
	}
}

.pre-enrollment {
	padding: 3rem 1rem;
	text-align: center;
	background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
	position: relative;
	overflow: hidden;
}

.pre-enrollment::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(2, 77, 248, 0.1) 1px, transparent 1px);
	background-size: 50px 50px;
	animation: slide 20s linear infinite;
	pointer-events: none;
}

@keyframes slide {
	0% {
		transform: translate(0, 0);
	}
	100% {
		transform: translate(50px, 50px);
	}
}

.pre-enrollment .container {
	background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
	padding: 3rem 2rem;
	border-radius: 15px;
	box-shadow: 0 10px 50px rgba(2, 77, 248, 0.3);
	border: 2px solid rgba(2, 77, 248, 0.3);
	max-width: 900px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1.5rem;
	position: relative;
	z-index: 1;
}

.pre-enrollment .heading {
	margin-bottom: 0;
}

@media (max-width: 768px) {
	.pre-enrollment-text {
		font-size: 0.9rem;
		line-height: 1.4;
		padding: 0 0.5rem;
	}
}

.pre-enrollment-text {
	font-size: 1.2rem;
	line-height: 1.6;
	max-width: 700px;
}

.pre-enrollment-text strong {
	color: var(--primary-color);
	font-weight: 700;
}

@media (max-width: 768px) {
	.btn-enroll {
		padding: 0.75rem 1.5rem;
		font-size: 0.85rem;
	}
}

.btn-enroll {
	padding: 1rem 2.5rem;
	font-size: 1.2rem;
	font-weight: 600;
	text-transform: uppercase;
	display: inline-flex;
	color: var(--third-color);
	text-decoration: none;
	align-items: center;
	gap: 10px;
	animation: glow 2s ease-in-out infinite;
	border-radius: 50px;
	position: relative;
	z-index: 2;
}

.btn-enroll i {
	font-size: 1.1rem;
}

/* Animação de glow para o botão */
@keyframes glow {
	0% {
		box-shadow: 0 0 5px rgba(2, 77, 248, 0.5), 0 0 10px rgba(2, 77, 248, 0.3);
	}
	50% {
		box-shadow: 0 0 20px rgba(2, 77, 248, 0.8), 0 0 30px rgba(2, 77, 248, 0.6);
	}
	100% {
		box-shadow: 0 0 5px rgba(2, 77, 248, 0.5), 0 0 10px rgba(2, 77, 248, 0.3);
	}
}

/* Estilos do Relógio de Contagem Regressiva */
@media (max-width: 768px) {
	.countdown-timer {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 0.5rem;
		margin-top: 1.5rem;
	}
}

.countdown-timer {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-top: 1.5rem;
	flex-wrap: wrap;
}

.timer-box {
	background: linear-gradient(135deg, rgba(2, 77, 248, 0.2), rgba(1, 99, 248, 0.1));
	border: 2px solid var(--primary-color);
	border-radius: 12px;
	padding: 1rem 1.5rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	min-width: 100px;
	transition: all 0.3s ease;
	box-shadow: 0 5px 15px rgba(2, 77, 248, 0.2);
}

.timer-box:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(2, 77, 248, 0.4);
	border-color: #0163f8;
}

.timer-number {
	font-size: 2.5rem;
	font-weight: 700;
	color: white;
	line-height: 1;
	animation: pulse-number 1s ease-in-out infinite;
}

@keyframes pulse-number {
	0%, 100% {
		opacity: 1;
	}
	50% {
		opacity: 0.7;
	}
}

.timer-label {
	font-size: 0.8rem;
	text-transform: uppercase;
	color: var(--third-color);
	margin-top: 0.5rem;
	font-weight: 600;
	letter-spacing: 0.05em;
}

.countdown-expired {
	font-size: 1.5rem;
	font-weight: bold;
	color: var(--primary-color);
}
/*-------------- Pre-enrollment section styling end ---------*/

/* Estilos para Animação de Scroll (Fade-in) */
.fade-in {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}

/* Estilos para o Botão "Voltar ao Topo" */
.back-to-top-btn {
	display: none;
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 99;
	background: linear-gradient(135deg, var(--primary-color), #0163f8);
	color: white;
	border: none;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	font-size: 20px;
	cursor: pointer;
	align-items: center;
	justify-content: center;
	text-decoration: none; /* Remove sublinhado do link */
	transition: opacity 0.3s, transform 0.3s;
}

.back-to-top-btn:hover {
	opacity: 0.8;
	transform: scale(1.1);
}

/* Estilos Mobile que foram movidos do HTML */
@media (max-width: 768px) {
	.hero .logo-container {
		/* Garante que o logo fique no canto também no mobile */
		top: 1rem;
		left: 1rem;
	}
	.countdown-timer {
		gap: 10px;
	}
	.timer-box {
		padding: 8px;
		min-width: 60px;
	}
	.timer-number {
		font-size: 2rem;
	}
	.timer-label {
		font-size: 0.7rem;
	}
}
/* Correção: evita que o título exceda a largura da tela em dispositivos menores */
@media (max-width: 992px) {
	.main-heading {
		white-space: normal; /* permite quebra quando necessário */
		word-break: break-word;
		overflow-wrap: break-word;
		/* reduz ainda mais o tamanho em telas pequenas para caber na largura */
		font-size: clamp(1.2rem, 8vw, 3.8rem);
		max-width: 100%;
		padding: 0 0.5rem;
		box-sizing: border-box;
		text-align: center;
	}

	.content {
		padding: 0 0.5rem;
	}
}

/* Ajustes adicionais para pontos de corte maiores/menores */
@media (max-width: 1200px) {
	.main-heading {
		font-size: clamp(1.4rem, 5.7vw, 5.2rem);
		max-width: 100%;
	}
}

@media (max-width: 600px) {
	.main-heading {
		font-size: clamp(1rem, 9.5vw, 2.2rem);
		white-space: normal;
		word-break: break-word;
		overflow-wrap: break-word;
		line-height: 1.05;
		max-width: 100%;
		padding: 0 0.75rem;
	}
	.btn a { font-size: 0.9rem; }
}

/* Evita qualquer overflow horizontal causado pelo hero */
.hero {
	overflow: hidden;
}

/* Ajuste específico para notebooks (telas médias/largas comuns em notebooks) */
@media (min-width: 992px) and (max-width: 1400px) {
	.main-heading {
		/* Limita o tamanho em laptops para evitar que o texto saia da tela */
		font-size: clamp(1.6rem, 3.2vw, 3.2rem);
		line-height: 1.02;
		max-width: 100%;
		padding: 0 1rem;
		box-sizing: border-box;
		word-break: break-word;
		overflow-wrap: break-word;
		display: block;
	}

	.container {
		padding-left: 1rem;
		padding-right: 1rem;
	}
}

/* Força o conteúdo do <span> para a próxima linha em telas menores de notebook, evitando overflow */
@media (max-width: 1400px) {
	.main-heading span {
		display: inline; /* não forçar quebra do span */
		font-size: 0.95em;
		line-height: 1.02;
	}

	.main-heading {
		max-width: 100%;
		overflow: visible; /* permitir quebra natural */
	}

	.content {
		align-items: center;
	}
}
/*-------------- Pre-enrollment section styling end ---------*/

/* Estilos para Animação de Scroll (Fade-in) */
.fade-in {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}

/* Estilos para o Botão "Voltar ao Topo" */
.back-to-top-btn {
	display: none; /* Inicia oculto */
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 99;
	background-color: var(--primary-color);
	color: white;
	border: none;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	font-size: 20px;
	cursor: pointer;
	align-items: center;
	justify-content: center;
	text-decoration: none; /* Remove sublinhado do link */
	transition: opacity 0.3s, transform 0.3s;
}

.back-to-top-btn:hover {
	opacity: 0.8;
	transform: scale(1.1);
}

/* Estilos Mobile que foram movidos do HTML */
@media (max-width: 768px) {
	.hero .logo-container {
		/* Garante que o logo fique no canto também no mobile */
		top: 1rem;
		left: 1rem;
	}
	.countdown-timer {
		gap: 10px;
	}
	.timer-box {
		padding: 8px;
		min-width: 60px;
	}
	.timer-number {
		font-size: 2rem;
	}
	.timer-label {
		font-size: 0.7rem;
	}
}
/*-------------- Pre-enrollment section styling end ---------*/
/* ========== MOBILE RESPONSIVE FIX ========== */
@media (max-width: 768px) {
	/* Prevenir qualquer overflow horizontal */
	* {
		max-width: 100%;
	}

	/* About section ajustes */
	.about .container {
		padding: 1.5rem 1rem;
	}

	.about .container .row {
		gap: 1rem;
	}

	.about-content {
		width: 100%;
	}

	.about-img {
		width: 100%;
	}

	/* Offer section ajustes */
	.offer .container {
		padding: 1.5rem 1rem;
	}

	.offer-block {
		margin: 1rem 0;
	}

	.offer-block .offer-text {
		padding: 0.75rem;
		font-size: 0.9rem;
	}

	.offer-block .offer-title {
		font-size: 1.1rem;
		margin-bottom: 0.5rem;
	}

	/* Testimonial section ajustes */
	.testimonial .container {
		padding: 1.5rem 1rem;
	}

	.review-card {
		padding: 1rem 0.75rem;
		min-height: 350px;
	}

	.author-pic {
		width: 80px;
		height: 80px;
		margin-bottom: 1rem;
	}

	.review {
		font-size: 0.9rem;
		margin-bottom: 1rem;
	}

	.author-name {
		font-size: 1rem;
	}

	.carousel-btn {
		width: 35px;
		height: 35px;
		font-size: 0.9rem;
		margin: 0 5px;
	}

	/* Footer ajustes */
	.footer-bottom .container {
		padding: 1.5rem 1rem;
	}

	.footer-bottom .container .row .col {
		margin: 1rem 0;
	}

	.contact-heading {
		font-size: 1rem;
	}

	.contact-para-line {
		font-size: 0.85rem;
	}

	/* Paragraph e texto geral */
	.para-line {
		font-size: 0.95rem;
		line-height: 1.5;
	}

	.sub-heading {
		font-size: 1rem;
	}

	/* FAQs Accordion mobile */
	.accordion-item {
		border-radius: 8px;
		margin-bottom: 0.5rem;
	}

	.accordion-title strong {
		font-size: 0.9rem;
	}

	.faq-answer {
		font-size: 0.85rem;
		line-height: 1.5;
		color: var(--third-color);
	}

	/* Hero section */
	.hero {
		min-height: 50vh;
		padding-top: var(--header-height);
	}

	.btn-join {
		padding: 0.6rem 1rem;
		font-size: 0.85rem;
	}

	/* Ajuste da margem vertical */
	.heading {
		margin-bottom: 1rem;
	}

	.sub-heading {
		margin-bottom: 1.5rem;
	}
}

/* Extra small devices (< 480px) */
@media (max-width: 480px) {
	.heading {
		font-size: 1.2rem;
	}

	.pre-enrollment-text {
		font-size: 0.85rem;
	}

	.main-heading {
		font-size: clamp(0.95rem, 7vw, 1.8rem);
		line-height: 1.1;
	}

	.btn-enroll {
		padding: 0.6rem 1.2rem;
		font-size: 0.75rem;
	}

	.btn-enroll i {
		font-size: 0.9rem;
	}

	.timer-box {
		min-width: 50px;
		padding: 6px 8px;
	}

	.timer-number {
		font-size: 1.5rem;
	}

	.review-card {
		padding: 0.75rem;
		min-height: 300px;
	}

	.contact-heading {
		font-size: 0.9rem;
	}
}

/*-------------- Stats section styling start ---------*/
.stats {
	padding: 4rem 0;
	background: linear-gradient(135deg, #024df8 0%, #023be6 100%);
}

.stats .container {
	padding: 2rem 1rem;
}

.stats .heading {
	text-align: center;
	margin-bottom: 3rem;
	color: var(--third-color);
	background: none !important;
	-webkit-text-fill-color: unset !important;
	background-clip: unset !important;
	-webkit-background-clip: unset !important;
	font-size: 2rem;
	font-weight: 800;
}

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

.stat-card {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 12px;
	padding: 2rem;
	text-align: center;
	transition: all 0.3s ease;
	color: var(--third-color);
}

.stat-card:hover {
	transform: translateY(-10px);
	background: rgba(255, 255, 255, 0.15);
	border-color: rgba(255, 255, 255, 0.3);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.stat-card i {
	font-size: 3rem;
	margin-bottom: 1rem;
	opacity: 0.8;
}

.stat-number {
	font-size: 2.5rem;
	font-weight: 800;
	margin-bottom: 0.5rem;
}

.stat-label {
	font-size: 0.95rem;
	opacity: 0.9;
}

/*-------------- Plans section styling start ---------*/
.plans {
	padding: 4rem 0;
	background-color: var(--secondry-color);
}

.plans .container {
	padding: 2rem 1rem;
}

.plans .heading {
	text-align: center;
	margin-bottom: 1rem;
	background: none !important;
	-webkit-text-fill-color: unset !important;
	background-clip: unset !important;
	-webkit-background-clip: unset !important;
	font-size: 2rem;
	font-weight: 800;
}

.plans .sub-heading {
	text-align: center;
	margin-bottom: 3rem;
	font-size: 1.1rem;
}

.plans-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

.plan-card {
	background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
	border: 2px solid rgba(2, 77, 248, 0.2);
	border-radius: 15px;
	padding: 2.5rem;
	text-align: center;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.plan-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
	transition: left 0.5s;
	pointer-events: none;
}

.plan-card:hover::before {
	left: 100%;
}

.plan-card:hover {
	transform: translateY(-15px) scale(1.02);
	border-color: var(--primary-color);
	box-shadow: 0 20px 50px rgba(2, 77, 248, 0.3);
}

.plan-card.featured {
	border: 2px solid var(--primary-color);
	transform: scale(1.05);
	box-shadow: 0 20px 50px rgba(2, 77, 248, 0.2);
}

.plan-card.featured:hover {
	transform: translateY(-15px) scale(1.07);
}

.plan-badge {
	position: absolute;
	top: 20px;
	right: -35px;
	background: linear-gradient(135deg, var(--primary-color), #0163f8);
	color: white;
	padding: 0.5rem 3rem;
	font-weight: 700;
	font-size: 0.75rem;
	transform: rotate(45deg);
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.plan-title {
	color: var(--third-color);
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	margin-top: 1rem;
	text-transform: uppercase;
}

.plan-price {
	font-size: 2.5rem;
	color: var(--primary-color);
	margin-bottom: 1.5rem;
	font-weight: 800;
}

.plan-price .currency {
	font-size: 1.5rem;
}

.plan-price .period {
	font-size: 1rem;
	color: var(--third-color);
	opacity: 0.7;
}

.plan-features {
	list-style: none;
	margin-bottom: 2rem;
	text-align: left;
}

.plan-features li {
	color: var(--third-color);
	padding: 0.75rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.plan-features li:last-child {
	border-bottom: none;
}

.plan-features i {
	color: var(--primary-color);
	min-width: 20px;
}

.plan-features li i.fa-xmark {
	color: #666;
	opacity: 0.5;
}

.btn-plan {
	width: 100%;
	padding: 0.8rem 1.5rem;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 0.9rem;
}

/*-------------- Gallery section styling start ---------*/
.gallery {
	padding: 4rem 0;
	background-color: var(--secondry-color);
}

.gallery .container {
	padding: 2rem 1rem;
}

.gallery .heading {
	text-align: center;
	margin-bottom: 3rem;
	background: none !important;
	-webkit-text-fill-color: unset !important;
	background-clip: unset !important;
	-webkit-background-clip: unset !important;
	font-size: 2rem;
	font-weight: 800;
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1.5rem;
	max-width: 1200px;
	margin: 0 auto;
}

.gallery-item {
	position: relative;
	overflow: hidden;
	border-radius: 12px;
	height: 300px;
	cursor: pointer;
}

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

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

.gallery-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(2, 77, 248, 0.8);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
	opacity: 1;
}

.gallery-link {
	width: 50px;
	height: 50px;
	background: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary-color);
	font-size: 1.5rem;
	transition: all 0.3s ease;
}

.gallery-link:hover {
	transform: scale(1.1);
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/*-------------- Contact section styling start ---------*/
.contact {
	padding: 4rem 0;
	background-color: var(--secondry-color);
}

.contact .container {
	padding: 2rem 1rem;
}

.contact .heading {
	text-align: center;
	margin-bottom: 3rem;
	background: none !important;
	-webkit-text-fill-color: unset !important;
	background-clip: unset !important;
	-webkit-background-clip: unset !important;
	font-size: 2rem;
	font-weight: 800;
}

.contact-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	max-width: 1200px;
	margin: 0 auto;
	align-items: start;
}

.contact-info h3 {
	color: var(--third-color);
	font-size: 1.8rem;
	margin-bottom: 1rem;
	font-weight: 700;
}

.contact-details {
	margin-top: 2rem;
}

.contact-item {
	display: flex;
	gap: 1rem;
	margin-bottom: 2rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item:last-child {
	border-bottom: none;
}

.contact-item i {
	font-size: 1.5rem;
	color: var(--primary-color);
	min-width: 30px;
	margin-top: 0.25rem;
}

.contact-item h4 {
	color: var(--third-color);
	font-size: 1rem;
	margin-bottom: 0.5rem;
	font-weight: 600;
}

.contact-item p {
	color: var(--third-color);
	opacity: 0.8;
	font-size: 0.95rem;
}

.contact-item a {
	color: var(--primary-color);
	text-decoration: none;
	transition: color 0.3s ease;
}

.contact-item a:hover {
	color: #0163f8;
	text-decoration: underline;
}

.contact-form {
	background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
	padding: 2rem;
	border-radius: 12px;
	border: 1px solid rgba(2, 77, 248, 0.2);
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 0.85rem 1rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.05);
	color: var(--third-color);
	font-family: var(--primary-font);
	transition: all 0.3s ease;
	font-size: 0.95rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
	color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--primary-color);
	background: rgba(2, 77, 248, 0.1);
	box-shadow: 0 0 10px rgba(2, 77, 248, 0.3);
}

.form-group select {
	cursor: pointer;
}

.form-group select option {
	background: #1f1f1f;
	color: white;
}

.btn-submit {
	width: 100%;
	padding: 1rem;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 0.95rem;
	letter-spacing: 0.05em;
}

/* Responsivo */
@media (max-width: 768px) {
	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}

	.stat-number {
		font-size: 1.8rem;
	}

	.stat-card i {
		font-size: 2rem;
	}

	.plan-card.featured {
		transform: scale(1);
	}

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

	.plans-grid {
		grid-template-columns: 1fr;
	}

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

	.gallery-grid {
		grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	}

	.gallery-item {
		height: 200px;
	}
}

@media (max-width: 1100px) {
	.plans-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 1300px) {
	.plan-badge {
		right: 16px;
		top: 16px;
		transform: none;
		padding: 0.4rem 0.9rem;
		border-radius: 999px;
	}
}

/*-------------- Newsletter section styling start ---------*/
.contact {
	padding: 4rem 0;
	background: linear-gradient(135deg, #024df8 0%, #023be6 100%);
	position: relative;
	overflow: hidden;
}

.contact .container {
	padding: 2rem 1rem;
}

.contact .heading {
	background: none !important;
	-webkit-text-fill-color: unset !important;
	background-clip: unset !important;
	-webkit-background-clip: unset !important;
	color: white;
	font-size: 2rem;
	font-weight: 800;
	text-align: center;
	margin-bottom: 3rem;
}

.newsletter-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	max-width: 1100px;
	margin: 0 auto;
	align-items: center;
	background: rgba(0, 0, 0, 0.2);
	padding: 3rem;
	border-radius: 15px;
	border: 2px solid rgba(255, 255, 255, 0.2);
}

.newsletter-text h3 {
	color: white;
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

.newsletter-text .para-line {
	margin-bottom: 2rem;
	font-size: 1rem;
}

.newsletter-benefits {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.newsletter-benefits li {
	color: white;
	font-size: 0.95rem;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.newsletter-benefits i {
	color: #4ade80;
	font-size: 1rem;
}

.newsletter-signup {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.5rem;
	text-align: center;
}

.btn-newsletter {
	padding: 1rem 2rem;
	font-size: 1rem;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	background: linear-gradient(135deg, #25d366, #20ba5f) !important;
}

.btn-newsletter:hover {
	background: linear-gradient(135deg, #20ba5f, #1aa850) !important;
}

.btn-newsletter i {
	font-size: 1.3rem;
}

.newsletter-info {
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.85rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

/*-------------- Transformações section styling start ---------*/
.transformacoes {
	padding: 4rem 0;
	background-color: var(--secondry-color);
}

.transformacoes .container {
	padding: 2rem 1rem;
}

.transformacoes .heading {
	background: none !important;
	-webkit-text-fill-color: unset !important;
	background-clip: unset !important;
	-webkit-background-clip: unset !important;
	color: white;
	font-size: 2rem;
	font-weight: 800;
	text-align: center;
	margin-bottom: 1rem;
}

.transformacoes-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

.transformacao-card {
	background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
	border: 2px solid rgba(2, 77, 248, 0.2);
	border-radius: 15px;
	padding: 2rem;
	text-align: center;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.transformacao-card:hover {
	transform: translateY(-10px);
	border-color: var(--primary-color);
	box-shadow: 0 20px 50px rgba(2, 77, 248, 0.3);
}

.transformacao-before-after {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.antes, .depois {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
}

.antes img, .depois img {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	border: 3px solid var(--primary-color);
	object-fit: cover;
}

.transformacao-before-after .label {
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--primary-color);
	text-transform: uppercase;
}

.transformacao-before-after .seta {
	color: var(--primary-color);
	font-size: 1.5rem;
	animation: pulse-arrow 2s ease-in-out infinite;
}

@keyframes pulse-arrow {
	0%, 100% {
		transform: translateX(0);
		opacity: 0.5;
	}
	50% {
		transform: translateX(5px);
		opacity: 1;
	}
}

.transformacao-card h3 {
	color: white;
	font-size: 1.3rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
}

.transformacao-card .para-line {
	margin-bottom: 1.5rem;
	opacity: 0.9;
}

.resultado-badge {
	position: absolute;
	top: 20px;
	right: 20px;
	background: linear-gradient(135deg, var(--primary-color), #0163f8);
	color: white;
	padding: 0.75rem 1.25rem;
	border-radius: 25px;
	font-weight: 700;
	font-size: 0.9rem;
	box-shadow: 0 5px 15px rgba(2, 77, 248, 0.3);
}

/*-------------- Contact Info section styling start ---------*/
.contact-info {
	padding: 4rem 0;
	background-color: var(--secondry-color);
}

.contact-info .container {
	padding: 2rem 1rem;
}

.contact-info .heading {
	background: none !important;
	-webkit-text-fill-color: unset !important;
	background-clip: unset !important;
	-webkit-background-clip: unset !important;
	color: white;
	font-size: 2rem;
	font-weight: 800;
	text-align: center;
	margin-bottom: 3rem;
}

.contact-methods {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	max-width: 1400px;
	margin: 0 auto;
}

.contact-card {
	background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
	border: 2px solid rgba(2, 77, 248, 0.2);
	border-radius: 12px;
	padding: 2rem;
	text-align: center;
	transition: all 0.3s ease;
}

.contact-card:hover {
	transform: translateY(-10px) scale(1.02);
	border-color: var(--primary-color);
	box-shadow: 0 20px 50px rgba(2, 77, 248, 0.3);
}

.contact-card i {
	font-size: 2.5rem;
	color: var(--primary-color);
	margin-bottom: 1rem;
}

.contact-card h3 {
	color: white;
	font-size: 1.3rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
}

.contact-card p {
	color: var(--third-color);
	opacity: 0.85;
	margin-bottom: 1.5rem;
	font-size: 0.95rem;
}

.btn-contact {
	padding: 0.75rem 1.5rem;
	font-size: 0.9rem;
	width: 100%;
}

/* Responsivo */
@media (max-width: 1200px) {
	.contact-methods {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.newsletter-content {
		grid-template-columns: 1fr;
		gap: 2rem;
		padding: 2rem;
	}

	.newsletter-text h3 {
		font-size: 1.4rem;
	}

	.transformacao-card {
		padding: 1.5rem;
	}

	.transformacao-before-after {
		gap: 0.75rem;
	}

	.antes img, .depois img {
		width: 80px;
		height: 80px;
	}

	.resultado-badge {
		top: 15px;
		right: 15px;
		font-size: 0.8rem;
		padding: 0.5rem 1rem;
	}

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

	.contact-card {
		padding: 1.5rem;
	}

	.contact-card i {
		font-size: 2rem;
	}

	.contact-card h3 {
		font-size: 1.1rem;
	}
}


