/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --font-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-secondary: 'Inter', sans-serif;

  --color-bg-dark: #050811;
  --color-blue-primary: #0070FF;
  --color-blue-glow: #0088FF;
  --color-text-white: #FFFFFF;
  --color-text-gray: #94A3B8;
  --color-text-muted: #64748B;

  --color-ml-yellow: #FFCC00;
  --color-shopee-red: #FF3F14;
  --color-whatsapp-green: #00A859;
}

html, body {
  width: 100%;
  height: 100%;
  background-color: var(--color-bg-dark);
  color: var(--color-text-white);
  font-family: var(--font-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* ==========================================================================
   HERO SECTION CONTAINER
   ========================================================================== */
.hero-section {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background-color: var(--color-bg-dark);
}

/* ==========================================================================
   BACKGROUND & OVERLAYS
   ========================================================================== */
.hero-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

/* Gradient overlays to match exact target lighting */
.hero-overlay-dark {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg, 
    #050811 0%, 
    #050811 38%, 
    rgba(5, 8, 17, 0.75) 58%, 
    rgba(5, 8, 17, 0.3) 78%, 
    rgba(5, 8, 17, 0.05) 100%
  );
}

.hero-overlay-radial {
  position: absolute;
  top: 15%;
  left: 10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 112, 255, 0.15) 0%, rgba(5, 8, 17, 0) 70%);
  pointer-events: none;
}

.hero-overlay-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 140px;
  background: linear-gradient(180deg, #04070F 0%, rgba(4, 7, 15, 0) 100%);
}

.hero-overlay-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(0deg, #04070F 0%, rgba(4, 7, 15, 0) 100%);
}

/* ==========================================================================
   HEADER / NAVBAR
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  height: 84px;
  display: flex;
  align-items: center;
  background: rgba(4, 7, 15, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.header-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 56px !important;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 112, 255, 0.25));
}

/* NAV MENU */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  position: relative;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: #CBD5E1;
  padding: 8px 0;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}

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

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

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--color-blue-primary);
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(0, 112, 255, 0.8);
}

/* DROPDOWN NAVIGATION MENU */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 240px;
  background: rgba(10, 16, 30, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: block;
  padding: 10px 14px;
  font-size: 12.5px;
  font-weight: 600;
  color: #CBD5E1;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.dropdown-item:hover {
  background: rgba(0, 112, 255, 0.2);
  color: #FFFFFF;
  padding-left: 18px;
}

.dropdown-chevron {
  opacity: 0.8;
}

/* HEADER ACTIONS */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.search-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(15, 23, 42, 0.4);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.search-btn:hover {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(15, 23, 42, 0.7);
  transform: scale(1.05);
}

.whatsapp-header-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 50px;
  border: 1.5px solid var(--color-blue-primary);
  background: rgba(6, 12, 30, 0.6);
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
  box-shadow: 0 0 15px rgba(0, 112, 255, 0.2);
}

.whatsapp-header-btn:hover {
  background: var(--color-blue-primary);
  box-shadow: 0 0 20px rgba(0, 112, 255, 0.6);
  transform: translateY(-1px);
}

.header-wa-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
}


/* MAIN H1 TITLE - PERFECTLY REDUCED 30% FOR DESKTOP FOLD */
.hero-content {
  max-width: 620px !important;
}

.hero-title {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 52px !important;
  font-weight: 900 !important;
  line-height: 1.14 !important;
  letter-spacing: 0.2px !important;
  color: #FFFFFF !important;
  text-transform: uppercase !important;
  margin-bottom: 20px !important;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9) !important;
}

.blue-highlight {
  color: #0070FF !important;
  background: none !important;
  -webkit-text-fill-color: #0070FF !important;
  background-clip: unset !important;
  -webkit-background-clip: unset !important;
  text-shadow: 0 0 25px rgba(0, 112, 255, 0.85), 0 0 50px rgba(0, 112, 255, 0.4) !important;
}

.hero-subtitle {
  font-family: 'Inter', sans-serif !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 1.6 !important;
  color: #CBD5E1 !important;
  margin-bottom: 32px !important;
  max-width: 580px !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85) !important;
}

/* ============================================= */

/* ==========================================================================
   HERO BODY & MAIN CONTENT
   ========================================================================== */
.hero-body {
  position: relative;
  z-index: 5;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 100px;
  padding-bottom: 40px;
}

.hero-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

.hero-content {
  max-width: 620px;
}

/* 3 PRIMARY CTA BUTTONS ROW */

.cta-buttons-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 56px;
  padding: 0 22px;
  border-radius: 12px;
  transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  text-decoration: none;
  cursor: pointer;
}

.cta-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.5);
  filter: brightness(1.08);
}

.cta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.cta-brand-img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.cta-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.cta-text strong {
  font-size: 13.5px;
  font-weight: 900;
  display: block;
  letter-spacing: 0.5px;
}

/* ML BUTTON */
.cta-ml {
  background: linear-gradient(135deg, #FFE600 0%, #F5D600 100%);
  color: #002F6C;
  border: 1px solid rgba(255, 230, 0, 0.4);
}

/* SHOPEE BUTTON */
.cta-shopee {
  background: linear-gradient(135deg, #FF5722 0%, #EE4D2D 100%);
  color: #FFFFFF;
  border: 1px solid rgba(238, 77, 45, 0.4);
}

/* WHATSAPP BUTTON */
.cta-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #FFFFFF;
  border: 1px solid rgba(37, 211, 102, 0.4);
}

/* WHATSAPP BUTTON */
.cta-whatsapp {
  background-color: var(--color-whatsapp-green);
  color: #FFFFFF;
}

/* SECONDARY VIDEO CTA */
.video-cta-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.video-play-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.05);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  padding-left: 2px;
}

.video-play-btn:hover {
  border-color: #FFFFFF;
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.08);
}

.video-cta-text {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.8px;
  color: #FFFFFF;
}

/* ==========================================================================
   CENTER SCROLL DOWN INDICATOR
   ========================================================================== */
.scroll-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 8;
  cursor: pointer;
}

.mouse-icon {
  width: 20px;
  height: 32px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.mouse-wheel {
  width: 3px;
  height: 6px;
  background-color: #FFFFFF;
  border-radius: 2px;
  animation: scrollWheel 1.6s infinite ease-in-out;
}

@keyframes scrollWheel {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(8px); opacity: 0; }
}

.scroll-text {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #94A3B8;
}

.scroll-arrow {
  animation: bounceArrow 1.6s infinite ease-in-out;
}

@keyframes bounceArrow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

/* ==========================================================================
   RIGHT FLOATING SOCIAL SIDEBAR - FIXED SVGs
   ========================================================================== */
.social-sidebar {
  position: fixed;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 30;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 12px 8px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255,255,255,0.1);
}

.social-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  transition: transform 0.2s ease;
  width: 48px;
}

.social-item:hover {
  transform: scale(1.1);
}

.social-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.6);
  transition: all 0.25s ease;
  overflow: hidden;
}

.social-item:hover .social-badge {
  transform: scale(1.15);
  box-shadow: 0 8px 24px rgba(0, 112, 255, 0.4);
}

.social-badge.instagram-bg {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
  color: #FFFFFF;
}

.social-badge.facebook-bg {
  background-color: #1877F2;
  color: #FFFFFF;
}

.social-badge.tiktok-bg {
  background-color: #000000;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
}

.social-badge.ml-bg {
  background-color: #FFE600;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.social-badge.shopee-bg {
  background-color: #EE4D2D;
}

.social-badge.whatsapp-bg {
  background-color: #25D366;
}

.social-label {
  font-size: 10px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.2px;
  white-space: nowrap;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9);
}

/* ==========================================================================
   BOTTOM INDICATORS BAR
   ========================================================================== */
.indicators-bar {
  position: relative;
  z-index: 10;
  width: 100%;
  background: #04070F;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
}

.indicators-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.indicator-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  position: relative;
  padding: 0 10px;
}

.indicator-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.indicator-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.indicator-text {
  display: flex;
  flex-direction: column;
}

.ind-main {
  font-size: 14px;
  font-weight: 900;
  color: #FFFFFF;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.ind-sub {
  font-size: 11px;
  font-weight: 600;
  color: #64748B;
  letter-spacing: 0.3px;
  margin-top: 2px;
}

/* ==========================================================================
   SECTION 02: NOSSAS CATEGORIAS
   ========================================================================== */
.categories-section {
  position: relative;
  width: 100%;
  padding: 80px 0;
  background-color: var(--color-bg-dark);
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(0, 112, 255, 0.08) 0%, transparent 60%);
}

.categories-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 70px 0 40px;
}

/* SECTION HEADER */
.section-header {
  text-align: center;
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-title {
  font-size: 38px;
  font-weight: 900;
  letter-spacing: 0.5px;
  color: #FFFFFF;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-subtitle {
  font-family: var(--font-secondary);
  font-size: 15px;
  color: #94A3B8;
  margin-bottom: 16px;
}

.section-title-line {
  width: 40px;
  height: 3px;
  background-color: var(--color-blue-primary);
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(0, 112, 255, 0.8);
}

/* CATEGORIES GRID */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

/* CATEGORY CARD */
.category-card {
  position: relative;
  background: linear-gradient(135deg, rgba(12, 20, 38, 0.75) 0%, rgba(6, 10, 22, 0.95) 100%);
  border: 1px solid rgba(0, 112, 255, 0.18);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  height: 195px;
}

.category-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 112, 255, 0.4);
  box-shadow: 0 14px 35px rgba(0, 112, 255, 0.18);
  background: linear-gradient(135deg, rgba(16, 26, 48, 0.85) 0%, rgba(8, 14, 28, 0.98) 100%);
}

.card-content {
  flex: 1;
  min-width: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.card-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(0, 112, 255, 0.12);
  border: 1px solid rgba(0, 112, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
  flex-shrink: 0;
}

.card-title {
  font-size: 15px;
  font-weight: 900;
  color: #FFFFFF;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 4px;
  letter-spacing: 0.3px;
}

.card-desc {
  font-family: var(--font-secondary);
  font-size: 11px;
  line-height: 1.35;
  color: #8A99AD;
  margin-bottom: 6px;
}

.card-btn {
  font-size: 11px;
  font-weight: 800;
  color: var(--color-blue-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
  margin-top: auto;
}

.card-btn .arrow {
  transition: transform 0.2s ease;
}

.category-card:hover .card-btn {
  color: #3390FF;
}

.category-card:hover .card-btn .arrow {
  transform: translateX(4px);
}

/* CARD IMAGE (SIDE BY SIDE FLEX COLUMN) */
.card-image-wrapper {
  position: relative;
  right: auto;
  top: auto;
  width: 135px;
  min-width: 135px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  flex-shrink: 0;
  overflow: hidden;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.4s ease;
}

/* ==========================================================================
   FOOTER STATS BAR (PRE-FOOTER METRICS BAR)
   ========================================================================== */
.footer-stats-bar {
  background: #04070F;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  width: 100%;
}

.footer-stats-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fstat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  justify-content: center;
}

.fstat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
}

.fstat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fstat-text {
  display: flex;
  flex-direction: column;
}

.fstat-num,
.fstat-title {
  font-size: 14px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.25;
}

.fstat-label {
  font-size: 11px;
  color: #64748B;
}

.full-catalog-banner {
  background: linear-gradient(90deg, rgba(10, 18, 36, 0.85) 0%, rgba(6, 12, 24, 0.95) 100%);
  border: 1px solid rgba(0, 112, 255, 0.25);
  border-radius: 12px;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.catalog-info {
  display: flex;
  align-items: center;
  gap: 18px;
}

.catalog-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: rgba(0, 112, 255, 0.1);
  border: 1px solid rgba(0, 112, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.catalog-title {
  font-size: 15px;
  font-weight: 900;
  color: #FFFFFF;
  letter-spacing: 0.5px;
  margin-bottom: 3px;
}

.catalog-desc {
  font-family: var(--font-secondary);
  font-size: 12px;
  color: #8A99AD;
}

.catalog-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  border: 1px solid rgba(0, 112, 255, 0.6);
  background: rgba(0, 112, 255, 0.08);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
}

.catalog-btn:hover {
  background: var(--color-blue-primary);
  border-color: var(--color-blue-primary);
  box-shadow: 0 0 20px rgba(0, 112, 255, 0.4);
  transform: translateY(-1px);
}

.catalog-btn .arrow {
  transition: transform 0.2s ease;
}

.catalog-btn:hover .arrow {
  transform: translateX(4px);
}

/* ==========================================================================
   SECTION 03: PRODUTOS EM DESTAQUE
   ========================================================================== */
.featured-products-section {
  position: relative;
  width: 100%;
  padding: 80px 0;
  background-color: var(--color-bg-dark);
}

.featured-products-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 70px 0 40px;
}

/* TOP HEADER ROW */
.products-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}

.section-tag {
  font-size: 12px;
  font-weight: 800;
  color: var(--color-blue-primary);
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.products-main-title {
  font-size: 38px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0.5px;
  color: #FFFFFF;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.products-subtitle {
  font-family: var(--font-secondary);
  font-size: 14px;
  line-height: 1.5;
  color: #94A3B8;
}

/* PRODUCT TABS */
.products-tabs-col {
  display: flex;
  align-items: center;
}

.product-tabs {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(12, 20, 38, 0.6);
  color: #CBD5E1;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
  cursor: pointer;
}

.tab-btn:hover {
  border-color: rgba(0, 112, 255, 0.4);
  color: #FFFFFF;
}

.tab-btn.active {
  background: var(--color-blue-primary);
  border-color: var(--color-blue-primary);
  color: #FFFFFF;
  box-shadow: 0 0 15px rgba(0, 112, 255, 0.5);
}

/* MAIN CONTENT GRID */
.products-main-grid {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 24px;
  margin-bottom: 32px;
  align-items: stretch;
}

/* CAROUSEL WRAPPER */
.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 16px;
  width: 100%;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(11, 17, 32, 0.95);
  border: 1.5px solid rgba(0, 112, 255, 0.4);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  cursor: pointer;
}

.carousel-arrow:hover {
  background: var(--color-blue-primary);
  border-color: var(--color-blue-primary);
  transform: translateY(-50%) scale(1.12);
  box-shadow: 0 10px 30px rgba(0, 112, 255, 0.6);
}

.prev-arrow {
  left: 8px;
}

.next-arrow {
  right: 8px;
}

.products-cards-row {
  display: flex;
  gap: 20px;
  width: 100%;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* PRODUCT CARD (LARGE & PROMINENT) */
.product-card {
  position: relative;
  flex: 0 0 calc(33.333% - 14px);
  min-width: 250px;
  background: linear-gradient(180deg, #0B1120 0%, #060A16 100%);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 112, 255, 0.5);
  box-shadow: 0 16px 40px rgba(0, 112, 255, 0.2);
}

.rank-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 5;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: var(--color-blue-primary);
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 112, 255, 0.5);
}

.product-img-box {
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: 12px;
  background: rgba(4, 8, 16, 0.6);
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.prod-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.35s ease;
}

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

.product-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.35;
  margin-bottom: 10px;
  height: 38px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 12px;
}

.stars {
  color: #FFC107;
  font-size: 11px;
  letter-spacing: 1px;
}

.review-count {
  font-size: 10px;
  color: #64748B;
}

.product-price-row {
  display: flex;
  align-items: center;
  margin-top: 4px;
  margin-bottom: 10px;
}

.product-price {
  font-size: 15px;
  font-weight: 900;
  color: var(--color-blue-primary);
}

/* PRODUCT BUY BUTTONS (ML / Shopee / WA) */
.product-buy-btns {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin-top: auto;
}

.prod-buy-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 8px;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 800;
  text-decoration: none;
  transition: filter 0.2s, transform 0.15s;
  letter-spacing: 0.2px;
  flex: 1;
  justify-content: center;
  min-width: 0;
}

.prod-buy-btn:hover {
  filter: brightness(1.12);
  transform: translateY(-1px);
}

.prod-ml    { background: #FFE600; color: #000000; }
.prod-shopee { background: #EE4D2D; color: #FFFFFF; }
.prod-wa    { background: #25D366; color: #FFFFFF; }

/* Keep bottom-row for backward compat */
.product-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.cart-add-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.cart-add-btn:hover {
  background: var(--color-blue-primary);
  border-color: var(--color-blue-primary);
  transform: scale(1.1);
}


/* RIGHT SIDE SPECIFIC CATALOG CARD */
.side-catalog-card {
  background: linear-gradient(180deg, #09152C 0%, #050B16 100%);
  border: 1px solid rgba(0, 112, 255, 0.3);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.side-catalog-title {
  font-size: 16px;
  font-weight: 900;
  line-height: 1.2;
  color: #FFFFFF;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.side-catalog-desc {
  font-family: var(--font-secondary);
  font-size: 11px;
  line-height: 1.45;
  color: #8A99AD;
  margin-bottom: 16px;
}

.side-catalog-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  border-radius: 50px;
  background: var(--color-blue-primary);
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
  align-self: flex-start;
  margin-bottom: 14px;
  box-shadow: 0 4px 15px rgba(0, 112, 255, 0.4);
}

.side-catalog-btn:hover {
  background: #0080FF;
  transform: translateY(-1px);
}

.side-catalog-img-box {
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.side-catalog-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* CENTER BOTTOM BUTTON */
.view-all-products-row {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}

.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(12, 20, 38, 0.6);
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
}

.view-all-btn:hover {
  border-color: var(--color-blue-primary);
  background: rgba(0, 112, 255, 0.1);
  box-shadow: 0 0 15px rgba(0, 112, 255, 0.3);
}

.view-all-btn .arrow {
  transition: transform 0.2s ease;
}

.view-all-btn:hover .arrow {
  transform: translateX(4px);
}

/* BOTTOM DIFFERENTIALS BAR */
.differentials-bar {
  background: linear-gradient(90deg, rgba(8, 14, 30, 0.8) 0%, rgba(4, 8, 18, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.diff-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 12px;
  position: relative;
}

.diff-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.diff-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.diff-text {
  display: flex;
  flex-direction: column;
}

.diff-title {
  font-size: 13px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 0.3px;
  margin-bottom: 2px;
}

.diff-desc {
  font-family: var(--font-secondary);
  font-size: 11px;
  color: #64748B;
  line-height: 1.3;
}

/* ==========================================================================
   SECTION 04: MONTE SEU KIT
   ========================================================================== */
.build-kit-section,
.monte-kit-section {
  position: relative;
  width: 100%;
  padding: 80px 0;
  background-color: var(--color-bg-dark);
  background-image: radial-gradient(circle at 50% 30%, rgba(0, 112, 255, 0.08) 0%, transparent 70%);
}

.build-kit-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 70px 0 40px;
}

.kit-steps-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 40px;
}

.step-card {
  flex: 1;
  position: relative;
  background: linear-gradient(180deg, rgba(12, 20, 38, 0.7) 0%, rgba(6, 10, 22, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px 16px;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.step-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-blue-primary);
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 12px rgba(0, 112, 255, 0.6);
}

.step-title {
  font-size: 13px;
  font-weight: 900;
  color: #FFFFFF;
  text-transform: uppercase;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 4px;
  line-height: 1.25;
}

.step-subtitle {
  font-family: var(--font-secondary);
  font-size: 11px;
  color: #8A99AD;
  text-align: center;
  margin-bottom: 20px;
}

.step-flow-arrow {
  color: rgba(0, 112, 255, 0.6);
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}

/* STEP 1 BODY */
.step1-body {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  margin-bottom: auto;
}

.tube-options-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.tube-opt-btn {
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(4, 8, 18, 0.5);
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.2s ease;
  cursor: pointer;
}

.tube-opt-btn.active {
  background: var(--color-blue-primary);
  border-color: var(--color-blue-primary);
  box-shadow: 0 0 15px rgba(0, 112, 255, 0.5);
}

.tube-img-col {
  width: 110px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tube-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* STEP 2 MINI GRID */
.components-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: auto;
  margin-bottom: auto;
}

.comp-box {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(4, 8, 18, 0.5);
  padding: 8px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.comp-box.selected {
  border-color: var(--color-blue-primary);
  background: rgba(0, 112, 255, 0.1);
}

.comp-check {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-blue-primary);
  color: #FFFFFF;
  font-size: 9px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

.comp-uncheck {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.comp-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.comp-name {
  font-size: 9.5px;
  font-weight: 700;
  color: #FFFFFF;
  text-align: center;
  line-height: 1.2;
}

/* STEP 3 SUMMARY */
.summary-items-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.summary-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(4, 8, 18, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 6px 10px;
}

.sum-thumb {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.sum-qty {
  font-size: 11px;
  font-weight: 900;
  color: var(--color-blue-primary);
}

.sum-name {
  font-size: 11px;
  color: #E2E8F0;
}

.summary-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  margin-bottom: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.total-label {
  font-size: 11px;
  font-weight: 800;
  color: #94A3B8;
}

.total-value {
  font-size: 12px;
  font-weight: 900;
  color: var(--color-blue-primary);
}

.step3-btn {
  width: 100%;
  padding: 10px 0;
  border-radius: 8px;
  background: var(--color-blue-primary);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 4px 15px rgba(0, 112, 255, 0.4);
  cursor: pointer;
}

/* STEP 4 CTAS */
.step4-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
  margin-bottom: auto;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(4, 8, 18, 0.7);
  transition: all 0.2s ease;
}

.final-cta:hover {
  transform: translateY(-2px);
}

.final-cta-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.final-icon-badge {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ml-badge { background: #FFE600; }
.shopee-badge { background: #EE4D2D; }
.wa-badge { background: #25D366; }

.ml-cta { border: 1px solid rgba(255, 230, 0, 0.3); }
.shopee-cta { border: 1px solid rgba(238, 77, 45, 0.3); }
.wa-cta { border: 1px solid rgba(37, 211, 102, 0.3); }

.final-text {
  display: flex;
  flex-direction: column;
}

.final-title {
  font-size: 11px;
  font-weight: 900;
  line-height: 1.2;
}

.ml-title { color: #FFE600; }
.shopee-title { color: #FF4500; }
.wa-title { color: #25D366; }

.final-sub {
  font-size: 10px;
  font-weight: 700;
  color: #FFFFFF;
}

.final-tag {
  font-size: 8.5px;
  color: #64748B;
}

/* MIDDLE DIFFERENTIALS BAR */
.kit-differentials-bar {
  background: linear-gradient(90deg, rgba(8, 14, 30, 0.8) 0%, rgba(4, 8, 18, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

/* BOTTOM HELP BANNER */
.kit-help-banner {
  background: linear-gradient(90deg, #09152C 0%, #050B16 100%);
  border: 1px solid rgba(0, 112, 255, 0.3);
  border-radius: 14px;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.kit-help-left {
  width: 180px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 8px;
}

.kit-help-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kit-help-center {
  flex: 1;
  padding: 0 24px;
}

.kit-help-title {
  font-size: 16px;
  font-weight: 900;
  color: #FFFFFF;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.kit-help-desc {
  font-family: var(--font-secondary);
  font-size: 12px;
  color: #8A99AD;
  line-height: 1.4;
}

.kit-help-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 50px;
  background: var(--color-blue-primary);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
  box-shadow: 0 4px 15px rgba(0, 112, 255, 0.4);
}

.kit-help-btn:hover {
  background: #0080FF;
  transform: translateY(-1px);
}

/* ==========================================================================
   SECTION 05: SOBRE A ACESMAQ
   ========================================================================== */
.about-section {
  position: relative;
  width: 100%;
  padding: 80px 0;
  background-color: var(--color-bg-dark);
}

.about-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 70px 0 40px;
}

.about-main-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 50px;
}

/* LEFT COLUMN */
.about-left-col {
  display: flex;
  flex-direction: column;
}

.about-main-title {
  font-size: 38px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0.5px;
  color: #FFFFFF;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.about-intro-text {
  font-family: var(--font-secondary);
  font-size: 13.5px;
  line-height: 1.55;
  color: #94A3B8;
  margin-bottom: 32px;
}

/* 2x3 DIFFERENTIAL CARDS GRID */
.about-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.about-diff-card {
  background: linear-gradient(180deg, rgba(12, 20, 38, 0.6) 0%, rgba(6, 10, 22, 0.8) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 16px 14px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: all 0.25s ease;
}

.about-diff-card:hover {
  border-color: rgba(0, 112, 255, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 112, 255, 0.1);
}

.diff-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(0, 112, 255, 0.1);
  border: 1px solid rgba(0, 112, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.diff-card-content {
  display: flex;
  flex-direction: column;
}

.diff-card-title {
  font-size: 11.5px;
  font-weight: 900;
  color: #FFFFFF;
  letter-spacing: 0.3px;
  margin-bottom: 4px;
}

.diff-card-desc {
  font-family: var(--font-secondary);
  font-size: 10px;
  line-height: 1.4;
  color: #8A99AD;
}

/* RIGHT COLUMN */
.about-right-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* FACILITY BANNER */
.facility-banner {
  position: relative;
  width: 100%;
  height: 300px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 112, 255, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.facility-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.facility-video-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(6, 12, 24, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 10px 16px;
  border-radius: 50px;
}

.facility-play-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #FFFFFF;
  color: #050811;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 2px;
}

.facility-video-text {
  display: flex;
  flex-direction: column;
}

.fac-video-title {
  font-size: 11px;
  font-weight: 900;
  color: #FFFFFF;
  letter-spacing: 0.5px;
}

.fac-video-sub {
  font-family: var(--font-secondary);
  font-size: 9.5px;
  color: #94A3B8;
}

/* 3 FEATURE CARDS ROW */
.about-features-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.about-feat-card {
  background: linear-gradient(180deg, rgba(12, 20, 38, 0.7) 0%, rgba(6, 10, 22, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 12px;
  display: flex;
  flex-direction: column;
}

.feat-img-box {
  position: relative;
  width: 100%;
  height: 110px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 12px;
}

.feat-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feat-badge-icon {
  position: absolute;
  bottom: 8px;
  left: 8px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--color-blue-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 112, 255, 0.5);
}

.feat-title {
  font-size: 12px;
  font-weight: 900;
  color: #FFFFFF;
  letter-spacing: 0.3px;
  margin-bottom: 4px;
}

.feat-desc {
  font-family: var(--font-secondary);
  font-size: 10px;
  line-height: 1.4;
  color: #8A99AD;
}

/* BOTTOM STATS BAR */
.about-stats-bar {
  background: linear-gradient(90deg, rgba(8, 14, 30, 0.8) 0%, rgba(4, 8, 18, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stat-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 12px;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-text {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-size: 20px;
  font-weight: 900;
  color: #FFFFFF;
  letter-spacing: 0.5px;
  line-height: 1.1;
}

.stat-main {
  font-size: 13px;
  font-weight: 900;
  color: #FFFFFF;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.stat-label {
  font-size: 10px;
  font-weight: 700;
  color: #64748B;
  letter-spacing: 0.3px;
  margin-top: 2px;
}


/* ============================================================
   SECTION 06 — ONDE COMPRAR
   ============================================================ */

.onde-comprar-section {
  background: #050811;
  padding: 80px 0 0 0;
  position: relative;
  overflow: hidden;
}

.onde-comprar-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 10%, rgba(0,112,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.onde-comprar-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}

/* SECTION HEADER */
.onde-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 42px;
  font-weight: 900;
  color: #FFFFFF;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 12px 0;
}

.onde-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #94A3B8;
  text-align: center;
  margin: 0 0 20px 0;
}

.section-title-line {
  width: 48px;
  height: 3px;
  background: #0070FF;
  margin: 0 auto 56px auto;
  border-radius: 2px;
}

/* MARKETPLACE GRID */
.marketplace-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 0;
}

/* BASE CARD */
.marketplace-card {
  background: #0B1120;
  border-radius: 16px;
  padding: 28px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.marketplace-card:hover {
  transform: translateY(-6px);
}

/* ML CARD */
.ml-card {
  border: 1.5px solid rgba(255, 230, 0, 0.35);
  box-shadow: 0 0 40px rgba(255, 230, 0, 0.06);
}

.ml-card:hover {
  box-shadow: 0 12px 60px rgba(255, 230, 0, 0.15), 0 0 0 1px rgba(255,230,0,0.5);
  border-color: rgba(255, 230, 0, 0.6);
}

/* SHOPEE CARD */
.shopee-card {
  border: 1.5px solid rgba(238, 77, 45, 0.35);
  box-shadow: 0 0 40px rgba(238, 77, 45, 0.06);
}

.shopee-card:hover {
  box-shadow: 0 12px 60px rgba(238, 77, 45, 0.15), 0 0 0 1px rgba(238,77,45,0.5);
  border-color: rgba(238, 77, 45, 0.6);
}

/* WA CARD */
.wa-card {
  border: 1.5px solid rgba(37, 211, 102, 0.35);
  box-shadow: 0 0 40px rgba(37, 211, 102, 0.06);
}

.wa-card:hover {
  box-shadow: 0 12px 60px rgba(37, 211, 102, 0.15), 0 0 0 1px rgba(37,211,102,0.5);
  border-color: rgba(37, 211, 102, 0.6);
}

/* CARD HEADER LOGO ROW */
.mkt-card-header {
  margin-bottom: 16px;
}

.mkt-logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mkt-logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ml-icon-bg { background: transparent; }
.shopee-icon-bg { background: #EE4D2D; }
.wa-icon-bg { background: #25D366; }

/* PHONE MOCKUP / BANNER IMAGE AREA */
.mkt-phone-area {
  width: 100%;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #04070F;
}

.mkt-phone-img {
  width: 100%;
  height: auto;
  max-height: 220px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.marketplace-card:hover .mkt-phone-img {
  transform: scale(1.03);
}

.mkt-brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.ml-brand .mkt-brand-line1,
.ml-brand .mkt-brand-line2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #FFFFFF;
  text-transform: lowercase;
}

.shopee-brand-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #FFFFFF;
}

.wa-brand-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
}

/* PHONE MOCKUP */
.mkt-phone-area {
  width: 100%;
  height: 190px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
}

.mkt-phone-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* CTA TEXT */
.mkt-cta-text {
  margin-bottom: 16px;
}

.mkt-cta-headline {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: #FFFFFF;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.1;
}

.mkt-cta-brand {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
  margin: 0 0 10px 0;
  line-height: 1.1;
}

.ml-brand-color { color: #FFE600; }
.shopee-brand-color { color: #FF6B35; }
.wa-brand-color { color: #25D366; }

.mkt-cta-desc {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #94A3B8;
  line-height: 1.6;
  margin: 0;
}

/* FEATURES LIST */
.mkt-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.mkt-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.mkt-feat-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.ml-feat-icon { background: rgba(255, 230, 0, 0.12); }
.shopee-feat-icon { background: rgba(255, 107, 53, 0.12); }
.wa-feat-icon { background: rgba(37, 211, 102, 0.12); }

.feat-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
}

.feat-sub {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  color: #64748B;
  line-height: 1.3;
  margin-top: 1px;
}

/* CTA BUTTONS */
.mkt-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 13px 18px;
  border-radius: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  cursor: pointer;
  margin-top: auto;
}

.mkt-btn-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  object-fit: contain;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
}

.mkt-btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}

.mkt-btn-text .btn-sub {
  font-size: 9px;
  font-weight: 600;
  opacity: 0.75;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}

.mkt-btn-text .btn-main {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.3px;
}

.ml-btn {
  background: #FFE600;
  color: #000000;
  box-shadow: 0 4px 20px rgba(255, 230, 0, 0.3);
}

.ml-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 230, 0, 0.5);
  filter: brightness(1.05);
}

.shopee-btn {
  background: #EE4D2D;
  color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(238, 77, 45, 0.3);
}

.shopee-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(238, 77, 45, 0.5);
  filter: brightness(1.1);
}

.wa-btn {
  background: #25D366;
  color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.wa-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
  filter: brightness(1.1);
}

/* TRUST BAR */
.trust-bar {
  display: flex;
  align-items: center;
  gap: 32px;
  background: #08101F;
  border-top: 1px solid rgba(0, 112, 255, 0.12);
  padding: 28px 40px;
  margin: 40px -40px 0 -40px;
}

.trust-main-item {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  min-width: 260px;
}

.trust-icon-big {
  flex-shrink: 0;
}

.trust-main-text {}

.trust-main-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 900;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 4px 0;
}

.trust-main-desc {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #64748B;
  margin: 0;
  line-height: 1.5;
  max-width: 200px;
}

.trust-divider {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.trust-badges-row {
  display: flex;
  gap: 32px;
  flex: 1;
  justify-content: space-around;
}

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

.trust-badge-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-badge-text {
  display: flex;
  flex-direction: column;
}

.tb-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  line-height: 1.2;
}

.tb-sub {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: #64748B;
  margin-top: 2px;
  line-height: 1.3;
}

/* ==========================================================================
   KIT CONFIGURATOR (2-COLUMN INTERACTIVE BUILDER)
   ========================================================================== */
.kit-builder-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  margin-top: 40px;
  align-items: start;
}

.kit-products-panel {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.kit-cat-block {
  background: #0B1120;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px;
}

.kit-cat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.kit-cat-icon { font-size: 20px; }

.kit-cat-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0;
}

.kit-radio-group {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.kit-radio-card {
  background: #060B16;
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 14px 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.2s ease;
  position: relative;
}

.kit-radio-card:hover {
  border-color: rgba(0, 112, 255, 0.4);
  background: #0D1628;
}

.kit-radio-card.active {
  border-color: #0070FF;
  background: rgba(0, 112, 255, 0.1);
  box-shadow: 0 0 20px rgba(0, 112, 255, 0.2);
}

.kit-radio-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.kit-prod-thumb {
  width: 36px;
  height: 36px;
  object-fit: cover;
  border-radius: 6px;
  background: #0B1120;
}

.kit-radio-content strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #FFFFFF;
}

.kit-radio-content span {
  font-size: 10px;
  color: #64748B;
}

.kit-radio-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #0070FF;
  color: #FFF;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
}

.kit-radio-card.active .kit-radio-check { opacity: 1; }

.kit-items-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.kit-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #060B16;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 12px 16px;
  transition: border-color 0.2s, background 0.2s;
}

.kit-item.selected {
  border-color: rgba(0, 112, 255, 0.4);
  background: rgba(0, 112, 255, 0.05);
}

.kit-item-img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 8px;
  background: #0D1628;
  flex-shrink: 0;
}

.kit-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.kit-item-info strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #FFFFFF;
}

.kit-item-info span {
  font-size: 11px;
  color: #64748B;
}

.kit-item-price {
  color: #0070FF !important;
  font-weight: 700;
}

.kit-qty-ctrl {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #0B1120;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 4px 8px;
}

.qty-btn {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.qty-btn:hover { background: #0070FF; }

.qty-val {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: #FFFFFF;
  min-width: 20px;
  text-align: center;
}

/* SUMMARY PANEL */
.kit-summary-panel { position: relative; }

.kit-summary-sticky {
  position: sticky;
  top: 100px;
  background: #0B1120;
  border: 1.5px solid rgba(0, 112, 255, 0.3);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 112, 255, 0.1);
}

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

.kit-summary-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 0.5px;
  margin: 0;
}

.kit-item-count {
  background: rgba(0, 112, 255, 0.2);
  border: 1px solid rgba(0, 112, 255, 0.4);
  color: #0070FF;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 100px;
}

.kit-summary-tube {
  background: #060B16;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 10px 14px;
  margin-bottom: 16px;
  font-size: 12px;
  color: #94A3B8;
}

.kit-tube-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.kit-summary-items {
  max-height: 240px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  padding-right: 4px;
}

.kit-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 16px;
  color: #475569;
  font-size: 12px;
  text-align: center;
  gap: 8px;
}

.summary-line-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #CBD5E1;
  background: rgba(255,255,255,0.02);
  padding: 8px 10px;
  border-radius: 8px;
}

.sum-qty-badge {
  background: #0070FF;
  color: #FFF;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  flex-shrink: 0;
}

.sum-name-text {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sum-price-text {
  color: #94A3B8;
  font-size: 11px;
  flex-shrink: 0;
}

.kit-subtotal-row {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
  margin-bottom: 16px;
}

.kit-subtotal-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #94A3B8;
}

.kit-subtotal-line strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #0070FF;
}

.kit-subtotal-note {
  font-size: 10px;
  color: #475569;
  margin-top: 4px;
}

.kit-obs-block { margin-bottom: 20px; }

.kit-obs-label {
  display: block;
  font-size: 11px;
  color: #64748B;
  margin-bottom: 6px;
}

.kit-obs-input {
  width: 100%;
  background: #060B16;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 10px 12px;
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  resize: vertical;
  outline: none;
}

.kit-obs-input:focus { border-color: #0070FF; }

.kit-wa-send-btn {
  width: 100%;
  background: #25D366;
  border: none;
  border-radius: 12px;
  padding: 14px 20px;
  color: #FFFFFF;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
  transition: all 0.2s ease;
}

.kit-wa-send-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
  background: #22c55e;
}

.kit-wa-btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
  text-align: left;
}

.kit-wa-btn-text small {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.5px;
  opacity: 0.9;
}

.kit-wa-btn-text strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.5px;
}

.kit-wa-note {
  font-size: 10px;
  color: #475569;
  text-align: center;
  margin-top: 10px;
}

/* ==========================================================================
   SECTION 07: BLOG + FAQ
   ========================================================================== */
.blog-faq-section {
  position: relative;
  width: 100%;
  padding: 90px 0;
  background: #050811;
  background-image: radial-gradient(circle at 20% 50%, rgba(0, 112, 255, 0.06) 0%, transparent 60%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.blog-faq-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 60px;
  align-items: start;
}

.blog-title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 8px;
}

.blog-main-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 900;
  line-height: 1.15;
  color: #FFFFFF;
  letter-spacing: -0.5px;
  margin: 8px 0 0 0;
}

.blog-all-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 800;
  color: #94A3B8;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  padding: 8px 18px;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all 0.2s;
  flex-shrink: 0;
}

.blog-all-btn:hover {
  border-color: #0070FF;
  color: #FFFFFF;
  background: rgba(0, 112, 255, 0.1);
}

.blog-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #64748B;
  margin-bottom: 32px;
}

.blog-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.blog-card {
  background: #0B1120;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 112, 255, 0.4);
  box-shadow: 0 16px 40px rgba(0, 112, 255, 0.12);
}

.blog-card-img-link { display: block; overflow: hidden; }

.blog-card-img-box {
  width: 100%;
  height: 160px;
  overflow: hidden;
  background: #0D1628;
}

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

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

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

.blog-tag {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  margin-bottom: 10px;
  width: fit-content;
}

.blog-tag--dicas { background: rgba(0, 112, 255, 0.15); color: #0070FF; }
.blog-tag--tutoriais { background: rgba(37, 211, 102, 0.15); color: #25D366; }
.blog-tag--mercado { background: rgba(245, 158, 11, 0.15); color: #f59e0b; }

.blog-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 8px;
}

.blog-card-title a { color: #FFFFFF; text-decoration: none; transition: color 0.2s; }
.blog-card-title a:hover { color: #0070FF; }

.blog-card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #64748B;
  line-height: 1.5;
  margin-bottom: 16px;
  flex: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: #475569;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 12px;
}

.blog-meta-item { display: flex; align-items: center; gap: 4px; }

/* FAQ */
.faq-main-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 900;
  line-height: 1.15;
  color: #FFFFFF;
  margin: 8px 0 0 0;
}

.faq-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #64748B;
  margin-bottom: 32px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #0B1120;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item.open {
  border-color: rgba(0, 112, 255, 0.3);
  background: #0D1628;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
  color: #FFFFFF;
}

.faq-q-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.faq-icon-box {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(0, 112, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq-q-left span {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
}

.faq-toggle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #94A3B8;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq-item.open .faq-toggle {
  background: #0070FF;
  color: #FFFFFF;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 20px 0 66px;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding: 0 20px 20px 66px;
}

.faq-answer p {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #94A3B8;
  line-height: 1.6;
  margin: 0;
}

/* BOTTOM CTA BANNER */
.blog-cta-banner {
  width: 100%;
  max-width: 1440px;
  margin: 60px auto 0 auto;
  padding: 0 40px;
}

.blog-cta-inner {
  background: #0B1120;
  border: 1px solid rgba(0, 112, 255, 0.2);
  border-radius: 20px;
  padding: 36px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.blog-cta-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.blog-cta-icon-box {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(0, 112, 255, 0.1);
  border: 1px solid rgba(0, 112, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.blog-cta-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.2;
  margin: 0 0 6px 0;
}

.blog-cta-desc {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #94A3B8;
  margin: 0;
  line-height: 1.5;
}

.blog-cta-icons {
  display: flex;
  gap: 32px;
}

.blog-cta-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 800;
  color: #94A3B8;
  letter-spacing: 0.5px;
}

.bcf-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(0, 112, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-cta-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.blog-cta-product-img {
  width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-cta-wa-btn {
  background: #0070FF;
  border: none;
  border-radius: 12px;
  padding: 14px 24px;
  color: #FFFFFF;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 30px rgba(0, 112, 255, 0.3);
  transition: all 0.2s;
}

.blog-cta-wa-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 112, 255, 0.5);
  background: #0060E0;
}

/* ==========================================================================
   PRE-FOOTER CTA & STATS BAR & FULL FOOTER
   ========================================================================== */
.prefooter-cta {
  background: #07101F;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 80px 0;
}

.prefooter-inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 60px;
  align-items: center;
}

.prefooter-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.15;
  margin-bottom: 12px;
}

.prefooter-sub {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #94A3B8;
  line-height: 1.6;
  margin-bottom: 32px;
}

.prefooter-badges {
  display: flex;
  gap: 24px;
  margin-bottom: 36px;
}

.pf-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
}

.pf-badge strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: #FFFFFF;
}

.pf-badge span { color: #64748B; font-size: 11px; }

.prefooter-btns {
  display: flex;
  gap: 16px;
}

.pf-btn-primary {
  background: #0070FF;
  color: #FFFFFF;
  padding: 14px 24px;
  border-radius: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 30px rgba(0, 112, 255, 0.3);
  transition: all 0.2s;
}

.pf-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0, 112, 255, 0.5); }

.pf-btn-secondary {
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  padding: 14px 24px;
  border-radius: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s;
}

.pf-btn-secondary:hover { border-color: #0070FF; background: rgba(0,112,255,0.1); }

.prefooter-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* STATS BAR */
.footer-stats-bar {
  background: #050811;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 28px 0;
}

.footer-stats-inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fstat-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.fstat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0, 112, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fstat-text { display: flex; flex-direction: column; }

.fstat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: #FFFFFF;
}

.fstat-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.2;
}

.fstat-label {
  font-size: 11px;
  color: #64748B;
  margin-top: 2px;
}

.fstat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
}

/* FULL FOOTER */
.site-footer {
  background: #050811;
  padding: 70px 0 30px 0;
}

.footer-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-main {
  display: grid;
  grid-template-columns: 280px repeat(4, 1fr) 260px;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-logo-img { height: 48px; width: auto; margin-bottom: 16px; object-fit: contain; filter: drop-shadow(0 2px 8px rgba(0, 112, 255, 0.25)); }

.footer-brand-desc {
  font-size: 12px;
  color: #64748B;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-social { display: flex; gap: 10px; }

.footer-social-link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94A3B8;
  text-decoration: none;
  transition: all 0.2s;
}

.footer-social-link:hover {
  border-color: #0070FF;
  color: #FFFFFF;
  background: #0070FF;
}

.footer-nav-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-list a {
  font-size: 13px;
  color: #64748B;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav-list a:hover { color: #0070FF; }

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: #64748B;
  line-height: 1.5;
}

.footer-ver-mapa {
  color: #0070FF !important;
  font-weight: 700;
  font-size: 11px;
}

.footer-newsletter-desc {
  font-size: 12px;
  color: #64748B;
  line-height: 1.5;
  margin-bottom: 14px;
}

.footer-nl-input-row {
  display: flex;
  background: #0B1120;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 10px;
}

.footer-nl-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 10px 14px;
  color: #FFFFFF;
  font-size: 12px;
  outline: none;
}

.footer-nl-btn {
  background: #0070FF;
  border: none;
  padding: 0 16px;
  color: #FFFFFF;
  cursor: pointer;
  transition: background 0.2s;
}

.footer-nl-btn:hover { background: #0060E0; }

.footer-nl-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 10px;
  color: #475569;
  cursor: pointer;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin-bottom: 30px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: #475569;
}

.footer-payment-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.payment-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #0B1120;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 10px;
  color: #94A3B8;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
}

.pay-card {
  padding: 6px 12px;
  background: rgba(255,255,255,0.04);
}

.pay-visa { color: #FFF; font-weight: 900; font-size: 13px; letter-spacing: 0.5px; }
.pay-amex { color: #FFF; font-size: 7px; font-weight: 900; text-align: center; }
.pay-elo { color: #FFF; font-size: 13px; font-weight: 900; }
.pay-pix { display: flex; align-items: center; gap: 4px; color: #32BCAD; font-weight: 800; }

/* ==========================================================================
   SECTION 04: MONTE SEU KIT (STICKY SUMMARY PANEL)
   ========================================================================== */
.kit-builder-layout {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

/* ==========================================================================
   RESPONSIVE — MOBILE BREAKPOINTS COMPLETOS
   ========================================================================== */

@media (max-width: 1024px) {
  .kit-builder-layout { flex-direction: column; }
  .kit-summary-panel { width: 100% !important; }

  /* Produto destaque: tabs empilhadas */
  .products-tabs-col {
    flex-wrap: wrap;
    gap: 8px;
  }
  .product-tabs {
    flex-wrap: wrap;
    gap: 8px;
  }

  /* Grid main */
  .products-main-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Marketplace */
  .marketplace-grid {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 768px) {
  /* Header */
  .header-inner { padding: 0 16px; }

  /* Hero */
  .hero-container { padding: 0 16px; }
  
  
  .hero-btns { flex-direction: column; gap: 10px; }
  .hero-badge-row { flex-wrap: wrap; gap: 8px; }

  /* Carrossel — tabs */
  .product-tabs {
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
  }
  .tab-btn {
    font-size: 10px;
    padding: 8px 14px;
    gap: 5px;
  }
  .tab-icon { font-size: 12px; }

  /* Carousel cards */
  .product-card {
    min-width: 240px !important;
    max-width: 260px !important;
  }
  .product-img-box {
    height: 160px !important;
  }
  .carousel-arrow {
    width: 36px !important;
    height: 36px !important;
  }

  /* Features / Diferenciais */
  .features-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  /* Kit Builder */
  .kit-tube-grid {
    grid-template-columns: 1fr 1fr !important;
  }
  .kit-items-list {
    grid-template-columns: 1fr !important;
  }
  .kit-section-header { flex-direction: column; gap: 8px; }

  /* Onde Comprar */
  .marketplace-grid {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .marketplace-card { max-width: 100% !important; }

  /* Stats / Numbers */
  .stats-row {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }
}

@media (max-width: 480px) {
  /* Hero menor */
  

  /* Tabs de produto — 1 por linha */
  .product-tabs {
    flex-direction: column;
    align-items: stretch;
  }
  .tab-btn {
    width: 100%;
    justify-content: center;
  }

  /* Product cards menores */
  .product-card {
    min-width: 200px !important;
    max-width: 220px !important;
  }

  /* Kit tube grid */
  .kit-tube-grid {
    grid-template-columns: 1fr !important;
  }

  /* Catálogo inline (catalogo.html) */
  .catalog-filters {
    flex-direction: column;
    align-items: stretch;
  }
  .filter-btn {
    width: 100%;
    text-align: center;
  }
  .catalog-grid {
    grid-template-columns: 1fr !important;
  }

  /* FAQ */
  .faq-question { font-size: 13px !important; }
  .faq-answer-text { font-size: 13px !important; }

  /* Botões gerais */
  .hero-btns a, .hero-btns button {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}


.kit-summary-sticky {
  position: sticky;
  top: 104px;
  z-index: 100;
  background: rgba(10, 16, 30, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 112, 255, 0.25);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 112, 255, 0.15);
  transition: all 0.3s ease;
}

.kit-summary-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 16px;
}

.kit-summary-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 900;
  color: #FFFFFF;
  letter-spacing: 0.5px;
}

.kit-item-count {
  font-size: 12px;
  font-weight: 700;
  color: #0070FF;
  background: rgba(0, 112, 255, 0.15);
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(0, 112, 255, 0.3);
}

.kit-summary-tube {
  background: rgba(0, 112, 255, 0.08);
  border: 1px stroke rgba(0, 112, 255, 0.2);
  border-radius: 10px;
  padding: 10px 14px;
  margin-bottom: 16px;
  font-size: 13px;
  color: #CBD5E1;
}

.kit-summary-tube strong {
  color: #FFFFFF;
}

.kit-summary-footer {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.kit-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: #94A3B8;
  margin-bottom: 16px;
}

.kit-total-price {
  font-size: 22px;
  font-weight: 900;
  color: #0070FF;
}

.kit-wa-submit-btn {
  width: 100%;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 800;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.25s ease;
  text-decoration: none;
  text-transform: uppercase;
}

.kit-wa-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.5);
  filter: brightness(1.08);
}

/* ==========================================================================
   SECTION 06: ONDE COMPRAR / MARKETPLACE CARDS
   ========================================================================== */
.onde-comprar-section {
  padding: 80px 0;
  background: #04070F;
}
.onde-comprar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.marketplace-grid {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 48px;
}
.marketplace-card {
  flex: 1;
  max-width: 370px;
  background: rgba(10, 16, 30, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.marketplace-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 112, 255, 0.4);
}


