#header > a[href="#menu"] {
	display: inline;
  }

#header a {
    font-size: 2em; /* Ajusta el tamaño de la fuente */
    color: #fff; /* Opcional: ajusta el color si es necesario */
}
  
  /* Menu */
  
  #menu {
	-moz-transform: translateX(20em);
	-webkit-transform: translateX(20em);
	-ms-transform: translateX(20em);
	transform: translateX(20em);
	-moz-transition: -moz-transform 0.5s ease, box-shadow 0.5s ease, visibility 0.5s;
	-webkit-transition: -webkit-transform 0.5s ease, box-shadow 0.5s ease, visibility 0.5s;
	-ms-transition: -ms-transform 0.5s ease, box-shadow 0.5s ease, visibility 0.5s;
	transition: transform 0.5s ease, box-shadow 0.5s ease, visibility 0.5s;
	-webkit-overflow-scrolling: touch;
	background: rgba(0, 0, 0, 0.925);
	box-shadow: none;
	color: #fff;
	height: 100%;
	max-width: 80%;
	overflow-y: auto;
	padding: 4em 2em 2em;
	position: fixed;
	right: 0;
	top: 0;
	visibility: hidden;
	z-index: 10002;
  }
  
  #menu > ul {
	margin: 0 0 1em 0;
  }
  
  #menu > ul.links {
	list-style: none;
	padding: 0;
	margin-top: 2em;
  }
  
  #menu > ul.links > li {
	padding: 0;
  }
  
  #menu > ul.links > li > a:not(.button) {
	border: 0;
	border-top: solid 1px rgba(255, 255, 255, 0.25);
	color: inherit;
	display: block;
	line-height: 3.5em;
	text-decoration: none;
  }
  
  #menu > ul.links > li > .button {
	display: block;
	margin: 0.5em 0 0 0;
  }
  
  #menu > ul.links > li:hover {
	color: #265d82;
  }
  
  #menu > ul.links > li:first-child > a:not(.button) {
	border-top: 0 !important;
  }
  
  #menu .close {
	text-decoration: none;
	-moz-transition: color 0.2s ease-in-out;
	-webkit-transition: color 0.2s ease-in-out;
	-ms-transition: color 0.2s ease-in-out;
	transition: color 0.2s ease-in-out;
	-webkit-tap-highlight-color: transparent;
	border: 0;
	color: #fff;
	cursor: pointer;
	display: block;
	position: fixed;
	right: 1em;
	top: 1em;
	z-index: 10003;
	width: 2em;
	height: 2em;
	line-height: 2em;
	text-align: center;
	border-radius: 50%;
	padding: 0;
  }
  
  #menu .close:before {
	content: "\00d7";
	font-size: 1.25em;
  }
  
  #menu.visible .close:before {
	content: "\2630";
	font-size: 1em;
  }
  
  #menu .close:hover {
	background: rgba(255, 255, 255, 0.2);
	color: #265d82;
  }
  
  #menu.visible {
	-moz-transform: translateX(0);
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0);
	box-shadow: 0 0 1.5em 0 rgba(0, 0, 0, 0.2);
	visibility: visible;
  }

  #lugares_de_interes {
	background-color: white;
	text-align: center;
  }
  
  #lugares_de_interes .inner {
	display: flex;
	flex-direction: column;
	align-items: center;
  }
  
  #lugares_de_interes .flex {
	display: flex;
	justify-content: center;
  }
  
  #lugares_de_inter .col {
	text-align: center;
  }
  
  #lugares_de_inter img {
	margin: 0 auto;
	display: block;
  }
  
  @media screen and (max-width: 736px) {
	#menu {
	  padding: 2.5em 1.75em;
	}
	
	#menu .close {
	  right: 0.5em;
	  top: 0.5em;
	}

	#header a {
		font-size: 1em; /* Ajusta el tamaño de la fuente */
		color: #fff; /* Opcional: ajusta el color si es necesario */
	}
  }
  
  /* Banner */
  
  #banner {
	display: -ms-flexbox;
	-ms-flex-pack: center;
	-ms-flex-align: center;
	padding: 8em 0 6em 0;
	-moz-align-items: center;
	-webkit-align-items: center;
	-ms-align-items: center;
	align-items: center;
	display: -moz-flex;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	-moz-justify-content: center;
	-webkit-justify-content: center;
	-ms-justify-content: center;
	justify-content: space-between;
	flex-direction: column;
	padding: 6em 0 2em 0; /* Reducir el padding inferior */
	background-image: url("../images/fondo.jpg");
	/* background-image: -webkit-image-set(
	  url("../images/laguardiafondo-low.jpg") 1x,
	  url("../images/fondo.jpg") 2x
	); */
	/* background-image: image-set(
	  url("../images/laguardiafondo-low.jpg") 1x,
	  url("../images/fondo.jpg") 2x
	); */
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	background-color: #ffffff;
	border-top: 0;
	min-height: 100vh;
	height: 100vh !important;
	position: relative;
	text-align: center;
	overflow: hidden;
  }
  
  #banner .inner {
	-moz-transform: scale(1.0);
	-webkit-transform: scale(1.0);
	-ms-transform: scale(1.0);
	transform: scale(1.0);
	-moz-transition: opacity 0.5s ease, -moz-transform 0.5s ease;
	-webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
	-ms-transition: opacity 0.5s ease, -ms-transform 0.5s ease;
	transition: opacity 0.5s ease, transform 0.5s ease;
	opacity: 1;
	position: relative;
	z-index: 2;
	display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
  }
  
  #banner h1 {
	font-size: 4em;
	margin-top: 0.1 em; /* Subir el h1 */
    margin-bottom: 0.5em;
	color: #FFF;
  }
  
  #banner p {
	color: #ffffff;
	font-size: 1.75em;
	margin-bottom: 2em; /* Añadir espacio debajo del párrafo */
  }

  #banner .button {
    margin-top: auto; /* Empujar el botón hacia abajo */
    margin-bottom: 2em; /* Espacio en la parte inferior */
}
  
  @-moz-keyframes more {
	0% { bottom: -3em; }
	100% { bottom: 0; }
  }
  
  @-webkit-keyframes more {
	0% { bottom: -3em; }
	100% { bottom: 0; }
  }
  
  @-ms-keyframes more {
	0% { bottom: -3em; }
	100% { bottom: 0; }
  }
  
  @keyframes more {
	0% { bottom: -3em; }
	100% { bottom: 0; }
  }
  
  #banner:before {
	-moz-transition: opacity 1.5s ease;
	-webkit-transition: opacity 1.5s ease;
	-ms-transition: opacity 1.5s ease;
	transition: opacity 1.5s ease;
	-moz-transition-delay: 1.25s;
	-webkit-transition-delay: 1.25s;
	-ms-transition-delay: 1.25s;
	transition-delay: 1.25s;
	content: '';
	display: block;
	background-color: #000;
	height: 100%;
	left: 0;
	opacity: 0.4;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 1;
  }
  
  @media screen and (max-width: 980px) {
	#banner {
	  font-size: .85em;
	}
	#banner br {
	  display: none;
	}
  }
  
  @media screen and (max-width: 736px) {
	#banner {
	  min-height: 0;
	  padding: 8em 2em 4em 2em;
	}
	#banner .inner {
	  width: 100%;
	}
	#banner h1 {
	  font-size: 1.2em;
	  margin-bottom: 0.5em;
	  padding-bottom: 0;
	  text-align: center;
	}
	#banner p {
	  font-size: 1.25em;
	}
	#banner .button {
	  width: 50%;
	}
  }
  
  @media screen and (max-width: 480px) {
	#banner p {
	  font-size: 1em;
	}
  }
  
  body.is-loading #banner .inner {
	-moz-transform: scale(0.99);
	-webkit-transform: scale(0.99);
	-ms-transform: scale(0.99);
	transform: scale(0.99);
	opacity: 0;
  }
  
  body.is-loading #banner:before {
	opacity: 1;
  }

  .button {
	background-color: #0056b3;
	color: white;
	font-size: 1.1em;
	border-radius: 5px;
	text-decoration: none;
	text-align: center;
	display: inline-block;
	cursor: pointer;
	transition: background-color 0.3s ease;
	width: auto;
	margin: 10px 0;
}

/* Estilos para los botones de abrir mapa */
/* Hacer los botones responsivos */
@media screen and (max-width: 768px) {
	.button {
		width: 75%;
		font-size: 1em;
	}
}

/* Efecto al pasar el ratón por encima del botón */
.button:hover {
	background-color: #1c4d6b;
}

/* Modal */
.modal {
	display: none;
	position: fixed;
	z-index: 1000;
	padding-top: 100px;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0,0,0,0.9);
}

.modal-content {
	margin: auto;
	display: block;
	width: 80%;
	max-width: 700px;
}

.close {
	position: absolute;
	top: 50px;
	right: 14px;
	color: #f1f1f1;
	transition: 0.3s;
	font-size: 2em;
}

.close:hover,
.close:focus {
	color: #bbb;
	text-decoration: none;
	cursor: pointer;
}
  
  #footer {
	background-color: #FFFFFF;
	padding: 20px;
	text-align: center;
  }
  
  #footer .logos {
	max-width: 600px;
	margin: 0 auto 30px;
  }
  
  #footer .logos img {
	width: 100%;
	height: auto;
  }
  
  #footer p {
	margin: 5px;
  }
  
  @media screen and (max-width: 768px) {
	#footer .logos img {
	  content: url("../images/footer-mob.jpg");
	}
	
	footer p {
	  font-size: 10px;
	}
  }
  
  #monumentos .col p {
    font-size: 1.2em;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 15px;
}


/* Centrar los botones en dispositivos móviles */
@media screen and (max-width: 768px) {
    #mapa .button {
        display: block; /* Asegura que se comporten como bloques */
        margin: 0 auto; /* Centra horizontalmente */
        text-align: center; /* Centra el contenido del botón */
        width: 75%; /* Ajustar el ancho del botón */
        margin-bottom: 15px; /* Espacio entre los botones */
    }
	
    #mapa .button:last-child {
        margin-bottom: 0; /* Elimina el margen inferior del último botón */
    }

	#mapa .button {
        display: block; /* Asegura que se comporten como bloques */
        margin: 0 auto; /* Centra horizontalmente */
        text-align: center; /* Centra el contenido del botón */
        width: 75%; /* Ajustar el ancho del botón */
        margin-bottom: 15px; /* Espacio entre los botones */
    }

	a#vermas {
		display: block;
		margin: 0 auto; /* Centra horizontalmente */
        text-align: center; /* Centra el contenido del botón */
        width: 75%; /* Ajustar el ancho del botón */
	}
}
