body {
	font-family: 'Inter', sans-serif;
	background-color: #f8f9fa;
	color: #333;
}

/* Navbar elegante */
.navbar {
	background: rgba(255, 255, 255, 0.9) !important;
	backdrop-filter: blur(10px);
	border-bottom: 1px solid #eee;
}

/* Hero Section */
.hero {
	padding: 100px 0 60px 0;
	background: linear-gradient(135deg, #ffffff 0%, #e9ecef 100%);
}

.hero-title {
	font-weight: 800;
	color: #1a1a1a;
	letter-spacing: -1px;
}

.btn-primary-custom {
	background-color: #0d6efd;
	padding: 12px 30px;
	border-radius: 50px;
	font-weight: 600;
	transition: all 0.3s;
}

.btn-primary-custom:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(13, 110, 253, 0.2);
}

/* Cards de Recursos */
.feature-card {
	border: none;
	border-radius: 20px;
	padding: 40px;
	background: #fff;
	transition: all 0.3s ease;
	height: 100%;
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.feature-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.icon-box {
	width: 60px;
	height: 60px;
	background: #e7f0ff;
	color: #0d6efd;
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	margin-bottom: 20px;
}

/* Footer */
footer {
	background: #fff;
	border-top: 1px solid #eee;
	padding-top: 50px;
}

.social-icon {
	font-size: 1.5rem;
	color: #666;
	margin: 0 10px;
	transition: 0.3s;
}

.social-icon:hover {
	color: #0d6efd;
}