* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: linear-gradient(135deg, #86cdff, #266b76);
  min-height: 100vh;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.container {
  max-width: 680px;
  width: 100%;
  margin: 0 auto;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: 0.2s;
}

.profile {
  text-align: center;
  margin-bottom: 30px;
}

.profile-img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  margin: 10px auto;
  /*background: #fff;*/
  /*padding: 3px;*/
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  opacity: 0;
  animation: scaleIn 0.6s ease forwards;
  animation-delay: 0.4s;
}

.profile-name {
  color: white;
  font-size: 24px;
  font-weight: 600;
  margin: 15px 0 5px;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: 0.6s;
  filter : drop-shadow(2px 3px 8px black)
}

.profile-description {
  color: rgba(255, 255, 255);
  font-size: 16px;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: 0.8s;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.link {
  background: rgba(255, 255, 255, 0.95);
  padding: 15px 20px;
  border-radius: 12px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  text-align: left;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.links .link:nth-child(1) {
  animation-delay: 1s;
}
.links .link:nth-child(2) {
  animation-delay: 1.2s;
}
.links .link:nth-child(3) {
  animation-delay: 1.4s;
}
.links .link:nth-child(4) {
  animation-delay: 1.6s;
}
.links .link:nth-child(5) {
  animation-delay: 1.8s;
}
.links .link:nth-child(6) {
  animation-delay: 2s;
}

.link:hover {
  transform: translateY(-2px) !important;
  /* border-color: black; */
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  background: white;
}

.link-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  font-size: 22px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top:20px;
  transition: transform 0.3s ease;
}

.social-icon {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  color: #333;
  opacity: 0;
  animation: scaleIn 0.5s ease forwards;
}
.social-icon i{
    font-size: 22px;
}

.social-icons .social-icon:nth-child(1) {
  animation-delay: 2.2s;
}
.social-icons .social-icon:nth-child(2) {
  animation-delay: 2.4s;
}
.social-icons .social-icon:nth-child(3) {
  animation-delay: 2.6s;
}
.social-icons .social-icon:nth-child(4) {
  animation-delay: 2.8s;
}
.social-icons .social-icon:nth-child(5) {
  animation-delay: 3s;
}

.social-icon:hover {
  transform: translateY(-3px) !important;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  background: white;
}

.social-icon svg {
  width: 20px;
  height: 20px;
}

.selectable-text {
  cursor: text;
  user-select: all;
  /* pointer-events: none; */
}
.selectable-text::selection {
  background: #b3d4fc; 
  color: #000;
}
.fa-square-linkedin{
  color: #0072b1
}
.fa-youtube{
  color: #FF0000
}
.fa-facebook-f{
  color: #3b5998
}
.fa-instagram{
  color: #E1306C
}

/* .fa-phone-volume{
  color: #25D366
} */
.fa-whatsapp,.whatsapp{
  color: #25D366
}
.fa-envelope, .email{
  color: #D44638
}

.fa-calendar-days,.meeting{
  color: #0072b1
}
.fa-globe, .bitogrid{
  color: #6878d6
}
.bitopixel{
  color: #91063a
}

/* Animación inicial del fondo */
@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

body {
  background-size: 200% 200%;
  animation: gradientAnimation 15s ease infinite;
}
