/* ==========================================================================
   CSS - Loja Blackout Bio Link
   Visual: Vídeo em tela cheia direta, sem overlay branco em volta,
   apenas logo em destaque, botões estilizados e mapa.
   ========================================================================== */

:root {
  --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Cores Base */
  --text-main: #0f172a;
  --text-muted: #334155;
  --text-light: #64748b;
  
  /* Cores de Destaque */
  --color-blackout: #090d16;
  --color-whatsapp: #10b981;
  --color-whatsapp-hover: #059669;
  --color-instagram: #e1306c;
  
  /* Raios e Transições */
  --radius-xl: 24px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-primary);
  background-color: #000000;
  color: var(--text-main);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ==========================================================================
   Vídeo de Fundo em Tela Cheia Sem Overlay Branco
   ========================================================================== */
.video-bg-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

#heroVideo {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  opacity: 1; /* Vídeo com visibilidade total e natural */
}

/* ==========================================================================
   Container Principal (Sem container/card branco em volta)
   ========================================================================== */
.page-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 440px;
  padding: 40px 18px 48px;
  display: flex;
  justify-content: center;
  animation: fadeIn 0.8s ease-out;
}

.bio-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ==========================================================================
   Cabeçalho / Logo
   ========================================================================== */
.profile-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
  width: 100%;
}

.logo-wrapper {
  position: relative;
  width: 100%;
  max-width: 260px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.brand-logo {
  width: 100%;
  max-height: 130px;
  object-fit: contain;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.25));
  transition: var(--transition);
}

.logo-wrapper:hover .brand-logo {
  transform: scale(1.04);
}

/* ==========================================================================
   Links Principais (Botões)
   ========================================================================== */
.links-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.action-btn {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 14px 18px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15), 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.action-btn:hover {
  transform: translateY(-3px);
  background: #ffffff;
  box-shadow: 0 16px 30px -5px rgba(0, 0, 0, 0.25);
}

.action-btn:active {
  transform: translateY(-1px);
}

.btn-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-right: 14px;
  transition: var(--transition);
}

.btn-text-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.btn-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.2;
}

.btn-subtitle {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.btn-arrow {
  font-size: 1.15rem;
  color: var(--text-light);
  transition: var(--transition);
  margin-left: 8px;
}

.action-btn:hover .btn-arrow {
  color: var(--text-main);
  transform: translate(2px, -2px);
}

/* Estilo Individual: WhatsApp */
.btn-whatsapp .btn-icon {
  background: rgba(16, 185, 129, 0.14);
  color: #059669;
}

.btn-whatsapp:hover .btn-icon {
  background: #10b981;
  color: #ffffff;
  transform: scale(1.05);
}

/* Estilo Individual: Instagram */
.btn-instagram .btn-icon {
  background: rgba(225, 48, 108, 0.12);
  color: #e1306c;
}

.btn-instagram:hover .btn-icon {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #ffffff;
  transform: scale(1.05);
}

/* ==========================================================================
   Seção Localização / Loja Física
   ========================================================================== */
.location-section {
  width: 100%;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-xl);
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15);
}

.section-title-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-main);
  margin-bottom: 6px;
}

.section-title-wrap i {
  color: #ef4444;
  font-size: 1.15rem;
}

.section-title-wrap h2 {
  font-size: 1.02rem;
  font-weight: 700;
}

.address-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin-bottom: 14px;
}

.map-wrapper {
  width: 100%;
  height: 170px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(203, 213, 225, 0.8);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
  margin-bottom: 14px;
  background: #e2e8f0;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.btn-maps {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--color-blackout);
  color: #ffffff;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(17, 24, 39, 0.2);
}

.btn-maps i {
  font-size: 1.1rem;
}

.btn-maps:hover {
  background-color: #1e293b;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(17, 24, 39, 0.3);
}

.btn-maps:active {
  transform: translateY(0);
}

/* ==========================================================================
   Rodapé
   ========================================================================== */
.bio-footer {
  margin-top: 24px;
  text-align: center;
}

.bio-footer p {
  font-size: 0.75rem;
  color: #ffffff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
  font-weight: 500;
}

/* ==========================================================================
   Animações
   ========================================================================== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsividade adicional */
@media (max-width: 400px) {
  .page-container {
    padding: 28px 14px 36px;
  }
  .btn-title {
    font-size: 0.95rem;
  }
  .btn-subtitle {
    font-size: 0.75rem;
  }
  .btn-icon {
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
  }
}
