/* Resetando margens e aplicando fonte */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Urbanist', sans-serif;
	font-weight: 500; /* Ajustado para um meio termo entre fino e pesado */
}

html,
body {
	overflow-x: hidden;
}
body {
	background-color: #f8f9f7;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Titulos e sub-titulos*/

.title {
	background: linear-gradient(90deg, #10154f, #2530b5);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-size: 90px;
	font-weight: 500;
	color: #001f61;
	z-index: 2;
	font-family: 'Urbanist';
}

.sub-title {
	font-size: 18px;
	color: black;
	max-width: 700px;
	font-weight: 500;
	z-index: 2;
	font-family: 'Urbanist';
}

/* Navbar */
.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 60px;
}

/* Divisões dentro do header */

/* Centralizar o menu */
.navbar-center {
	flex: 1;
	justify-content: center;
}

/* Espaço entre logo e menu */
.navbar-left {
	margin-right: 30px;
}

/* Ajuste dos botões */
.navbar-right {
	gap: 15px;
}

/* Logo */
.logo img {
	height: 50px;
	width: auto;
}

/* Botões */
.nav-buttons {
	display: flex;
	gap: 15px;
}

/* Container do menu */
.menu-container {
	display: flex;
	justify-content: center; /* Centraliza horizontalmente */
	align-items: center; /* Centraliza verticalmente */
	padding: 20px 0;
	width: 100%;
}

/* Menu */
.menu {
	display: flex;
	justify-content: center;
	list-style: none;
	padding: 0;
	margin: 0;
	gap: 30px;
}

/* Links do menu */
.menu li a {
	text-decoration: none;
	color: black;
	font-weight: 500;
	font-size: 16px;
	padding: 10px 15px;
	position: relative;
	transition: color 0.3s;
}

/* Linha animada no hover */
.menu li a::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: -5px;
	width: 0;
	height: 3px;
	background-color: #007bff;
	transition: all 0.3s ease-in-out;
	transform: translateX(-50%);
}

/* Quando passar o mouse */
.menu li a:hover::after {
	width: 100%;
}

.btn-login,
.btn-cta {
	padding: 15px 35px;
	font-size: 18px;
	font-weight: 500;
	z-index: 2;
	background: linear-gradient(90deg, #00274e, #007bff);
	color: white;
	border: none;
	border-radius: 25px;
	cursor: pointer;
	white-space: nowrap; /* Garante que o texto fique em uma linha */
	width: auto; /* ESSENCIAL para ajustar ao conteúdo */
}

/* Botão de Login */
.btn-login {
	background: none;
	border: 2px solid black;
	color: black;
	transition: background 0.3s, color 0.3s;
}

.btn-login:hover {
	background: black;
	color: white;
}

/* Botão CTA */
.btn-cta {
	background: linear-gradient(90deg, #00274e, #007bff);
	color: white;
}

.btn-cta:hover {
	opacity: 0.8;
}

/* Hero Section */
.hero {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 140px 20px 100px;
	min-height: 100vh;
	overflow: hidden;
	background-color: #f9f9f4;
	z-index: 1;
	gap: 30px;
}

.hero .title {
	margin-bottom: 20px;
	max-width: 800px;
	line-height: 1.2;
}

.hero .sub-title {
	margin-bottom: 30px;
	max-width: 700px;
	line-height: 1.6;
}

.hero .btn-cta {
	margin-top: 20px;
	padding: 15px 35px;
	font-size: 18px;
	font-weight: 500;
	z-index: 2;
	position: relative;
}

.looper-bg {
	position: absolute;
	top: 30%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 500px;
	height: 500px;
	opacity: 0.2; /* sutil */
	z-index: 0;
	animation: rotateLoop 30s linear infinite;
}

.looper-bg svg path {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 600px;
	height: 600px;
	transform: translate(-50%, -50%);
	opacity: 0.07;
	z-index: -1;
	animation: rotateLoop 30s linear infinite;
}

.looper-bg img {
	width: 100%;
	height: auto;
}

@keyframes rotateLoop {
	from {
		transform: translate(-50%, -50%) rotate(0deg);
	}
	to {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}

/* Garante que o conteúdo fique acima do looper */
.hero > *:not(.looper-bg) {
	position: relative;
	z-index: 1;
}

.fade-in {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 1.6s ease, transform 1.6s ease;
}

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

/* Ícone abaixo do CTA */
.scroll-icon {
	width: 50px;
	height: 50px;
	background: url('/img/scrollDown.svg') no-repeat center;
	background-size: contain;
	margin: 40px auto 0 auto;
	margin-bottom: 50px;
	display: block;
	z-index: 2;
	animation: bounceScroll 2s ease-in-out infinite;
}

.scroll-icon-white {
	width: 50px;
	height: 50px;
	background: url('/img/white-scroll.svg') no-repeat center;
	background-size: contain;
	margin: 40px auto 0 auto;
	margin-bottom: 50px;
	display: block;
	z-index: 2;
	animation: bounceScroll 2s ease-in-out infinite;
	margin-top: 100px;
}

@keyframes bounceScroll {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(10px);
	}
}

/* Vantagens do G7Bank */

.advantages-text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	height: 40vh;
	padding: 0 20px;
	gap: 40px;
	position: relative;
	overflow: hidden;
}

.advantages-text h1 {
	font-size: 50px;
	font-weight: 500;
	color: #001f61;
	z-index: 2;
}

.advantages-text p {
	font-size: 18px;
	color: black;
	max-width: 700px;
	font-weight: 500;
	z-index: 2;
}

.advantages-container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	justify-content: center;
	max-width: 1000px;
	margin: auto;
}

/* Cartões */
.advantages-container {
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	max-width: 1200px;
	margin: 0 auto;
}

.advantage-card {
	width: 30%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	height: 100%;
	min-width: 280px;
	padding: 40px;
	border-radius: 10px;
	background: #f2f5f7;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease-in-out;
}

.advantage-card:hover {
	transform: scale(1.05);
}

.icon {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	margin-bottom: 36px;
}

.icon-svg {
	width: 32px;
	height: 32px;
}

/* Ícones */
.advantage-card .icon {
	font-size: 30px;
	background: #4caf50;
	width: 50px;
	height: 50px;
	line-height: 50px;
	border-radius: 50%;
}

/* Estado quando o JS ativa a classe */
.advantage-card.show {
	transform: translateY(0) scale(1);
	opacity: 1;
}

.advantage-card h3 {
	font-size: 1.25rem; /* Ajuste conforme o estilo da página */
	color: #10154f;
	margin-bottom: 10px;
	font-weight: 800;
	text-align: center;
	font-family: 'Urbanist';
}

.advantage-card p {
	font-size: 0.95rem;
	color: #555;
	line-height: 1.5;
	max-width: 250px;
	margin: 0 auto;
	text-align: center;
	font-family: 'Urbanist';
}

.advantage-card {
	opacity: 0;
	transform: scale(0.8);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Efeitos quebra-cabeça por posição */
.advantage-card:nth-child(1) {
	transform: translateX(-100px) scale(0.8);
}
.advantage-card:nth-child(2) {
	transform: translateY(100px) scale(0.8);
}
.advantage-card:nth-child(3) {
	transform: translateX(100px) scale(0.8);
}
.advantage-card:nth-child(4) {
	transform: translateX(-100px) scale(0.8);
}
.advantage-card:nth-child(5) {
	transform: translateY(100px) scale(0.8);
}
.advantage-card:nth-child(6) {
	transform: translateX(100px) scale(0.8);
}

/* Quando o JS ativa */
.advantage-card.show {
	opacity: 1;
	transform: translateX(0) translateY(0) scale(1);
}

/* Parte sobre */

.about-section {
	position: relative;
	background-image: url('/img/city.png');
	background-size: cover;
	background-position: center;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
	overflow: hidden;
}

.about-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5); /* escurece a imagem para destacar o texto */
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 40px 20px;
}

.about-content {
	text-align: center;
	max-width: 800px;
}

.about-title {
	font-size: 48px;
	margin-bottom: 20px;
}

.about-description {
	font-size: 20px;
	line-height: 1.6;
	margin-bottom: 30px;
}

.about-content .btn-cta {
	padding: 15px 35px;
	font-size: 18px;
	font-weight: 500;
}

/* Seção de Planos */
/* Seção geral */
.plans-section {
	position: relative;
	padding: 100px 20px;
	height: 100%;
	background-color: #0f2028; /* cor de fundo base escura */
	overflow: hidden;
	text-align: center;
	z-index: 1;
}

/* Fundo SVG ou overlay */
.plans-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('/img/seu-background.svg') no-repeat center center/cover;
	opacity: 0.08;
	z-index: 0;
}

/* Conteúdo principal */
.plans-content {
	position: relative;
	z-index: 2;
	max-width: 1200px;
	margin: 0 auto;
}

.section-title {
	font-size: 2.8rem;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 10px;
}

.section-subtitle {
	font-size: 1.2rem;
	color: #cdd3d7;
	max-width: 700px;
	margin: 0 auto 60px auto;
}

.pricing-container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
	padding: 2rem 1rem;
}

.pricing-card {
	background: #fff;
	color: #222;
	border-radius: 1.5rem;
	padding: 2rem;
	max-width: 360px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	transition: transform 0.3s ease;
}

.pricing-card:hover {
	transform: translateY(-5px);
}

.card-header {
	display: flex;
	align-items: start;
	gap: 1rem;
}

.card-icon {
	font-size: 1.2rem;
	color: #888;
}

.card-title h3 {
	font-size: 1.4rem;
	font-weight: 600;
	margin-bottom: 0.3rem;
}

.badge-popular {
	background-color: #ffeadd;
	color: #ff5b00;
	font-size: 0.75rem;
	padding: 0.2rem 0.5rem;
	border-radius: 0.5rem;
	margin-left: 0.4rem;
}

.description {
	font-size: 0.85rem;
	color: #666;
	line-height: 1.4;
}

.price {
	font-size: 1.7rem;
	font-weight: bold;
	color: #000;
}

.price span {
	font-size: 1rem;
	font-weight: 400;
	margin-left: 0.3rem;
	color: #555;
}

.billing-note {
	font-size: 0.75rem;
	color: #888;
}

.divider {
	border: none;
	height: 1px;
	background-color: #eee;
}

.features p {
	font-size: 0.9rem;
	color: #333;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin: 0.3rem 0;
}

.features i {
	color: #a855f7;
}

.btn-started {
	margin-top: auto;
	padding: 0.9rem 1rem;
	background: #111;
	color: #fff;
	border: none;
	border-radius: 0.7rem;
	font-size: 1rem;
	font-weight: 500;
	cursor: pointer;
	transition: background 0.3s ease;
}

.btn-started:hover {
	background: linear-gradient(90deg, #00274e, #007bff);
}

.card-button {
	background-color: #0057ff;
	color: white;
	padding: 12px 24px;
	border-radius: 10px;
	border: none;
	cursor: pointer;
	transition: background-color 0.3s ease, transform 0.2s ease;
}

.card-button:hover {
	background-color: #003eb3;
	transform: translateY(-3px);
}

/* FAQ */

.faq-section {
	padding: 80px 20px;
	max-width: 900px;
	margin: 0 auto;
}

.faq-title {
	text-align: center;
	font-size: 3.5rem;
	margin-bottom: 50px;
	color: #0f2028;
	background: linear-gradient(90deg, #10154f, #2530b5);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	color: #001f61;
	font-family: 'Urbanist';
}

.faq-container {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.faq-item {
	border: 1px solid #e0e0e0;
	border-radius: 10px;
	overflow: hidden;
	transition: box-shadow 0.3s ease;
	background-color: #f9f9f9;
}

.faq-item:hover {
	box-shadow: 0 4px 15px rgba(0, 119, 255, 0.1);
}

.faq-question {
	width: 100%;
	padding: 20px;
	text-align: left;
	background-color: transparent;
	border: none;
	outline: none;
	font-size: 1.2rem;
	font-weight: 600;
	color: #0077ff;
	cursor: pointer;
	position: relative;
}

.faq-question::after {
	content: '+';
	position: absolute;
	right: 20px;
	font-size: 1.5rem;
	transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
	transform: rotate(45deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease, padding 0.4s ease;
	padding: 0 20px;
	background-color: #fff;
	color: #444;
}

.faq-item.active .faq-answer {
	padding: 15px 20px 20px;
	max-height: 500px;
}

/* Footer + contato */

/* Footer base */
.footer {
	background-color: #0f2028;
	color: #ffffff;
	padding: 60px 40px 40px;
	font-family: 'Urbanist', sans-serif;
}

.footer-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 40px;
}

/* Coluna esquerda */
.footer-left {
	flex: 1;
	min-width: 250px;
}

.footer-left h3 {
	font-size: 1.8rem;
	margin-bottom: 20px;
}

.footer-links {
	list-style: none;
	padding: 0;
	margin: 0 0 20px 0;
}

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

.footer-links a {
	text-decoration: none;
	color: #ccc;
	font-size: 1rem;
	transition: color 0.3s;
}

.footer-links a:hover {
	color: #ffffff;
}

.footer-copy {
	font-size: 0.9rem;
	color: #888;
}

/* Coluna direita */
.footer-right {
	flex: 1;
	min-width: 250px;
	display: flex;
	flex-direction: column;
	align-items: flex-end; /* Alinha à direita */
	text-align: right;
	gap: 20px;
}

.footer-right h4 {
	font-size: 1.2rem;
	margin-bottom: 10px;
	color: #ffffff;
}

.footer-right p {
	margin: 0;
	color: #ccc;
	font-size: 0.95rem;
	line-height: 1.6;
}

/* Redes sociais */
.footer-socials {
	display: flex;
	gap: 15px;
	justify-content: flex-end;
	margin-top: 10px;
}

.footer-socials a img {
	width: 24px;
	height: 24px;
	transition: transform 0.3s ease;
}

.footer-socials a:hover img {
	transform: scale(1.2);
}

.footer-bottom {
	text-align: center;
	margin-top: 40px;
	padding-top: 20px;
	border-top: 1px solid #444; /* Linha fina */
	color: #888;
	font-size: 0.9rem;
}

/* Responsivo */
/* === Container Utilitário === */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* === Navbar Desktop Refinado === */
.navbar {
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 60px;
}

.navbar-center {
	display: flex;
	justify-content: center;
	flex: 2;
}

.navbar-left,
.navbar-right {
	flex: 1;
}

/* === Vantagens como Grid === */
.advantages-container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	max-width: 1200px;
	margin: 0 auto;
}

.advantage-card {
	width: 100%;
}

/* === FAQ e Footer com Padding extra lateral === */
.faq-section,
.footer {
	padding-left: 40px;
	padding-right: 40px;
}

/* === Ajustes adicionais visuais para telas grandes === */
.hero {
	padding-top: 120px;
	padding-bottom: 120px;
}

.section-title {
	font-size: 3rem;
}

.section-subtitle {
	font-size: 1.25rem;
}

.faq-title {
	font-size: 3rem;
}

.footer-container {
	max-width: 1200px;
	margin: 0 auto;
}

/* Responsividades */

@media (max-width: 768px) {
	.advantages-container {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.pricing-container {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 1200px) {
	.navbar {
		padding: 20px 40px;
		flex-wrap: wrap;
		gap: 10px;
	}

	.navbar-right.nav-buttons {
		flex-wrap: wrap;
		justify-content: center;
	}

	.btn-login,
	.btn-cta {
		padding: 10px 20px;
		font-size: 16px;
	}
}

/* HERO */
@media (max-width: 768px) {
	.hero {
		display: flex;
		flex-direction: column;
		justify-content: center; /* centraliza verticalmente */
		align-items: center;
		text-align: center;
		min-height: 100vh;
		padding: 60px 20px;
	}

	.hero .title {
		font-size: 42px;
		margin-bottom: 16px;
		line-height: 1.3;
	}

	.hero .sub-title {
		font-size: 16px;
		margin-bottom: 25px;
		line-height: 1.5;
	}

	.hero .btn-cta {
		font-size: 16px;
		padding: 12px 30px;
		margin-bottom: 30px;
	}

	.scroll-icon {
		width: 35px;
		height: 35px;
		margin-top: 20px;
	}

	.looper-bg {
		width: 350px;
		height: 350px;
		opacity: 0.2;
	}
}

/* === GERAL - MENU === */
.menu-toggle {
	display: none;
	background: none;
	border: none;
	font-size: 28px;
	color: #000;
	cursor: pointer;
	z-index: 1001;
}

/* === MOBILE STYLE === */
@media (max-width: 768px) {
	.navbar {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 20px;
		position: relative;
	}

	.navbar-left {
		flex: 1;
	}

	.navbar-right {
		display: none;
	}

	.menu-toggle {
		display: block;
	}

	.menu {
		display: none;
		flex-direction: column;
		position: absolute;
		top: 100%;
		right: 0;
		width: 250px;
		background-color: #ffffff;
		border-radius: 10px;
		padding: 20px;
		box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
		z-index: 1000;
	}

	.menu.active {
		display: flex;
	}

	.menu li {
		margin-bottom: 15px;
	}

	.menu li a {
		color: #10154f;
		font-size: 18px;
		text-decoration: none;
		font-weight: 600;
	}
}

/* VANTAGENS */
@media (max-width: 768px) {
	.advantages-section {
		display: flex;
		flex-direction: column;
		justify-content: center; /* centraliza verticalmente */
		align-items: center;
		min-height: 100%;
		padding: 80px 20px;
		text-align: center;
	}
	.advantages-text h1 {
		font-size: 28px;
		text-align: center;
		line-height: 1.3;
	}

	.advantages-text p {
		font-size: 16px;
		text-align: center;
	}

	.advantages-container {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 20px;
		margin-top: 40px;
	}

	.advantage-card {
		width: 100%;
		max-width: 90%;
	}

	.advantage-card h3 {
		font-size: 18px;
		margin-bottom: 10px;
	}

	.advantage-card p {
		font-size: 14px;
	}

	.icon-svg {
		width: 28px;
		height: 28px;
	}
}

/* SOBRE DESKTOP */
.about-section {
	position: relative;
	background-image: url('/img/city.png');
	background-size: cover;
	background-position: center;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
	overflow: hidden;
}

.about-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5); /* escurece a imagem para destacar o texto */
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 40px 20px;
}

.about-content {
	text-align: center;
	max-width: 800px;
	z-index: 2;
}

.about-title {
	font-size: 48px;
	margin-bottom: 20px;
}

.about-description {
	font-size: 20px;
	line-height: 1.6;
	margin-bottom: 30px;
}

.about-content .btn-cta {
	padding: 15px 35px;
	font-size: 18px;
	font-weight: 500;
}

/* SOBRE - MOBILE */
@media (max-width: 768px) {
	.about-section {
		height: auto;
		min-height: auto;
	}

	.about-overlay {
		position: relative;
		background: rgba(0, 0, 0, 0.6);
		padding: 60px 20px;
		display: flex;
		justify-content: center;
		align-items: flex-start;
	}

	.about-content {
		max-width: 100%;
		text-align: center;
		color: white;
	}

	.about-title {
		font-size: 26px;
		margin-bottom: 20px;
	}

	.about-description {
		font-size: 16px;
		line-height: 1.6;
		margin-bottom: 30px;
	}

	.about-content .btn-cta {
		font-size: 16px;
		padding: 12px 28px;
	}

	.scroll-icon-white {
		margin-top: 40px;
	}
}

/* CARDS - MOBILE SLIDE */
@media (max-width: 768px) {
	.pricing-container {
		display: none; /* esconde o grid normal */
	}

	.pricing-slider {
		display: flex;
		flex-direction: column;
		align-items: center;
		position: relative;
		overflow: hidden;
		width: 100%;
	}

	.pricing-track {
		display: flex;
		transition: transform 0.3s ease-in-out;
		width: 100%; /* 3 cards lado a lado */
	}

	.pricing-card {
		width: 100%;
		max-width: 100%;
		flex-shrink: 0;
		padding: 20px;
		box-sizing: border-box;
	}

	.pricing-controls {
		margin-top: 20px;
		display: flex;
		gap: 20px;
	}

	.slider-prev,
	.slider-next {
		font-size: 24px;
		background: none;
		border: none;
		color: white;
		cursor: pointer;
	}
}

/* Cards mobile - controle */
/* Esconde o slider no desktop */
.pricing-slider-mobile {
	display: none;
}

/* Ativar no mobile */
@media (max-width: 768px) {
	.pricing-container {
		display: none !important;
	}

	.pricing-slider-mobile {
		display: block;
		width: 100%;
		overflow: hidden;
		margin-top: 40px;
	}

	.pricing-track {
		display: flex;
		transition: transform 0.3s ease-in-out;
		width: 100%;
		transition: transform 0.3s ease-in-out;
	}

	.pricing-card {
		flex: 0 0 100%;
		width: 100%;
		max-width: 100%;
		margin: 0 auto;
		box-sizing: border-box;
		padding: 20px;
		border-radius: 20px;
		background: #fff;
	}

	.pricing-controls {
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 20px;
		margin-top: 24px;
	}

	.slider-prev,
	.slider-next {
		background: linear-gradient(90deg, #007bff, #00274e);
		color: #fff;
		font-size: 22px;
		padding: 12px;
		border: none;
		border-radius: 50%;
		width: 48px;
		height: 48px;
		display: flex;
		justify-content: center;
		align-items: center;
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
		cursor: pointer;
		transition: transform 0.2s ease, background 0.3s ease;
	}

	.slider-prev:hover,
	.slider-next:hover {
		transform: scale(1.1);
		background: linear-gradient(90deg, #0055cc, #001c3a);
	}
}

@media (max-width: 768px) {
	.faq-title {
		font-size: 2rem;
		margin-bottom: 30px;
	}

	.faq-question {
		font-size: 1rem;
		padding: 16px;
	}

	.faq-question::after {
		font-size: 1.2rem;
		right: 16px;
	}

	.faq-answer {
		font-size: 0.95rem;
		padding: 0 16px;
	}

	.faq-item.active .faq-answer {
		padding: 12px 16px 16px;
	}
}

/* footer mobile */

@media (max-width: 768px) {
	.footer-container {
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 40px;
	}

	.footer-left,
	.footer-right {
		width: 100%;
		align-items: center;
	}

	.footer-right {
		order: 1; /* aparece primeiro */
	}

	.footer-left {
		order: 2; /* aparece depois */
	}

	.footer-socials {
		justify-content: center;
	}

	.footer-links {
		display: flex;
		flex-direction: column;
		gap: 10px;
		padding: 0;
	}
}

.nav-buttons {
	display: none; /* Oculta no desktop */
}

/* Botões login e call-to-action mobile */
@media (max-width: 768px) {
	.navbar {
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: center;
		padding: 20px;
		position: relative;
	}

	.navbar-right {
		display: none; /* escondido no topo */
	}

	/* Mostra os botões abaixo no mobile */
	.mobile-buttons {
		display: flex;
		justify-content: center;
		gap: 10px;
		margin-top: 20px;
		width: 100%;
		flex-wrap: wrap;
		padding: 0 15px;
	}

	.mobile-buttons .btn-login,
	.mobile-buttons .btn-cta {
		font-size: 13px;
		padding: 10px 16px;
		white-space: nowrap;
		border-radius: 25px;
		flex: 1 1 auto;
		max-width: 180px;
	}
}

@media (max-width: 1023px) {
	.nav-mobile-buttons {
		display: flex;
	}

	.nav-buttons {
		display: none;
	}
}
.mobile-buttons {
	display: none;
}
/* Mostra e centraliza os botões no mobile */
@media (max-width: 1023px) {
	.mobile-buttons {
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 12px;
		margin-top: 20px;
		padding: 0 20px;
		flex-wrap: wrap;
	}

	/* Oculta os botões desktop */
	.nav-buttons {
		display: none !important;
	}

	.btn-login,
	.btn-cta {
		font-size: 14px;
		padding: 12px 18px;
		white-space: nowrap;
	}
}

/* Mostra os botões desktop e esconde os mobile acima de 1024px */
@media (min-width: 1024px) {
	.mobile-buttons {
		display: none !important;
	}

	.nav-buttons {
		display: flex !important;
		gap: 12px;
	}

	.nav-buttons .btn-login,
	.nav-buttons .btn-cta {
		font-size: 16px;
		padding: 14px 26px;
	}
}
