/* Estilos simples para a página de links */

body {
  background-color: #0e2c36;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  margin: 0;
  padding: 0;
}

/* Container principal */
.main-container {
  min-height: 100vh;
  padding: 1rem;
}

.content-wrapper {
  max-width: 28rem;
  margin: 0 auto;
}

/* Header e perfil */
.profile-section {
  text-align: center;
  margin-bottom: 2rem;
  padding-top: 2rem;
}

.profile-image-container {
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}

.profile-image {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  border: 4px solid white;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.status-dot {
  position: absolute;
  bottom: -4px;
  right: -4px;
  width: 24px;
  height: 24px;
  background-color: #10b981;
  border-radius: 50%;
  border: 2px solid white;
}

.profile-name {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  margin-bottom: 0.5rem;
}

.profile-bio {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 20rem;
  margin: 0 auto;
}

/* Cards de links */
.links-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.link-card {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  border-radius: 1rem;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.link-card:hover {
  transform: scale(1.02);
  background-color: white;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.icon-container {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.link-content {
  flex: 1;
  text-align: left;
}

.link-title {
  font-weight: 600;
  color: #1f2937;
}

.link-subtitle {
  font-size: 0.875rem;
  color: #6b7280;
}

/* Cores específicas para cada plataforma */
.whatsapp-icon {
  background-color: #10b981;
}

.instagram-icon {
  background: linear-gradient(135deg, #ec4899, #8b5cf6);
}

.location-icon {
  background-color: #ef4444;
}

.email-icon {
  background-color: #3b82f6;
}

.website-icon {
  background-color: #8b5cf6;
}

/* Footer */
.footer {
  text-align: center;
  padding-bottom: 2rem;
}

.footer-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
}

/* Responsividade */
@media (max-width: 640px) {
  .main-container {
    padding: 0.5rem;
  }
  
  .content-wrapper {
    max-width: 100%;
  }
  
  .profile-image {
    width: 5rem;
    height: 5rem;
  }
  
  .profile-name {
    font-size: 1.25rem;
  }
  
  .link-card {
    padding: 0.875rem;
  }
  
  .icon-container {
    width: 2.25rem;
    height: 2.25rem;
  }
} 