/*Icono Whatssap*/

.float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  padding:  15px;
  cursor: pointer;
  border-radius: 50%;
  background-color: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 999;
  box-sizing: 2px 2px 3px #999;
}
.fa-whatsapp {
  font-size: 60px;
}
.fa-whatsapp.hover{
  background-color: #28e27e;
}
.oculto {
  opacity: 0;
  filter: blur(15px) ;
  transform: translatex(-100%);
  transition: all 1s;

}

.show {
  opacity: 1;
  filter: blur(0px) ;
  transform: translatex(0);
  transition: all 2s;
}
.social-media-buttons {
  display: flex;
  gap: 18px;
}

.social-media-buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 40px;
  background-color: var(--color-neutral-0);
  font-size: 1.25rem;
  border-radius: 10px;
  text-decoration: none;
  color: var(--color-neutral-1);;
  box-shadow: 0px 0px 12px 4px rgba(0, 0, 0, 0.1);
  transition: box-shadow .3s ease;
}

.social-media-buttons a:hover {
  box-shadow: 0px 0px 12px 8px rgba(0, 0, 0, 0.1);
}
img {
  width: 100%;
  height: auto;
}
@keyframes show {
	from {
		opacity: 0;
		scale: 25%;
	}

	to {
		opacity: 1;
		scale: 100%;
	}
}

img {
	view-timeline-name: --image;
	view-timeline-axis: block;

	animation-timeline: --image;
	animation-name: show;

	animation-range: entry 25% cover 30%;
	animation-fill-mode: both;
}
