/* ==========================================================================
   GRANDE HOMEM - DESIGN SYSTEM & ESTILOS DE ALFAIATARIA PREMIUM
   NOVA IDENTIDADE VISUAL: Azul Profundo #18263D | Off-White #F3EFE7 | Cinza Quente #8C8881 | Grafite #242628
   Conceito: "Presença em cada detalhe." | "Elegância que cabe no cotidiano."
   Padrão de Qualidade: Emil Kowalski UI Polish & Apple Design Principles
   ========================================================================== */

:root {
  /* Cores Principais da Marca */
  --gh-blue-primary: #18263D;
  --gh-blue-dark: #0F1A2A;
  --gh-blue-navy: #0B131F;
  --gh-blue-subtle: #223552;
  --gh-blue-light: #E4E8EE;
  --gh-blue-tint: #F3EFE7;

  /* Cores de Acento & Sinalização */
  --gh-green-signal: #227327;
  --gh-green-hover: #1B5E20;
  --gh-green-light: #EBF8EA;

  --gh-gold-accent: #C5A869;
  --gh-gold-light: #F7F3E9;
  --gh-gold-glow: rgba(197, 168, 105, 0.25);

  /* Tons Neutros & Tipografia */
  --gh-white: #FFFFFF;
  --gh-offwhite: #F3EFE7;
  --gh-offwhite-light: #FAF8F5;
  --gh-warmgray: #8C8881;
  --gh-warmgray-light: #B4B0A8;
  --gh-charcoal: #242628;
  --gh-gray-dark: #373A3F;
  --gh-gray-text: #5C6069;
  --gh-gray-muted: #838792;
  --gh-gray-light: #F7F5F0;
  --gh-border: #DCD8D0;
  --gh-border-light: #EBE8E1;

  /* Tipografia */
  --font-serif: 'Playfair Display', 'DejaVu Serif', Georgia, serif;
  --font-sans: 'Manrope', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Elevações & Sombras Finas (Layered Shadows) */
  --shadow-xs: 0 1px 2px rgba(11, 19, 31, 0.04);
  --shadow-sm: 0 2px 8px rgba(11, 19, 31, 0.06), 0 1px 2px rgba(11, 19, 31, 0.04);
  --shadow-md: 0 6px 16px -2px rgba(11, 19, 31, 0.08), 0 2px 6px -1px rgba(11, 19, 31, 0.04);
  --shadow-lg: 0 14px 30px -4px rgba(11, 19, 31, 0.12), 0 4px 10px -2px rgba(11, 19, 31, 0.04);
  --shadow-xl: 0 24px 50px -8px rgba(11, 19, 31, 0.25), 0 8px 16px -4px rgba(11, 19, 31, 0.08);
  --shadow-glow-blue: 0 10px 30px -4px rgba(24, 38, 61, 0.35);
  --shadow-glow-green: 0 10px 30px -4px rgba(34, 115, 39, 0.4);

  /* Físicas de Movimento (Emil Kowalski Philosophy) */
  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --duration-fast: 0.18s;
  --duration-normal: 0.32s;
  --duration-slow: 0.55s;

  /* Raios de Borda */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
}

/* ==========================================================================
   RESET & FUNDAÇÃO GLOBAL
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--gh-charcoal);
  background-color: var(--gh-white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

/* Barra de Progresso de Leitura */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gh-green-signal), var(--gh-gold-accent), var(--gh-blue-subtle));
  z-index: 1000;
  transition: width 0.08s ease-out;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-spring), transform var(--duration-fast) var(--ease-spring);
}

ul {
  list-style: none;
}

button, input, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

/* CONTAINER PADRÃO */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   TOPBAR INFORMATIVA & STATUS EM TEMPO REAL
   ========================================================================== */

.topbar {
  background: #080D15;
  color: #B1B4BC;
  font-size: 12.5px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  z-index: 120;
}

.topbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 7px;
  padding-bottom: 7px;
  flex-wrap: wrap;
  gap: 10px;
}

.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.topbar-divider {
  opacity: 0.25;
  font-weight: 300;
}

.topbar-address, .topbar-feature, .topbar-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #C6C9D8;
}

.topbar-phone {
  font-weight: 600;
  color: #FFFFFF;
}

.topbar-phone:hover {
  color: var(--gh-gold-accent);
}

/* Badge de Status Aberto/Fechado */
.store-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  background: rgba(34, 115, 39, 0.18);
  color: #7BEA75;
  font-weight: 600;
  font-size: 11.5px;
  border: 1px solid rgba(123, 234, 117, 0.3);
  letter-spacing: 0.2px;
}

.store-status-badge .status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #51B747;
  box-shadow: 0 0 8px #51B747;
  animation: pulse-dot 2s infinite var(--ease-spring);
}

.store-status-badge.closed {
  background: rgba(180, 40, 40, 0.18);
  color: #FFA5A5;
  border-color: rgba(255, 100, 100, 0.3);
}

.store-status-badge.closed .status-dot {
  background-color: #E53935;
  box-shadow: 0 0 8px #E53935;
  animation: none;
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.35); opacity: 0.65; }
}

/* ==========================================================================
   HEADER PRINCIPAL (STICKY & GLASSMORPHISM)
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 19, 31, 0.94);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background var(--duration-normal) var(--ease-spring), box-shadow var(--duration-normal) var(--ease-spring), padding var(--duration-normal) var(--ease-spring);
}

.site-header.scrolled {
  background: rgba(8, 13, 21, 0.98);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  transition: height var(--duration-normal) var(--ease-spring);
}

.site-header.scrolled .header-container {
  height: 72px;
}

.brand-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: auto;
  max-height: 52px;
  width: auto;
  transition: transform var(--duration-fast) var(--ease-spring);
}

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

/* Menu de Navegação Desktop */
.desktop-nav {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  color: #D2D5DC;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2px;
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gh-gold-accent);
  transition: width var(--duration-fast) var(--ease-spring);
  border-radius: var(--radius-full);
}

.nav-link:hover {
  color: #FFFFFF;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.special-nav-link {
  color: #F4E2BB;
  font-weight: 600;
}

.nav-link.special-nav-link::after {
  background: #F4E2BB;
}

/* Header Ações */
.header-action {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Botão Hambúrguer Mobile */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition: background var(--duration-fast) var(--ease-spring);
}

.mobile-menu-btn:hover {
  background: rgba(255, 255, 255, 0.12);
}

.hamburger-line {
  width: 20px;
  height: 2px;
  background-color: #FFFFFF;
  border-radius: var(--radius-full);
  transition: transform var(--duration-normal) var(--ease-spring), opacity var(--duration-fast);
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Menu Mobile Drawer */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 360px;
  height: 100vh;
  background: #0A111C;
  z-index: 200;
  box-shadow: -10px 0 35px rgba(0, 0, 0, 0.6);
  transition: right var(--duration-normal) var(--ease-spring);
  overflow-y: auto;
  padding: 24px;
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav-title {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gh-gold-accent);
  font-weight: 700;
}

.mobile-close-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 24px 0;
}

.mobile-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  color: #E1E3ED;
  font-weight: 600;
  font-size: 15px;
  transition: background var(--duration-fast) var(--ease-spring), color var(--duration-fast);
}

.mobile-link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
}

.nav-icon-badge {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-xs);
  background: rgba(197, 168, 105, 0.12);
  color: var(--gh-gold-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav-footer {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: env(safe-area-inset-bottom, 20px);
}

/* ==========================================================================
   BOTÕES & COMPONENTES TÁTEIS (EMIL KOWALSKI CRAFT)
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14.5px;
  line-height: 1.2;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform var(--duration-fast) var(--ease-spring), box-shadow var(--duration-fast) var(--ease-spring), background var(--duration-fast) var(--ease-spring), border-color var(--duration-fast);
  border: 1px solid transparent;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.btn:active {
  transform: scale(0.975);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
  border-radius: var(--radius-md);
}

.btn-xl {
  padding: 18px 36px;
  font-size: 17px;
  font-weight: 700;
  border-radius: var(--radius-md);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 13px;
  border-radius: var(--radius-xs);
}

.btn-block {
  width: 100%;
}

/* Botão WhatsApp */
.btn-whatsapp {
  background: linear-gradient(180deg, #25812B 0%, #1E6B23 100%);
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 16px rgba(34, 115, 39, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn-whatsapp:hover {
  background: linear-gradient(180deg, #2D9B34 0%, #227327 100%);
  box-shadow: 0 8px 24px rgba(34, 115, 39, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* Botão Dourado Nobre */
.btn-gold {
  background: linear-gradient(180deg, #D6B97A 0%, #B8974F 100%);
  color: #0B131F;
  font-weight: 700;
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 14px rgba(197, 168, 105, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-gold:hover {
  background: linear-gradient(180deg, #E2C78A 0%, #C5A869 100%);
  box-shadow: 0 6px 20px rgba(197, 168, 105, 0.45);
  transform: translateY(-2px);
}

/* Botão Primário Azul da Marca */
.btn-primary {
  background: linear-gradient(180deg, #1F314D 0%, #162235 100%);
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 16px rgba(24, 38, 61, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  background: linear-gradient(180deg, #273C5D 0%, #18263D 100%);
  box-shadow: 0 8px 24px rgba(24, 38, 61, 0.45);
  transform: translateY(-2px);
}

/* Botão Vidro Translúcido (Glass) */
.btn-outline-glass {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-outline-glass:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.btn-outline-primary {
  background: transparent;
  color: var(--gh-blue-primary);
  border-color: var(--gh-blue-primary);
}

.btn-outline-primary:hover {
  background: var(--gh-blue-primary);
  color: #FFFFFF;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* Pulso Sutil de Destaque */
.pulse-subtle {
  animation: subtle-pulse 3s infinite var(--ease-spring);
}

@keyframes subtle-pulse {
  0%, 100% { box-shadow: 0 4px 14px rgba(197, 168, 105, 0.3); }
  50% { box-shadow: 0 4px 22px rgba(197, 168, 105, 0.6); }
}

/* ==========================================================================
   HERO SECTION: ATELIER EDITORIAL STAGE (REFORMULADO)
   Inspiração: Brunello Cucinelli & Savile Row London
   ========================================================================== */

.hero-editorial-stage {
  position: relative;
  background: radial-gradient(circle at 50% -15%, #172439 0%, #0D1623 50%, #060A10 100%);
  color: #FFFFFF;
  padding: 64px 0 0 0;
  overflow: hidden;
}

.hero-ambient-glow {
  position: absolute;
  top: -15%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(circle, rgba(62, 59, 156, 0.45) 0%, rgba(197, 168, 105, 0.12) 40%, transparent 70%);
  filter: blur(70px);
  pointer-events: none;
}

.hero-grain-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 0);
  background-size: 24px 24px;
  pointer-events: none;
  opacity: 0.6;
}

.hero-editorial-container {
  position: relative;
  z-index: 10;
}

/* Cabeçalho Editorial */
.hero-editorial-header {
  max-width: 920px;
  margin: 0 auto;
}

.hero-kicker-capsule {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.kicker-pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gh-gold-accent);
  box-shadow: 0 0 8px var(--gh-gold-accent);
}

.kicker-text {
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #F4E2BB;
}

.hero-headline-monumental {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #FFFFFF;
  margin-bottom: 18px;
}

.hero-serif-italic {
  font-style: italic;
  font-weight: 500;
  color: #F4E2BB;
  display: inline-block;
}

.hero-lead-editorial {
  font-size: clamp(16px, 1.25vw, 18.5px);
  color: #C5C8D0;
  line-height: 1.65;
  max-width: 740px;
  margin: 0 auto 32px auto;
}

/* Lookbook Segmented Control */
.hero-segmented-control {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 5px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(14px);
  gap: 6px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  max-width: 100%;
  overflow-x: auto;
}

.hero-segment-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-size: 13.5px;
  font-weight: 600;
  color: #D0D3DC;
  transition: all var(--duration-fast) var(--ease-spring);
  white-space: nowrap;
}

.hero-segment-btn:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.08);
}

.hero-segment-btn.active {
  background: #FFFFFF;
  color: #0B131F;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.hero-segment-btn.active svg {
  color: var(--gh-blue-primary);
}

/* Palco Visual Assimétrico (3 Colunas) */
.hero-tri-stage {
  display: grid;
  grid-template-columns: 310px 1fr 340px;
  gap: 28px;
  align-items: center;
  margin-top: 48px;
  margin-bottom: 56px;
}

/* Painel de Vidro Padrão */
.glass-panel {
  background: rgba(11, 19, 31, 0.82);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
}

/* Coluna 1: Craft Card */
.hero-craft-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.craft-card-image-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0E1724;
}

.craft-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-normal) var(--ease-spring);
}

.hero-craft-card:hover .craft-card-img {
  transform: scale(1.05);
}

.craft-card-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(8, 13, 21, 0.9);
  backdrop-filter: blur(10px);
  color: var(--gh-gold-accent);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(197, 168, 105, 0.3);
}

.craft-card-body {
  padding: 24px;
}

.craft-card-body h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.craft-card-body p {
  font-size: 13.5px;
  color: #B2B5BD;
  line-height: 1.55;
  margin-bottom: 16px;
}

.craft-card-metric {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.metric-val {
  color: #F8BF28;
  font-weight: 800;
  font-size: 14px;
}

.metric-lbl {
  font-size: 11.5px;
  color: #D0D3DC;
}

/* Coluna 2: Retrato Focal Principal */
.hero-focal-portrait {
  position: relative;
}

.portrait-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 30px 80px -15px rgba(0, 0, 0, 0.75), 0 0 0 1px rgba(255, 255, 255, 0.16);
  background: #0E1724;
  aspect-ratio: 3.4 / 4.4;
  max-height: 600px;
}

.portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--duration-slow) var(--ease-spring), opacity var(--duration-normal);
}

.portrait-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10, 9, 30, 0.85) 100%);
  pointer-events: none;
}

/* Hotspots Interativos no Retrato */
.tailoring-hotspot {
  position: absolute;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 25;
  transition: transform var(--duration-fast) var(--ease-spring);
}

.hotspot-shoulder {
  top: 26%;
  left: 24%;
}

.hotspot-chest {
  top: 44%;
  left: 48%;
}

.hotspot-waist {
  top: 70%;
  left: 35%;
}

.hotspot-core {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gh-gold-accent);
  color: #0B131F;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 2;
  transition: transform var(--duration-fast);
}

.tailoring-hotspot:hover .hotspot-core,
.tailoring-hotspot:focus .hotspot-core {
  transform: scale(1.15);
  background: #FFFFFF;
}

.hotspot-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(197, 168, 105, 0.4);
  animation: hotspot-wave 2.2s infinite var(--ease-spring);
}

@keyframes hotspot-wave {
  0% { transform: scale(0.8); opacity: 0.9; }
  100% { transform: scale(2.2); opacity: 0; }
}

.hotspot-popover {
  position: absolute;
  bottom: 42px;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 220px;
  background: rgba(8, 13, 21, 0.94);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: all var(--duration-fast) var(--ease-spring);
  z-index: 30;
}

.tailoring-hotspot:hover .hotspot-popover,
.tailoring-hotspot:focus .hotspot-popover,
.tailoring-hotspot.active .hotspot-popover {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.hotspot-popover strong {
  display: block;
  font-size: 12.5px;
  color: var(--gh-gold-accent);
  margin-bottom: 3px;
}

.hotspot-popover p {
  font-size: 11.5px;
  color: #D0D3DC;
  line-height: 1.45;
}

/* Floating Capsule no Retrato */
.portrait-floating-capsule {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 20;
}

.capsule-icon-box {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(197, 168, 105, 0.18);
  color: var(--gh-gold-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.capsule-text strong {
  display: block;
  font-size: 14px;
  color: #FFFFFF;
  font-weight: 700;
}

.capsule-text span {
  font-size: 12px;
  color: #D0D3DC;
}

/* Coluna 3: Concierge Card */
.hero-concierge-card {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.concierge-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.concierge-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #7BEA75;
  background: rgba(34, 115, 39, 0.25);
  border: 1px solid rgba(123, 234, 117, 0.3);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  align-self: flex-start;
}

.status-pulse-green {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #51B747;
  box-shadow: 0 0 6px #51B747;
}

.concierge-header h3 {
  font-family: var(--font-serif);
  font-size: 21px;
  color: #FFFFFF;
  line-height: 1.3;
}

.concierge-header p {
  font-size: 13px;
  color: #B2B5BD;
  line-height: 1.5;
}

.concierge-features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.concierge-feat-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feat-icon-sq {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-xs);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--gh-gold-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.concierge-feat-item strong {
  display: block;
  font-size: 13px;
  color: #FFFFFF;
}

.concierge-feat-item span {
  font-size: 11.5px;
  color: #9B9EA7;
}

.concierge-cta-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}

.concierge-direct-phone {
  font-size: 11.5px;
  color: #B2B5BD;
}

.concierge-direct-phone strong {
  color: #FFFFFF;
}

/* Dock de Garantias & Valor */
.hero-value-dock {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  border-radius: var(--radius-full);
  margin-bottom: 40px;
}

.dock-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dock-icon {
  display: flex;
  align-items: center;
  color: var(--gh-gold-accent);
}

.dock-text strong {
  display: block;
  font-size: 13.5px;
  color: #FFFFFF;
  font-weight: 700;
}

.dock-text span {
  font-size: 11.5px;
  color: #B2B5BD;
}

.dock-sep {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.12);
}

/* Ajustes Responsivos do Hero Editorial */
@media (max-width: 1150px) {
  .hero-tri-stage {
    grid-template-columns: 280px 1fr 300px;
    gap: 20px;
  }
}

@media (max-width: 992px) {
  .hero-tri-stage {
    grid-template-columns: 1fr;
    max-width: 580px;
    margin: 40px auto;
  }

  .hero-craft-card {
    order: 2;
  }

  .hero-focal-portrait {
    order: 1;
  }

  .hero-concierge-card {
    order: 3;
  }

  .hero-value-dock {
    flex-direction: column;
    border-radius: var(--radius-lg);
    gap: 16px;
    align-items: flex-start;
    padding: 24px;
  }

  .dock-sep {
    display: none;
  }
}

@media (max-width: 600px) {
  .hero-headline-monumental {
    font-size: 32px;
  }

  .hero-segment-btn {
    padding: 8px 14px;
    font-size: 12px;
  }

  .portrait-floating-capsule {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 10px 14px;
  }
}

/* ==========================================================================
   SEÇÕES GERAIS, CABEÇALHOS & TIPOGRAFIA
   ========================================================================== */

.section {
  padding: 96px 0;
}

.section-kicker {
  display: block;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  color: var(--gh-gold-accent);
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.4vw, 42px);
  color: var(--gh-charcoal);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.title-divider {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--gh-blue-primary), var(--gh-gold-accent));
  border-radius: var(--radius-full);
  margin: 16px auto 20px auto;
}

.title-divider.left {
  margin-left: 0;
  margin-right: auto;
}

.section-desc {
  font-size: clamp(15.5px, 1.2vw, 17.5px);
  color: var(--gh-gray-text);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.65;
}

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

/* ==========================================================================
   SEÇÃO ALFAIATARIA & STUDIO INTERATIVO
   ========================================================================== */

.tailoring-section {
  background-color: var(--gh-white);
}

.tailoring-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
  margin-top: 56px;
  margin-bottom: 64px;
}

.tailoring-image-wrapper {
  position: relative;
}

.tailoring-image-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gh-border);
}

.tailoring-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.tailoring-stamp {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gh-blue-navy);
  color: #FFFFFF;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.tailoring-stamp svg {
  color: var(--gh-gold-accent);
  margin-bottom: 4px;
}

.stamp-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.stamp-sub {
  font-size: 10px;
  color: #D0D3DC;
  text-transform: uppercase;
}

.tailoring-quote-box {
  margin-top: 20px;
  background: var(--gh-blue-tint);
  border-left: 4px solid var(--gh-blue-primary);
  padding: 18px 22px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.tailoring-quote-box blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  color: var(--gh-blue-dark);
  line-height: 1.5;
  margin-bottom: 8px;
}

.tailoring-quote-box cite {
  font-size: 12.5px;
  color: var(--gh-gray-text);
  font-style: normal;
  font-weight: 600;
}

.tailoring-subtitle {
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--gh-blue-primary);
  margin-bottom: 16px;
}

.tailoring-text {
  font-size: 15.5px;
  color: var(--gh-gray-text);
  line-height: 1.7;
  margin-bottom: 14px;
}

/* 4 Passos do Sob Medida */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}

.step-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--gh-gray-light);
  border: 1px solid var(--gh-border);
  border-radius: var(--radius-sm);
  transition: transform var(--duration-fast) var(--ease-spring), box-shadow var(--duration-fast);
}

.step-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: var(--gh-blue-subtle);
}

.step-number {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--gh-blue-primary);
  line-height: 1;
  opacity: 0.85;
}

.step-body h4 {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--gh-charcoal);
  margin-bottom: 4px;
}

.step-body p {
  font-size: 12.5px;
  color: var(--gh-gray-text);
  line-height: 1.45;
}

/* ==========================================================================
   STUDIO INTERATIVO DE CONSULTORIA & ALFAIATARIA (NOVO)
   ========================================================================== */

.simulator-wrapper {
  margin-top: 32px;
}

.simulator-card {
  background: #FFFFFF;
  border: 1px solid var(--gh-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.simulator-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--gh-blue-primary), var(--gh-gold-accent), var(--gh-green-signal));
}

.simulator-header {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gh-border-light);
}

.simulator-icon-box {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: var(--gh-blue-light);
  color: var(--gh-blue-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.simulator-title {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--gh-blue-dark);
  margin-bottom: 4px;
}

.simulator-sub {
  font-size: 14.5px;
  color: var(--gh-gray-text);
}

/* Blocos do Formulário */
.form-group-block {
  margin-bottom: 28px;
}

.form-label-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  color: var(--gh-charcoal);
  margin-bottom: 14px;
}

.step-badge-mini {
  display: inline-block;
  background: var(--gh-blue-primary);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 8px;
  border-radius: var(--radius-full);
}

/* Grid de Seleção Tátil de Peças */
.pill-selector-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.pill-option {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 14px 16px;
  background: var(--gh-gray-light);
  border: 1.5px solid var(--gh-border);
  border-radius: var(--radius-sm);
  text-align: left;
  transition: all var(--duration-fast) var(--ease-spring);
}

.pill-option:hover {
  border-color: var(--gh-blue-subtle);
  background: #FFFFFF;
  transform: translateY(-1px);
}

.pill-option.active {
  background: #FFFFFF;
  border-color: var(--gh-blue-primary);
  box-shadow: 0 0 0 3px rgba(24, 38, 61, 0.12), var(--shadow-sm);
}

.pill-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--gh-charcoal);
  margin-bottom: 2px;
}

.pill-option.active .pill-title {
  color: var(--gh-blue-primary);
}

.pill-desc {
  font-size: 12px;
  color: var(--gh-gray-muted);
}

/* Grid de Duas Colunas */
.form-grid-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 22px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--gh-charcoal);
  display: flex;
  align-items: center;
  gap: 8px;
}

.label-optional {
  font-size: 12px;
  color: var(--gh-gray-muted);
  font-weight: 400;
}

.custom-select-wrap {
  position: relative;
}

.form-select, .form-input {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--gh-border);
  background-color: var(--gh-gray-light);
  color: var(--gh-charcoal);
  font-size: 14.5px;
  transition: border-color var(--duration-fast), background-color var(--duration-fast), box-shadow var(--duration-fast);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232D2B78' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
}

.form-select:focus, .form-input:focus {
  background-color: #FFFFFF;
  border-color: var(--gh-blue-primary);
  box-shadow: 0 0 0 3px rgba(24, 38, 61, 0.12);
}

/* Container de Pré-Visualização da Mensagem */
.message-preview-container {
  background: var(--gh-blue-tint);
  border: 1px solid rgba(24, 38, 61, 0.15);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 26px;
}

.message-preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.preview-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--gh-blue-primary);
}

.btn-copy-msg {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gh-blue-primary);
  padding: 4px 10px;
  border-radius: var(--radius-xs);
  background: rgba(24, 38, 61, 0.08);
  transition: all var(--duration-fast);
}

.btn-copy-msg:hover {
  background: rgba(24, 38, 61, 0.16);
}

.preview-bubble {
  background: #FFFFFF;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  border: 1px solid var(--gh-border);
  box-shadow: var(--shadow-xs);
}

.preview-text {
  font-family: monospace, sans-serif;
  font-size: 13.5px;
  color: var(--gh-charcoal);
  line-height: 1.55;
  word-break: break-word;
}

.simulator-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.simulator-guarantee {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--gh-gray-muted);
}

/* ==========================================================================
   SEÇÃO GRADE 46 AO 80 INTERATIVA (NOVO EXPLORADOR)
   ========================================================================== */

.grade-section {
  background: var(--gh-gray-light);
  border-top: 1px solid var(--gh-border);
  border-bottom: 1px solid var(--gh-border);
}

.grade-explorer-box {
  background: #FFFFFF;
  border: 1px solid var(--gh-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  margin-top: 48px;
  margin-bottom: 56px;
}

.grade-instruction {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gh-blue-primary);
  margin-bottom: 18px;
}

/* Container de Pílulas de Tamanho */
.size-pill-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.size-pill {
  flex: 1 0 calc(10% - 8px);
  min-width: 52px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  color: var(--gh-charcoal);
  background: var(--gh-gray-light);
  border: 1.5px solid var(--gh-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-spring);
}

.size-pill:hover {
  border-color: var(--gh-blue-primary);
  color: var(--gh-blue-primary);
  background: #FFFFFF;
  transform: translateY(-2px);
}

.size-pill.active {
  background: var(--gh-blue-primary);
  color: #FFFFFF;
  border-color: var(--gh-blue-primary);
  box-shadow: 0 4px 14px rgba(24, 38, 61, 0.35);
  transform: scale(1.04);
}

.size-pill.max {
  border-color: var(--gh-gold-accent);
  color: #8C6F2D;
}

.size-pill.max.active {
  background: linear-gradient(135deg, var(--gh-blue-primary), #121C2B);
  color: #FFFFFF;
}

/* Card de Feedback do Tamanho Selecionado */
.size-feedback-card {
  background: var(--gh-blue-tint);
  border: 1px solid rgba(24, 38, 61, 0.16);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all var(--duration-normal) var(--ease-spring);
}

.size-feedback-header {
  display: flex;
  align-items: center;
  gap: 20px;
}

.size-badge-large {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: var(--gh-blue-primary);
  color: #FFFFFF;
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.size-feedback-header h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--gh-blue-dark);
  margin-bottom: 4px;
}

.size-feedback-header p {
  font-size: 14px;
  color: var(--gh-gray-text);
}

.size-action-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(24, 38, 61, 0.1);
  flex-wrap: wrap;
  gap: 12px;
}

.size-stock-note {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #1E6B23;
  font-weight: 600;
}

/* Grid de Diferenciais da Grade */
.grade-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grade-feature-card {
  background: #FFFFFF;
  border: 1px solid var(--gh-border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-xs);
  transition: transform var(--duration-fast) var(--ease-spring), box-shadow var(--duration-fast);
}

.grade-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--gh-blue-subtle);
}

.feature-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--gh-blue-light);
  color: var(--gh-blue-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.grade-feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--gh-charcoal);
  margin-bottom: 10px;
}

.grade-feature-card p {
  font-size: 14px;
  color: var(--gh-gray-text);
  line-height: 1.6;
}

/* ==========================================================================
   SEÇÃO COLEÇÕES E ESTILOS
   ========================================================================== */

.collections-section {
  background-color: var(--gh-white);
}

/* Abas de Filtro de Coleções */
.collection-filter-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  color: var(--gh-gray-text);
  background: var(--gh-gray-light);
  border: 1.5px solid var(--gh-border);
  transition: all var(--duration-fast) var(--ease-spring);
}

.filter-tab:hover {
  color: var(--gh-blue-primary);
  border-color: var(--gh-blue-subtle);
}

.filter-tab.active {
  background: var(--gh-blue-primary);
  color: #FFFFFF;
  border-color: var(--gh-blue-primary);
  box-shadow: 0 4px 14px rgba(24, 38, 61, 0.25);
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.collection-card {
  background: #FFFFFF;
  border: 1px solid var(--gh-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--duration-normal) var(--ease-spring), box-shadow var(--duration-normal) var(--ease-spring), opacity var(--duration-normal);
  display: flex;
  flex-direction: column;
}

.collection-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.collection-img-wrapper {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #0E1724;
}

.collection-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-spring);
}

.collection-card:hover .collection-img {
  transform: scale(1.06);
}

.collection-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(11, 19, 31, 0.85);
  backdrop-filter: blur(10px);
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.collection-content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.collection-content h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--gh-blue-primary);
  margin-bottom: 10px;
}

.collection-content p {
  font-size: 14.5px;
  color: var(--gh-gray-text);
  line-height: 1.6;
  margin-bottom: 18px;
}

.collection-list {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--gh-border-light);
}

.collection-list li {
  font-size: 13px;
  color: var(--gh-charcoal);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.collection-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--gh-gold-accent);
}

/* Materiais da Marca (Sacola, Tag, Placa) */
.brand-materials-box {
  margin-top: 72px;
  background: var(--gh-gray-light);
  border: 1px solid var(--gh-border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.materials-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 36px auto;
}

.materials-header h4 {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--gh-blue-primary);
  margin-bottom: 8px;
}

.materials-header p {
  font-size: 14.5px;
  color: var(--gh-gray-text);
}

.materials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.material-card {
  background: #FFFFFF;
  border: 1px solid var(--gh-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  display: flex;
  flex-direction: column;
}

.material-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform var(--duration-fast);
}

.material-card:hover .material-img {
  transform: scale(1.02);
}

.material-caption {
  padding: 14px;
  font-size: 13.5px;
  font-weight: 700;
  text-align: center;
  color: var(--gh-charcoal);
  border-top: 1px solid var(--gh-border-light);
}

/* ==========================================================================
   SEÇÃO SOBRE A LOJA (AFONSO PENA 3536)
   ========================================================================== */

.about-section {
  background-color: var(--gh-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.about-text.lead {
  font-size: 18px;
  color: var(--gh-blue-dark);
  font-weight: 500;
  margin-bottom: 18px;
  line-height: 1.6;
}

.about-text {
  font-size: 15.5px;
  color: var(--gh-gray-text);
  line-height: 1.7;
  margin-bottom: 24px;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.pillar-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.pillar-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gh-gold-accent);
  margin-top: 6px;
  flex-shrink: 0;
}

.pillar-item strong {
  display: block;
  font-size: 15px;
  color: var(--gh-blue-primary);
  font-weight: 700;
}

.pillar-item p {
  font-size: 14px;
  color: var(--gh-gray-text);
}

/* Visual Fachada */
.about-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.store-facade-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gh-border);
}

.facade-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.facade-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(11, 19, 31, 0.9);
  backdrop-filter: blur(10px);
  color: #FFFFFF;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.facade-badge svg {
  color: var(--gh-gold-accent);
}

.store-features-box {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mini-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--gh-gray-light);
  border: 1px solid var(--gh-border);
  border-radius: var(--radius-sm);
}

.mini-icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gh-blue-light);
  color: var(--gh-blue-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mini-feature strong {
  display: block;
  font-size: 14px;
  color: var(--gh-charcoal);
}

.mini-feature p {
  font-size: 12.5px;
  color: var(--gh-gray-muted);
}

/* ==========================================================================
   SEÇÃO AVALIAÇÕES GOOGLE (4.8 ESTRELAS)
   ========================================================================== */

.reviews-section {
  background: radial-gradient(circle at 50% 0%, #142032 0%, #0B131F 100%);
  color: #FFFFFF;
}

.reviews-section .section-title {
  color: #FFFFFF;
}

.reviews-section .title-divider {
  background: linear-gradient(90deg, #F4E2BB, var(--gh-gold-accent));
}

.google-rating-banner {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  margin-top: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.rating-stars {
  color: #F8BF28;
  font-size: 18px;
  letter-spacing: 2px;
}

.rating-score {
  font-size: 16px;
}

.rating-divider {
  opacity: 0.3;
}

.rating-total {
  font-size: 13.5px;
  color: #D0D3DC;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
  margin-bottom: 48px;
}

.review-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 30px;
  display: flex;
  flex-direction: column;
  transition: transform var(--duration-fast) var(--ease-spring), border-color var(--duration-fast);
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(244, 226, 187, 0.4);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gh-gold-accent), #9C7D38);
  color: #0B131F;
  font-weight: 800;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.reviewer-meta {
  flex-grow: 1;
}

.reviewer-meta h3 {
  font-size: 15px;
  font-weight: 700;
  color: #FFFFFF;
}

.reviewer-meta .stars {
  color: #F8BF28;
  font-size: 13px;
  letter-spacing: 1px;
}

.review-badge-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  color: #FFFFFF;
  background: rgba(34, 115, 39, 0.35);
  border: 1px solid rgba(123, 234, 117, 0.3);
  padding: 3px 8px;
  border-radius: var(--radius-full);
}

.review-body {
  font-size: 14.5px;
  color: #D0D3DC;
  line-height: 1.65;
  font-style: italic;
}

.google-cta-box {
  margin-top: 10px;
}

/* ==========================================================================
   SEÇÃO LOCALIZAÇÃO & HORÁRIOS
   ========================================================================== */

.location-section {
  background-color: var(--gh-gray-light);
}

.location-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  margin-top: 52px;
}

.location-card {
  background: #FFFFFF;
  border: 1px solid var(--gh-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.location-card-header h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--gh-blue-primary);
  margin-bottom: 4px;
}

.location-category {
  font-size: 13.5px;
  color: var(--gh-gray-muted);
  font-weight: 600;
}

.location-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.loc-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-xs);
  background: var(--gh-blue-light);
  color: var(--gh-blue-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.location-detail-item strong {
  display: block;
  font-size: 13.5px;
  color: var(--gh-charcoal);
  margin-bottom: 2px;
}

.location-detail-item p {
  font-size: 14px;
  color: var(--gh-gray-text);
  line-height: 1.5;
}

.location-detail-item a {
  color: var(--gh-blue-primary);
  font-weight: 600;
}

.location-detail-item a:hover {
  text-decoration: underline;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 6px;
  font-size: 13px;
}

.hours-table td {
  padding: 4px 0;
  color: var(--gh-gray-text);
}

.hours-table td:last-child {
  text-align: right;
  color: var(--gh-charcoal);
}

.location-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gh-border);
  min-height: 420px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
}

/* ==========================================================================
   FOOTER INSTITUCIONAL
   ========================================================================== */

.site-footer {
  background: #080D15;
  color: #C6C9D8;
  padding: 72px 0 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-container {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer-col h4 {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0.3px;
}

.footer-logo {
  max-height: 48px;
  width: auto;
  margin-bottom: 16px;
}

.footer-quote {
  font-family: var(--font-serif);
  font-style: italic;
  color: #F4E2BB;
  font-size: 14.5px;
  margin-bottom: 12px;
  line-height: 1.5;
}

.footer-about-mini {
  font-size: 13px;
  color: #9B9EA7;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #B1B4BC;
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--gh-gold-accent);
  padding-left: 4px;
}

.footer-contact {
  font-size: 13.5px;
  color: #B1B4BC;
  line-height: 1.6;
  margin-bottom: 12px;
}

.footer-contact strong {
  color: #FFFFFF;
}

.footer-contact a {
  color: #FFFFFF;
  font-weight: 600;
}

.footer-contact a:hover {
  color: var(--gh-gold-accent);
}

.footer-social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 600;
  transition: all var(--duration-fast);
}

.social-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--gh-gold-accent);
  color: var(--gh-gold-accent);
}

.footer-bottom {
  background: #04070B;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 22px 0;
  font-size: 12.5px;
  color: #7E8299;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

/* ==========================================================================
   BOTÃO FLUTUANTE WHATSAPP (LUXURY EDITION)
   ========================================================================== */

.floating-whatsapp-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.floating-whatsapp-btn {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25812B 0%, #1E6B23 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(30, 107, 35, 0.45);
  border: 2px solid rgba(255, 255, 255, 0.35);
  position: relative;
  transition: transform var(--duration-fast) var(--ease-spring), box-shadow var(--duration-fast);
}

.floating-whatsapp-btn:hover {
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 16px 35px rgba(30, 107, 35, 0.6);
}

.floating-whatsapp-btn:active {
  transform: scale(0.95);
}

.whatsapp-badge-pulse {
  position: absolute;
  top: 0;
  right: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #51B747;
  border: 2.5px solid #FFFFFF;
}

.whatsapp-tooltip {
  background: #FFFFFF;
  color: var(--gh-charcoal);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gh-border);
  max-width: 270px;
  position: relative;
  transition: opacity var(--duration-normal) var(--ease-spring), transform var(--duration-normal) var(--ease-spring);
  transform-origin: bottom right;
}

.tooltip-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.tooltip-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #51B747;
}

.tooltip-header strong {
  font-size: 13px;
  color: var(--gh-blue-primary);
}

.whatsapp-tooltip p {
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--gh-gray-text);
}

/* ==========================================================================
   ANIMAÇÕES DE ENTRADA (SCROLL REVEAL COM FÍSICA SUAVE)
   ========================================================================== */

.reveal-item {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-item.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVIDADE (MOBILE NATIVE & DESKTOP FIRST)
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 50px;
  }

  .hero-visual {
    max-width: 540px;
    margin: 0 auto;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .tailoring-showcase-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 820px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .topbar-feature, .topbar-divider {
    display: none;
  }

  .pill-selector-grid {
    grid-template-columns: 1fr 1fr;
  }

  .form-grid-two {
    grid-template-columns: 1fr;
  }

  .grade-features-grid {
    grid-template-columns: 1fr;
  }

  .collections-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto;
  }

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

  .reviews-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 40px auto 32px auto;
  }

  .size-pill {
    flex: 1 0 calc(20% - 8px);
    min-width: 46px;
    height: 44px;
    font-size: 14px;
  }
}

@media (max-width: 580px) {
  .section {
    padding: 64px 0;
  }

  .hero-section {
    padding-top: 48px;
  }

  .hero-floating-badge {
    position: static;
    margin-top: 12px;
  }

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

  .pill-selector-grid {
    grid-template-columns: 1fr;
  }

  .simulator-card {
    padding: 24px 18px;
  }

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

  .size-feedback-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .size-action-row {
    flex-direction: column;
    align-items: stretch;
  }

  .size-action-row .btn {
    width: 100%;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }

  .floating-whatsapp-container {
    bottom: 20px;
    right: 20px;
  }

  .floating-whatsapp-btn {
    width: 54px;
    height: 54px;
  }
}

/* Acessibilidade: Preferência por Redução de Movimento */
@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;
  }
  .reveal-item {
    opacity: 1 !important;
    transform: none !important;
  }
  .scroll-progress {
    display: none;
  }
}
