/* ==========================================================================
   OUTLET SB — DESIGN SYSTEM & STYLESHEET
   Urban Streetwear • High-Contrast Editorial Masculine Fashion
   ========================================================================== */

/* 1. Design Tokens */
:root {
  /* Color Palette: Strict High-Contrast Monochromatic & Brushed Metal */
  --bg-core: #070709;
  --bg-surface: #0e0f13;
  --bg-elevated: #15161c;
  --bg-card: rgba(22, 23, 29, 0.7);
  --bg-card-hover: rgba(28, 30, 38, 0.9);

  --border-subtle: rgba(255, 255, 255, 0.07);
  --border-medium: rgba(255, 255, 255, 0.14);
  --border-strong: rgba(255, 255, 255, 0.25);

  --text-primary: #f5f5f7;
  --text-secondary: #a1a1aa;
  --text-tertiary: #71717a;
  --text-inverted: #070709;

  /* Metallic & Monochromatic Accents */
  --metal-shine: linear-gradient(135deg, #ffffff 0%, #d8d8de 50%, #b2b2ba 100%);
  --metal-border: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.05) 100%);
  
  /* Status Active Indicator */
  --status-active: #ffffff;

  /* Typography */
  --font-display: 'Syne', sans-serif;
  --font-condensed: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  /* Layout & Spacing */
  --container-max: 980px;
  --section-spacing: clamp(60px, 10vw, 110px);
}

/* 2. Reset & Core Setup */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background-color: var(--bg-core);
  color: var(--text-primary);
  overflow-x: hidden !important;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-core);
  color: var(--text-primary);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden !important;
  position: relative;
  width: 100%;
}

.page-wrap {
  position: relative;
  width: 100%;
  overflow-x: hidden !important;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* 3. Global Noise & Subtle Lighting Overlays */
.bg-noise {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 1;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.bg-ambient-light {
  position: fixed;
  top: -20vh;
  left: 50%;
  transform: translateX(-50%);
  width: 90vw;
  max-width: 1000px;
  height: 70vh;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 45%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* 4. Container & Layout Utilities */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
  position: relative;
  z-index: 2;
}

/* 5. Top Bar */
.top-nav {
  width: 100%;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(7, 7, 9, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

.nav-status {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-primary);
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--status-active);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
  animation: pulseLight 2s infinite ease-in-out;
}

@keyframes pulseLight {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.nav-location {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-secondary);
}

.icon-geo {
  width: 14px;
  height: 14px;
}

/* 6. HERO SECTION */
.hero-section {
  position: relative;
  padding-top: clamp(40px, 8vw, 80px);
  padding-bottom: clamp(60px, 10vw, 100px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 85vh;
}

/* Watermark Ghost Typography Layer */
.hero-watermark {
  position: absolute;
  top: 18%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-condensed);
  font-size: clamp(80px, 22vw, 240px);
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.035);
  letter-spacing: 0.05em;
  white-space: nowrap;
  pointer-events: none;
  z-index: 1;
  user-select: none;
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Seal & Logo Badge */
.badge-wrapper {
  margin-bottom: 24px;
  position: relative;
  z-index: 3;
}

.seal-badge {
  position: relative;
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.seal-text-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: rotateSeal 24s linear infinite;
  transform-origin: center center;
}

@keyframes rotateSeal {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.seal-center {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #1c1d24, #0c0d11);
  border: 1px solid var(--border-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6), inset 0 1px 1px rgba(255, 255, 255, 0.15);
  overflow: hidden;
}

.brand-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  filter: contrast(1.05) brightness(1.02);
}

/* Micro Tag */
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--text-secondary);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
}

.tag-bracket {
  color: var(--text-tertiary);
}

/* Monumental Hero Headline */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 7.5vw, 4.8rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  max-width: 900px;
  margin-bottom: 24px;
}

.title-line {
  display: block;
}

.title-highlight {
  color: #ffffff;
  background: var(--metal-shine);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.15);
}

/* Value Prop Subtitle */
.hero-subtitle {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  font-weight: 400;
  color: var(--text-secondary);
  max-width: 620px;
  margin-bottom: 36px;
  line-height: 1.6;
}

.hero-subtitle strong {
  color: #ffffff;
  font-weight: 600;
}

/* Primary WhatsApp CTA */
.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 440px;
  margin-bottom: 44px;
}

.btn-whatsapp-primary {
  width: 100%;
  min-height: 58px;
  padding: 16px 28px;
  border-radius: var(--radius-full);
  background: var(--metal-shine);
  color: var(--text-inverted);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.12), inset 0 1px 2px rgba(255, 255, 255, 0.8);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-whatsapp-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 36px rgba(255, 255, 255, 0.2), inset 0 1px 2px rgba(255, 255, 255, 1);
}

.btn-whatsapp-primary:active {
  transform: translateY(1px) scale(0.99);
}

.btn-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.btn-arrow {
  width: 18px;
  height: 18px;
  stroke-width: 2.5;
  transition: transform 0.25s ease;
}

.btn-whatsapp-primary:hover .btn-arrow {
  transform: translate(3px, -3px);
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-20deg);
  animation: shineSweep 4s infinite ease-in-out;
}

@keyframes shineSweep {
  0% { left: -100%; }
  35%, 100% { left: 200%; }
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

.proof-number {
  font-family: var(--font-display);
  font-weight: 800;
  color: #ffffff;
  font-size: 0.95rem;
}

/* Quick Value Pills Strip */
.hero-highlights {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 32px);
  padding: 16px clamp(20px, 4vw, 36px);
  background: rgba(18, 19, 25, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  flex-wrap: wrap;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
}

.highlight-bullet {
  color: var(--text-tertiary);
}

.highlight-title {
  font-family: var(--font-display);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.highlight-desc {
  color: var(--text-tertiary);
  font-size: 0.75rem;
}

.highlight-divider {
  width: 1px;
  height: 18px;
  background: var(--border-medium);
}

/* 7. INFINITE MARQUEE STRIP (Esteira Automática Contínua) */
.marquee-strip {
  width: 100%;
  background: #000000;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
  user-select: none;
  -webkit-user-select: none;
}

.marquee-inner {
  display: flex;
  width: max-content;
  overflow: hidden;
}

.marquee-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 24px;
  padding-right: 24px;
  font-family: var(--font-condensed);
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
  will-change: transform;
  animation: marqueeLoop 28s linear infinite;
  transform: translate3d(0, 0, 0);
}

.star-sep {
  color: var(--text-tertiary);
  font-size: 0.75rem;
}

@keyframes marqueeLoop {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}

/* Pausa suave no hover no desktop */
@media (hover: hover) and (pointer: fine) {
  .marquee-strip:hover .marquee-group {
    animation-play-state: paused;
  }
}

/* 8. SECTION: THE PROPOSITION & PILLARS */
.section-pillars {
  padding-top: var(--section-spacing);
  padding-bottom: var(--section-spacing);
  position: relative;
}

.section-header {
  margin-bottom: clamp(36px, 6vw, 60px);
}

.section-eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--text-tertiary);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  max-width: 800px;
  margin-bottom: 18px;
}

.section-lead {
  font-size: clamp(0.95rem, 1.8vw, 1.125rem);
  color: var(--text-secondary);
  max-width: 620px;
  line-height: 1.6;
}

/* Pillars Grid: Non-repetitive Bento */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2.5vw, 24px);
}

.pillar-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 36px);
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
}

.pillar-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-medium);
  background: var(--bg-card-hover);
}

.card-spotlight {
  border-color: var(--border-medium);
  background: linear-gradient(135deg, rgba(30, 32, 42, 0.7) 0%, rgba(18, 19, 24, 0.7) 100%);
}

.pillar-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.pillar-code {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--text-tertiary);
  font-family: monospace;
}

.pillar-badge {
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
}

.pillar-stat {
  font-family: var(--font-condensed);
  font-size: clamp(3rem, 6vw, 4.5rem);
  line-height: 1;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.pillar-icon-box {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: #ffffff;
}

.pillar-icon-box svg {
  width: 26px;
  height: 26px;
}

.pillar-title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.pillar-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* 9. SECTION: HOW IT WORKS (Direct WhatsApp Flow) */
.section-process {
  padding-top: var(--section-spacing);
  padding-bottom: var(--section-spacing);
  background: linear-gradient(180deg, transparent 0%, rgba(12, 13, 17, 0.5) 50%, transparent 100%);
  position: relative;
}

.text-center {
  text-align: center;
}

.text-center .section-heading,
.text-center .section-lead {
  margin-left: auto;
  margin-right: auto;
}

.steps-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 48px;
  margin-bottom: 48px;
  position: relative;
}

.step-card {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: left;
  transition: transform 0.25s ease, border-color 0.25s ease;
  backdrop-filter: blur(8px);
}

.step-card:hover {
  transform: translateY(-2px);
  border-color: var(--border-medium);
}

.step-number {
  font-family: var(--font-condensed);
  font-size: 3rem;
  line-height: 1;
  color: var(--text-tertiary);
  margin-bottom: 16px;
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.step-connector {
  color: var(--text-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  flex-shrink: 0;
}

.step-connector svg {
  width: 20px;
  height: 20px;
}

.cta-mid-wrap {
  margin-top: 24px;
}

.btn-whatsapp-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-medium);
  color: #ffffff;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.btn-whatsapp-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  transform: translateY(-2px);
}

.btn-icon-small {
  width: 18px;
  height: 18px;
}

.btn-arrow-sub {
  font-family: sans-serif;
  font-size: 1rem;
}

/* 10. SECTION: PHYSICAL STORE & LOCATION */
.section-location {
  padding-top: var(--section-spacing);
  padding-bottom: var(--section-spacing);
  position: relative;
}

.location-card {
  background: radial-gradient(ellipse at top left, #181922 0%, #0d0e12 100%);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 44px);
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(24px, 4vw, 44px);
  align-items: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
}

.location-content {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--text-secondary);
  text-transform: uppercase;
  margin-bottom: 16px;
  padding: 5px 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  width: fit-content;
}

.dot-live {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

.location-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.location-address-block {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  margin-bottom: 24px;
}

.address-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #ffffff;
}

.address-icon-wrap svg {
  width: 18px;
  height: 18px;
}

.address-text-group {
  line-height: 1.55;
}

.address-street {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
}

.address-floor {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.address-city-cep {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
  margin-top: 2px;
}

.location-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.btn-location-map,
.btn-location-insta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.25s ease;
  min-height: 48px;
}

.btn-location-map {
  background: #ffffff;
  color: #000000;
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.15);
}

.btn-location-map:hover {
  background: #e4e4e7;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.25);
}

.btn-location-insta {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-medium);
  color: #ffffff;
}

.btn-location-insta:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  transform: translateY(-2px);
}

.map-icon, .insta-icon {
  width: 16px;
  height: 16px;
}

.location-notice {
  font-size: 0.75rem;
  color: var(--text-tertiary);
  border-top: 1px solid var(--border-subtle);
  padding-top: 16px;
}

/* Location Map Frame with Dark Monochromatic Inversion */
.location-map-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.map-frame {
  position: relative;
  width: 100%;
  height: clamp(260px, 30vw, 340px);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-medium);
  background: #111217;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8);
}

.location-iframe {
  width: 100%;
  height: 100%;
  border: 0;
  /* Dark mode filter for standard Google Maps embed */
  filter: invert(92%) hue-rotate(180deg) contrast(1.15) brightness(0.8);
  transition: filter 0.3s ease;
}

.map-frame:hover .location-iframe {
  filter: invert(92%) hue-rotate(180deg) contrast(1.15) brightness(0.9);
}

/* Floating custom pin on map */
.map-overlay-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
  z-index: 2;
}

.pin-marker {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pin-svg {
  width: 32px;
  height: 32px;
  color: #ffffff;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.9));
}

.pin-pulse {
  position: absolute;
  bottom: 2px;
  width: 14px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.9);
  animation: mapPinPulse 2s infinite ease-out;
}

@keyframes mapPinPulse {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(2.8); opacity: 0; }
}

.pin-tooltip {
  background: rgba(10, 11, 14, 0.95);
  border: 1px solid var(--border-medium);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 4px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
}

.pin-name {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.05em;
}

.pin-sub {
  font-size: 0.6875rem;
  color: var(--text-tertiary);
}

.map-direct-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
  padding: 4px 0;
}

.map-direct-link:hover {
  color: #ffffff;
}

/* 11. FINAL CONVERSION SECTION */
.section-final-cta {
  padding-top: var(--section-spacing);
  padding-bottom: clamp(80px, 12vw, 130px);
  position: relative;
}

.cta-inner-card {
  background: radial-gradient(ellipse at center, rgba(28, 30, 40, 0.8) 0%, rgba(12, 13, 18, 0.95) 100%);
  border: 1px solid var(--border-strong);
  border-radius: clamp(18px, 3vw, 28px);
  padding: clamp(36px, 7vw, 68px) clamp(20px, 5vw, 48px);
  max-width: 820px;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.final-tag {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--text-secondary);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.final-heading {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.8vw, 3.2rem);
  font-weight: 800;
  line-height: 1.08;
  color: #ffffff;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  max-width: 660px;
  margin: 0 auto 18px;
}

.final-description {
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

.final-description strong {
  color: #ffffff;
}

.final-btn-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.btn-whatsapp-hero-final {
  width: 100%;
  max-width: 440px;
  min-height: 60px;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  background: var(--metal-shine);
  color: var(--text-inverted);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.1rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 10px 36px rgba(255, 255, 255, 0.16), inset 0 1px 2px rgba(255, 255, 255, 0.8);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease;
}

.btn-whatsapp-hero-final:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 44px rgba(255, 255, 255, 0.25);
}

.btn-whatsapp-hero-final:active {
  transform: translateY(1px);
}

.whatsapp-number-badge {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
  letter-spacing: 0.05em;
}

/* 12. FOOTER */
.site-footer {
  border-top: 1px solid var(--border-subtle);
  background: #050507;
  padding: 40px 0 60px;
  position: relative;
  z-index: 2;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.footer-logo {
  font-family: var(--font-condensed);
  font-size: 1.75rem;
  letter-spacing: 0.05em;
  color: #ffffff;
}

.footer-tagline {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
  margin-top: 4px;
}

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

.footer-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.8125rem;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #ffffff;
}

.footer-sep {
  color: var(--border-medium);
  font-size: 0.75rem;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--text-tertiary);
  line-height: 1.6;
}

.footer-subcopy {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 4px;
}

/* 13. STICKY MOBILE CONVERSION BAR */
.sticky-mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 12px 16px;
  background: rgba(7, 7, 9, 0.92);
  border-top: 1px solid var(--border-medium);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 99;
  transform: translateY(120%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  justify-content: center;
}

.sticky-mobile-bar.is-visible {
  transform: translateY(0);
}

.btn-sticky-whatsapp {
  width: 100%;
  max-width: 420px;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: var(--radius-full);
  background: var(--metal-shine);
  color: var(--text-inverted);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
}

.sticky-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.sticky-arrow {
  font-size: 1rem;
}

/* 14. RESPONSIVE BREAKPOINTS (Mobile-First Absolute) */
@media (max-width: 900px) {
  .location-card {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: clamp(20px, 4vw, 32px);
  }

  .location-content {
    text-align: center;
    align-items: center;
  }

  .location-address-block {
    text-align: left;
    width: 100%;
  }

  .location-actions {
    justify-content: center;
    width: 100%;
  }

  .map-frame {
    height: 260px;
  }
}

@media (max-width: 768px) {
  .marquee-strip {
    padding: 11px 0;
  }

  .marquee-group {
    font-size: 1rem;
    gap: 18px;
    padding-right: 18px;
    animation-duration: 34s; /* Velocidade equilibrada e legível no mobile */
  }

  .pillars-grid {
    grid-template-columns: 1fr;
  }

  .steps-flow {
    flex-direction: column;
    gap: 12px;
  }

  .step-connector {
    transform: rotate(90deg);
    margin: 4px 0;
  }

  .hero-highlights {
    flex-direction: column;
    gap: 8px;
    border-radius: var(--radius-md);
    padding: 14px 20px;
    width: 100%;
    max-width: 320px;
  }

  .highlight-divider {
    display: none;
  }

  .highlight-item {
    justify-content: center;
    width: 100%;
  }

  .site-footer {
    padding-bottom: 90px; /* Leave room for sticky mobile bar */
  }
}

@media (max-width: 480px) {
  .location-actions {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .btn-location-map,
  .btn-location-insta {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 360px) {
  .hero-title {
    font-size: 2rem;
  }

  .seal-badge {
    width: 110px;
    height: 110px;
  }

  .seal-center {
    width: 68px;
    height: 68px;
  }

  .btn-whatsapp-primary,
  .btn-whatsapp-hero-final {
    font-size: 0.875rem;
    padding: 14px 18px;
  }

  .location-card {
    padding: 16px;
  }

  .map-frame {
    height: 220px;
  }

  .location-title {
    font-size: 1.75rem;
  }
}

/* 15. ACCESSIBILITY: Focus states & Reduced Motion */
:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

@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;
  }

  .seal-text-svg,
  .btn-shine,
  .marquee-group,
  .pulse-dot,
  .pin-pulse {
    animation: none !important;
    transform: none !important;
  }

  .marquee-inner {
    width: 100%;
    justify-content: center;
  }

  .marquee-group:last-child {
    display: none;
  }
}
