
/* Estilos personalizados para o cartão digital */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
}

.card-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background-color: #0f172a;
}

.business-card {
  width: 100%;
  max-width: 24rem;
  margin: 0 auto;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.3);
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-color: #000000;
  color: #ffffff;
}

.card-gradient {
  position: absolute;
  inset: 0;
  opacity: 0.9;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, #000000, rgba(0,0,0,0.1));
}

.card-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.avatar {
  width: 6rem;
  height: 6rem;
  margin-bottom: 1.5rem;
  border-radius: 50%;
  border: 4px solid #5345e8;
  overflow: hidden;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.name {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  text-align: center;
}

.tagline {
  text-align: center;
  margin-bottom: 2rem;
  line-height: 1.6;
  opacity: 0.75;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.social-link {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255,255,255,0.1);
  text-decoration: none;
  font-size: 1.125rem;
}

.social-link:hover {
  background-color: #5345e8;
  transform: scale(1.1);
}

.divider {
  width: 100%;
  height: 1px;
  margin-bottom: 1.5rem;
  background-color: rgba(255,255,255,0.2);
}

.action-buttons {
  width: 100%;
  margin-bottom: 1.5rem;
}

.action-button {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.75rem;
  transition: all 0.3s;
  background-color: rgba(255,255,255,0.1);
  text-decoration: none;
  color: inherit;
  margin-bottom: 1rem;
}

.action-button:hover {
  background-color: #5345e833;
}

.action-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  transition: colors 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #5345e833;
  color: #5345e8;
}

.action-content {
  flex: 1;
}

.action-title {
  font-weight: 600;
  font-size: 0.875rem;
}

.action-description {
  font-size: 0.75rem;
  opacity: 0.75;
}

.save-contact-btn {
  width: 100%;
  margin-bottom: 1.5rem;
  padding: 0.5rem 1rem;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 0.375rem;
  transition: all 0.3s;
  color: inherit;
  cursor: pointer;
}

.save-contact-btn:hover {
  background-color: #5345e8;
  border-color: #5345e8;
  color: white;
}

.copyright {
  font-size: 0.75rem;
  text-align: center;
  opacity: 0.75;
}
