/* ==========================================================================
   JUNINHO GRIFFES - LINK NA BIO MINIMALISTA PREMIUM
   Design: Clean, White Luxury & Streetwear Aesthetics
   ========================================================================== */

:root {
  /* Cores Base */
  --bg-base: #f7f9fa;
  --bg-card: rgba(255, 255, 255, 0.88);
  --bg-card-hover: rgba(255, 255, 255, 0.98);
  --bg-card-solid: #ffffff;
  
  /* Tipografia & Contrastes */
  --text-primary: #121815;
  --text-secondary: #526058;
  --text-muted: #7d8e85;
  
  /* Identidade Visual da Marca (Verde Esmeralda & Ouro Nobre) */
  --brand-green-dark: #073b1f;
  --brand-green-primary: #0d5c32;
  --brand-green-light: #15803d;
  --brand-green-glow: rgba(13, 92, 50, 0.16);

  --brand-gold-dark: #996f16;
  --brand-gold-primary: #d4a029;
  --brand-gold-light: #f5cf68;
  --brand-gold-glow: rgba(212, 160, 41, 0.2);

  /* WhatsApp & Instagram */
  --whatsapp-green: #25d366;
  --whatsapp-dark: #128c7e;
  --whatsapp-bg: linear-gradient(135deg, #094723 0%, #0d6e37 100%);
  --insta-gradient: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);

  /* Bordas & Sombras */
  --border-subtle: rgba(18, 24, 21, 0.08);
  --border-gold: rgba(212, 160, 41, 0.35);
  --shadow-sm: 0 2px 8px rgba(18, 24, 21, 0.04);
  --shadow-md: 0 8px 24px rgba(18, 24, 21, 0.07);
  --shadow-lg: 0 16px 36px rgba(18, 24, 21, 0.1);
  --shadow-gold: 0 10px 28px rgba(13, 92, 50, 0.14);

  /* Transições */
  --transition: all 0.26s cubic-bezier(0.16, 1, 0.3, 1);
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
}

/* Reset Global */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html, body {
  width: 100%;
  min-height: 100vh;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.5;
  overflow-x: hidden;
  position: relative;
}

/* ==========================================================================
   FUNDO CLARO COM IMAGEM OPACA DA LOJA
   ========================================================================== */
.bg-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('background.jpg');
  background-size: cover;
  background-position: center top;
  opacity: 0.52; /* Foto da loja perfeitamente visível */
  filter: brightness(0.98) contrast(1.04);
  transform: scale(1.01);
}

.bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Overlay branco suave e translúcido para preservar a visibilidade da foto e o contraste do texto */
  background: linear-gradient(
    180deg, 
    rgba(255, 255, 255, 0.45) 0%, 
    rgba(255, 255, 255, 0.55) 40%, 
    rgba(247, 249, 250, 0.72) 100%
  );
}

.bg-glow {
  position: absolute;
  top: 3%;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 160, 41, 0.12) 0%, rgba(13, 92, 50, 0.06) 50%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* ==========================================================================
   CONTAINER PRINCIPAL (MOBILE FIRST)
   ========================================================================== */
.page-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  padding: 32px 20px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

/* ==========================================================================
   CABEÇALHO & LOGO GRANDE SEM BORDAS
   ========================================================================== */
.profile-header {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 24px;
}

.logo-wrapper {
  width: 100%;
  max-width: 275px;
  padding: 6px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  /* Sem bordas, sem cortes */
  background: transparent;
  border: none;
  box-shadow: none;
}

.main-logo {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: contain;
  /* Destaque sutil sem borda para valorizar o 3D dourado e verde sobre a foto de fundo */
  filter: drop-shadow(0 2px 14px rgba(255, 255, 255, 0.85)) drop-shadow(0 10px 22px rgba(9, 71, 35, 0.22));
  transition: transform 0.35s ease;
  user-select: none;
  -webkit-user-drag: none;
}

.main-logo:hover {
  transform: scale(1.02);
}

/* Status Pill */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(13, 92, 50, 0.18);
  padding: 6px 14px;
  border-radius: 50px;
  margin-top: 10px;
  box-shadow: var(--shadow-sm);
}

.status-indicator {
  position: relative;
  width: 9px;
  height: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.status-dot {
  width: 9px;
  height: 9px;
  background-color: var(--whatsapp-green);
  border-radius: 50%;
}

.status-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--whatsapp-green);
  border-radius: 50%;
  animation: pulse-ring 2s infinite cubic-bezier(0.25, 0.8, 0.25, 1);
}

@keyframes pulse-ring {
  0% { transform: scale(0.9); opacity: 0.8; }
  70% { transform: scale(2.4); opacity: 0; }
  100% { transform: scale(2.6); opacity: 0; }
}

.status-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brand-green-primary);
  letter-spacing: 0.2px;
}

/* ==========================================================================
   SEÇÃO DE LINKS & BOTÕES DE AÇÃO
   ========================================================================== */
.links-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Base dos Botões de Link */
.action-btn {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: var(--radius-lg);
  text-decoration: none;
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid transparent;
}

.action-btn:active {
  transform: scale(0.985);
}

/* 1. Botão Atendimento VIP */
.btn-vip {
  background: var(--whatsapp-bg);
  color: #ffffff;
  border: 1px solid rgba(212, 160, 41, 0.4);
  box-shadow: 0 10px 24px rgba(9, 71, 35, 0.22), inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.btn-vip:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(9, 71, 35, 0.28), 0 0 18px rgba(212, 160, 41, 0.3);
  border-color: var(--brand-gold-light);
}

.btn-vip .btn-tag {
  background: rgba(212, 160, 41, 0.25);
  border: 1px solid rgba(245, 207, 104, 0.5);
  color: #ffea9f;
}

.btn-vip .btn-title {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.6px;
}

.btn-vip .btn-subtitle {
  color: rgba(255, 255, 255, 0.85);
}

.btn-vip .btn-arrow {
  color: #ffea9f;
}

.whatsapp-icon-box {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Efeito Shimmer sutil no botão VIP */
.btn-shine {
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: skewX(-20deg);
  animation: shine-sweep 4.5s infinite ease-in-out;
  pointer-events: none;
}

@keyframes shine-sweep {
  0% { left: -120%; }
  35% { left: 160%; }
  100% { left: 160%; }
}

/* 2. Botão Instagram Oficial */
.btn-instagram {
  background: var(--bg-card);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(18, 24, 21, 0.08);
  box-shadow: var(--shadow-md);
  color: var(--text-primary);
}

.btn-instagram:hover {
  transform: translateY(-2px);
  background: var(--bg-card-hover);
  border-color: rgba(220, 39, 67, 0.28);
  box-shadow: 0 12px 28px rgba(220, 39, 67, 0.12);
}

.instagram-icon-box {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--insta-gradient);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(225, 48, 108, 0.28);
}

.tag-social {
  background: rgba(220, 39, 67, 0.08);
  color: #c13584;
  border: 1px solid rgba(220, 39, 67, 0.18);
}

.btn-instagram .btn-title {
  color: var(--text-primary);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.btn-instagram .btn-subtitle {
  color: var(--text-secondary);
}

.btn-instagram .btn-arrow {
  color: var(--text-muted);
}

/* Informações comuns dentro do botão */
.btn-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.btn-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 2px 8px;
  border-radius: 6px;
  margin-bottom: 4px;
}

.btn-title {
  margin: 0;
  line-height: 1.25;
}

.btn-subtitle {
  margin: 2px 0 0;
  font-size: 0.8rem;
  line-height: 1.35;
}

.btn-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
}

.action-btn:hover .btn-arrow {
  transform: translateX(3px);
}

/* ==========================================================================
   3. CARD DE LOCALIZAÇÃO / LOJA FÍSICA
   ========================================================================== */
.store-card {
  width: 100%;
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(212, 160, 41, 0.35);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition);
}

.store-card:hover {
  background: var(--bg-card-hover);
  box-shadow: 0 12px 32px rgba(18, 24, 21, 0.09);
  border-color: rgba(212, 160, 41, 0.55);
}

.store-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.store-icon-box {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, #105e38 0%, #083c21 100%);
  color: #ffea9f;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(13, 92, 50, 0.22);
}

.store-info-text {
  flex: 1;
}

.tag-store {
  background: rgba(13, 92, 50, 0.09);
  color: var(--brand-green-primary);
  border: 1px solid rgba(13, 92, 50, 0.2);
}

.store-title {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.4px;
  color: var(--text-primary);
  margin: 3px 0 6px;
  line-height: 1.25;
}

.store-address-box {
  background: rgba(255, 255, 255, 0.95);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  border: 1px dashed rgba(18, 24, 21, 0.15);
}

.store-address {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.1px;
  line-height: 1.35;
}

/* Pílulas de Ação (Rotas & Copiar) */
.store-actions {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 10px;
}

.action-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.pill-primary {
  background: #111815;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(18, 24, 21, 0.18);
}

.pill-primary:hover {
  background: #073b1f;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(7, 59, 31, 0.25);
}

.pill-secondary {
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-primary);
  border: 1px solid rgba(18, 24, 21, 0.14);
}

.pill-secondary:hover {
  background: #f0f3f1;
  border-color: var(--brand-green-primary);
  color: var(--brand-green-primary);
  transform: translateY(-1px);
}

.pill-secondary:active, .pill-primary:active {
  transform: scale(0.97);
}

/* Embed Google Maps */
.store-embed-container {
  width: 100%;
  background: #ffffff;
  border: 1px solid rgba(18, 24, 21, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.03);
}

.embed-header {
  padding: 8px 14px;
  background: #f8faf9;
  border-bottom: 1px solid rgba(18, 24, 21, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.embed-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--brand-green-primary);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.embed-city {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}

.map-frame-box {
  width: 100%;
  height: 200px;
  background: #eaecee;
  position: relative;
}

.map-frame-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ==========================================================================
   RODAPÉ
   ========================================================================== */
.page-footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 32px;
  gap: 6px;
}

.footer-divider {
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand-gold-primary), transparent);
  margin-bottom: 10px;
}

.footer-brand {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: var(--text-primary);
}

.footer-desc {
  font-size: 0.76rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.footer-copy {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ==========================================================================
   TOAST NOTIFICATION
   ========================================================================== */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #121815;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 0.84rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(212, 160, 41, 0.4);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.toast svg {
  color: var(--brand-gold-light);
}

/* ==========================================================================
   RESPONSIVIDADE AJUSTADA
   ========================================================================== */
@media (max-width: 360px) {
  .page-container {
    padding: 20px 14px 36px;
  }

  .logo-wrapper {
    max-width: 230px;
  }

  .action-btn {
    padding: 14px 16px;
    gap: 12px;
  }

  .btn-title {
    font-size: 0.92rem;
  }

  .store-actions {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 600px) {
  .page-container {
    padding-top: 44px;
  }

  .logo-wrapper {
    max-width: 290px;
  }

  .main-logo {
    max-height: 270px;
  }
}
