.agro-footer {
	background-color: #2FAE99;
	color: #e2e8f0;
	padding: 80px 0 40px 0;
	font-family: 'Roboto', sans-serif;
	border-top: 4px solid #61CE70;
	position: relative;
	overflow: hidden;
}

.agro-footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 300px;
	background: radial-gradient(circle at top, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
	pointer-events: none;
}

.agro-footer-container {
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 24px;
	position: relative;
	z-index: 2;
}

.agro-footer-row {
	display: flex;
	flex-wrap: wrap;
	gap: 48px;
	margin-bottom: 50px;
}

.agro-footer-col {
	flex: 1;
	min-width: 240px;
}

.agro-footer-about {
	flex: 1.5;
}

.agro-footer-logo img {
	max-width: 190px;
	height: auto;
	margin-bottom: 24px;
	border-radius: 12px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: transform 0.3s ease;
}

.agro-footer-logo img:hover {
	transform: translateY(-3px);
}

.agro-footer-tagline {
	font-size: 15px;
	line-height: 1.7;
	color: #e2e8f0;
}

.agro-footer-title {
	color: #ffffff;
	font-size: 19px;
	font-weight: 600;
	margin-bottom: 24px;
	position: relative;
	padding-bottom: 10px;
	letter-spacing: 0.5px;
}

.agro-footer-title::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 48px;
	height: 3px;
	background-color: #ffffff;
	border-radius: 2px;
}

.agro-footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.agro-footer-links li {
	margin-bottom: 14px;
}

.agro-footer-links a {
	color: #ffffff;
	text-decoration: none;
	font-size: 15px;
	transition: all 0.25s ease;
	display: inline-block;
	opacity: 0.9;
}

.agro-footer-links a:hover {
	color: #ffffff;
	opacity: 1;
	transform: translateX(5px);
}

.agro-security-badge {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	background: rgba(255, 255, 255, 0.1);
	padding: 20px;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: 0 4px 15px rgba(0,0,0,0.05);
	transition: all 0.3s ease;
}

.agro-security-badge:hover {
	background: rgba(255, 255, 255, 0.15);
	border-color: rgba(255, 255, 255, 0.3);
	transform: translateY(-2px);
}

.agro-badge-icon {
	font-size: 28px;
}

.agro-badge-text {
	display: flex;
	flex-direction: column;
	font-size: 14px;
	line-height: 1.5;
}

.agro-badge-text strong {
	color: #ffffff;
	font-size: 16px;
	margin-bottom: 6px;
}

.agro-badge-text span {
	color: #e2e8f0;
}

.agro-footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	padding-top: 24px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
	font-size: 14px;
	color: #ffffff;
}

.agro-footer-socials {
	display: flex;
	gap: 15px;
}

.social-link.wa {
	background: #25d366;
	color: #ffffff;
	padding: 8px 18px;
	border-radius: 24px;
	text-decoration: none;
	font-weight: 500;
	box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
	transition: all 0.3s ease;
}

.social-link.wa:hover {
	background: #128c7e;
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
}

@media (max-width: 768px) {
	.agro-footer {
		padding: 60px 0 30px 0;
	}
	.agro-footer-row {
		flex-direction: column;
		gap: 36px;
	}
	.agro-footer-bottom {
		flex-direction: column;
		text-align: center;
	}
}
