/* ==========================================================================
   PROPLAY® - LANDING PAGE MODO DARK PREMIUM
   Identidade Visual: Preto Profundo & Verde Neon (#00FF66) PROPLAY
   ========================================================================== */

:root {
  /* Dark Mode Palette */
  --bg-page: #070A0D;
  --bg-card: #0F151D;
  --bg-subtle: #141C26;
  --bg-dark-btn: #00FF66;
  --bg-dark-btn-hover: #1EFF7B;

  /* Text Colors */
  --text-main: #FFFFFF;
  --text-muted: #94A3B8;
  --text-light: #64748B;
  --text-white: #FFFFFF;

  /* Brand Accents (PROPLAY Neon Green) */
  --color-primary: #00FF66;
  --color-primary-dark: #00CC52;
  --color-primary-light: rgba(0, 255, 102, 0.12);
  --color-border: rgba(255, 255, 255, 0.08);
  --color-border-glow: rgba(0, 255, 102, 0.3);

  /* Fonts */
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing & Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-pill: 50px;
  --container-max-width: 1200px;
  --header-height: 80px;

  /* Shadows & Glows */
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.8);
  --shadow-glow: 0 0 25px rgba(0, 255, 102, 0.25);

  /* Transitions */
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-page);
  color: var(--text-main);
  font-family: var(--font-body);
}

body {
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
}

ul {
  list-style: none;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ==========================================================================
   NAVIGATION BAR (MENU FLUTUANTE ARREDONDADO ALINHADO AO GRID DE 1136PX)
   ========================================================================== */

.navbar {
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 4rem);
  max-width: 1136px;
  height: 70px;
  background: rgba(15, 21, 29, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-pill);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.7);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  isolation: isolate;
}

.brand-logo-img {
  height: 320px;
  max-height: 4400px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: screen;
  display: block;
  transition: transform 0.2s ease, filter 0.2s ease;
  filter: drop-shadow(0 2px 12px rgba(0, 255, 102, 0.3));
}

.brand-logo-img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 18px rgba(0, 255, 102, 0.5));
}

.footer-logo-img {
  height: 320px;
  max-height: 440px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: screen;
  display: block;
  filter: drop-shadow(0 2px 10px rgba(0, 255, 102, 0.2));
}

.logo-mark {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-svg {
  width: 100%;
  height: 100%;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-main);
}

.brand-name .highlight {
  color: var(--color-primary);
}

.brand-name .reg {
  font-size: 0.6rem;
  vertical-align: super;
  color: var(--text-muted);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #94A3B8;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-pill);
  transition: all 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-primary);
  background: rgba(0, 255, 102, 0.08);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.3rem;
  color: var(--text-main);
  cursor: pointer;
}

.mobile-nav-btn {
  display: none !important;
}

/* ==========================================================================
   BUTTONS & PILLS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.65rem 1.4rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-normal);
  white-space: nowrap;
}

.btn-pill {
  border-radius: var(--radius-pill);
}

.btn-dark {
  background: var(--color-primary);
  color: #050B07;
  font-weight: 700;
}

.btn-dark:hover {
  background: var(--bg-dark-btn-hover);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-outline-dark:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: rgba(0, 255, 102, 0.08);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--color-primary);
  color: #050B07;
  font-weight: 700;
}

.btn-white:hover {
  background: var(--bg-dark-btn-hover);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.5rem 1.1rem;
  font-size: 0.78rem;
}

.btn-lg {
  padding: 0.9rem 2rem;
  font-size: 0.9rem;
}

.btn-block {
  width: 100%;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-section.hero-centered {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  background-color: #000000;
  padding-top: 0;
  padding-bottom: 0;
}

.hero-bg-video-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: brightness(0.65) contrast(1.1);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.85) 100%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, transparent 40%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-container-relative {
  position: relative;
  z-index: 10;
  width: 100%;
  display: flex;
  justify-content: center;
}

.hero-headline-centered {
  max-width: 860px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  text-align: center;
}

.title-large {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.2vw, 3.8rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  margin-bottom: 1.2rem;
}

.hero-title-light {
  color: #A1A1AA;
  font-weight: 500;
}

.hero-desc-centered {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: #E4E4E7;
  max-width: 680px;
  margin: 0 auto 2.5rem auto;
  line-height: 1.6;
  text-align: center;
}

.hero-actions-centered {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.btn-outline-light {
  background: transparent;
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
  border-color: #FFFFFF;
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: #9CA3AF;
  font-family: var(--font-heading);
  animation: bounceHint 2s infinite;
}

.arrow-down-icon {
  font-size: 0.9rem;
}

@keyframes bounceHint {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(6px);
  }

  60% {
    transform: translateY(3px);
  }
}

.hero-product-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}

.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.status-pill {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  background: var(--color-primary-light);
  color: var(--color-primary);
}

.brand-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-light);
}

.hero-placeholder-visual {
  position: relative;
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.hero-svg {
  width: 100%;
  height: auto;
  display: block;
}

.placeholder-caption {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.85);
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  backdrop-filter: blur(4px);
}

.hero-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--color-border);
}

.hero-card-footer strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--text-main);
}

.hero-card-footer p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.guarantee-tag {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--color-primary);
  background: var(--color-primary-light);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
}

/* ==========================================================================
   BENTO GRID FEATURES SECTION (SLICK ASYMMETRIC LAYOUT)
   ========================================================================== */

.bento-features-section {
  padding: 6rem 0;
  background: var(--bg-page);
}

.bento-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  grid-template-rows: repeat(2, 280px);
  gap: 1.5rem;
}

/* Scroll Reveal Animation (Aparecer / Sumir sem Hover) */
.scroll-reveal-box {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.scroll-reveal-box.in-view {
  opacity: 1;
  transform: translateY(0);
}

.bento-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  padding: 2.2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

/* Full-Image Background Bento Cards with Overlay (Foto de fundo 100% com texto por cima) */
.bento-card-full-bg {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.2rem 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  min-height: 280px;
}

.bento-card-bg-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.bento-full-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

.bento-card:hover .bento-full-bg-img {
  transform: scale(1.05);
}

.bento-card-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(7, 10, 13, 0.95) 0%,
      rgba(7, 10, 13, 0.75) 55%,
      rgba(7, 10, 13, 0.35) 100%);
  pointer-events: none;
}

.bento-header-overlay {
  position: relative;
  z-index: 2;
  margin-bottom: 0;
}

.bento-tall {
  grid-row: 1 / span 2;
}

.bento-wide {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.5rem;
}

.bento-top-right {
  grid-column: 2;
  grid-row: 1;
}

.bento-bottom-right {
  grid-column: 2;
  grid-row: 2;
}

.bento-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-primary-light);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.bento-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.bento-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.bento-visual {
  position: relative;
  width: 100%;
  margin-top: 1.5rem;
}

.bento-real-img-container {
  width: 100%;
  flex-grow: 1;
  margin-top: 1.25rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--radius-md);
  min-height: 280px;
}

.bento-real-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-md);
  display: block;
}

.bento-visual-side {
  width: 160px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bento-side-img {
  width: 100%;
  max-height: 140px;
  object-fit: contain;
  display: block;
}

.bento-svg {
  width: 100%;
  height: auto;
  display: block;
}

.bento-tag {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.85);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

@media (max-width: 992px) {
  .bento-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .bento-tall {
    grid-row: auto;
  }

  .bento-top-right,
  .bento-bottom-right {
    grid-column: auto;
    grid-row: auto;
  }

  .bento-wide {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ==========================================================================
   CATALOG SECTION (DARK CLEAN CARDS)
   ========================================================================== */

.catalog-section {
  padding: 6rem 0;
  background: var(--bg-page);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.catalog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-main);
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
}

.filter-pills {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #0E141B;
  padding: 0.35rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border);
}

.pill-btn {
  background: transparent;
  border: none;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.2s ease;
}

.pill-btn:hover {
  color: var(--text-main);
}

.pill-btn.active {
  background: var(--color-primary);
  color: #050B07;
  font-weight: 700;
}

/* Product Clean Cards Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.product-card-clean {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  border: 1px solid var(--color-border);
}

.product-card-clean:hover {
  background: #121A25;
  border-color: var(--color-primary);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.card-image-box {
  position: relative;
  width: 100%;
  height: 220px;
  background: #141C26;
  overflow: hidden;
}

.card-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

.card-slider:active {
  cursor: grabbing;
}

.slider-track {
  display: flex;
  width: 200%;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  user-select: none;
  -webkit-user-select: none;
}

.slide {
  width: 50%;
  height: 100%;
  flex-shrink: 0;
  user-select: none;
  -webkit-user-select: none;
}

.slider-dots {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(7, 10, 13, 0.75);
  padding: 0.25rem 0.55rem;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.slider-dots .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.25s ease;
}

.slider-dots .dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

.slider-dots .dot.active {
  background: var(--color-primary);
  width: 18px;
  border-radius: 10px;
}

.product-catalog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transition: transform 0.5s ease;
  cursor: pointer;
  -webkit-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
}

.zoom-trigger-btn {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 6;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(7, 10, 13, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: all 0.2s ease;
}

.zoom-trigger-btn:hover {
  background: var(--color-primary);
  color: #050B07;
  border-color: var(--color-primary);
  transform: scale(1.1);
}

.product-card-clean:hover .product-catalog-img {
  transform: scale(1.06);
}

.card-svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.placeholder-tag {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--text-muted);
  background: rgba(15, 21, 29, 0.85);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.card-content {
  padding: 1.5rem 1.25rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.2rem;
}

.product-sub {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.feature-tag-top {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 5;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
  background: rgba(7, 10, 13, 0.88);
  color: var(--color-primary);
  border: 1px solid rgba(0, 255, 102, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  pointer-events: none;
}

.product-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
}

.product-price-tag {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  color: #A0AEC0;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  background: rgba(15, 21, 29, 0.9);
  height: 38px;
  padding: 0 0.75rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.12);
  white-space: nowrap;
  flex-shrink: 0;
}

.product-price-tag i {
  color: var(--color-primary);
  font-size: 0.8rem;
}

.card-footer .btn {
  height: 38px;
  padding: 0 0.95rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 12px rgba(0, 255, 102, 0.15);
  transition: all 0.25s ease;
  white-space: nowrap;
  flex-shrink: 0;
  gap: 0.35rem;
}

.card-footer .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 255, 102, 0.35);
}

.store-info-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(0, 255, 102, 0.06);
  border: 1px solid rgba(0, 255, 102, 0.2);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
  font-size: 0.82rem;
  color: var(--text-main);
  line-height: 1.4;
}

.store-info-row i {
  color: var(--color-primary);
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* ==========================================================================
   ARTISTS SECTION & FEATURED BANNER
   ========================================================================== */

.artists-section {
  padding: 6rem 0;
  background: var(--bg-page);
}

.section-center-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem auto;
}

/* Banner Artistas - Logo PROPLAY sem Fundo */
.artist-banner-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: visible;
  transition: transform 0.4s ease;
  cursor: pointer;
  animation: simpleFloat 6s ease-in-out infinite;
}

.artist-banner-wrapper:hover {
  transform: translateY(-8px) scale(1.02);
}

.artist-banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.6));
}

.banner-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 5;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-pill);
  background: rgba(15, 21, 29, 0.85);
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  pointer-events: none;
}

.banner-badge i {
  color: #F59E0B;
}

/* Keyframes simples e limpos */
@keyframes simpleFloat {

  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  }

  50% {
    transform: translateY(-5px);
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.65);
  }
}

@keyframes subtleGlassShine {
  0% {
    left: -80%;
  }

  30%,
  100% {
    left: 160%;
  }
}

.artists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.artist-card-clean {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2.2rem 2rem;
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.artist-card-clean:hover {
  border-color: rgba(0, 255, 102, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.artist-quote {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.8rem;
  font-style: italic;
}

.artist-meta strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--text-main);
}

.artist-meta span {
  font-size: 0.78rem;
  color: var(--color-primary);
}

/* ==========================================================================
   INSPIRATION BANNER
   ========================================================================== */

.banner-section {
  padding: 2rem 0 6rem 0;
}

.inspire-card {
  background: linear-gradient(135deg, #0B0F14 0%, #141C26 100%);
  border-radius: var(--radius-lg);
  padding: 4rem 3.5rem;
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  border: 1px solid rgba(0, 255, 102, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.inspire-title {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
}

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

/* ==========================================================================
   CONTACT & FORM SECTION
   ========================================================================== */

.contact-section {
  padding: 6rem 0;
  background: var(--bg-page);
  border-top: 1px solid var(--color-border);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: flex-start;
}

.contact-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-top: 1rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.method-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.method-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 255, 102, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--color-primary);
}

.method-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--text-main);
}

.method-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-form-box {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}

.form-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--bg-subtle);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-main);
  outline: none;
  transition: all 0.2s ease;
}

.form-input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(0, 255, 102, 0.2);
}

select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2300FF66' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

/* ==========================================================================
   MINIMAL FOOTER
   ========================================================================== */

.footer-clean {
  background: #040609;
  padding-top: 0;
  border-top: 1px solid var(--color-border);
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 0;
  flex-wrap: wrap;
}

.footer-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.footer-nav {
  display: flex;
  gap: 1.5rem;
}

.footer-nav a {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
}

.footer-nav a:hover {
  color: var(--color-primary);
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  font-size: 1rem;
  transition: all 0.2s ease;
}

.footer-socials a:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-2px);
}

.footer-bottom-line {
  padding: 1.5rem 0;
  border-top: 1px solid var(--color-border);
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-light);
}

/* ==========================================================================
   MODAL OVERLAY (QUICK ORDER)
   ========================================================================== */

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(4, 6, 9, 0.85);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

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

.modal-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 440px;
  padding: 2.2rem 2rem;
  position: relative;
  border: 1px solid var(--color-primary);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
  transform: scale(0.95);
  transition: transform 0.2s ease;
}

.modal-overlay.active .modal-card {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-muted);
  cursor: pointer;
}

.modal-close-btn:hover {
  color: var(--color-primary);
}

.modal-pill {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #050B07;
  background: var(--color-primary);
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-pill);
}

.modal-h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-main);
  margin: 0.5rem 0 0.2rem 0;
}

.modal-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1rem;
  background: var(--bg-subtle);
  border-radius: var(--radius-sm);
  margin-bottom: 1.2rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.price-row strong {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--color-primary);
}

/* ==========================================================================
   RESPONSIVE DESIGN & MOBILE OPTIMIZATIONS
   ========================================================================== */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.6rem;
  }

  .title-large {
    font-size: 2.4rem;
  }

  .bento-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .bento-tall {
    grid-row: auto;
  }

  .bento-top-right,
  .bento-bottom-right {
    grid-column: auto;
    grid-row: auto;
  }

  .bento-wide {
    flex-direction: column;
    align-items: flex-start;
  }

  .bento-card-full-bg {
    min-height: 320px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .inspire-card {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    padding: 2.5rem 1.8rem;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  .navbar {
    top: 1rem;
    width: calc(100% - 2rem);
    height: 62px;
  }

  .brand-logo-img {
    height: 180px;
    max-height: 240px;
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    left: 1rem;
    right: 1rem;
    background: rgba(15, 21, 29, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.85);
    display: none;
    z-index: 999;
  }

  .nav-menu.active {
    display: flex;
  }

  .mobile-toggle {
    display: block;
  }

  .desktop-nav-btn {
    display: none;
  }

  .mobile-nav-btn {
    display: inline-flex !important;
    width: 100%;
    margin-top: 0.5rem;
    padding: 0.85rem 1.5rem;
    justify-content: center;
    font-size: 0.82rem;
  }

  .hero-section.hero-centered {
    min-height: 100vh;
    padding: 80px 1.25rem 2.5rem 1.25rem;
  }

  .title-large {
    font-size: 48px;
    line-height: 1.12;
    margin-bottom: 1rem;
  }

  .hero-desc-centered {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.8rem;
  }

  .hero-actions-centered {
    flex-direction: column;
    width: 100%;
    gap: 0.8rem;
  }

  .hero-actions-centered .btn {
    width: 100%;
    justify-content: center;
    padding: 0.85rem 1.5rem;
  }

  .bento-grid {
    gap: 1.2rem;
  }

  .bento-card-full-bg {
    min-height: 340px;
    padding: 1.8rem 1.4rem;
  }

  .catalog-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }

  .filter-pills {
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding: 0.4rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .filter-pills::-webkit-scrollbar {
    display: none;
  }

  .pill-btn {
    white-space: nowrap;
    flex-shrink: 0;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .product-card-clean {
    border-radius: var(--radius-md);
  }

  .card-content {
    padding: 1.35rem;
  }

  .contact-form-box {
    padding: 1.5rem;
  }

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

  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }


  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .modal-card {
    padding: 1.8rem 1.4rem;
    max-width: 92vw;
  }
}

/* ==========================================================================
   IMAGE LIGHTBOX MODAL
   ========================================================================== */

.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(4, 6, 9, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.lightbox-content {
  position: relative;
  max-width: 85vw;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: scale(0.92);
  transition: transform 0.3s ease;
}

.lightbox-overlay.active .lightbox-content {
  transform: scale(1);
}

.lightbox-img-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  max-height: 72vh;
}

.lightbox-img {
  max-width: 100%;
  max-height: 72vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9);
  background: #0F151D;
  padding: 0.5rem;
  transition: opacity 0.25s ease;
}

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(15, 21, 29, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: all 0.2s ease;
}

.lightbox-nav-btn.prev-btn {
  left: -3.5rem;
}

.lightbox-nav-btn.next-btn {
  right: -3.5rem;
}

.lightbox-nav-btn:hover {
  background: var(--color-primary);
  color: #050B07;
  border-color: var(--color-primary);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1rem;
}

.lightbox-caption {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  text-align: center;
  letter-spacing: 0.02em;
}

.lightbox-dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(15, 21, 29, 0.85);
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.lightbox-dots .l-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.25s ease;
}

.lightbox-dots .l-dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

.lightbox-dots .l-dot.active {
  background: var(--color-primary);
  width: 22px;
  border-radius: 10px;
}

.lightbox-close-btn {
  position: absolute;
  top: -2.8rem;
  right: 0;
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s ease;
}

.lightbox-close-btn:hover {
  color: var(--color-primary);
}

@media (max-width: 768px) {
  .lightbox-nav-btn.prev-btn {
    left: 0.5rem;
  }

  .lightbox-nav-btn.next-btn {
    right: 0.5rem;
  }
}