* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #121212;
  display: flex;
  justify-content: center;
  padding: 20px 10px;
}

.cartao-container {
  width: 100%;
  max-width: 420px;
  background: #1e1e1e;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(249, 115, 22, 0.15);
  overflow: hidden;
  padding: 20px;
  text-align: center;
  color: #ffffff;
}

.foto-perfil {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #f97316;
  margin-bottom: 12px;
}

h1 {
  font-size: 1.6rem;
  color: #ffffff;
}

.subtitulo {
  font-size: 0.9rem;
  color: #f97316;
  font-weight: 600;
  margin-bottom: 12px;
}

.badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.badge {
  background: #2a2a2a;
  color: #e5e7eb;
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid #374151;
}

.video-section, .redes-section, .mapa-section {
  margin-bottom: 22px;
}

.video-section h2, .redes-section h2, .mapa-section h2 {
  font-size: 1.1rem;
  color: #f97316;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.video-box {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #374151;
}

.video-player {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.botoes-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 25px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s, opacity 0.2s;
}

.btn:active { transform: scale(0.98); }
.btn:hover { opacity: 0.92; }

.btn-whatsapp { background-color: #25d366; color: white; }
.btn-consultoria { background-color: #f97316; color: white; }
.btn-vcard { background-color: #374151; color: white; }
.btn-pix { background-color: #0284c7; color: white; }

.btn-instagram {
  display: inline-block;
  padding: 10px 18px;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  font-size: 0.9rem;
}

.icone { width: 22px; height: 22px; }
.icone-texto { font-size: 1.2rem; }

.mensagem-oculta {
  display: none;
  background-color: #f97316;
  color: white;
  padding: 8px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: bold;
}

.mapa-desc {
  font-size: 0.8rem;
  color: #9ca3af;
  margin-bottom: 8px;
}

.mapa-container iframe {
  width: 100%;
  height: 180px;
  border: 0;
  border-radius: 12px;
}

.footer {
  margin-top: 15px;
  font-size: 0.75rem;
  color: #6b7280;
}