:root {
	--primary: #3498db;
	--secondary: #2980b9;
	--light: #ecf0f1;
	--dark: #2c3e50;
	--accent: #e74c3c;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
	background-color: #f9f9f9;
	color: var(--dark);
	line-height: 1.6;
}

header {
	background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('/imagenes/imagen_planta_3_2.png') center/cover no-repeat;
	height: 100vh;
	color: white;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 2rem;
}

nav {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: rgba(255,255,255,0.95);
	padding: 1rem 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 100;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo {
	font-size: 1.5rem;
	font-weight: bold;
	color: var(--primary);
}

.logo img {
	width: 80px;
	height: 80px;
    object-fit: contain;
}

.nav-links {
	display: flex;
	gap: 2rem;
}

.nav-links a {
	color: var(--dark);
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s;
}

.nav-links a:hover {
	color: var(--primary);
}

.hero-content h1 {
	font-size: 3.5rem;
	margin-bottom: 1rem;
}

.hero-content p {
	font-size: 1.2rem;
	max-width: 800px;
	margin-bottom: 2rem;
}

.btn {
	display: inline-block;
	background-color: var(--primary);
	color: white;
	padding: 0.8rem 2rem;
	border-radius: 30px;
	text-decoration: none;
	font-weight: bold;
	transition: all 0.3s;
}

.btn:hover {
	background-color: var(--secondary);
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

section {
	padding: 5rem 2rem;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
}

.section-title {
	text-align: center;
	margin-bottom: 3rem;
}

.section-title h2 {
	font-size: 2.5rem;
	color: var(--dark);
	position: relative;
	display: inline-block;
}

.section-title h2::after {
	content: "";
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background-color: var(--primary);
}

#about {
	background-color: white;
}

.about-content {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	align-items: center;
}

.about-text {
	flex: 1;
	min-width: 300px;
}

.about-text li {
	list-style-type: none;
	padding-left: 40px;
}

.about-image {
	flex: 1;
	min-width: 300px;
	text-align: center;
}

.about-image img {
	max-width: 100%;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

#team {
	background-color: var(--light);
}

.team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

.team-member {
	background-color: white;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
	transition: transform 0.3s;
}

.team-member:hover {
	transform: translateY(-10px);
}

.member-image {
	align-items: center;
	height: 250px;
	width: 100%;
	overflow: hidden;
}

.member-image img {
	width: 50%;
	height: 50%;
	margin: 25%;
	object-fit: contain;
}

.member-info {
	padding: 1.5rem;
	text-align: center;
}

.member-info h3 {
	margin-bottom: 0.5rem;
	color: var(--dark);
}

.member-info p {
	color: #777;
	margin-bottom: 1rem;
}

.social-links {
	display: flex;
	justify-content: center;
	gap: 1rem;
}

.social-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 35px;
	height: 35px;
	background-color: var(--primary);
	color: white;
	border-radius: 50%;
	transition: background-color 0.3s;
}

.social-links a:hover {
	background-color: var(--secondary);
}

#contact {
	background-color: white;
}

.contact-container {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
}

.contact-info {
	flex: 1;
	min-width: 300px;
}

.contact-form {
	flex: 2;
	min-width: 300px;
}

.info-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 1.5rem;
}

.info-item i {
	font-size: 1.2rem;
	color: var(--primary);
	margin-right: 1rem;
	margin-top: 5px;
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-control {
	width: 100%;
	padding: 0.8rem;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-size: 1rem;
	transition: border-color 0.3s;
}

.form-control:focus {
	outline: none;
	border-color: var(--primary);
}

textarea.form-control {
	resize: vertical;
	min-height: 150px;
}

.submit-btn {
	background-color: var(--primary);
	color: white;
	border: none;
	padding: 0.8rem 2rem;
	border-radius: 30px;
	cursor: pointer;
	font-weight: bold;
	transition: all 0.3s;
}

.submit-btn:hover {
	background-color: var(--secondary);
}

footer {
	background-color: var(--dark);
	color: white;
	text-align: center;
	padding: 2rem;
}

.footer-content {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.footer-logo {
	font-size: 1.8rem;
	font-weight: bold;
	margin-bottom: 1rem;
}

.footer-links {
	display: flex;
	gap: 1.5rem;
	margin-bottom: 1.5rem;
}

.footer-links a {
	color: var(--light);
	text-decoration: none;
	transition: color 0.3s;
}

.footer-links a:hover {
	color: var(--primary);
}

.footer-social {
	display: flex;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.footer-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background-color: rgba(255,255,255,0.1);
	color: white;
	border-radius: 50%;
	transition: background-color 0.3s;
}

.footer-social a:hover {
	background-color: var(--primary);
}

.copyright {
	font-size: 0.9rem;
	opacity: 0.7;
}

@media (max-width: 768px) {
	.nav-links {
		display: none;
	}
	
	.hero-content h1 {
		font-size: 2.5rem;
	}
	
	.section-title h2 {
		font-size: 2rem;
	}
	
	.about-content {
		flex-direction: column;
	}
	
	.team-grid {
		grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	}
}