/* ══════════════════════════════════════════════════════════════════
   ALFA STORE BARBEARIA & TATTOO — 3D & ACCESSIBLE STYLESHEET
   "Muito mais que uma barbearia"
   WCAG AA Compliance • Progressive Enhancement • Mobile-First
   ══════════════════════════════════════════════════════════════════ */

:root {
  --bg: #0b1120;
  --bg-card: #111a2e;
  --bg-card-hover: #17233d;
  --border: rgba(255, 255, 255, 0.08);
  
  --crimson: #dc2626;
  --crimson-hover: #ef4444;
  --crimson-glow: rgba(220, 38, 38, 0.35);
  
  --navy: #1e3a8a;
  --navy-dark: #0f172a;
  --navy-glow: rgba(30, 58, 138, 0.35);
  
  --arcade-cyan: #06b6d4;
  --arcade-yellow: #facc15;
  --green-wa: #22c55e;
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  
  --font-bebas: 'Bebas Neue', Impact, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;
  --font-pixel: 'Press Start 2P', monospace;
  
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 15px;
  overflow-x: hidden;
}

body {
  background-color: var(--bg);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 75px;
  overflow-x: hidden;
  width: 100%;
}

@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }
}

/* ─── ACESSIBILIDADE DE FOCO (WCAG AA) ─── */
:focus-visible {
  outline: 2px solid var(--crimson);
  outline-offset: 3px;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
  position: relative;
  z-index: 2;
}

.text-center { text-align: center; }
.text-crimson { color: var(--crimson); }
.text-arcade { color: var(--arcade-cyan); }
.w-full { width: 100%; }
.mt-3 { margin-top: 12px; }
.mt-4 { margin-top: 24px; }

/* ─── BARBER POLE TOP ACCENT ─── */
.barber-pole-line {
  height: 4px;
  width: 100%;
  background: repeating-linear-gradient(
    45deg,
    #dc2626 0,
    #dc2626 15px,
    #ffffff 15px,
    #ffffff 30px,
    #1e3a8a 30px,
    #1e3a8a 45px
  );
}

/* ─── NAVBAR ─── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 17, 32, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
  gap: 8px;
}

/* LOGO EMBLEMA ALFA STORE */
.brand-badge-link {
  text-decoration: none;
  display: inline-flex;
}
.alfa-emblem {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  padding: 3px 8px;
  border-radius: 6px;
  border: 1.5px solid #000;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease;
}
.alfa-emblem:hover {
  transform: scale(1.02);
}
.alfa-real-logo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #dc2626;
}
.emblem-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.emblem-blocks {
  display: flex;
  border-radius: 3px;
  overflow: hidden;
}
.block-alfa {
  background: #dc2626;
  color: #fff;
  font-family: var(--font-bebas);
  font-size: 1.15rem;
  letter-spacing: 0.5px;
  padding: 0 5px;
  line-height: 1.2;
}
.block-store {
  background: #1e3a8a;
  color: #fff;
  font-family: var(--font-bebas);
  font-size: 1.15rem;
  letter-spacing: 0.5px;
  padding: 0 5px;
  line-height: 1.2;
}
.emblem-sub {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.52rem;
  color: #0f172a;
  letter-spacing: 0.8px;
  margin-top: 1px;
}
.emblem-pole {
  width: 8px;
  height: 20px;
  border-radius: 2px;
  background: repeating-linear-gradient(
    45deg,
    #dc2626 0,
    #dc2626 3px,
    #ffffff 3px,
    #ffffff 6px,
    #1e3a8a 6px,
    #1e3a8a 9px
  );
  border: 1px solid #333;
}

.nav-links {
  display: none;
  gap: 16px;
}
@media (min-width: 900px) {
  .nav-links {
    display: flex;
  }
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  transition: color 0.2s ease;
}
.nav-links a:hover {
  color: var(--crimson-hover);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* TOGGLE BUTTONS */
.btn-tool-toggle {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 8px;
  border-radius: 6px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}
.btn-tool-toggle:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
}
.btn-tool-toggle.active {
  background: rgba(220, 38, 38, 0.15);
  border-color: var(--crimson);
  color: #fca5a5;
}

.btn-crimson-sm {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: #fff;
  font-weight: 800;
  font-size: 0.82rem;
  padding: 7px 12px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 12px var(--crimson-glow);
  text-decoration: none;
  white-space: nowrap;
}
.btn-crimson-sm:hover {
  transform: translateY(-1px);
}

/* ─── HERO SECTION ─── */
.hero-section {
  position: relative;
  padding: 30px 0 60px;
  overflow: hidden;
  min-height: 75vh;
  display: flex;
  align-items: center;
}

.canvas3d-viewport {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: auto;
  cursor: grab;
}
.canvas3d-viewport:active {
  cursor: grabbing;
}
.canvas3d-viewport.disabled {
  display: none !important;
}

.hero-glow-crimson {
  position: absolute;
  top: -80px;
  left: 5%;
  width: 450px;
  height: 380px;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.2) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero-glow-navy {
  position: absolute;
  top: 80px;
  right: 0%;
  width: 500px;
  height: 420px;
  background: radial-gradient(circle, rgba(30, 58, 138, 0.25) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
  width: 100%;
}
@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.slogan-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(220, 38, 38, 0.16);
  border: 1px solid rgba(220, 38, 38, 0.35);
  color: #fca5a5;
  padding: 5px 12px;
  border-radius: 20px;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

.hero-title {
  font-family: var(--font-bebas);
  font-size: clamp(2.3rem, 6.5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 14px;
  word-break: break-word;
}

.hero-subtitle {
  font-size: clamp(0.92rem, 2.5vw, 1.05rem);
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 24px;
  max-width: 520px;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
@media (min-width: 540px) {
  .hero-cta-group {
    flex-direction: row;
  }
}

.btn-arcade-start {
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  color: #fff;
  border: 2px solid #ef4444;
  border-radius: 10px;
  padding: 14px 20px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 0 20px var(--crimson-glow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}
.btn-arcade-start:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(220, 38, 38, 0.7);
}
.arcade-start-text {
  font-family: var(--font-pixel);
  font-size: 0.72rem;
  letter-spacing: 0.5px;
}

.btn-whatsapp-lg {
  background: rgba(34, 197, 94, 0.12);
  border: 1.5px solid rgba(34, 197, 94, 0.35);
  color: #4ade80;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 14px 20px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn-whatsapp-lg:hover {
  background: rgba(34, 197, 94, 0.25);
  color: #fff;
  border-color: #22c55e;
}

.hero-social-proof-bar {
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.location-badge-box {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.location-badge-box i {
  color: var(--crimson);
}

/* ARCADE RETRO CARD */
.arcade-card-wrapper {
  position: relative;
  perspective: 1000px;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}
.arcade-neon-border {
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, #dc2626, #1e3a8a, #06b6d4);
  border-radius: var(--r-lg);
  z-index: 1;
  opacity: 0.65;
  filter: blur(4px);
}
.arcade-card {
  position: relative;
  z-index: 2;
  background: var(--bg-card);
  border-radius: calc(var(--r-lg) - 2px);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border);
}
.arcade-header {
  padding: 10px 14px;
  background: #090e18;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.arcade-title {
  font-family: var(--font-bebas);
  font-size: 1.1rem;
  color: #fff;
}
.arcade-live {
  font-family: var(--font-pixel);
  font-size: 0.58rem;
  color: var(--arcade-yellow);
}

.arcade-image-box {
  position: relative;
  width: 100%;
  height: 300px;
  background: #000;
}
.arcade-real-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.arcade-footer {
  padding: 12px 16px;
  background: #0f172a;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.arcade-info strong {
  display: block;
  font-size: 0.88rem;
  color: #fff;
}
.arcade-info small {
  color: var(--crimson);
  font-weight: 700;
  font-size: 0.78rem;
}
.btn-arcade-action {
  background: #dc2626;
  color: #fff;
  border: none;
  font-family: var(--font-bebas);
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, background-color 0.15s ease;
}
.btn-arcade-action:hover {
  transform: scale(1.04);
  background: #ef4444;
}

/* ─── EXPERIÊNCIA SECTION ─── */
.experience-section {
  padding: 55px 0;
  background: rgba(255, 255, 255, 0.015);
}
.section-tag-crimson {
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 1.2px;
  color: var(--crimson);
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}
.section-title {
  font-family: var(--font-bebas);
  font-size: clamp(2rem, 5vw, 2.6rem);
  letter-spacing: 0.5px;
  color: #fff;
  margin-bottom: 8px;
}
.section-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 560px;
  margin: 0 auto;
}

.experience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
}
@media (min-width: 580px) {
  .experience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .experience-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.exp-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.exp-card:hover {
  transform: translateY(-3px);
  border-color: rgba(220, 38, 38, 0.4);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
}
.exp-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.crimson-bg {
  background: rgba(220, 38, 38, 0.15);
  border: 1px solid rgba(220, 38, 38, 0.3);
  color: var(--crimson);
}
.navy-bg {
  background: rgba(30, 58, 138, 0.2);
  border: 1px solid rgba(30, 58, 138, 0.4);
  color: #60a5fa;
}
.exp-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
}
.exp-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* ─── SERVIÇOS SECTION ─── */
.services-section {
  padding: 55px 0;
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
}
@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(220, 38, 38, 0.4);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
}
.service-card.featured-alfa {
  border: 2px solid #dc2626;
  background: linear-gradient(145deg, #182238, #111a2e);
  box-shadow: 0 8px 25px var(--crimson-glow);
}
.featured-badge-alfa {
  position: absolute;
  top: -10px;
  right: 16px;
  background: #dc2626;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 900;
  padding: 3px 10px;
  border-radius: 15px;
}

.service-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.service-top h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}
.service-top p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.service-price-block {
  text-align: right;
  flex-shrink: 0;
}
.price-val {
  display: block;
  font-family: var(--font-bebas);
  font-size: 1.4rem;
  color: #fff;
}
.price-dur {
  font-size: 0.72rem;
  color: var(--text-dim);
}

.btn-service-action {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}
.service-card.featured-alfa .btn-service-action,
.btn-service-action:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 14px var(--crimson-glow);
}

/* ─── TATTOO SECTION ─── */
.tattoo-section {
  padding: 40px 0;
}
.tattoo-box {
  background: linear-gradient(135deg, #17233d 0%, #0b1120 100%);
  border: 1.5px solid rgba(220, 38, 38, 0.35);
  border-radius: var(--r-lg);
  padding: 30px 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}
@media (min-width: 900px) {
  .tattoo-box {
    grid-template-columns: 1.2fr 0.8fr;
    padding: 40px 30px;
  }
}
.tattoo-highlights {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0 24px;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.tattoo-highlights i {
  color: var(--crimson);
}
.btn-tattoo-cta {
  background: #22c55e;
  color: #000;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.btn-tattoo-cta:hover {
  transform: translateY(-2px);
}
.tattoo-card-badge {
  background: rgba(0, 0, 0, 0.4);
  border: 1.5px dashed rgba(220, 38, 38, 0.4);
  border-radius: var(--r-md);
  padding: 24px 16px;
  text-align: center;
}
.tattoo-stamp {
  font-family: var(--font-bebas);
  font-size: 1.8rem;
  letter-spacing: 1.5px;
  color: var(--crimson);
  display: block;
  margin-bottom: 6px;
}
.tattoo-card-badge h3 {
  font-size: 0.95rem;
  color: #fff;
}

/* ─── LOCALIZAÇÃO ─── */
.location-section {
  padding: 55px 0;
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}
@media (min-width: 900px) {
  .location-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.location-address {
  font-size: 1.05rem;
  margin: 12px 0 20px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}
.location-address i {
  color: var(--crimson);
  font-size: 1.3rem;
}
.location-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.btn-map, .btn-waze {
  padding: 10px 16px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 0.85rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.btn-map { background: #3b82f6; color: #fff; }
.btn-waze { background: #00d3d6; color: #000; }
.btn-map:hover, .btn-waze:hover { transform: translateY(-1px); }

/* ─── FOOTER ─── */
.footer {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  background: #070c18;
}
.footer-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.footer-alfa-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.footer-alfa-logo {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--crimson);
  object-fit: cover;
}
.footer-alfa-brand strong {
  display: block;
  font-family: var(--font-bebas);
  font-size: 1.25rem;
  color: #fff;
  letter-spacing: 1px;
}
.footer-alfa-brand small {
  color: var(--crimson);
  font-size: 0.72rem;
  font-weight: 700;
}
.footer-brand p { color: var(--text-dim); font-size: 0.8rem; }
.footer-copy p { color: var(--text-dim); font-size: 0.78rem; }
.footer-copy a { color: var(--crimson); text-decoration: none; font-weight: 800; }

/* ─── GALERIA OFICIAL DO INSTAGRAM (@ALFASTORE_BARBEARIA) ─── */
.alfa-gallery-section {
  padding: 70px 0;
  background: #080d1a;
  border-bottom: 1px solid var(--border);
  border-top: 1px solid var(--border);
}
.insta-badge-crimson {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(220, 38, 38, 0.15);
  border: 1px solid rgba(220, 38, 38, 0.4);
  color: #f87171;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.alfa-insta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 36px;
}
@media (min-width: 600px) {
  .alfa-insta-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 960px) {
  .alfa-insta-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.alfa-insta-card {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--bg-card);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.alfa-insta-card:hover {
  transform: translateY(-4px);
  border-color: var(--crimson);
  box-shadow: 0 8px 24px var(--crimson-glow);
}
.insta-img-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 100%; /* Quadrado 1:1 */
  overflow: hidden;
}
.insta-img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.alfa-insta-card:hover .insta-img-wrapper img {
  transform: scale(1.08);
}
.insta-overlay-alfa {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(7, 12, 24, 0.95) 0%, rgba(7, 12, 24, 0.6) 70%, transparent 100%);
  padding: 8px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 800;
  color: #fff;
}

.alfa-insta-cta {
  margin-top: 32px;
}
.btn-instagram-alfa {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 15px rgba(225, 48, 108, 0.35);
}
.btn-instagram-alfa:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(225, 48, 108, 0.5);
}

.modal-alfa-thumb {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--crimson);
  object-fit: cover;
}

/* ─── MOBILE STICKY BAR ─── */
.mobile-sticky-bar {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(11, 17, 32, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 8px 12px;
  gap: 8px;
  z-index: 99;
}
@media (min-width: 768px) {
  .mobile-sticky-bar {
    display: none;
  }
}
.sticky-btn-crimson {
  flex: 1;
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: #fff;
  border: none;
  font-weight: 900;
  font-size: 0.9rem;
  padding: 10px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
}
.sticky-btn-whats {
  width: 42px;
  height: 42px;
  background: #22c55e;
  color: #fff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  text-decoration: none;
}

/* ─── BOOKING MODAL (ACESSIBILIDADE COMPLETA) ─── */
.booking-modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 14px;
}
.booking-modal-backdrop.active {
  display: flex;
}
.booking-modal-box {
  background: #111a2e;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
}
.modal-header {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal-heading {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
}
.modal-mini-logo {
  display: inline-flex;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 2px;
}
.modal-close {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 26px;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  transition: color 0.15s ease;
}
.modal-close:hover {
  color: #fff;
}
.modal-body {
  padding: 18px;
}

.form-group {
  margin-bottom: 12px;
}
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.input-dark {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid var(--border);
  color: #fff;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 0.9rem;
  outline: none;
  font-family: inherit;
  transition: border-color 0.2s ease;
}
.input-dark:focus {
  border-color: var(--crimson);
}

.form-error {
  background: rgba(220, 38, 38, 0.15);
  border: 1px solid var(--crimson);
  color: #fca5a5;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.82rem;
  margin-top: 10px;
}

.btn-crimson-lg {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: #fff;
  border: none;
  font-weight: 800;
  font-size: 0.92rem;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 14px var(--crimson-glow);
}
.btn-crimson-lg:hover {
  transform: translateY(-1px);
}

/* ─── SUPORTE A PREFERS-REDUCED-MOTION (WCAG) ─── */
@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;
  }
  .canvas3d-viewport {
    display: none !important;
  }
  .arcade-card-wrapper {
    transform: none !important;
  }
}
