/* Versão 1.0.0 */

.demo-container {
  max-width: 1200px;
  margin: 0 auto;
}

.controls-panel {
  background: linear-gradient(145deg, var(--color-gray), var(--bg-primary));
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
  height: 100%;
}

.controls-panel h3 {
  color: var(--color-neon);
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.75rem;
}

.control-group {
  margin-bottom: 1.5rem;
}

.control-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-primary);
}

.text-primary-theme {
  color: var(--text-primary);
}

.text-secondary-theme {
  color: var(--text-secondary);
}

.theme-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 0.5rem;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.theme-option:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.theme-option.active {
  background-color: rgba(12, 255, 185, 0.1);
  border: 1px solid var(--color-neon);
}

.theme-preview {
  width: 2rem;
  height: 2rem;
  border-radius: 0.375rem;
  border: 2px solid var(--border-color);
}

.theme-info {
  flex: 1;
}

.color-option {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid var(--border-color);
}

.color-option:hover {
  transform: scale(1.1);
}

.color-option.active {
  border: 2px solid var(--color-neon);
  box-shadow: 0 0 10px rgba(12, 255, 185, 0.3);
}

.font-option {
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  background-color: rgba(255, 255, 255, 0.05);
}

.font-option:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.font-option.active {
  background-color: rgba(12, 255, 185, 0.1);
  border: 1px solid var(--color-neon);
}

.preview-container {
  max-width: 480px;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.preview-frame {
  background-color: var(--bg-primary);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.profile-container {
  padding: 2rem;
  transition: all 0.3s ease;
}

.avatar-container {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.5rem;
  border: 4px solid;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.profile-name {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.profile-title {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  opacity: 0.85;
  transition: all 0.3s ease;
}

.profile-bio {
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.profile-link {
  display: flex;
  align-items: center;
  padding: 1rem;
  border-radius: 0.75rem;
  margin-bottom: 0.75rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.profile-link:hover {
  transform: translateY(-3px);
}

.link-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  margin-right: 1rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.link-title {
  font-weight: 500;
  transition: all 0.3s ease;
}

.minimalist {
  --profile-bg: #ffffff;
  --text-color: #1a1a1a;
  --link-bg: #f5f5f5;
  --link-hover: #eeeeee;
  --accent-color: #3c3d91;
}

.dark {
  --profile-bg: #121212;
  --text-color: #ffffff;
  --link-bg: #1e1e1e;
  --link-hover: #2c2c2c;
  --accent-color: #0cffb9;
}

.gradient {
  --profile-bg: linear-gradient(135deg, #0c0d21, #3c3d91);
  --text-color: #ffffff;
  --link-bg: rgba(255, 255, 255, 0.1);
  --link-hover: rgba(255, 255, 255, 0.15);
  --accent-color: #0cffb9;
}

.corporate {
  --profile-bg: #f0f4f8;
  --text-color: #1e293b;
  --link-bg: #e0e7ff;
  --link-hover: #c7d2fe;
  --accent-color: #2563eb;
}

.vibrant {
  --profile-bg: linear-gradient(135deg, #4f46e5, #7c3aed);
  --text-color: #ffffff;
  --link-bg: rgba(255, 255, 255, 0.15);
  --link-hover: rgba(255, 255, 255, 0.25);
  --accent-color: #f59e0b;
}

.font-montserrat {
  font-family: 'Montserrat', sans-serif;
}

.font-inter {
  font-family: 'Inter', sans-serif;
}

.font-poppins {
  font-family: 'Poppins', sans-serif;
}

.font-roboto {
  font-family: 'Roboto', sans-serif;
}

.font-playfair {
  font-family: 'Playfair Display', serif;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.animate-pulse {
  animation: pulse 2s infinite;
}
