:root {
	--bg-main: #FFFFFF;
	/* Fundo Branco */
	--bg-cards: #F9FAFB;
	/* Cinza bem claro para cards */
	--primary-accent: #f58634;
	/* Amarelo Vibrante */
	--primary-accent-hover: #F59E0B;
	/* Amarelo mais escuro para hover */
	--text-dark: #111827;
	/* Preto/Cinza muito escuro */
	--text-muted: #6B7280;
	--border-color: #E5E7EB;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Poppins', sans-serif;
	background-color: var(--bg-main);
	color: var(--text-dark);
	overflow-x: hidden;
	/* Previne o scroll horizontal */
}

/* --- Navbar --- */
.navbar {
	background-color: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--border-color);
	padding: 1rem 0;
}

.navbar-brand {
	font-weight: 700;
	color: var(--text-dark);
}

.navbar-brand:hover {
	color: var(--text-dark);
}

.nav-link {
	color: var(--text-muted);
	font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
	color: var(--text-dark);
}

.navbar-toggler {
	border: none;
}

.navbar-toggler:focus {
	box-shadow: none;
}

/* --- Botões --- */
.btn-primary-accent {
	background-color: var(--primary-accent);
	border-color: var(--primary-accent);
	color: var(--text-dark);
	/* Texto escuro para contraste no amarelo */
	font-weight: 600;
	padding: 12px 30px;
	border-radius: 50px;
	transition: all 0.3s ease;
}

.btn-primary-accent:hover {
	background-color: var(--primary-accent-hover);
	border-color: var(--primary-accent-hover);
	color: var(--text-dark);
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(251, 191, 36, 0.2);
}

/* --- Seções --- */
.section {
	padding: 100px 0;
}

.section-title {
	text-align: center;
	margin-bottom: 60px;
}

.section-title h2 {
	font-size: 2.8rem;
	font-weight: 600;
	color: var(--text-dark);
}

/* --- Hero --- */
.hero-section {
	padding: 240px 0;
	/* Padding aumentado para descer o texto */
	text-align: center;
	background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?q=80&w=2940&auto=format&fit=crop');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	color: #FFFFFF;
}

.hero-section h1 {
	font-size: 3.8rem;
	font-weight: 700;
	line-height: 1.2;
	color: #FFFFFF;
}

.hero-section .highlight {
	color: var(--primary-accent);
}

.hero-section p {
	font-size: 1.2rem;
	color: rgba(255, 255, 255, 0.9);
	max-width: 600px;
	margin: 2rem auto 3rem;
}

/* --- Processo --- */
.step-card {
	background-color: var(--bg-cards);
	padding: 40px;
	border-radius: 15px;
	text-align: center;
	border: 1px solid var(--border-color);
	height: 100%;
	transition: all 0.3s ease;
}

.step-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.step-card .step-number {
	font-size: 3rem;
	font-weight: 700;
	color: var(--primary-accent);
	margin-bottom: 1rem;
}

/* --- Seção Nosso Time --- */
#time {
	background-color: var(--bg-cards);
}

/* --- Seção de Números --- */
.stats-section {
	background-color: var(--primary-accent);
	padding: 80px 0;
}

.stat-item {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
}

.stat-item .stat-icon {
	font-size: 3rem;
	color: var(--text-dark);
}

.stat-item h3 {
	font-size: 3rem;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 0;
}

.stat-item p {
	font-size: 1.1rem;
	color: var(--text-dark);
	font-weight: 500;
	margin-bottom: 0;
	line-height: 1.2;
}

/* --- Tabela de Preços --- */
#planos {
	background-color: var(--bg-cards);
}

.billing-toggle {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 2rem;
}

.billing-toggle span {
	font-weight: 500;
	color: var(--text-muted);
	cursor: pointer;
}

.billing-toggle .form-check {
	margin: 0 1rem;
}

.billing-toggle .form-switch .form-check-input {
	width: 3.5em;
	height: 1.8em;
	background-color: var(--primary-accent);
	border-color: var(--primary-accent);
}

.billing-toggle .badge {
	background-color: var(--primary-accent);
	color: var(--text-dark);
}

.price-card {
	background-color: var(--bg-main);
	border: 1px solid var(--border-color);
	border-radius: 15px;
	padding: 40px;
	height: 100%;
	display: flex;
	flex-direction: column;
	transition: all 0.3s ease;
}

.price-card.popular {
	border-color: var(--primary-accent);
	transform: scale(1.05);
	box-shadow: 0 20px 40px rgba(251, 191, 36, 0.15);
}

.price-card .plan-name {
	font-weight: 600;
	color: var(--primary-accent);
}

.price-card .price-container {
	font-size: 3.5rem;
	font-weight: 700;
}

.price-card .billing-cycle {
	font-size: 1rem;
	font-weight: 500;
	color: var(--text-muted);
}

.price-card ul {
	list-style: none;
	padding: 0;
	margin: 2rem 0;
	flex-grow: 1;
}

.price-card ul li {
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
}

.price-card ul li i {
	color: var(--primary-accent);
	margin-right: 10px;
}

/* --- Depoimentos --- */
#depoimentos {
	background-color: var(--bg-main);
}

.testimonial-card {
	background-color: var(--bg-cards);
	padding: 30px;
	border-radius: 15px;
	border: 1px solid var(--border-color);
	text-align: center;
}

.testimonial-card img {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	margin-bottom: 1rem;
	object-fit: cover;
}

.testimonial-card .stars {
	color: var(--primary-accent);
	margin-bottom: 1rem;
}

.testimonial-card .name {
	font-weight: 600;
	margin-bottom: 0;
	margin-top: 1.5rem;
}

.testimonial-card .company {
	color: var(--text-muted);
	font-size: 0.9rem;
}

/* --- Blog --- */
.blog-card {
	border: 1px solid var(--border-color);
	border-radius: 15px;
	overflow: hidden;
	transition: all 0.3s ease;
}

.blog-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.blog-card img {
	aspect-ratio: 16/9;
	object-fit: cover;
}

.blog-card .card-body a {
	text-decoration: none;
	color: var(--text-dark);
	font-weight: 600;
}

.blog-card .card-body a:hover {
	color: var(--primary-accent);
}


/* --- FAQ --- */
#faq {
	background-color: var(--bg-cards);
}

.accordion-button {
	font-weight: 600;
}

.accordion-button:not(.collapsed) {
	color: var(--text-dark);
	background-color: #fff;
}

.accordion-button:focus {
	box-shadow: 0 0 0 0.25rem rgba(251, 191, 36, 0.25);
}


/* --- CTA --- */
.cta-section {
	background-color: var(--primary-accent);
	color: var(--text-dark);
}

.cta-section h2 {
	color: var(--text-dark);
}

.cta-section .btn-cta-final {
	background-color: var(--text-dark);
	color: var(--bg-main);
}

.cta-section .btn-cta-final:hover {
	background-color: #000;
}

/* --- Rodapé --- */
.footer {
	padding: 60px 0 30px;
	text-align: center;
	color: var(--text-muted);
	font-size: 0.9rem;
	background-color: var(--bg-cards);
}

.footer a {
	color: var(--text-muted);
	transition: color 0.3s ease;
}

.footer a:hover {
	color: var(--primary-accent);
}

.footer .social-icons i {
	font-size: 1.5rem;
	margin: 0 10px;
}

/* --- Botões Flutuantes --- */
.whatsapp-float {
	position: fixed;
	width: 60px;
	height: 60px;
	bottom: 40px;
	right: 40px;
	background-color: #25D366;
	color: #FFF;
	border-radius: 50px;
	text-align: center;
	font-size: 30px;
	box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
	z-index: 100;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.3s ease;
}

.whatsapp-float:hover {
	transform: scale(1.1);
	color: #FFF;
}

.whatsapp-float .badge {
	position: absolute;
	top: -5px;
	right: -5px;
	background-color: red;
	color: white;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 12px;
	font-weight: bold;
}

.back-to-top {
	position: fixed;
	width: 50px;
	height: 50px;
	bottom: 45px;
	left: 40px;
	background-color: var(--text-dark);
	color: var(--primary-accent);
	border-radius: 50px;
	text-align: center;
	font-size: 24px;
	box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
	z-index: 100;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.3s ease;
	opacity: 0;
	visibility: hidden;
}

.back-to-top.active {
	opacity: 1;
	visibility: visible;
}

.back-to-top:hover {
	background-color: #000;
	color: #fff;
}


/* --- Modal de Abertura --- */
.modal-header {
	border-bottom: none;
}

.modal-footer {
	border-top: 1px solid var(--border-color);
}

.modal-step {
	display: none;
}

.modal-step.active {
	display: block;
}

.progress-container {
	display: flex;
	justify-content: space-between;
	position: relative;
	margin-bottom: 30px;
	width: 100%;
}

.progress-bar-custom {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	height: 4px;
	background: var(--border-color);
	width: 100%;
	z-index: 1;
}

.progress-bar-custom-fill {
	height: 4px;
	background: var(--primary-accent);
	width: 0%;
	transition: width 0.4s ease;
	z-index: 2;
}

.progress-step {
	width: 30px;
	height: 30px;
	background: var(--bg-main);
	border: 3px solid var(--border-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: bold;
	color: var(--text-muted);
	transition: all 0.4s ease;
	z-index: 3;
}

.progress-step.active {
	border-color: var(--primary-accent);
	background-color: var(--primary-accent);
	color: var(--text-dark);
}