/* Estilos completos de Proyectos y Alianzas */
.proyectos {
	padding: 80px 0;
	background-color: #FFFFFF;
}

.container-proyectos {
	padding: 0px 60px;
}

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

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

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

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

.proyectos-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.proyecto-card {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	height: 500px;
	cursor: pointer;
}

.proyecto-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.proyecto-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 70%, transparent 100%);
	padding: 40px 30px;
	display: flex;
	align-items: flex-end;
	min-height: 50%;
}

.proyecto-content {
	color: white;
}

.proyecto-content h3 {
	font-size: 28px;
	margin-bottom: 12px;
	font-weight: 700;
	line-height: 1.3;
}

.proyecto-content p {
	font-size: 16px;
	line-height: 1.5;
	opacity: 0.95;
}

@media (max-width: 1024px) {
	.proyectos-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.proyectos h2 {
		font-size: 38px;
	}
}

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

	.proyectos h2 {
		font-size: 32px;
		margin-bottom: 40px;
	}

	.proyectos-grid {
		grid-template-columns: 1fr;
		gap: 25px;
	}

	.proyecto-card {
		height: 400px;
	}

	.proyecto-content h3 {
		font-size: 24px;
	}

	.proyecto-content p {
		font-size: 15px;
	}
}
