@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --primary: #d32f2f;
  --primary-dark: #b71c1c;
  --secondary: #e53935;
  --dark: #1a1a2e;
  --light: #f8f9fa;
  --gray: #6c757d;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-hover: 0 8px 30px rgba(0,0,0,0.15);
  --radius: 12px;
  --transition: all 0.3s ease;
}

html { scroll-behavior: smooth; }

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--light);
  color: var(--dark);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

#produtos { scroll-margin-top: 80px; }

@media (max-width: 768px) {
  #produtos { scroll-margin-top: 70px; }
}

/* ========== HEADER ========== */
.header {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s;
}

.header.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.14);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
}

.logo a { display: flex; align-items: center; }

.logo img {
  height: 64px;
  width: auto;
  max-width: 220px;
  display: block;
}

.nav { display: flex; gap: 32px; }

.nav a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  position: relative;
  padding-bottom: 4px;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

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

.nav a:hover::after,
.nav a.active::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 10px; }

.btn-cart {
  background: none;
  border: none;
  font-size: 1.15rem;
  cursor: pointer;
  color: var(--dark);
  position: relative;
  transition: var(--transition);
  padding: 9px 10px;
  border-radius: 50%;
}

.btn-cart:hover { background: var(--primary); color: var(--white); }

.cart-count {
  position: absolute;
  top: -3px;
  right: -3px;
  background: var(--secondary);
  color: white;
  font-size: 0.65rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* ========== HERO ========== */
.hero {
  min-height: 600px;
  background: url('assets/img/hero-bg.jpg') center center / cover no-repeat;
  background-attachment: fixed;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1024px), (hover: none) and (pointer: coarse) {
  .hero { background-attachment: scroll; }
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.42) 0%, rgba(0,0,0,0.62) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 20px 80px;
}

.hero-tag {
  display: inline-block;
  background: rgba(211, 47, 47, 0.88);
  color: white;
  padding: 6px 22px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 22px;
  backdrop-filter: blur(4px);
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero-title span {
  color: #ff6b6b;
  display: block;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  max-width: 580px;
  margin: 0 auto 10px;
  font-weight: 400;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 36px;
}

/* Hero overrides — each button has its own identity */
.hero-buttons .btn {
  padding: 16px 44px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.hero-buttons .btn-primary {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 6px 20px rgba(211,47,47,0.45);
}

.hero-buttons .btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(211,47,47,0.5);
}

.hero-buttons .btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.85);
  color: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.hero-buttons .btn-outline:hover {
  background: white;
  border-color: white;
  color: var(--primary);
  transform: translateY(-3px);
}

/* ========== BOTÕES (genéricos) ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  font-size: 1rem;
  font-family: inherit;
}

.btn-primary {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

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

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

.btn-search {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  padding: 13px 32px;
  margin-top: 12px;
  font-weight: 700;
}

.btn-search:hover {
  background: var(--primary-dark);
}

.btn-block { width: 100%; }

/* ========== STATS BAR ========== */
.stats-bar {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 0;
  position: relative;
  z-index: 10;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 20px;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: background 0.3s;
  cursor: default;
}

.stat-item:last-child { border-right: none; }

.stat-item:hover { background: rgba(211, 47, 47, 0.12); }

.stat-number {
  font-size: 2.2rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -1px;
}

.stat-number em {
  font-style: normal;
  color: #ff6b6b;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-top: 7px;
  font-weight: 600;
  text-align: center;
}

/* ========== BUSCA ========== */
.search-section {
  background: var(--white);
  padding: 28px 0;
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
  margin-bottom: 0;
  position: relative;
  z-index: 9;
}

.search-card { padding: 0; }

.search-form { display: flex; flex-direction: column; gap: 18px; }

.search-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.search-field label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.82rem;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.search-field select,
.search-field input {
  width: 100%;
  padding: 11px 14px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: var(--transition);
  background: var(--white);
  font-family: inherit;
  color: var(--dark);
}

.search-field select:focus,
.search-field input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.1);
}

/* ========== PRODUTOS ========== */
.products-section {
  padding: 36px 0 50px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 20px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--dark);
  margin-bottom: 12px;
  font-weight: 800;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--gray);
}

.products-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 8px 0 16px;
}

.carousel-btn {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  border: none;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(211, 47, 47, 0.35);
  transition: all 0.3s;
  margin-top: 110px;
}

.carousel-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 28px rgba(211, 47, 47, 0.45);
}

.products-carousel {
  flex: 1;
  overflow: hidden;
  padding: 10px 4px;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-page {
  flex: 0 0 100%;
  display: flex;
  gap: 28px;
  min-width: 0;
}

.carousel-page .product-card {
  flex: 1;
  min-width: 0;
}

/* ========== CARD DO PRODUTO ========== */
.product-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 22px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(211, 47, 47, 0.18);
  border-color: var(--primary);
}

.card-top {
  background: linear-gradient(135deg, #1a1a2e 0%, #2d1515 50%, #d32f2f 100%);
  padding: 36px 30px;
  text-align: center;
  position: relative;
}

.badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255,255,255,0.15);
  color: #fff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(4px);
}

.product-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.product-img {
  max-height: 130px;
  max-width: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.35));
  transition: transform 0.35s ease;
}

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

.icon {
  width: 84px;
  height: 84px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  box-shadow: 0 8px 28px rgba(0,0,0,0.3);
  border: 2px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
}

.icon i { color: white; font-size: 32px; }

.card-body {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.title {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: #1a1a2e;
  padding-bottom: 10px;
  border-bottom: 2px solid #f0f0f0;
}

.code {
  background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
  color: #fff;
  padding: 13px;
  text-align: center;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1.05rem;
  font-family: 'Courier New', monospace;
  box-shadow: 0 4px 12px rgba(211, 47, 47, 0.28);
}

.block {
  background: #f8f9fa;
  padding: 16px;
  border-radius: 10px;
  border-left: 4px solid #d32f2f;
}

.block-title {
  font-size: 11px;
  font-weight: 700;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.conversion-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 10px;
  border-bottom: 1px solid #ebebeb;
  font-size: 13px;
  background: white;
  border-radius: 5px;
  margin-bottom: 3px;
  transition: background 0.2s;
}

.conversion-row:last-child { border-bottom: none; margin-bottom: 0; }
.conversion-row:hover { background: #f5f5f5; }

.conv-label {
  font-weight: 700;
  color: #d32f2f;
  min-width: 80px;
}

.conv-value {
  font-family: 'Courier New', monospace;
  font-weight: 600;
  color: #333;
  text-align: right;
  background: #f8f9fa;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 12px;
}

.app-text {
  font-size: 13.5px;
  color: #555;
  line-height: 1.6;
  height: 96px;
  overflow-y: auto;
  padding-right: 4px;
}

.app-text::-webkit-scrollbar { width: 6px; }
.app-text::-webkit-scrollbar-track { background: transparent; }
.app-text::-webkit-scrollbar-thumb { background: #ccc; border-radius: 3px; }

.spec-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 12.5px;
  border-bottom: 1px dashed #e8e8e8;
}

.spec-row:last-child { border-bottom: none; }

.spec-label {
  font-weight: 600;
  color: #666;
  min-width: 130px;
}

.spec-value {
  font-weight: 600;
  color: #333;
  text-align: right;
}

/* Padronização de altura dos blocos do card */
.block-conversions .block-scroll,
.block-specs .block-scroll {
  max-height: 130px;
  overflow-y: auto;
  padding-right: 4px;
}

.block-scroll::-webkit-scrollbar { width: 6px; }
.block-scroll::-webkit-scrollbar-track { background: transparent; }
.block-scroll::-webkit-scrollbar-thumb { background: #ccc; border-radius: 3px; }

/* Imagem do produto: clicável para abrir zoom */
.product-img { cursor: zoom-in; }

/* ========== LIGHTBOX (zoom de imagem) ========== */
.image-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 30px;
  cursor: zoom-out;
  animation: lightboxFade 0.25s ease;
}

.image-lightbox.active { display: flex; }

@keyframes lightboxFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.image-lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
  background: linear-gradient(135deg, #1a1a2e 0%, #2d1515 50%, #d32f2f 100%);
  padding: 30px;
  animation: lightboxZoom 0.3s ease;
}

@keyframes lightboxZoom {
  from { transform: scale(0.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.image-lightbox-close {
  position: absolute;
  top: 22px;
  right: 26px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
  backdrop-filter: blur(6px);
}

.image-lightbox-close:hover {
  background: var(--primary);
  transform: rotate(90deg) scale(1.1);
  border-color: var(--primary);
}

.image-lightbox-caption {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  background: rgba(0, 0, 0, 0.5);
  padding: 8px 18px;
  border-radius: 30px;
  backdrop-filter: blur(6px);
  letter-spacing: 0.4px;
}

.product-card .btn {
  margin: 0 24px 22px;
  padding: 15px;
  background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 14px rgba(211, 47, 47, 0.28);
}

.product-card .btn:hover {
  background: linear-gradient(135deg, #b71c1c 0%, #d32f2f 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(211, 47, 47, 0.4);
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}

.indicator.active {
  background: var(--primary);
  width: 32px;
  border-radius: 5px;
}

.view-all-container { text-align: center; margin-top: 24px; }

.btn-view-more {
  background: white;
  color: var(--primary);
  border: 2.5px solid var(--primary);
  padding: 16px 48px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: inherit;
}

.btn-view-more:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(211,47,47,0.3);
}

/* ========== LANÇAMENTOS ========== */
.launches-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 60%, #1a1a2e 100%);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.launches-section::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(211,47,47,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.launches-header {
  text-align: center;
  margin-bottom: 56px;
}

.launches-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(211,47,47,0.18);
  color: #ff6b6b;
  border: 1px solid rgba(211,47,47,0.35);
  padding: 7px 22px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.launches-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: #ffffff;
  font-weight: 900;
  margin-bottom: 12px;
}

.launches-header p {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
}

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

/* Carrossel de Lançamentos */
.launches-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 24px;
}

.launches-carousel-wrapper .carousel-btn {
  margin-top: 0;
  align-self: center;
}

.launches-carousel {
  flex: 1;
  overflow: hidden;
  padding: 6px 4px;
}

.launches-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.launches-page {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  min-width: 0;
}

.launches-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.launches-indicators .indicator {
  background: rgba(255,255,255,0.2);
}

.launches-indicators .indicator.active {
  background: var(--primary);
}

.launch-img { cursor: zoom-in; }

@media (max-width: 900px) {
  .launches-page { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .launches-page { grid-template-columns: 1fr; }
  .launches-carousel-wrapper { gap: 12px; }
}

.launch-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}

.launch-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(211,47,47,0.5);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(211,47,47,0.18);
}

.launch-new-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--primary);
  color: white;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 4px 11px;
  border-radius: 20px;
  text-transform: uppercase;
  z-index: 2;
}

.launch-top {
  background: linear-gradient(135deg, rgba(211,47,47,0.2) 0%, rgba(211,47,47,0.05) 100%);
  padding: 24px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}

.launch-img {
  max-width: 100%;
  max-height: 160px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.35));
}

.launch-icon {
  width: 72px;
  height: 72px;
  background: rgba(211,47,47,0.2);
  border: 2px solid rgba(211,47,47,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #ff6b6b;
}

.launch-body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.launch-cat {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ff6b6b;
}

.launch-code {
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffffff;
  font-family: 'Courier New', monospace;
}

.launch-app {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.55;
  flex: 1;
}

.launch-btn {
  margin-top: 8px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  border: none;
  padding: 13px 18px;
  border-radius: 9px;
  font-weight: 700;
  font-size: 0.83rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  font-family: inherit;
  box-shadow: 0 4px 14px rgba(211,47,47,0.3);
}

.launch-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(211,47,47,0.45);
}

@media (max-width: 900px) {
  .launches-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 540px) {
  .launches-grid { grid-template-columns: 1fr; }
  .launches-section { padding: 60px 0; }
}

/* ========== VENDORS WHATSAPP ========== */
.whatsapp-vendors {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.vendor-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 14px;
  background: #f8f9fa;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid #e8e8e8;
  transition: all 0.25s;
}

.vendor-link:hover {
  background: #25d366;
  border-color: #25d366;
  transform: translateX(4px);
}

.vendor-link:hover .vendor-name,
.vendor-link:hover .vendor-num { color: white; }

.vendor-name {
  font-weight: 700;
  color: var(--dark);
  font-size: 0.88rem;
}

.vendor-num {
  font-size: 0.85rem;
  color: var(--gray);
  font-family: monospace;
}

/* ========== SOBRE ========== */
.about-section { background: var(--white); padding: 90px 0; }

.about-header { text-align: center; margin-bottom: 56px; }

.about-tag {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.about-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 14px;
  color: var(--dark);
  font-weight: 800;
}

.about-header .highlight { color: var(--primary); }

.about-intro { font-size: 1.15rem; color: var(--gray); max-width: 620px; margin: 0 auto; }

.about-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: start; }

.about-text p {
  margin-bottom: 20px;
  color: #444;
  font-size: 1rem;
  padding-left: 15px;
  border-left: 3px solid transparent;
  transition: border-color 0.3s, padding 0.3s;
  line-height: 1.75;
}

.about-text p:hover { border-left-color: var(--primary); padding-left: 20px; }

.about-text strong { color: var(--primary); }

.about-cards { display: flex; flex-direction: column; gap: 18px; }

.value-card {
  background: var(--light);
  padding: 24px;
  border-radius: 12px;
  border-left: 4px solid var(--primary);
  transition: all 0.3s;
}

.value-card:hover { transform: translateX(6px); box-shadow: 0 6px 22px rgba(0,0,0,0.09); }

.card-icon {
  width: 46px;
  height: 46px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 14px;
}

.value-card h4 { font-size: 1.05rem; margin-bottom: 7px; color: var(--dark); font-weight: 700; }
.value-card p { color: var(--gray); font-size: 0.92rem; line-height: 1.6; }

.timeline-card { background: var(--dark); color: white; padding: 24px; border-radius: 12px; }

.timeline-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.timeline-item:last-child { border-bottom: none; }

.timeline-year {
  background: var(--primary);
  padding: 5px 12px;
  border-radius: 5px;
  font-weight: 700;
  font-size: 0.85rem;
  min-width: 68px;
  text-align: center;
  flex-shrink: 0;
}

.timeline-text { font-size: 0.9rem; color: rgba(255,255,255,0.8); }

/* ========== CONTATO ========== */
.contact-section { padding: 90px 0; background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); }

.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 40px; align-items: start; }

.contact-info h2 { font-size: 1.9rem; margin-bottom: 10px; color: var(--dark); font-weight: 800; }

.contact-info > p { color: var(--gray); margin-bottom: 28px; font-size: 0.95rem; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #e0e0e0;
}

.contact-item:last-child { border-bottom: none; }

.contact-item i {
  width: 42px;
  height: 42px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item strong { display: block; color: var(--dark); margin-bottom: 3px; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.5px; }
.contact-item p { color: var(--gray); margin: 0; font-size: 0.95rem; line-height: 1.5; }

.quote-form-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quote-form-card h3 { margin-bottom: 24px; color: var(--dark); font-size: 1.3rem; font-weight: 700; }

.quote-form { display: flex; flex-direction: column; gap: 14px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.quote-form input,
.quote-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e8e8e8;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: var(--transition);
  font-family: inherit;
  color: var(--dark);
  background: #fdfdfd;
}

.quote-form input:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.1);
  background: white;
}

.cart-summary {
  background: var(--light);
  padding: 14px 16px;
  border-radius: 8px;
  font-size: 0.88rem;
  border: 1px solid #e8e8e8;
}

#cartItemsList { max-height: 90px; overflow-y: auto; font-size: 0.83rem; margin-top: 6px; }

.btn-submit-quote {
  width: 100%;
  background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
  color: white;
  border: none;
  padding: 16px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
  transition: all 0.3s;
  font-family: inherit;
}

.btn-submit-quote:hover {
  background: linear-gradient(135deg, #b71c1c 0%, #d32f2f 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(211, 47, 47, 0.4);
}

.btn-submit-quote:disabled { opacity: 0.65; cursor: not-allowed; transform: none; box-shadow: none; }

/* ========== FOOTER ========== */
.footer {
  background: url('assets/img/footer-bg.jpg') center / cover;
  color: #e0e0e0;
  padding: 64px 0 0;
  position: relative;
  margin-top: 60px;
}

.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.footer-content,
.footer-bottom,
.footer-section { position: relative; z-index: 1; }

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 44px;
}

.footer-section h3 {
  color: white;
  margin-bottom: 14px;
  font-size: 1.1rem;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
  padding-bottom: 6px;
  font-weight: 700;
}

.footer-section p,
.footer-section a {
  color: #aaa;
  text-decoration: none;
  line-height: 2;
  display: block;
  font-size: 0.92rem;
  transition: color 0.3s, padding-left 0.3s;
}

.footer-section a:hover { color: white; padding-left: 5px; }

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  font-size: 0.85rem;
  color: #666;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.social-footer { display: flex; gap: 18px; align-items: center; margin-top: 6px; }

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2.2rem;
  text-decoration: none;
  transition: all 0.3s;
}

.social-icon:hover { color: var(--primary); transform: translateY(-4px); }

/* ========== MODAL ========== */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(2px);
}

.modal.active { display: flex; }

.modal-content {
  background: var(--white);
  border-radius: var(--radius);
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  animation: modalSlide 0.3s ease;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

@keyframes modalSlide {
  from { opacity: 0; transform: translateY(-24px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-header {
  padding: 20px 24px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 { font-size: 1.1rem; font-weight: 700; }

.modal-close {
  background: #f4f4f4;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--gray);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.modal-close:hover { background: #e0e0e0; color: var(--dark); }

.modal-body { padding: 20px 24px; overflow-y: auto; flex: 1; }
.modal-footer { padding: 14px 24px 22px; border-top: 1px solid #eee; display: flex; gap: 10px; }

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #f2f2f2;
}

.cart-item:last-child { border-bottom: none; }
.cart-item-info { flex: 1; }
.cart-item-title { font-weight: 600; margin-bottom: 4px; font-size: 0.92rem; }
.cart-item-code { font-size: 0.8rem; color: var(--gray); font-family: monospace; }
.cart-item-actions { display: flex; align-items: center; gap: 10px; }

.qty-control {
  display: flex;
  align-items: center;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  overflow: hidden;
}

.qty-control button {
  background: transparent;
  border: none;
  width: 30px;
  height: 30px;
  cursor: pointer;
  font-size: 1.1rem;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.qty-control button:hover { background: #e8e8e8; }
.qty-control span { min-width: 28px; text-align: center; font-weight: 700; font-size: 0.9rem; }

.cart-item-remove {
  background: #fee;
  color: #d32f2f;
  border: 1px solid #fcc;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.cart-item-remove:hover { background: #d32f2f; color: white; border-color: #d32f2f; }

/* ========== TOAST ========== */
.toast {
  position: fixed;
  bottom: 100px;
  right: 30px;
  background: var(--dark);
  color: white;
  padding: 14px 22px;
  border-radius: 50px;
  box-shadow: var(--shadow-hover);
  z-index: 3000;
  transform: translateX(160%);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  max-width: 320px;
}

.toast.show { transform: translateX(0); }
.toast.success { background: #2e7d32; }
.toast.error { background: #c62828; }

/* ========== WHATSAPP FLUTUANTE ========== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: #25d366;
  color: white;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 2px 4px 14px rgba(0,0,0,0.25);
  z-index: 999;
  transition: all 0.3s;
  text-decoration: none;
  animation: pulse 2.5s infinite;
}

.whatsapp-float:hover { background: #128c7e; transform: scale(1.1); }

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ========== BACK TO TOP ========== */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 28px;
  background: var(--dark);
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
  z-index: 998;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s, transform 0.3s, background 0.3s;
  pointer-events: none;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.back-to-top:hover { background: var(--primary); }

/* ========== MENU MOBILE TOGGLE ========== */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: 1.5px solid #ddd;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--dark);
  padding: 8px 10px;
  border-radius: 8px;
  transition: var(--transition);
  line-height: 1;
}

.mobile-menu-toggle:hover { background: var(--primary); color: white; border-color: var(--primary); }

/* ========== RESPONSIVO ========== */
@media (max-width: 1024px) {
  .nav { gap: 22px; }
  .nav a { font-size: 0.88rem; }
}

@media (max-width: 992px) {
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .mobile-menu-toggle { display: flex; align-items: center; justify-content: center; }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 12px 20px 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    gap: 0;
    border-top: 3px solid var(--primary);
    animation: navSlide 0.25s ease;
  }

  @keyframes navSlide {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .nav.active { display: flex; }

  .nav a {
    padding: 13px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
    display: block;
  }

  .nav a:last-child { border-bottom: none; }
  .nav a::after { display: none; }

  .products-carousel-wrapper { gap: 12px; }
  .carousel-btn { width: 42px; height: 42px; font-size: 16px; }
  .card-body { padding: 20px; }
  .product-card .btn { margin: 0 20px 18px; }

  .search-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero { padding: 50px 0; }
  .hero-content { padding: 40px 20px 60px; }

  .logo img { height: 52px; max-width: 180px; }
  .header-content { min-height: 66px; }
}

@media (max-width: 480px) {
  .container { padding: 0 15px; }
  .logo img { height: 46px; max-width: 160px; }
  .hero { min-height: 400px; }
  .hero-title { font-size: 2rem; }
  .hero-buttons .btn { padding: 14px 30px; font-size: 0.9rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat-item:nth-child(odd):nth-last-child(-n+2) { border-bottom: none; }
  .stat-item:nth-child(even) { border-right: none; }
  .toast { bottom: 90px; right: 14px; left: 14px; max-width: none; }
  .back-to-top { right: 14px; }
  .whatsapp-float { right: 14px; bottom: 18px; width: 52px; height: 52px; font-size: 28px; }
  .quote-form-card { padding: 22px 18px; }
  .products-carousel-wrapper { padding: 10px 0 24px; }
}

/* ========== SCROLL ANIMATIONS ========== */
.fade-in-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-up:nth-child(2) { transition-delay: 0.1s; }
.fade-in-up:nth-child(3) { transition-delay: 0.2s; }
.fade-in-up:nth-child(4) { transition-delay: 0.3s; }
