@charset "UTF-8";
/*Specific fonts' styles*/
@import url("https://fonts.googleapis.com/css2?family=Anta&family=Audiowide&family=Electrolize&family=Geo:ital@0;1&family=Orbitron:wght@400..900&family=Quantico:ital,wght@0,400;0,700;1,400;1,700&family=Roboto:ital,wght@0,100..900;1,100..900&family=Saira:ital,wght@0,100..900;1,100..900&family=Zen+Dots&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Iceberg&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Prosto+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Tektur:wght@400..900&display=swap");
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(30px);
  }
}
.social-media-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  min-height: 200px;
}

.sms-title {
  text-align: center;
  font-family: "Audiowide", sans-serif;
  color: #ffffff;
  font-size: 40px;
  margin-top: 50px;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.sms-title.visible {
  opacity: 1;
  transform: translateY(0);
}

.sm-logos-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 20px;
  padding: 20px;
  /*transition: all 0.5s ease; Sólo por probar en estado hover.*/
}

.sm-logos-container img {
  height: auto;
  width: 100%;
  max-height: 150px;
  margin-bottom: 100px;
  object-fit: contain;
  transform: translateY(30px);
  transition: all 0.5s ease;
  filter: grayscale(30%);
}

.sm-logos-container img.visible {
  opacity: 1;
  transform: translateY(0);
}

.sm-logos-container img:hover {
  transform: scale(1.1);
  filter: grayscale(0%) drop-shadow(0 0 10px rgba(255, 255, 255, 0.7));
}

.tiktok-logo img {
  filter: brightness(0) saturate(100%) invert(1);
  max-height: 200px;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  50% {
    opacity: 0.7;
    transform: translateY(10px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  50% {
    opacity: 0.3;
    transform: translateY(-10px) scale(0.98);
  }
  100% {
    opacity: 0;
    transform: translateY(-40px) scale(0.95);
  }
}
@keyframes fadeInSmooth {
  0% {
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    filter: blur(5px);
  }
  50% {
    opacity: 0.6;
    transform: translateY(15px) scale(0.95);
    filter: blur(2px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}
@media (max-width: 768px) {
  .sm-title {
    font-size: 28px;
    margin-top: 30px;
    margin-bottom: 15px;
  }
}

/*# sourceMappingURL=social-media.css.map */
