@charset "UTF-8";
/* CSS Document */

#header {
	
	background: #96AF8A;
	text-align: center;	
	padding: 20px;	
	width: 100%;
	 position: fixed;
  	top: 0;
 	 left: 0;
	color: aliceblue;
	font-size: 50px;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f4f4f4;
	padding-top: 80px;
	
}



.galeria {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 15px;
  padding: 40px;
margin-top: 100px;
}

.imagen {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  cursor: pointer;
	height: 250px;
	obje
}

.imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.imagen:hover img {
  transform: scale(1.1);
}.boton-flotante {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 70px;
  height: 70px;
  z-index: 999;
  transition: 0.3s;
}

.boton-flotante img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}


.boton-flotante:hover {
  transform: scale(1.1);