* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Inter', sans-serif;
	color: #1f2937;
	background: #ffffff;
	line-height: 1.6;
}

/* Utility Classes */
.container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 20px;
}

.section-padding {
	padding: 80px 0;
}

.gradient-blue-purple {
	background: linear-gradient(135deg, #0066cc 0%, #7c3aed 100%);
}

.gradient-text {
	background: linear-gradient(135deg, #0066cc 0%, #7c3aed 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* Header/Navigation */
header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 0;
}

.logo {
	font-size: 24px;
	font-weight: 800;
	background: linear-gradient(135deg, #0066cc 0%, #7c3aed 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.nav-links {
	display: flex;
	gap: 40px;
	list-style: none;
}

.nav-links a {
	text-decoration: none;
	color: #4b5563;
	font-weight: 500;
	transition: color 0.3s;
}

.nav-links a:hover {
	color: #0066cc;
}

.cta-button {
	background: linear-gradient(135deg, #0066cc 0%, #7c3aed 100%);
	color: white;
	padding: 12px 28px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	transition: transform 0.3s, box-shadow 0.3s;
	border: none;
	cursor: pointer;
	font-size: 16px;
}

.cta-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 24px rgba(0, 102, 204, 0.3);
}

/* Hero Section */
.hero {
	padding-top: 120px;
	padding-bottom: 80px;
	background: linear-gradient(135deg, #f0f4ff 0%, #f5f0ff 100%);
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	right: -200px;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(0, 102, 204, 0.1) 0%, transparent 70%);
	border-radius: 50%;
}

.hero-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	position: relative;
	z-index: 1;
}

.hero h1 {
	font-size: 52px;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 20px;
	color: #1f2937;
}

.hero .gradient-text {
	font-size: 52px;
}

.hero p {
	font-size: 18px;
	color: #6b7280;
	margin-bottom: 30px;
	line-height: 1.8;
}

.hero-cta {
	display: flex;
	gap: 20px;
	align-items: center;
}

.hero-image {
	position: relative;
	height: 450px;
	border-radius: 5px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 102, 204, 0.15);
}

.hero-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 16px;
}

/* Features Section */
.features {
	background: white;
}

.section-title {
	text-align: center;
	margin-bottom: 60px;
}

.section-title h2 {
	font-size: 42px;
	font-weight: 800;
	margin-bottom: 16px;
	color: #1f2937;
}

.section-title p {
	font-size: 18px;
	color: #6b7280;
	max-width: 600px;
	margin: 0 auto;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 40px;
}

.feature-card {
	padding: 40px;
	background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
	border-radius: 12px;
	border: 1px solid #e5e7eb;
	transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 40px rgba(0, 102, 204, 0.1);
	border-color: #0066cc;
}

.feature-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #0066cc 0%, #7c3aed 100%);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
	margin-bottom: 20px;
}

.feature-card h3 {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 12px;
	color: #1f2937;
}

.feature-card p {
	color: #6b7280;
	font-size: 16px;
	line-height: 1.6;
}

/* Demo Section */
.demo {
	background: linear-gradient(135deg, #f0f4ff 0%, #f5f0ff 100%);
}

.demo-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.demo-image {
	position: relative;
	height: 450px;
}

.demo-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 16px;
	box-shadow: 0 20px 60px rgba(0, 102, 204, 0.15);
}

.demo-text h2 {
	font-size: 42px;
	font-weight: 800;
	margin-bottom: 20px;
	color: #1f2937;
}

.demo-text p {
	font-size: 16px;
	color: #6b7280;
	margin-bottom: 20px;
	line-height: 1.8;
}

.benefits-list {
	list-style: none;
	margin: 30px 0;
}

.benefits-list li {
	padding: 12px 0;
	padding-left: 40px;
	position: relative;
	color: #4b5563;
	font-weight: 500;
}

.benefits-list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #84cc16;
	font-weight: bold;
	font-size: 20px;
}

/* Social Proof Section */
.social-proof {
	background: white;
}

.social-proof-content {
	text-align: center;
}

.clients-logos {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 60px;
	flex-wrap: wrap;
	margin-top: 50px;
}

.client-logo {
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #9ca3af;
	font-weight: 600;
	font-size: 14px;
}

.testimonials {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 40px;
	margin-top: 60px;
}

.testimonial {
	padding: 30px;
	background: #f9fafb;
	border-radius: 12px;
	border-left: 4px solid #84cc16;
}

.testimonial-text {
	font-size: 16px;
	color: #4b5563;
	margin-bottom: 20px;
	font-style: italic;
}

.testimonial-author {
	font-weight: 600;
	color: #1f2937;
	font-size: 14px;
}

.testimonial-role {
	font-size: 13px;
	color: #9ca3af;
}

/* Pricing Section */
.pricing {
	background: linear-gradient(135deg, #f0f4ff 0%, #f5f0ff 100%);
}

.pricing-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 40px;
	margin-top: 60px;
}

.pricing-card {
	padding: 40px;
	background: white;
	border-radius: 12px;
	border: 2px solid #e5e7eb;
	transition: transform 0.3s, border-color 0.3s;
}

.pricing-card.featured {
	border-color: #0066cc;
	box-shadow: 0 20px 60px rgba(0, 102, 204, 0.15);
	transform: scale(1.05);
}

.pricing-card:hover {
	border-color: #0066cc;
}

.pricing-card h3 {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 16px;
	color: #1f2937;
}

.pricing-card .price {
	font-size: 42px;
	font-weight: 800;
	color: #0066cc;
	margin: 20px 0;
	font-family: 'IBM Plex Mono', monospace;
}

.pricing-card .period {
	font-size: 14px;
	color: #9ca3af;
	margin-bottom: 30px;
}

.pricing-features {
	list-style: none;
	margin-bottom: 30px;
}

.pricing-features li {
	padding: 10px 0;
	color: #6b7280;
	font-size: 14px;
	border-bottom: 1px solid #f3f4f6;
}

.pricing-features li::before {
	content: '✓ ';
	color: #84cc16;
	font-weight: bold;
}

/* FAQ Section */
.faq {
	background: white;
}

.faq-search {
	max-width: 600px;
	margin: 0 auto 40px;
}

.faq-search-input {
	width: 100%;
	padding: 14px 20px;
	border: 2px solid #e5e7eb;
	border-radius: 12px;
	font-size: 16px;
	font-family: 'Inter', sans-serif;
	transition: border-color 0.3s, box-shadow 0.3s;
}

.faq-search-input:focus {
	outline: none;
	border-color: #0066cc;
	box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.faq-categories {
	display: flex;
	justify-content: center;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 40px;
}

.faq-category-btn {
	padding: 10px 20px;
	border: 2px solid #e5e7eb;
	background: white;
	border-radius: 8px;
	font-weight: 500;
	color: #6b7280;
	cursor: pointer;
	transition: all 0.3s;
	font-size: 14px;
}

.faq-category-btn:hover {
	border-color: #0066cc;
	color: #0066cc;
}

.faq-category-btn.active {
	background: linear-gradient(135deg, #0066cc 0%, #7c3aed 100%);
	color: white;
	border-color: transparent;
}

.faq-items {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	padding: 24px;
	border-bottom: 1px solid #e5e7eb;
	cursor: pointer;
	transition: background 0.3s, transform 0.3s;
}

.faq-item:hover {
	background: #f9fafb;
	transform: translateX(4px);
}

.faq-question {
	font-weight: 600;
	color: #1f2937;
	font-size: 16px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
}

.faq-answer {
	display: none;
	margin-top: 16px;
	color: #6b7280;
	font-size: 15px;
	line-height: 1.8;
}

.faq-item.active .faq-answer {
	display: block;
	animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.faq-toggle {
	font-size: 20px;
	transition: transform 0.3s;
	flex-shrink: 0;
}

.faq-item.active .faq-toggle {
	transform: rotate(180deg);
}

/* Contact Form Section */
.contact {
	background: white;
}

.contact-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: flex-start;
}

.contact-info h2 {
	font-size: 36px;
	font-weight: 800;
	margin-bottom: 20px;
	color: #1f2937;
}

.contact-info p {
	font-size: 16px;
	color: #6b7280;
	margin-bottom: 30px;
	line-height: 1.8;
}

.contact-methods {
	list-style: none;
	margin-top: 40px;
}

.contact-method {
	padding: 20px 0;
	border-bottom: 1px solid #e5e7eb;
	display: flex;
	gap: 16px;
}

.contact-method:last-child {
	border-bottom: none;
}

.contact-icon {
	width: 48px;
	height: 48px;
	background: linear-gradient(135deg, #0066cc 0%, #7c3aed 100%);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	flex-shrink: 0;
}

.contact-method-text h3 {
	font-weight: 600;
	color: #1f2937;
	margin-bottom: 4px;
}

.contact-method-text p {
	font-size: 14px;
	color: #6b7280;
	margin: 0;
}

.contact-form {
	background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
	padding: 40px;
	border-radius: 16px;
	border: 1px solid #e5e7eb;
}

.form-group {
	margin-bottom: 24px;
}

.form-group label {
	display: block;
	font-weight: 600;
	color: #1f2937;
	margin-bottom: 8px;
	font-size: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid #d1d5db;
	border-radius: 8px;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	color: #1f2937;
	transition: border-color 0.3s, box-shadow 0.3s;
	background: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
	outline: none;
	border-color: #0066cc;
	box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-group textarea {
	resize: vertical;
	min-height: 120px;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.form-group.full {
	grid-column: 1 / -1;
}

.form-submit {
	background: linear-gradient(135deg, #0066cc 0%, #7c3aed 100%);
	color: white;
	padding: 14px 32px;
	border: none;
	border-radius: 8px;
	font-weight: 600;
	font-size: 16px;
	cursor: pointer;
	transition: transform 0.3s, box-shadow 0.3s;
	width: 100%;
}

.form-submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 24px rgba(0, 102, 204, 0.3);
}

.form-submit:disabled {
	opacity: 0.7;
	cursor: not-allowed;
}

.form-message {
	padding: 16px;
	border-radius: 8px;
	margin-bottom: 20px;
	font-size: 14px;
	display: none;
}

.form-message.success {
	background: #d1fae5;
	color: #065f46;
	border: 1px solid #6ee7b7;
	display: block;
}

.form-message.error {
	background: #fee2e2;
	color: #991b1b;
	border: 1px solid #fca5a5;
	display: block;
}

.form-group.error input,
.form-group.error textarea,
.form-group.error select {
	border-color: #ef4444;
}

.form-error {
	color: #ef4444;
	font-size: 12px;
	margin-top: 4px;
	display: none;
}

.form-group.error .form-error {
	display: block;
}

/* CTA Section */
.final-cta {
	background: linear-gradient(135deg, #0066cc 0%, #7c3aed 100%);
	color: white;
	text-align: center;
}

.final-cta h2 {
	font-size: 42px;
	font-weight: 800;
	margin-bottom: 20px;
}

.final-cta p {
	font-size: 18px;
	margin-bottom: 40px;
	opacity: 0.95;
}

.cta-button-white {
	background: white;
	color: #0066cc;
	padding: 14px 40px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 700;
	display: inline-block;
	transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button-white:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
	background: #1f2937;
	color: #d1d5db;
	padding: 60px 0 20px;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	margin-bottom: 40px;
}

.footer-section h4 {
	color: white;
	margin-bottom: 16px;
	font-weight: 600;
}

.footer-section ul {
	list-style: none;
}

.footer-section ul li {
	margin-bottom: 10px;
}

.footer-section a {
	color: #d1d5db;
	text-decoration: none;
	transition: color 0.3s;
}

.footer-section a:hover {
	color: white;
}

.footer-bottom {
	border-top: 1px solid #374151;
	padding-top: 20px;
	text-align: center;
	font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
	.nav-links {
		display: none;
	}

	.hero-content,
	.demo-content,
	.contact-content {
		grid-template-columns: 1fr;
	}

	.hero h1 {
		font-size: 36px;
	}

	.section-title h2 {
		font-size: 32px;
	}

	.demo-text h2 {
		font-size: 32px;
	}

	.pricing-card.featured {
		transform: scale(1);
	}

	.hero-image,
	.demo-image {
		height: 300px;
	}

	.section-padding {
		padding: 60px 0;
	}

	.contact-content {
		grid-template-columns: 1fr;
	}

	.form-row {
		grid-template-columns: 1fr;
	}

	.faq-categories {
		gap: 8px;
	}

	.faq-category-btn {
		padding: 8px 16px;
		font-size: 12px;
	}
}

.logo-container {
	width: 200px;
	height: 100px;
}

.logo-img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	/* Ajusta a imagem dentro da div */
}

.header {
	text-align: center;
	margin-bottom: 35px;
}

.header h1 {
	font-size: 1.8rem;
	color: #1a1a2e;
	margin-bottom: 8px;
	font-weight: 700;
}

.header p {
	font-size: 0.9rem;
	color: #555;
	margin-bottom: 3px;
}

.header .subtitle {
	font-size: 0.85rem;
	color: #999;
}

.plans-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 15px;
	margin-bottom: 25px;
}

.plan-card {
	background: white;
	border-radius: 10px;
	padding: 18px 15px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
	transition: all 0.3s ease;
	position: relative;
	display: flex;
	flex-direction: column;
}

.plan-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.plan-card.featured {
	border: 2px solid #0052cc;
	transform: scale(1.02);
}

.plan-card.featured:hover {
	transform: scale(1.02) translateY(-5px);
}

.plan-badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: linear-gradient(135deg, #0052cc 0%, #0066ff 100%);
	color: white;
	padding: 4px 12px;
	border-radius: 15px;
	font-size: 0.65rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.3px;
}

.plan-name {
	font-size: 1rem;
	font-weight: 700;
	color: #1a1a2e;
	margin-bottom: 8px;
	margin-top: 5px;
}

.plan-price {
	font-size: 1.5rem;
	font-weight: 700;
	color: #0052cc;
	margin-bottom: 2px;
}

.plan-price span {
	font-size: 0.8rem;
	color: #999;
	font-weight: 400;
}

.plan-period {
	font-size: 0.8rem;
	color: #999;
	margin-bottom: 12px;
	padding-bottom: 12px;
	border-bottom: 1px solid #f0f0f0;
}

.plan-features {
	list-style: none;
	margin-bottom: 12px;
	flex-grow: 1;
}

.plan-features li {
	padding: 6px 0;
	color: #555;
	font-size: 0.8rem;
	display: flex;
	align-items: center;
	border-bottom: 1px solid #f5f5f5;
}

.plan-features li:last-child {
	border-bottom: none;
}

.plan-features li:before {
	content: "✓";
	display: inline-block;
	width: 18px;
	height: 18px;
	background: linear-gradient(135deg, #0052cc 0%, #0066ff 100%);
	color: white;
	border-radius: 50%;
	text-align: center;
	line-height: 18px;
	margin-right: 8px;
	font-weight: bold;
	font-size: 0.7rem;
	flex-shrink: 0;
}

.plan-cta {
	background: linear-gradient(135deg, #0052cc 0%, #0066ff 100%);
	color: white;
	border: none;
	padding: 9px 16px;
	border-radius: 6px;
	font-size: 0.8rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 0.3px;
	text-decoration: none;
	text-align: center;
	line-height: normal;
}

.plan-cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 15px rgba(0, 82, 204, 0.25);
}

.plan-card.personalizado .plan-cta {
	background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
}

.plan-card.personalizado .plan-cta:hover {
	box-shadow: 0 6px 15px rgba(255, 107, 53, 0.25);
}

.plan-card.personalizado {
	border: 2px solid #ff6b35;
}

.plan-card.personalizado .plan-name {
	color: #ff6b35;
}

.plan-card.personalizado .plan-price {
	color: #ff6b35;
}

.plan-card.personalizado .plan-badge {
	background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
}

@media (max-width: 768px) {
	body {
		padding: 20px 10px;
	}

	.header h1 {
		font-size: 1.4rem;
	}

	.plans-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.plan-card.featured {
		transform: scale(1);
	}

	.plan-card.featured:hover {
		transform: translateY(-5px);
	}
}

.comparison-note {
	text-align: center;
	margin-top: 20px;
	padding: 15px;
	background: rgba(0, 82, 204, 0.05);
	border-radius: 6px;
	color: #555;
	font-size: 0.8rem;
	line-height: 1.4;
}

.comparison-note strong {
	color: #0052cc;
}