/* =============================================
   LINK-TREE PAGE (index.html)
   Estilo consistente con community + ugc pages.
   ============================================= */

.lt-body {
  background: var(--color-crema);
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 20px;
  position: relative;
  overflow: hidden;
}

/* Decoración: círculos blur sutiles al fondo */
.lt-body::before,
.lt-body::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}
.lt-body::before {
  width: 360px;
  height: 360px;
  background: var(--pastel-pink);
  top: -120px;
  left: -120px;
}
.lt-body::after {
  width: 320px;
  height: 320px;
  background: var(--pastel-lilac);
  bottom: -100px;
  right: -100px;
}

.lt {
  width: 100%;
  max-width: 440px;
  position: relative;
  z-index: 1;
}

.lt__card {
  background: var(--color-blanco);
  border-radius: 32px;
  padding: 40px 28px 28px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(46,27,14,0.1);
  border: 1px solid rgba(46,27,14,0.06);
}

.lt__head {
  margin-bottom: 28px;
}

.lt__asterisk {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  background: var(--pastel-green);
  border-radius: 50%;
  color: var(--color-marron-dark);
  font-size: 1.75rem;
  margin-bottom: 18px;
}

.lt__photo {
  width: 110px;
  height: 110px;
  margin: 0 auto 18px;
  border-radius: 55% 55% 45% 45% / 60% 60% 40% 40%;
  overflow: hidden;
  padding: 4px;
  background: var(--color-blanco);
  border: 2.5px solid var(--pastel-lilac);
}

.lt__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 55% 55% 45% 45% / 60% 60% 40% 40%;
}

.lt__title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 5vw, 2rem);
  font-weight: 900;
  color: var(--color-marron-dark);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.lt__title em {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--color-marron);
}

.lt__subtitle {
  margin-top: 6px;
  font-size: 0.92rem;
  color: var(--color-marron);
  opacity: 0.75;
}

/* Links */
.lt__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 26px;
}

.lt-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  border-radius: 18px;
  text-decoration: none;
  color: var(--color-marron-dark);
  transition: transform 0.22s, box-shadow 0.22s;
  text-align: left;
}
.lt-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(46,27,14,0.14);
}

.lt-btn--community {
  background: var(--pastel-pink);
}
.lt-btn--ugc {
  background: var(--pastel-yellow);
}

.lt-btn__body strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 3px;
}
.lt-btn__body span {
  display: block;
  font-size: 0.82rem;
  opacity: 0.72;
}

.lt-btn__arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(46,27,14,0.1);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: background 0.2s, transform 0.2s;
}
.lt-btn:hover .lt-btn__arrow {
  background: var(--color-marron-dark);
  color: #fff;
  transform: rotate(-8deg);
}

/* Social row */
.lt__social {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 10px;
  margin-bottom: 18px;
}
.lt__social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-crema);
  color: var(--color-marron-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  text-decoration: none;
}
.lt__social a:hover {
  background: var(--color-marron-dark);
  color: #fff;
  transform: translateY(-2px);
}

.lt__footer {
  font-size: 0.72rem;
  color: var(--color-marron);
  opacity: 0.55;
  letter-spacing: 0.02em;
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .lt-btn { transition: none; }
  .lt-btn:hover { transform: none; box-shadow: none; }
}
