/* Estilos completos de la sección Conoce la AEF */
.conoce-aef {
	padding: 80px 0;
	background-color: #FFFFFF;
}

.conoce-content {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 70px;
	align-items: center;
	padding: 0px 60px;
}

.conoce-tag {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #0B7BBB;
	font-size: 15px;
	font-weight: 600;
	margin-bottom: 20px;
}

.conoce-tag .tag-icon {
	width: 24px;
	height: 24px;
	flex-shrink: 0;
}

.conoce-text h2 {
	font-size: 48px;
	margin-bottom: 30px;
	color: #1a1a1a;
	font-weight: 700;
	line-height: 1.2;
}

.conoce-tag .aef-logo-tag {
	width: 16px;
	height: 21px;
	flex-shrink: 0;
}

.conoce-text p {
	font-size: 17px;
	line-height: 1.7;
	color: #333333;
	margin-bottom: 25px;
}

.conoce-text p strong {
	font-weight: 700;
	color: #1a1a1a;
}

.btn-conoce {
	background-color: transparent;
	color: #0B7BBB;
	border: 2px solid #0B7BBB;
	padding: 14px 32px;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: 10px;
}

.btn-conoce:hover {
	background-color: #0B7BBB;
	color: white;
	transform: translateY(-2px);
}

.btn-conoce i {
	font-size: 14px;
	transition: transform 0.3s ease;
}

.btn-conoce:hover i {
	transform: translateX(5px);
}

.conoce-image {
	position: relative;
}

.conoce-image img {
	width: 100%;
	height: 450px;
	object-fit: cover;
	border-radius: 16px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

@media (max-width: 1024px) {
	.conoce-content {
		gap: 50px;
	}

	.conoce-text h2 {
		font-size: 38px;
	}
}

@media (max-width: 768px) {
	.conoce-aef {
		padding: 60px 0;
	}

	.conoce-content {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.conoce-text h2 {
		font-size: 32px;
	}

	.conoce-text p {
		font-size: 16px;
	}

	.conoce-image img {
		height: 320px;
	}

	.btn-conoce {
		width: 100%;
		justify-content: center;
	}
}
