/* style.css - Diseño glassmorphism + tipografía moderna */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: radial-gradient(circle at 20% 30%, #f7e8f0, #d9c9d9);
  font-family: 'Quicksand', 'Segoe UI', sans-serif;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
}

.profile-card {
  max-width: 480px;
  width: 100%;
  border-radius: 3rem 3rem 2rem 2rem;
  padding: 0;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 8px 16px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.4);
  position: relative;
  overflow: hidden;
}

.glass-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 0;
}

.content {
  position: relative;
  z-index: 1;
  padding: 2rem 1.8rem 1.5rem;
}

.avatar-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 0.8rem;
}

.avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1), inset 0 2px 4px rgba(255, 255, 255, 0.6);
  background: #fff;
}

.profile-name {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2.2rem;
  letter-spacing: -0.5px;
  color: #2d1b2b;
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
  margin-top: 0.2rem;
  background: linear-gradient(135deg, #2d1b2b, #6b3f5a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.profile-bio {
  text-align: center;
  font-family: 'Quicksand', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: #3e2a3a;
  background: rgba(255, 255, 255, 0.3);
  padding: 0.8rem 1.2rem;
  border-radius: 60px;
  backdrop-filter: blur(4px);
  margin: 0.8rem 0 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.social-grid {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 0.9rem 1.2rem;
  border-radius: 60px;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04), inset 0 1px 2px rgba(255, 255, 255, 0.6);
  color: #1f141e;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 1rem;
  letter-spacing: 0.3px;
}

.social-btn i {
  font-size: 1.3rem;
  width: 1.8rem;
  text-align: center;
  color: #2d1b2b;
}

.social-btn:hover,
.social-btn:focus-visible {
  background: rgba(255, 255, 255, 0.6);
  border-color: rgba(255, 255, 255, 0.8);
  transform: scale(1.02);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  outline: 2px solid #b28b9e;
  outline-offset: 2px;
}

.social-btn:active {
  transform: scale(0.96);
}

/* Colores específicos para cada red social */
.facebook i { color: #1877f2; }
.instagram i { color: #e4405f; }
.tiktok i { color: #000000; }
.onlyfans i { color: #00AFF0; }
.twitter i { color: #000000; }
.email i { color: #c44569; }

/* Estilo especial para OnlyFans */
.onlyfans {
  background: rgba(0, 175, 240, 0.15);
  border-color: rgba(0, 175, 240, 0.3);
}

.onlyfans:hover {
  background: rgba(0, 175, 240, 0.25);
  border-color: rgba(0, 175, 240, 0.5);
}

/* Estilo especial para X (Twitter) */
.twitter i {
  color: #000000;
}

/* ===== CARRUSEL CORREGIDO - SIN CORTES ===== */
.portfolio-carousel {
  margin: 1.8rem 0 1.2rem;
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.carousel-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 70vh;
  overflow: hidden;
  border-radius: 1.8rem;
  background: #1a1a1a;
}

.carousel-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  height: 100%;
  width: 100%;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1a1a;
  overflow: hidden;
  position: relative;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  flex-shrink: 0;
  position: absolute;
  top: 0;
  left: 0;
}

/* Flechas de navegación */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  color: #2d1b2b;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease;
  z-index: 10;
  border: none;
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.carousel-btn:focus-visible {
  outline: 2px solid #b28b9e;
  outline-offset: 2px;
}

.carousel-btn.prev {
  left: 12px;
}

.carousel-btn.next {
  right: 12px;
}

/* Indicadores (puntos) */
.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.8rem 0 0.2rem;
  flex-wrap: wrap;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #2d1b2b;
  width: 28px;
  border-color: #2d1b2b;
}

/* Footer */
.footer {
  margin-top: 1.8rem;
  text-align: center;
  font-family: 'Quicksand', sans-serif;
  font-weight: 400;
  font-size: 0.85rem;
  color: #3e2a3a;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.3rem 1.2rem;
}

.footer a {
  color: #2d1b2b;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px dotted rgba(45, 27, 43, 0.3);
  transition: all 0.2s ease;
}

.footer a:hover,
.footer a:focus-visible {
  color: #6b3f5a;
  border-bottom: 1px solid #6b3f5a;
}

/* Responsive */
@media (max-width: 480px) {
  .content {
    padding: 1.5rem 1.2rem;
  }
  .avatar {
    width: 100px;
    height: 100px;
  }
  .profile-name {
    font-size: 1.8rem;
  }
  .profile-bio {
    font-size: 0.95rem;
  }
  .social-btn {
    padding: 0.7rem 1rem;
    font-size: 0.95rem;
  }
  .carousel-btn {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
  .carousel-btn.prev {
    left: 8px;
  }
  .carousel-btn.next {
    right: 8px;
  }
}