@charset "UTF-8";
/* CSS Document */

{
	margin: 0;
	padding: 0;
}
#header {

	background: #96AF8A;
	text-align: center;	
	padding: 20px;	
	width: 100%;
	 position: fixed;
  	top: 0;
 	 left: 0;
	color: aliceblue;
	position: fixed;
}
#main {
	text-align: center;
	position: sticky;
	margin-top: 200px;
	color: #4C5A40;
	
}
#contenidor{
	justify-content: center;
	margin: 100px;
}
.historia-contenedor {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 40px;
}


.historia-imagen img {
  width: 100%;
  max-width: 400px;
  border-radius: 15px;
  object-fit: cover;
}

.historia-fechas ul {
  list-style: none;
  padding: 0;
	color: #4C5A40;
}

.historia-fechas li {
  margin-bottom: 15px;
  font-size: 18px;
}


.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);
}

/* Efecto hover suave */
.boton-flotante:hover {
  transform: scale(1.1);
}