menu{
	display: flex;
	padding: 6px 20px;
	align-items: center;
	gap: 10px;
	background: var(--color2);
	color: white;
	justify-content: space-between;
	position: sticky;
	top: 0;
	z-index: 1000;
}
.brand{
	text-decoration: none;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
}
.brand img{
	width: 42px;
    height: 42px;
	filter: brightness(0) saturate(100%) invert(97%) sepia(75%) saturate(2%) hue-rotate(158deg) brightness(110%) contrast(100%);
}
.brand_name{
	font-size: 14px;
    font-weight: normal;
    letter-spacing: 0.1rem;
}
.link_pages{
	display: flex;
	gap: 16px;
}
.link_pages a{
	text-decoration: none;
	color: var(--txt2);
  font-size: 14px;
}
.link_pages a:hover{
	color: var(--txt1);
}
.link_pages a.active{
	color: var(--txt1);
}
/*FOOTER*/
.site-footer {
  background-color: var(--color2);
  padding: 20px 0;
  text-align: center;
  font-size: 14px;
}
.site-footer .footer-content {
  max-width: 900px;
  margin: auto;
}
.footer_url_box{
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	justify-content: center;
}
.footer_url_box a:hover{
	color: var(--txt1);
}
.site-footer a {
  color: var(--txt2);
  text-decoration: none;
  padding: 4px 10px;
  border-radius: 6px;
}
.site-footer a.active{
	color: var(--txt1);
}
.site-footer p {
  margin: 10px;
  color: var(--txt1);
  font-style: italic;
}
/*Selector de idiomas*/
.lang-switcher {
  position: relative;
  display: inline-block;
  font-family: Arial, sans-serif;
}

.lang-btn {
  color: var(--txt2);
  background: transparent;
  border: 2px solid var(--txt2);
  padding: 4px 8px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
}

.lang-btn:hover {
  background: #ffffff40;
}

.lang-options {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.15);
  display: none; /* oculto por defecto */
  min-width: 120px;
  z-index: 10;
}
.lang-switcher.open .lang-options {
	display: block;
}
.lang-options a {
  display: block;
  padding: 8px 12px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

.lang-options a:hover {
  background: #f5f5f5;
}