@charset "utf-8";
/* CSS Document */
/*****
 * CSS Hugo Beghelli
 * Copyright 2025, (https://beghelli.com.ar)
 * Graphic Designer
 * June 2025 /
*****/
/*HELLO*/


.inter{background: radial-gradient(#FFF347, #fdc300);}
.item1 {
  display: block;
  max-width: 1600px;
  margin: 0 auto;
  text-align: center;
  padding: 3vh 3vh 1vh 3vh;
  align-content: center;
}
.content {
  padding: 0;
}
.flex-item {
  display: block;
  max-width: 1600px;
  margin: 0 auto;
  text-align: center;
  padding: 3vh 0;
  align-content: center;
}
.uno{margin-top: 90px}

.flex-item a {
  text-decoration: none;
  color: #950000;
}
.flex-item a:hover {
  font-weight: 600;
  letter-spacing: -0.01em;
}

/*animacion*/


.flex-center {
	display: flex;
	justify-content: center;
	align-items: center;
}
.social-links {
	display: flex;
  align-items: center;
	justify-content: center;
	gap:3vh;
}

.ico{
	width:8vh;
	height:8vh;
}

.social-btn {
  position: relative;
  list-style: none;
  width: 8vh;
  height: 8vh;
  border-radius: 4vh;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
}

.social-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 4vh;
  background: linear-gradient(45deg, var(--i), var(--j));
  opacity: 0;
  transition: 0.5s;
}

.social-btn::after {
  content: "";
  position: absolute;
  top: 10px;
  width: 100%;
  height: 100%;
  border-radius: 4vh;
  background: linear-gradient(45deg, var(--i), var(--j));
  transition: 0.5s;
  filter: blur(15px);
  z-index: -1;
  opacity: 0;
}

.social-btn:hover {
  width: 20vh;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0);
}

.social-btn:hover::before {
  opacity: 1;
}

.social-btn:hover::after {
  opacity: 0.5;
}

.social-btn .icon {
  color: #777;
  font-size: 1.75em;
  transition: 0.5s;
  transition-delay: 0.25s;
}

.social-btn:hover .icon {
  transform: scale(0);
  color: #fff;
  transition-delay: 0s;
}

.social-btn span {
  position: absolute;
}

.social-btn .title {
  color: #fff;
  font-size: 1.1em;
  letter-spacing: 0.1em;
	font-weight: 600;
  transform: scale(0);
  transition: 0.5s;
  transition-delay: 0s;
}

.social-btn:hover .title {
  transform: scale(1);
  transition-delay: 0.25s;
}


@keyframes float {
	0% {
		transform: translatey(0px);
filter: brightness(130%);
	}
	50% {
		transform: translatey(-20px);
filter: brightness(100%);
	}
	100% {
		transform: translatey(0px);
filter: brightness(130%);
	}
}

.gold {
	width: 300px;
	height: auto;
	overflow: hidden;
	transform: translatey(0px);
	animation: float 6s ease-in-out infinite;
padding:0; margin:0;
filter: drop-shadow(0 0 0.75rem crimson)
}

@media (max-width: 768px) {
  .item1 {
    max-width: 100%;
    margin-bottom: 30px;
    padding: 60px 20px 0 0  !important;
  }
  .flex-item {
    width: 100%;
    padding: 10px 20px;
  }

.gold {
	width: 250px;
	height: auto;
}
}