@import url(./assets/fonts/fonts.css);

/* Reset e estilos base */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
		sans-serif;
	line-height: 1.6;
	color: #333;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Header e Navegação */
.header {
	background-color: #fff;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
}

.nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 80px;
}

.logo {
	font-size: 24px;
	font-weight: bold;
	color: #0066ff;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 8px;
}

.nav-links {
	display: flex;
	list-style: none;
	gap: 30px;
	align-items: center;
}

.nav-links a {
	text-decoration: none;
	color: #333;
	font-weight: 500;
	transition: color 0.3s;
}

.nav-links a:hover {
	color: #0066ff;
}

.btn-primary {
	background-color: #0066ff;
	color: #fff !important;
	padding: 12px 24px;
	border-radius: 6px;
	font-weight: 600;
	transition: background-color 0.3s;
}

.btn-primary:hover {
	background-color: #0052cc;
}

/* Hero Section */
.hero {
	padding: 160px 0 80px;
	background: linear-gradient(180deg, #ffffff, #b3ced5);
}

.hero-content {
	text-align: center;
	margin: auto;
}

.hero h1 {
	font-size: 64px;
	line-height: 1.2;
	margin-bottom: 24px;
	color: #1a1a1a;
	font-family: "Roboto Serif";
}

.hero p {
	font-size: 20px;
	color: #666;
	margin-bottom: 32px;
}

.hero .highlight {
	color: #0066ff;
	font-weight: bold;
}

.hero-image {
	margin-top: 40px;
	text-align: center;
}

.hero-image img {
	max-width: 100%;
	height: auto;
}

/* Features Section */
.features {
	padding: 80px 0;
	background-color: #fff;
}

.features h2 {
	text-align: center;
	font-size: 36px;
	margin-bottom: 60px;
}

.bento-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin-top: 40px;
}

.bento-card {
	background: linear-gradient(145deg, #ffffff, #f5f7fa);
	border-radius: 24px;
	padding: 25px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.bento-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.bento-card-lg {
	grid-row: span 2;
}

.bento-card-md {
	grid-row: span 1;
	grid-column: span 1;
}

.bento-card-sm {
	grid-row: span 1;
}

.bento-card-content {
	height: 100%;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.bento-card h3 {
	color: #1a1a1a;
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 10px;
}

.bento-card p {
	color: #666;
	font-size: 1rem;
	line-height: 1.5;
}

.bento-card-metrics {
	display: flex;
	gap: 20px;
	margin-top: auto;
}

.metric {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	background: rgba(0, 102, 255, 0.1);
	border-radius: 12px;
}

.icon {
	width: 24px;
	height: 24px;
	color: #0066ff;
}

.icon-lg {
	width: 32px;
	height: 32px;
	margin-top: auto;
}

.status-badge {
	display: inline-block;
	padding: 6px 12px;
	background: rgba(0, 102, 255, 0.1);
	color: #0066ff;
	border-radius: 20px;
	font-size: 0.875rem;
	font-weight: 500;
}

@media (max-width: 768px) {
	.bento-grid {
		grid-template-columns: 1fr;
	}

	.bento-card-lg {
		grid-row: span 1;
	}
}

.feature-card h3 {
	font-size: 20px;
	margin-bottom: 16px;
	color: #1a1a1a;
}

/* Testimonials Section */
.testimonials {
	padding: 80px 0;
	background-color: #f8f9fa;
}

.testimonials h2 {
	text-align: center;
}

.testimonial-card {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
	padding: 40px;
}

.testimonial-card img {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	margin-bottom: 24px;
}

.testimonial-card blockquote {
	font-size: 24px;
	color: #1a1a1a;
	margin-bottom: 16px;
}

.testimonial-card cite {
	color: #666;
	font-style: normal;
}

/* Why Choose Section */
.why-choose {
	padding: 80px 0;
	background-color: #fff;
}

.why-choose h2 {
	text-align: center;
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin-top: 40px;
}

.benefit-item {
	text-align: center;
	padding: 30px;
}

.benefit-item h3 {
	font-size: 20px;
	margin-bottom: 16px;
	color: #1a1a1a;
}

/* Free Trial Section */
.free-trial {
	padding: 80px 0;
	background-color: #f8f9fa;
}

.trial-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	text-align: center;
	margin-bottom: 40px;
}
.trial-content h2 {
	font-family: "Roboto Serif";
	font-size: 48px;
}

.trial-image img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
}

/* Partners Section */
.partners {
	padding: 60px 0;
	background-color: #fff;
}

.partner-logos-container {
	overflow: hidden;
	position: relative;
	width: 100%;
	margin-top: 40px;
}

.partner-logos {
	display: flex;
	justify-content: space-around;
	align-items: center;
	gap: 40px;
	animation: scroll 20s linear infinite;
	width: fit-content;
}

.partner-logos img {
	height: 40px;
	width: auto;
	opacity: 0.7;
	transition: opacity 0.3s;
}

.partner-logos img:hover {
	opacity: 1;
}

@keyframes scroll {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

html {
	scroll-behavior: smooth;
}

/* Footer */
.footer {
	background-color: #1a1a1a;
	color: #fff;
	padding: 80px 0 40px;
}

.footer-content {
	display: flex;
	justify-content: space-between;
	margin-bottom: 60px;
}

.footer-logo {
	display: flex;
	gap: 16px;
	align-items: center;
}

.footer-logo a {
	color: #fff;
	text-decoration: none;
	font-size: 24px;
	font-weight: bold;
}

.footer-links {
	display: flex;
	gap: 60px;
}

.footer-column h4 {
	font-size: 16px;
	margin-bottom: 20px;
}

.footer-column ul {
	list-style: none;
}

.footer-column ul li {
	margin-bottom: 12px;
}

.footer-column a {
	color: #999;
	text-decoration: none;
	transition: color 0.3s;
}

.footer-column a:hover {
	color: #fff;
}

.footer-bottom {
	text-align: center;
	padding-top: 40px;
	border-top: 1px solid #333;
	color: #999;
}

/* Responsividade */
@media (max-width: 768px) {
	.nav-links {
		display: none;
	}

	.hero h1 {
		font-size: 36px;
	}

	.hero p {
		font-size: 18px;
	}

	.footer-content {
		flex-direction: column;
		gap: 40px;
	}

	.footer-links {
		flex-direction: column;
		gap: 30px;
	}
}
