/* Footer minimalista moderno */
.contenedor {
	width: 100%;
	margin: auto;
}

/* Footer principal */
footer {
	background-color: #ffffff;
	width: 100%;
	bottom: 0px;
	border-top: 1px solid #e5e7eb;
	padding: 0;
}

footer .contenedor {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 32px 20px 24px 20px;
	max-width: 1200px;
}

/* Sección social minimalista */
.sociales {
	width: auto;
	margin-bottom: 20px;
	text-align: center;
}

.sociales a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	margin: 0 8px;
	color: #ffffff;
	text-decoration: none;
	font-size: 1.3rem;
	border-radius: 50%;
	background-color: #ffffff;
	border: 1px solid #e5e7eb;
	transition: all 0.2s ease;
}

.sociales a:hover {
	color: #374151;
	background-color: #f3f4f6;
	border-color: #d1d5db;
	transform: translateY(-1px);
}

/* Copyright minimalista */
#derechos {
	margin: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

#derechos .copy {
	font-size: 14px;
	color: #6b7280;
	font-weight: 400;
	text-align: center;
	margin: 0;
	padding: 0;
	letter-spacing: 0.025em;
}

#derechos img {
	display: none;
}

/* Elementos del menú inferior ocultos para diseño minimalista */
.menu_down {
	display: none;
}

/* Media queries para responsive */
@media screen and (max-width: 768px) {
	footer .contenedor {
		padding: 28px 16px 20px 16px;
	}
	
	.sociales {
		margin-bottom: 16px;
	}
	
	.sociales a {
		width: 40px;
		height: 40px;
		margin: 0 6px;
		font-size: 1.2rem;
	}
	
	#derechos .copy {
		font-size: 13px;
	}
}

@media screen and (max-width: 480px) {
	footer .contenedor {
		padding: 24px 12px 16px 12px;
	}
	
	.sociales {
		margin-bottom: 14px;
	}
	
	.sociales a {
		width: 36px;
		height: 36px;
		margin: 0 4px;
		font-size: 1.1rem;
	}
}

@media (min-width: 1280px) {
	.contenedor {
		width: 1280px;
	}
}