/* Filtros de tecnologías */
.filter-btn {
	background: #e6ffe6;
	color: #079C1B;
	border: none;
	border-radius: 18px;
	padding: 0.5rem 1.2rem;
	font-size: 1rem;
	font-weight: 500;
	cursor: pointer;
	box-shadow: 0 2px 6px rgba(7,156,27,0.08);
	transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
	outline: none;
}
.filter-btn:hover {
	background: #079C1B;
	color: #fff;
	transform: scale(1.07);
}
.filter-btn.active {
	background: #079C1B;
	color: #fff;
	box-shadow: 0 4px 16px rgba(7,156,27,0.13);
}
/* Reset básico */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
	background: #111;
	color: #fff;
	min-height: 100vh;
}

header {
	background: #079C1B;
	color: #fff;
	padding: 2rem 0 1rem 0;
	text-align: center;
	box-shadow: 0 2px 8px rgba(7,156,27,0.08);
}

header h1 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	letter-spacing: 1px;
}

nav {
	display: flex;
	justify-content: center;
	gap: 1rem;
	align-items: center;
}

nav button, nav select, nav a {
	background: #fff;
	color: #079C1B;
	border: none;
	border-radius: 25px;
	padding: 0.6rem 1.4rem;
	font-size: 1rem;
	font-weight: 500;
	cursor: pointer;
	transition: background 0.2s, color 0.2s, box-shadow 0.2s;
	box-shadow: 0 2px 6px rgba(7,156,27,0.08);
	text-decoration: none;
}

nav button:hover, nav select:hover, nav a:hover {
	background: #046c13;
	color: #fff;
}

main {
	max-width: 900px;
	margin: 2rem auto;
	padding: 2rem;
	background: #222;
	color: #fff;
	border-radius: 18px;
	box-shadow: 0 4px 24px rgba(7,156,27,0.08);
}

section {
	margin-bottom: 2.5rem;
}

#about-title, #projects-title, #cv-title {
	font-size: 2rem;
	color: #079C1B;
	margin-bottom: 0.7rem;
	font-weight: 600;
}

#about-text, #projects-desc, #cv-desc {
	font-size: 1.15rem;
	color: #ccc;
	margin-bottom: 1.2rem;
}

#projects-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 1.5rem;
}

.project-card {
	background: #23272a;
	border-radius: 14px;
	box-shadow: 0 2px 12px rgba(7,156,27,0.07);
	padding: 1.2rem;
	transition: transform 0.2s, box-shadow 0.2s;
}
.project-card:hover {
	transform: translateY(-6px) scale(1.03);
	box-shadow: 0 6px 24px rgba(7,156,27,0.13);
	cursor: pointer;
}
.project-title {
	font-size: 1.2rem;
	color: #079C1B;
	font-weight: 600;
	margin-bottom: 0.5rem;
}
.project-desc {
	color: #ccc;
	font-size: 1rem;
}

footer {
	text-align: center;
	padding: 2rem 0 1.5rem 0;
	background: #079C1B;
	color: #fff;
	border-radius: 0 0 18px 18px;
	box-shadow: 0 -2px 8px rgba(7,156,27,0.08);
	margin-top: 2rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}

.footer-menu {
	display: flex;
	gap: 1.2rem;
	justify-content: center;
	margin-bottom: 0.5rem;
}
.footer-menu a {
	color: #fff;
	background: #046c13;
	padding: 0.5rem 1.2rem;
	border-radius: 16px;
	text-decoration: none;
	font-weight: 500;
	transition: background 0.2s, color 0.2s, box-shadow 0.2s;
	box-shadow: 0 2px 6px rgba(7,156,27,0.08);
}
.footer-menu a:hover {
	background: #fff;
	color: #079C1B;
	box-shadow: 0 4px 16px rgba(7,156,27,0.13);
}
}

iframe {
	border-radius: 12px;
	box-shadow: 0 2px 12px rgba(7,156,27,0.07);
}

@media (max-width: 600px) {
	main {
		padding: 1rem;
	}
	header h1 {
		font-size: 1.5rem;
	}
	#about-title, #projects-title, #cv-title {
		font-size: 1.3rem;
	}
}
