/* ==========================================================================
   DJP IMPORTS - LINK DA BIO OFICIAL
   Design System: Luxury Dark Streetwear & Sportswear
   ========================================================================== */

:root {
  /* Color Palette */
  --bg-main: #0a0e14;
  --bg-surface: #111722;
  --bg-card: rgba(18, 26, 38, 0.72);
  --bg-card-hover: rgba(26, 36, 52, 0.85);
  --bg-pill: rgba(255, 255, 255, 0.05);
  
  /* Borders & Glassmorphism */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-highlight: rgba(255, 255, 255, 0.18);
  --border-metallic: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, rgba(148,163,184,0.2) 50%, rgba(255,255,255,0.05) 100%);
  
  /* Brand Accents */
  --accent-wa: #25D366;
  --accent-wa-glow: rgba(37, 211, 102, 0.35);
  --accent-wa-dark: #128C7E;
  --accent-insta: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  --accent-silver: #cbd5e1;
  --accent-silver-light: #f8fafc;
  --accent-cyan: #38bdf8;
  --accent-blue-dryfit: #0284c7;
  
  /* Text Colors */
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --text-dark: #090d12;
  
  /* Geometry & Shadows */
  --radius-frame: 28px;
  --radius-card: 20px;
  --radius-pill: 9999px;
  --radius-sm: 12px;
  --shadow-subtle: 0 10px 25px -5px rgba(0, 0, 0, 0.5), 0 8px 10px -6px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 25px rgba(56, 189, 248, 0.15);
  --shadow-wa: 0 8px 25px rgba(37, 211, 102, 0.3);
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: var(--bg-main);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-primary);
  background-color: var(--bg-main);
  line-height: 1.5;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  padding-bottom: 80px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Fluid Touch Optimization - Eliminates 300ms mobile tap delay */
a, button, [role="button"], .compact-cat-card, .modal-tab, .action-card {
  touch-action: manipulation;
}

/* Store Physical Interior Background Layer */
.bg-store-overlay {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: 
    linear-gradient(180deg, rgba(7, 10, 15, 0.60) 0%, rgba(7, 10, 15, 0.70) 45%, rgba(7, 10, 15, 0.86) 100%),
    url('assets/loja-bg.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  opacity: 0.52;
  filter: contrast(1.08) brightness(0.95);
  transform: translateZ(0);
}

/* Ambient Ambient Glows */
.ambient-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
}

.glow-1 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.18), transparent 70%);
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
}

.glow-2 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.12), transparent 70%);
  top: 40%;
  right: -150px;
}

.glow-3 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.12), transparent 70%);
  bottom: 10%;
  left: -150px;
}

/* App Container (Constrained width for perfect Link-in-Bio presentation) */
.app-container {
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
  padding: 24px 16px;
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   HEADER & LOGO WITH ROUNDED FRAME
   ========================================================================== */
.profile-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 32px;
}

/* Moldura de Cantos Arredondados para a Logo */
.logo-wrapper {
  position: relative;
  margin-bottom: 20px;
}

.logo-frame {
  width: 128px;
  height: 128px;
  border-radius: var(--radius-frame);
  padding: 5px;
  background: linear-gradient(145deg, #2d3748, #111827, #1f293d);
  box-shadow: 
    0 15px 35px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.15),
    inset 0 1px 1px rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.logo-frame:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.7),
    0 0 20px rgba(203, 213, 225, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.3);
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius-frame) - 4px);
  display: block;
}

.frame-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 45%,
    rgba(255, 255, 255, 0.15) 50%,
    transparent 55%
  );
  transform: rotate(35deg);
  pointer-events: none;
  animation: shineSweep 6s infinite ease-in-out;
}

@keyframes shineSweep {
  0% { transform: translateY(-100%) rotate(35deg); }
  30%, 100% { transform: translateY(100%) rotate(35deg); }
}

/* Profile Info */
.title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 4px;
}

.store-name {
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--text-primary);
  text-transform: uppercase;
  background: linear-gradient(180deg, #ffffff 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: #38bdf8;
  color: #090d12;
  border-radius: 50%;
}

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

.store-handle {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--accent-cyan);
  margin-bottom: 12px;
  letter-spacing: 0.2px;
}

.shipping-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.25);
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  color: #4ade80;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.1);
}

.pill-icon {
  width: 16px;
  height: 16px;
}

/* ==========================================================================
   SECTION COMMON STYLES
   ========================================================================== */
.section {
  margin-bottom: 36px;
}

.section-heading {
  text-align: center;
  margin-bottom: 18px;
}

.section-subtitle {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 4px;
}

.section-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.2px;
}

.section-caption {
  font-size: 0.84rem;
  color: var(--text-secondary);
  max-width: 420px;
  margin: 6px auto 0;
  line-height: 1.45;
}

/* ==========================================================================
   ATENDIMENTO SECTION
   ========================================================================== */
.links-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.action-card {
  display: flex;
  align-items: center;
  padding: 16px 18px;
  background: var(--bg-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  text-decoration: none;
  color: var(--text-primary);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-subtle);
}

.action-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-highlight);
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.4);
}

.action-card:active {
  transform: translateY(-1px);
}

/* Card WhatsApp Principal (Destaque VIP) */
.featured-card {
  border-color: rgba(37, 211, 102, 0.35);
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.12) 0%, rgba(18, 26, 38, 0.85) 100%);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.15);
}

.featured-card:hover {
  border-color: rgba(37, 211, 102, 0.6);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.25);
}

.card-top-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 2px;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  background-color: var(--accent-wa);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-wa);
  animation: pulseDot 1.8s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 6px rgba(37, 211, 102, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.tag-text {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  color: #4ade80;
}

.card-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 16px;
  transition: transform var(--transition-fast);
}

.action-card:hover .card-icon-box {
  transform: scale(1.08);
}

.whatsapp-bg {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.instagram-bg {
  background: var(--accent-insta);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(220, 39, 67, 0.35);
}

.tiktok-bg {
  background: linear-gradient(135deg, #010101 0%, #1f1f1f 100%);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}

/* Card Shopee Oficial */
.card-shopee {
  border-color: rgba(238, 77, 45, 0.35);
  background: linear-gradient(135deg, rgba(238, 77, 45, 0.12) 0%, rgba(18, 26, 38, 0.85) 100%);
  box-shadow: 0 8px 24px rgba(238, 77, 45, 0.15);
}

.card-shopee:hover {
  border-color: rgba(238, 77, 45, 0.65);
  box-shadow: 0 12px 30px rgba(238, 77, 45, 0.28);
}

.shopee-bg {
  background: linear-gradient(135deg, #ff5722 0%, #ee4d2d 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(238, 77, 45, 0.4);
}

.shopee-tag .tag-text {
  color: #fb923c;
}

.shopee-dot {
  width: 7px;
  height: 7px;
  background-color: #ee4d2d;
  border-radius: 50%;
  box-shadow: 0 0 8px #ee4d2d;
  animation: pulseShopeeDot 1.8s infinite;
}

@keyframes pulseShopeeDot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(238, 77, 45, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 6px rgba(238, 77, 45, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(238, 77, 45, 0); }
}

.social-svg {
  width: 24px;
  height: 24px;
}

.card-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: left;
}

.card-title {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

.card-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.35;
  margin-top: 2px;
}

.card-arrow {
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  transition: transform var(--transition-fast), color var(--transition-fast);
}

.arrow-svg {
  width: 20px;
  height: 20px;
}

.action-card:hover .card-arrow {
  color: var(--text-primary);
  transform: translateX(4px);
}
.btn-wa-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ==========================================================================
   COMPACT CATEGORY SHOWCASE GRID
   ========================================================================== */
.compact-cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 14px;
}

@media (max-width: 340px) {
  .compact-cat-grid {
    grid-template-columns: 1fr;
  }
}

.compact-cat-card {
  background: var(--bg-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-subtle);
  outline: none;
  user-select: none;
}

.compact-cat-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-highlight);
  background: var(--bg-card-hover);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.45);
}

.compact-cat-card:active {
  transform: translateY(-1px);
}

.compact-cat-thumb {
  position: relative;
  width: 100%;
  height: 120px;
  overflow: hidden;
  background: #090d14;
}

.compact-cat-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform var(--transition-smooth);
  display: block;
}

.compact-cat-card:hover .compact-cat-thumb img {
  transform: scale(1.06);
}

.compact-cat-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.4px;
  padding: 3px 8px;
  border-radius: 9999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.polo-badge {
  background: rgba(37, 211, 102, 0.22);
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: #4ade80;
}

.orange-badge {
  background: rgba(251, 146, 60, 0.22);
  border: 1px solid rgba(251, 146, 60, 0.4);
  color: #fdba74;
}

.cyan-badge {
  background: rgba(56, 189, 248, 0.22);
  border: 1px solid rgba(56, 189, 248, 0.4);
  color: #7dd3fc;
}

.green-badge {
  background: rgba(52, 211, 153, 0.22);
  border: 1px solid rgba(52, 211, 153, 0.4);
  color: #6ee7b7;
}

.compact-cat-body {
  padding: 10px 12px 12px;
  display: flex;
  flex-direction: column;
}

.compact-cat-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 2px;
}

.compact-cat-title {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: 0.3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.compact-cat-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.25;
}

.compact-cat-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--accent-cyan);
  transition: transform var(--transition-fast);
}

.compact-cat-card:hover .compact-cat-cta {
  transform: translateX(3px);
  color: #7dd3fc;
}

.cta-more-chip {
  font-size: 0.62rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 9999px;
  background: rgba(37, 211, 102, 0.16);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: #4ade80;
  letter-spacing: 0.2px;
  white-space: nowrap;
}

.cta-arrow {
  width: 14px;
  height: 14px;
}

/* Banner E MUITO MAIS (Direcionamento WhatsApp) */
.more-models-banner {
  background: linear-gradient(135deg, rgba(18, 26, 38, 0.9) 0%, rgba(10, 16, 26, 0.95) 100%);
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: var(--radius-card);
  padding: 16px;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.more-models-banner::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.2), transparent 70%);
  pointer-events: none;
}

.more-banner-left {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.more-banner-badge {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.6px;
  color: var(--accent-cyan);
  text-transform: uppercase;
}

.more-banner-title {
  font-size: 0.96rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.1px;
}

.more-banner-desc {
  font-size: 0.76rem;
  color: var(--text-secondary);
  line-height: 1.35;
}

.btn-banner-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 16px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border-radius: var(--radius-sm);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
  transition: all var(--transition-fast);
}

.btn-banner-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.5);
}

/* ==========================================================================
   MODAL / JANELA QUE SE ABRE E MOSTRA OS MODELOS
   ========================================================================== */
.catalog-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(4, 7, 12, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 998;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.catalog-modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.catalog-modal-dialog {
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  max-height: 90dvh;
  background: #0d131d;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: none;
  border-radius: 26px 26px 0 0;
  box-shadow: 0 -12px 45px rgba(0, 0, 0, 0.75);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (min-width: 540px) {
  .catalog-modal-backdrop {
    align-items: center;
    padding: 20px;
  }
  .catalog-modal-dialog {
    border-radius: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85);
    max-height: 85vh;
    max-height: 85dvh;
    transform: scale(0.94) translateY(20px);
  }
}

.catalog-modal-backdrop.active .catalog-modal-dialog {
  transform: translateY(0);
}

@media (min-width: 540px) {
  .catalog-modal-backdrop.active .catalog-modal-dialog {
    transform: scale(1) translateY(0);
  }
}

/* Modal Header */
.catalog-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px 12px;
  background: rgba(13, 19, 29, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.modal-header-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.modal-category-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--accent-cyan);
}

.modal-category-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.2px;
}

.modal-close-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.modal-close-btn:hover {
  background: rgba(239, 68, 68, 0.85);
  color: #ffffff;
  border-color: rgba(239, 68, 68, 0.85);
  transform: rotate(90deg);
}

.modal-close-btn svg {
  width: 18px;
  height: 18px;
}

/* Modal Category Switcher Tabs */
.modal-tabs-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  overflow-x: auto;
  scrollbar-width: none;
  background: rgba(10, 14, 22, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

.modal-tabs-bar::-webkit-scrollbar {
  display: none;
}

.modal-tab {
  padding: 6px 12px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
  font-family: inherit;
  font-size: 0.74rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.modal-tab:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
}

.modal-tab.active {
  background: linear-gradient(135deg, #334155 0%, #1e293b 100%);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

/* Modal Body */
.catalog-modal-body {
  padding: 14px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex: 1 1 auto;
  min-height: 0;
  align-content: flex-start;
}

/* Model Card inside Modal */
.modal-model-card {
  width: calc(50% - 6px);
  background: rgba(20, 28, 42, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
}

@media (max-width: 340px) {
  .modal-model-card {
    width: 100%;
  }
}

.modal-model-card:hover {
  border-color: var(--border-highlight);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.45);
}

.modal-model-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  background: #080c12;
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
}

.modal-model-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform var(--transition-smooth);
  display: block;
}

.modal-model-img-wrap:hover img {
  transform: scale(1.06);
}

.modal-model-tag {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #f1f5f9;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  z-index: 2;
}

.modal-zoom-hint {
  position: absolute;
  bottom: 8px;
  right: 8px;
  padding: 3px 7px;
  border-radius: 6px;
  background: rgba(15, 23, 42, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #94a3b8;
  font-size: 0.65rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  pointer-events: none;
  z-index: 2;
}

.zoom-svg {
  width: 11px;
  height: 11px;
}

.modal-model-info {
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1 1 auto;
  gap: 8px;
}

.modal-model-title {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.25;
  margin-bottom: 2px;
}

.modal-model-desc {
  font-size: 0.68rem;
  color: var(--text-muted);
  line-height: 1.2;
}

.btn-pedir-modelo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 8px 8px;
  background: rgba(37, 211, 102, 0.14);
  border: 1px solid rgba(37, 211, 102, 0.35);
  border-radius: 10px;
  color: #4ade80;
  font-size: 0.74rem;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-pedir-modelo:hover {
  background: var(--accent-wa);
  color: #090d12;
  border-color: var(--accent-wa);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

/* Card Especial E MUITO MAIS dentro do Modal */
.modal-more-card {
  width: 100%;
  background: linear-gradient(145deg, rgba(24, 34, 50, 0.95) 0%, rgba(12, 18, 28, 0.98) 100%);
  border: 1.5px dashed rgba(37, 211, 102, 0.45);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin-top: 4px;
}

.modal-more-card:hover {
  border-color: var(--accent-wa);
  border-style: solid;
}

.modal-more-body {
  padding: 18px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  height: 100%;
  justify-content: center;
  position: relative;
}

.modal-more-glow {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 90px;
  height: 90px;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.25), transparent 70%);
  pointer-events: none;
}

.modal-more-tag {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.6px;
  padding: 3px 8px;
  border-radius: 9999px;
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.35);
  color: #4ade80;
}

.modal-more-title {
  font-size: 0.96rem;
  font-weight: 800;
  color: #ffffff;
  margin: 3px 0;
  letter-spacing: 0.2px;
}

.modal-more-desc {
  font-size: 0.72rem;
  color: var(--text-secondary);
  line-height: 1.35;
  margin-bottom: 8px;
}

.btn-more-cta {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff !important;
  font-weight: 800;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.btn-more-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.55);
}

/* Modal Footer */
.catalog-modal-footer {
  padding: 12px 16px;
  background: rgba(10, 15, 24, 0.96);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-shrink: 0;
}

@media (max-width: 440px) {
  .catalog-modal-footer {
    padding: 10px 14px;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .modal-footer-note {
    justify-content: center;
    font-size: 0.72rem;
  }
  .modal-footer-wa-btn {
    width: 100%;
    justify-content: center;
    padding: 9px 12px;
    font-size: 0.8rem;
  }
}

.modal-footer-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  color: var(--text-muted);
}

.info-svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--accent-cyan);
}

.modal-footer-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.modal-footer-wa-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.45);
}

/* ==========================================================================
   MAPA & LOCALIZAÇÃO SECTION (No fim da página)
   ========================================================================== */
.location-card {
  background: var(--bg-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
}

/* Address Box */
.address-box {
  display: flex;
  align-items: center;
  padding: 18px 18px 14px;
  gap: 14px;
}

.address-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.2);
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.loc-svg {
  width: 22px;
  height: 22px;
}

.address-text-wrap {
  flex-grow: 1;
}

.address-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  display: block;
}

.address-street {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.35;
}

.btn-copy-address {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  color: var(--text-secondary);
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.btn-copy-address:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--text-primary);
  border-color: var(--border-highlight);
}

.copy-svg {
  width: 15px;
  height: 15px;
}

/* Map Embed Frame */
.map-embed-wrapper {
  width: 100%;
  height: 260px;
  position: relative;
  background: #0f172a;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.map-embed-wrapper iframe {
  width: 100%;
  height: 100%;
  filter: contrast(1.05) saturate(1.1);
  display: block;
}

/* Botão "Ver no Maps" Requisitado */
.map-action-wrap {
  padding: 16px 18px 20px;
}

.btn-ver-maps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 20px;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border: 1px solid rgba(56, 189, 248, 0.4);
  border-radius: var(--radius-sm);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  transition: all var(--transition-fast);
}

.btn-ver-maps:hover {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  border-color: #38bdf8;
  box-shadow: 0 6px 22px rgba(2, 132, 199, 0.4);
  transform: translateY(-2px);
}

.maps-btn-icon {
  width: 20px;
  height: 20px;
  color: #ef4444;
}

.btn-ver-maps:hover .maps-btn-icon {
  color: #ffffff;
}

.ext-icon {
  width: 16px;
  height: 16px;
  opacity: 0.7;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.app-footer {
  text-align: center;
  padding: 24px 0 16px;
}

.footer-divider {
  width: 60px;
  height: 2px;
  background: var(--border-highlight);
  margin: 0 auto 18px;
  border-radius: 9999px;
}

.footer-brand {
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  z-index: 100;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.6);
}

.float-wa-icon {
  width: 32px;
  height: 32px;
  position: relative;
  z-index: 2;
}

.float-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--accent-wa);
  animation: floatRipple 2.2s infinite ease-out;
  pointer-events: none;
}

@keyframes floatRipple {
  0% { transform: scale(0.9); opacity: 0.9; }
  100% { transform: scale(1.5); opacity: 0; }
}

.float-tooltip {
  position: absolute;
  right: 68px;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-highlight);
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.76rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(10px);
  transition: all var(--transition-fast);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.floating-whatsapp:hover .float-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ==========================================================================
   LIGHTBOX MODAL (Image Preview)
   ========================================================================== */
.lightbox-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(4, 7, 11, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-dialog {
  width: 100%;
  max-width: 480px;
  background: var(--bg-surface);
  border: 1px solid var(--border-highlight);
  border-radius: var(--radius-card);
  overflow: hidden;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-backdrop.active .lightbox-dialog {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition-fast);
}

.lightbox-close:hover {
  background: rgba(239, 68, 68, 0.85);
  transform: rotate(90deg);
}

.lightbox-close svg {
  width: 20px;
  height: 20px;
}

.lightbox-img-wrapper {
  width: 100%;
  max-height: 65vh;
  overflow: hidden;
  background: #090d12;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img-wrapper img {
  width: 100%;
  height: auto;
  max-height: 65vh;
  object-fit: contain;
  display: block;
}

.lightbox-footer {
  padding: 16px 18px;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lightbox-caption {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
}

.btn-lightbox-order {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 18px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
  transition: all var(--transition-fast);
}

.btn-lightbox-order:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.45);
}

/* ==========================================================================
   TOAST NOTIFICATION
   ========================================================================== */
.toast-notification {
  position: fixed;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid var(--accent-wa);
  color: #4ade80;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  pointer-events: none;
  opacity: 0;
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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