@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

:root {
#	--primary-color: #04ab5c;
            --primary-color: #1E8F1E;
#	--secondary-color: #2ca078;
            --secondary-color: #0E430E;
	--accent-color: #ff6b35;
	--light-color: #f8f9fa;
	--dark-color: #343a40;
}

body {
	
.urbanist-<uniquifier> {
  font-family: "Urbanist", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
	color: #333;
}
#	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
#    min-height: 100%;
#	line-height: 1.6;
#	color: #333;
}

.hero-section {
	background: linear-gradient(rgba(30, 143, 30, 1), rgba(14, 67, 14, 1)), url('https://images.unsplash.com/photo-1579684385127-1ef15d508118?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
#	background: linear-gradient(rgba(0, 84, 179, 0.8), rgba(0, 51, 102, 0.8)), url('https://images.unsplash.com/photo-1579684385127-1ef15d508118?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
	background-size: cover;
	background-position: center;
	color: white;
	padding: 5rem 0;
	position: relative;
}

.navbar {
	background-color: rgba(255, 255, 255, 0.95) !important;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
	height: 50px;
}

.section-title {
	position: relative;
	margin-bottom: 2rem;
	color: var(--secondary-color);
}

.section-title:after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 60px;
	height: 3px;
	background-color: var(--accent-color);
}

.service-card {
	border: none;
	border-radius: 10px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	height: 100%;
}

.service-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.contact-card {
	border-left: 4px solid var(--accent-color);
	transition: all 0.3s ease;
}

.contact-card:hover {
	transform: translateX(5px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
}

.btn-primary:hover {
	background-color: var(--secondary-color);
	border-color: var(--secondary-color);
}

footer {
	background-color: var(--secondary-color);
	color: white;
}

.social-icon {
	color: white;
	font-size: 1.5rem;
	margin: 0 10px;
	transition: color 0.3s ease;
}

.social-icon:hover {
	color: var(--accent-color);
}

/* Otimizações para mobile */
@media (max-width: 768px) {
	.hero-section {
		padding: 3rem 0;
	}
	
	.section-title {
		font-size: 1.8rem;
	}
	
	.navbar-brand img {
		height: 40px;
	}
}

/* Pré-carregar fontes críticas */
body {
	font-display: swap;
}

/* Otimização de imagens */
img {
	max-width: 100%;
	height: auto;
}
a:link {
  text-decoration: none;
  color: #1E8F1E;
}

a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:active {
  text-decoration: underline;
}
h1, h2, h3, h4, h5, h6, th, thead {
	text-transform: uppercase;
}