/* ==========================================================================
   ÉPICA STORE — TEMA CLARO PREMIUM (Branco/Creme, Rosa & Ouro Champagne)
   Conceito: Atmosfera contínua, alta costura, luminosidade sofisticada,
   zero preto na base, zero cara de IA, sem caixas cinzas, foco mobile-first.
   ========================================================================== */

:root {
  /* Paleta Épica Store — Tema Claro Nobre */
  --bg-primary: #fcf9f6;          /* Seda marfim / creme translúcido */
  --bg-secondary: #fdf5f8;        /* Rosé perolado muito suave */
  --bg-surface: rgba(255, 255, 255, 0.86); /* Vidro fosco claro acetinado */
  --bg-surface-hover: rgba(255, 255, 255, 0.98);
  --bg-surface-elevated: #ffffff;

  /* Cores de Acento */
  --rose-core: #d81570;
  --rose-vibrant: #e6207e;
  --rose-soft: #f268a7;
  --rose-pale: #fdebf3;
  --rose-glow: rgba(230, 32, 126, 0.16);
  --rose-glow-ambient: rgba(230, 32, 126, 0.08);

  --gold-core: #b88d22;
  --gold-bright: #d4af37;
  --gold-light: #fef8e7;
  --gold-soft: #e8c869;
  --gold-glow: rgba(212, 175, 55, 0.24);
  --gold-glow-ambient: rgba(212, 175, 55, 0.09);

  /* Tipografia Escura de Alto Contraste & Legibilidade */
  --text-primary: #1c0b16;        /* Rosewood profundo / espresso nobre */
  --text-secondary: #4a303f;      /* Mauve grafite sofisticado */
  --text-muted: #7d6573;          /* Tom suave para legendas */
  --text-dim: #a48f9b;            /* Detalhes e divisores sutis */

  /* Bordas e Gradientes Sutis */
  --border-subtle: rgba(212, 175, 55, 0.22);
  --border-card: rgba(212, 175, 55, 0.32);
  --border-gold-glow: rgba(212, 175, 55, 0.65);
  --border-glow: linear-gradient(135deg, rgba(212, 175, 55, 0.45), rgba(230, 32, 126, 0.35), rgba(255, 255, 255, 0.9));

  /* Status */
  --status-open-bg: rgba(16, 185, 129, 0.12);
  --status-open-border: rgba(16, 185, 129, 0.35);
  --status-open-text: #065f46;
  --status-open-dot: #10b981;

  --status-closed-bg: rgba(225, 29, 72, 0.1);
  --status-closed-border: rgba(225, 29, 72, 0.3);
  --status-closed-text: #9f1239;
  --status-closed-dot: #e11d48;

  /* Fontes */
  --font-display: 'Syne', 'Playfair Display', serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Transições Aveludadas */
  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.2s var(--ease-smooth);
  --transition-normal: 0.35s var(--ease-smooth);
}

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

html {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden !important;
  width: 100%;
}

body {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  background-color: var(--bg-primary);
  background-image: 
    radial-gradient(at 0% 0%, rgba(253, 245, 248, 0.9) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(254, 248, 231, 0.8) 0px, transparent 50%);
  overflow-x: hidden !important;
  width: 100%;
  max-width: 100%;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ==========================================================================
   CANVAS THREE.JS & ILUMINAÇÃO ATMOSFÉRICA NO TEMA CLARO
   ========================================================================== */

#ambient-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
}

.ambient-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.75;
}

.ambient-glow-top {
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(230, 32, 126, 0.08) 0%, rgba(212, 175, 55, 0.07) 50%, transparent 75%);
}

.ambient-glow-mid {
  top: 42%;
  left: -80px;
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.09) 0%, transparent 70%);
}

.ambient-glow-bottom {
  bottom: -80px;
  right: -60px;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(230, 32, 126, 0.07) 0%, transparent 70%);
}

/* ==========================================================================
   ESTRUTURA PRINCIPAL & CONTAINER
   ========================================================================== */

.site-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  padding: 24px 18px 48px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* ==========================================================================
   1. HERO SECTION COM BANNER DE ALTA FIDELIDADE
   ========================================================================== */

.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 8px 4px 6px;
  position: relative;
}

/* Localização Badge */
.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 4px 16px rgba(180, 80, 130, 0.06);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-secondary);
  margin-bottom: 18px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.location-pin {
  display: flex;
  align-items: center;
  color: var(--rose-vibrant);
}

/* BANNER DE ALTA RESOLUÇÃO NA HERO */
.hero-banner-container {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 12px;
}

.banner-frame {
  position: relative;
  width: 100%;
  height: 220px;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.4);
  box-shadow: 0 16px 36px rgba(180, 80, 130, 0.1), 0 2px 8px rgba(212, 175, 55, 0.06);
  background: #ffffff;
}

.banner-picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  transition: transform 1.2s var(--ease-smooth);
}

.hero-banner-container:hover .hero-banner-img {
  transform: scale(1.04);
}

/* Overlay sutil apenas na base do banner para transição harmoniosa com a logo (Zero efeito lavado) */
.hero-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 72%,
    rgba(252, 249, 246, 0.3) 90%,
    rgba(252, 249, 246, 0.7) 100%
  );
  pointer-events: none;
}

/* Logo Oficial Sobreposta ao Banner com Aro Dourado e Aura */
.brand-emblem-wrap {
  position: relative;
  width: 116px;
  height: 116px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -56px;
  z-index: 3;
}

.logo-aura {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--rose-glow) 0%, var(--gold-glow) 60%, transparent 80%);
  filter: blur(14px);
  opacity: 0.9;
  animation: pulseAura 4s ease-in-out infinite alternate;
}

.logo-ring {
  position: relative;
  z-index: 2;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--rose-vibrant) 50%, var(--gold-core) 100%);
  box-shadow: 0 10px 28px rgba(180, 80, 130, 0.22), 0 0 16px rgba(212, 175, 55, 0.35);
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  background: #ffffff;
}

@keyframes pulseAura {
  0% { transform: scale(0.96); opacity: 0.7; }
  100% { transform: scale(1.08); opacity: 1; }
}

/* Título Monumental com Presença Nobre */
.brand-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 7.5vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 12px;
  text-shadow: 0 2px 10px rgba(180, 80, 130, 0.08);
}

/* Proposta de Valor */
.proposal-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  max-width: 420px;
}

.category-pill {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-core);
  padding: 4px 16px;
  background: var(--gold-light);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.08);
}

.brand-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.08rem, 4vw, 1.25rem);
  font-style: italic;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.35;
}

.brand-shipping {
  font-size: 0.86rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Barra de Prova Social */
.social-proof-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 4px 16px rgba(180, 80, 130, 0.06);
  border-radius: 999px;
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-bottom: 22px;
  backdrop-filter: blur(10px);
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.proof-stars {
  display: flex;
  gap: 2px;
  color: var(--gold-bright);
}

.proof-icon-ig {
  color: var(--rose-vibrant);
  display: block;
}

.proof-separator {
  color: var(--text-dim);
}

.proof-text strong {
  color: var(--text-primary);
  font-weight: 700;
}

/* CTA Principal Hero (WhatsApp) */
.hero-cta-box {
  width: 100%;
  margin-top: 4px;
}

/* ==========================================================================
   BOTÕES & EFEITO SHINY SWEEP GLOW
   ========================================================================== */

.action-btn {
  display: flex;
  align-items: center;
  width: 100%;
  text-decoration: none;
  border-radius: 18px;
  padding: 16px 20px;
  min-height: 56px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.btn-primary-wpp {
  background: linear-gradient(135deg, #15803d 0%, #16a34a 60%, #22c55e 100%);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 10px 28px rgba(22, 163, 74, 0.28), 0 2px 6px rgba(0, 0, 0, 0.08);
}

.btn-primary-wpp:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 14px 34px rgba(22, 163, 74, 0.38);
}

.btn-primary-wpp:active {
  transform: translateY(0) scale(0.99);
}

.btn-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 14px;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  color: #ffffff;
}

.official-brand-icon {
  display: block;
  flex-shrink: 0;
}

.btn-text-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  text-align: left;
}

.btn-title {
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.btn-subtitle {
  font-size: 0.78rem;
  opacity: 0.95;
  font-weight: 400;
  line-height: 1.25;
  margin-top: 2px;
}

.btn-arrow-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.9);
  margin-left: 12px;
  flex-shrink: 0;
  transition: transform var(--transition-normal);
}

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

/* SHINY SWEEP GLOW (Feixe diagonal perolado) */
.btn-shiny-sweep {
  position: relative;
}

.btn-shiny-sweep::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -120%;
  width: 70%;
  height: 200%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.05) 20%,
    rgba(255, 255, 255, 0.45) 50%,
    rgba(255, 255, 255, 0.05) 80%,
    transparent 100%
  );
  transform: rotate(30deg);
  pointer-events: none;
  transition: left 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 3;
}

.btn-shiny-sweep:hover::after,
.btn-shiny-sweep:active::after {
  left: 150%;
}

/* ==========================================================================
   2. CARDS EM VIDRO FOSCO CLARO
   ========================================================================== */

.section-card {
  width: 100%;
}

.card-glass-panel {
  position: relative;
  background: var(--bg-surface);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-radius: 24px;
  border: 1px solid var(--border-card);
  box-shadow: 0 14px 36px rgba(180, 80, 130, 0.07), 0 2px 8px rgba(212, 175, 55, 0.05);
  padding: 22px 20px;
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal), transform var(--transition-normal);
}

.card-glass-panel:hover {
  border-color: var(--border-gold-glow);
  box-shadow: 0 20px 44px rgba(180, 80, 130, 0.12), 0 4px 14px rgba(212, 175, 55, 0.1);
  transform: translateY(-2px);
}

.card-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.card-title-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--gold-light);
  color: var(--gold-core);
  border: 1px solid rgba(212, 175, 55, 0.35);
  flex-shrink: 0;
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

.pill-badge {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--rose-core);
  background: var(--rose-pale);
  border: 1px solid rgba(230, 32, 126, 0.3);
  padding: 4px 10px;
  border-radius: 999px;
}

/* ==========================================================================
   STATUS DINÂMICO DE HORÁRIOS AO VIVO
   ========================================================================== */

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: all var(--transition-normal);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

/* Aberto */
.status-open {
  background: var(--status-open-bg);
  border: 1px solid var(--status-open-border);
  color: var(--status-open-text);
}

.status-open .status-dot {
  background: var(--status-open-dot);
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.45);
  animation: pulseGreen 1.8s infinite;
}

/* Fechado */
.status-closed {
  background: var(--status-closed-bg);
  border: 1px solid var(--status-closed-border);
  color: var(--status-closed-text);
}

.status-closed .status-dot {
  background: var(--status-closed-dot);
  box-shadow: 0 0 6px rgba(225, 29, 72, 0.35);
}

@keyframes pulseGreen {
  0% { transform: scale(0.9); opacity: 0.7; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.7; }
}

/* Lista de Horários — 7 Linhas Individuais */
.schedule-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.schedule-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(212, 175, 55, 0.16);
  font-size: 0.86rem;
  transition: all var(--transition-fast);
}

.day-label-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.day-name {
  color: var(--text-secondary);
  font-weight: 600;
}

.day-hours {
  color: var(--text-primary);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.closed-text {
  color: var(--status-closed-text);
  font-weight: 600;
}

/* DESTAQUE DA LINHA DO DIA ATUAL (HOJE) */
.schedule-item.is-today {
  background: var(--gold-light);
  border: 1px solid rgba(212, 175, 55, 0.6);
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.18);
}

.schedule-item.is-today .day-name {
  color: var(--text-primary);
  font-weight: 800;
}

.schedule-item.is-today .day-hours {
  color: var(--gold-core);
  font-weight: 800;
}

.today-tag {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #1a1005;
  background: var(--gold-bright);
  padding: 2px 8px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 6px rgba(212, 175, 55, 0.25);
}

/* ==========================================================================
   3. CARD DE LOCALIZAÇÃO & MAPA AO VIVO
   ========================================================================== */

.address-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}

.address-main {
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--text-primary);
}

.address-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.phone-row {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  font-size: 0.82rem;
  color: var(--gold-core);
  font-weight: 600;
}

.phone-row svg {
  color: var(--gold-bright);
}

/* Frame do Mapa */
.map-embed-wrapper {
  position: relative;
  width: 100%;
  height: 190px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 8px 24px rgba(180, 80, 130, 0.08);
  margin-bottom: 14px;
  background: #f0e9ed;
}

.google-map-frame {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Botão Secundário para Traçar Rota */
.btn-secondary-route {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 18px;
  min-height: 48px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 14px;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
  transition: all var(--transition-normal);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.08);
}

.btn-secondary-route:hover {
  background: var(--gold-light);
  border-color: var(--gold-bright);
  color: var(--gold-core);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.18);
}

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

/* ==========================================================================
   4. CARDS DE LINKS COM ÍCONES OFICIAIS
   ========================================================================== */

.links-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.channel-card {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 64px;
  padding: 16px 18px;
  border-radius: 20px;
  text-decoration: none;
  background: var(--bg-surface);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--border-card);
  box-shadow: 0 10px 28px rgba(180, 80, 130, 0.06);
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.channel-card:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 16px 36px rgba(180, 80, 130, 0.12), 0 4px 12px rgba(212, 175, 55, 0.1);
  border-color: var(--border-gold-glow);
}

.channel-card:active {
  transform: translateY(0) scale(0.99);
}

.channel-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  flex-shrink: 0;
  margin-right: 14px;
}

.channel-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: left;
}

.channel-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.25;
}

.channel-subtitle {
  font-size: 0.77rem;
  color: var(--text-muted);
  line-height: 1.3;
  margin-top: 2px;
}

.channel-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  margin-left: 10px;
  flex-shrink: 0;
  transition: transform var(--transition-normal), color var(--transition-normal);
}

.channel-card:hover .channel-arrow {
  transform: translateX(4px);
  color: var(--rose-vibrant);
}

/* Card WhatsApp com Ícone Oficial da Marca WhatsApp */
.card-whatsapp {
  border-color: rgba(34, 197, 94, 0.35);
}

.card-whatsapp .channel-icon-box {
  background: rgba(34, 197, 94, 0.14);
  color: #15803d;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.card-whatsapp:hover {
  border-color: #22c55e;
  box-shadow: 0 14px 34px rgba(34, 197, 94, 0.18);
}

/* Card VIP (Grupo VIP com Estrela Dourada) */
.card-vip {
  border-color: rgba(212, 175, 55, 0.45);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94) 0%, rgba(254, 248, 231, 0.88) 100%);
}

.vip-icon-box {
  background: var(--gold-light);
  color: var(--gold-core);
  border: 1px solid rgba(212, 175, 55, 0.45);
  box-shadow: 0 2px 10px rgba(212, 175, 55, 0.2);
}

.vip-title-line {
  display: flex;
  align-items: center;
  gap: 8px;
}

.vip-exclusive-pill {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 2px 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--rose-vibrant) 100%);
  color: #ffffff;
  box-shadow: 0 2px 6px rgba(212, 175, 55, 0.25);
}

.card-vip:hover {
  border-color: var(--gold-bright);
  box-shadow: 0 16px 38px rgba(212, 175, 55, 0.22);
}

/* Card Instagram com Ícone Oficial da Marca Instagram */
.card-instagram {
  border-color: rgba(230, 32, 126, 0.35);
}

.ig-icon-box {
  background: var(--rose-pale);
  color: var(--rose-core);
  border: 1px solid rgba(230, 32, 126, 0.35);
}

.ig-title-line {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ig-followers-pill {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--rose-pale);
  color: var(--rose-core);
  border: 1px solid rgba(230, 32, 126, 0.3);
}

.card-instagram:hover {
  border-color: var(--rose-vibrant);
  box-shadow: 0 14px 34px rgba(230, 32, 126, 0.18);
}

/* ==========================================================================
   5. FOOTER MÍNIMO COM ÍCONES OFICIAIS
   ========================================================================== */

.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 24px 10px 10px;
  position: relative;
}

.footer-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-bright) 50%, transparent 100%);
  opacity: 0.5;
  margin-bottom: 6px;
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--text-secondary);
  text-decoration: none;
  transition: all var(--transition-normal);
  box-shadow: 0 2px 8px rgba(180, 80, 130, 0.05);
}

.footer-icon-link:hover {
  background: var(--rose-pale);
  border-color: var(--rose-vibrant);
  color: var(--rose-core);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px var(--rose-glow);
}

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

.footer-subcopy {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

/* ==========================================================================
   ACESSIBILIDADE & REDUCED MOTION
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .btn-shiny-sweep::after {
    display: none !important;
  }

  .logo-aura {
    animation: none !important;
    opacity: 0.6;
  }

  #ambient-canvas {
    display: none !important;
  }
}

/* ==========================================================================
   RESPONSIVIDADE AJUSTADA (320px, 360px, 390px, 414px+)
   ========================================================================== */

@media (max-width: 374px) {
  .site-wrapper {
    padding: 16px 12px 36px;
    gap: 18px;
  }

  .banner-frame {
    height: 180px;
  }

  .brand-emblem-wrap {
    width: 98px;
    height: 98px;
    margin-top: -46px;
  }

  .logo-ring {
    width: 90px;
    height: 90px;
  }

  .brand-title {
    font-size: 1.95rem;
  }

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

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

  .btn-subtitle {
    font-size: 0.73rem;
  }

  .card-glass-panel {
    padding: 18px 14px;
  }

  .schedule-item {
    padding: 8px 10px;
    font-size: 0.8rem;
  }

  .channel-card {
    padding: 14px;
  }
}
