:root {
  --bg-main: #0b0b0f;
  --bg-card: #141419;
  --bg-card-hover: #1c1c24;
  --accent-orange: #ff5e14;
  --accent-red: #e63946;
  --text-pure: #ffffff;
  --text-muted: #9e9ea7;
  --border-line: rgba(255, 94, 20, 0.18);
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-main);
  color: var(--text-pure);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Background Canvas Interativo */
#canvas3d {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

.wrapper {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Navigation / Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  backdrop-filter: blur(14px);
  background: rgba(11, 11, 15, 0.75);
  border-bottom: 1px solid var(--border-line);
  z-index: 100;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 74px;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-pure);
}

.logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  background: transparent;
  border: none;
  padding: 0;
  border-radius: 0;
  filter: drop-shadow(0 0 10px rgba(255, 94, 20, 0.4));
  transition: transform 0.2s ease;
}

.logo-container:hover .logo-img {
  transform: scale(1.06);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.logo-text span {
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

nav ul {
  display: flex;
  gap: 28px;
  list-style: none;
}

nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

nav a:hover {
  color: var(--accent-orange);
}

/* Hero Section */
.hero {
  padding: 170px 0 90px 0;
  text-align: center;
}

/* Logo Centralizada no Hero */
.hero-logo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}

.hero-logo {
  width: 150px;
  height: auto;
  max-width: 80%;
  object-fit: contain;
  background: transparent;
  border: none;
  filter: drop-shadow(0 0 25px rgba(255, 94, 20, 0.5));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.hero-logo:hover {
  transform: scale(1.04);
  filter: drop-shadow(0 0 35px rgba(255, 94, 20, 0.75));
}

.badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(255, 94, 20, 0.1);
  border: 1px solid rgba(255, 94, 20, 0.3);
  color: var(--accent-orange);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.15;
  margin-bottom: 24px;
  font-weight: 700;
}

.hero h1 span {
  background: linear-gradient(135deg, #ff8c42, var(--accent-orange), var(--accent-red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  max-width: 640px;
  margin: 0 auto 36px auto;
  color: var(--text-muted);
  font-size: 1.15rem;
}

.btn-group {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-red));
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(255, 94, 20, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(255, 94, 20, 0.5);
}

.btn-secondary {
  background: var(--bg-card);
  color: #ffffff;
  border: 1px solid var(--border-line);
}

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

/* Headers Globais de Seção */
.section-header {
  margin-bottom: 32px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  margin-bottom: 8px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1rem;
}

/* Catalog & Filtros */
.catalog-section {
  padding: 80px 0;
}

.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.filter-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-line);
  color: var(--text-muted);
  padding: 9px 20px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.filter-btn:hover {
  color: var(--text-pure);
  border-color: var(--accent-orange);
  background: var(--bg-card-hover);
}

.filter-btn.active {
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-red));
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 2px 14px rgba(255, 94, 20, 0.35);
}

/* Carousel de Produtos */
.carousel-container {
  position: relative;
}

.product-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 24px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-orange) var(--bg-card);
}

.product-track::-webkit-scrollbar {
  height: 8px;
}

.product-track::-webkit-scrollbar-track {
  background: var(--bg-card);
  border-radius: 4px;
}

.product-track::-webkit-scrollbar-thumb {
  background: var(--accent-orange);
  border-radius: 4px;
}

.product-card {
  flex: 0 0 320px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  scroll-snap-align: start;
  transition: transform 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-orange);
}

.product-thumb {
  width: 100%;
  height: 240px;
  background: #191920;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-thumb img {
  transform: scale(1.05);
}

.product-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(11, 11, 15, 0.85);
  border: 1px solid var(--border-line);
  color: var(--accent-orange);
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 700;
}

.product-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-info h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.product-info p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 16px;
  flex-grow: 1;
  min-height: 48px;        /* Mantém o alinhamento visual entre os cards */
  white-space: pre-line;   /* Permite quebras de linha tanto por tag quanto com template literals */
}

/* Marketplaces Grid */
.marketplaces-section {
  padding: 80px 0;
  background: radial-gradient(circle at center, rgba(255, 94, 20, 0.05) 0%, transparent 70%);
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.market-box {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 28px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--text-pure);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.market-box:hover {
  border-color: var(--accent-orange);
  transform: translateY(-4px);
  background: var(--bg-card-hover);
}

.market-badge {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-orange);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.market-box h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
}

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

/* About Section */
.about-section {
  padding: 80px 0;
}

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

.about-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 32px;
  border-radius: 12px;
}

.about-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--accent-orange);
}

.about-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Contact Section */
.contact-section {
  padding: 80px 0 130px 0;
}

.contact-card {
  background: linear-gradient(180deg, var(--bg-card) 0%, rgba(20, 20, 25, 0.6) 100%);
  border: 1px solid var(--border-line);
  border-radius: 16px;
  padding: 48px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.contact-card h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.contact-card p {
  color: var(--text-muted);
  margin-bottom: 36px;
}

.channels-grid {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Footer */
footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 36px 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  position: relative;
  z-index: 1;
}

/* Responsividade Mobile */
@media (max-width: 768px) {
  nav ul { display: none; }
  .hero { padding: 130px 0 60px 0; }
  .contact-card { padding: 28px; }
  .product-card { flex: 0 0 280px; }
}

/* Cursor e indicação de clique no catálogo */
.product-thumb {
  cursor: zoom-in;
}

/* Modal Lightbox */
.image-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(11, 11, 15, 0.92);
  backdrop-filter: blur(12px);
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.image-modal.active {
  display: flex;
  opacity: 1;
}

.modal-content {
  position: relative;
  max-width: 900px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.modal-content img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid var(--border-line);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 94, 20, 0.2);
}

.modal-caption {
  margin-top: 16px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text-pure);
  text-align: center;
}

.modal-close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
}

.modal-close:hover {
  color: var(--accent-orange);
  transform: scale(1.15);
}