/* ================= SYSTEM DESIGN & CSS VARIABLES ================= */
:root {
  --bg-dark: #ffffff;
  --bg-deep: #f2faf8;
  --bg-card: #ffffff;
  --bg-card-hover: #f7fdfb;
  --text-primary: #11151d;
  --text-secondary: #4a5568;
  --text-muted: #8e9cae;
  --accent-blue: #48cae4;
  --accent-blue-hover: #0096c7;
  --accent-green: #73e6cf;
  --accent-green-hover: #52cbb3;
  --accent-gold: #c5a059;
  --accent-gold-hover: #a38141;
  --accent-red: #ff453a;
  --border-color: #e2e8f0;
  --font-family: 'Outfit', sans-serif;
  --max-width: 1100px;
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(0, 0, 0, 0.05);
}

/* Reset Geral */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-family);
  -webkit-font-smoothing: antialiased;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-dark);
}

body {
  background-color: var(--bg-dark);
  color: var(--text-primary);
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: #333333;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #555555;
}

/* ================= MENU INTELIGENTE (NAVBAR) ================= */
.navbar-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition-smooth);
}

.navbar-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 48px;
}

.nav-logo {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: -0.5px;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-item {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.2px;
  transition: color 0.2s ease;
}

.nav-item:hover {
  color: var(--text-primary);
}

/* Dropdown Dinâmico das Categorias & Mega Menu */
.nav-dropdown {
  position: static; /* Necessário para o Mega Menu ocupar largura total */
}

.dropdown-trigger {
  cursor: pointer;
}

/* Mega Menu Content (Largura Total) */
.mega-menu-content {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100vw;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-bottom: 1px solid var(--border-color);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  transition: opacity 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), 
              transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), 
              visibility 0.35s;
  z-index: 90;
}

.mega-dropdown:hover .mega-menu-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-menu-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

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

.mega-column h4 {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  font-weight: 600;
}

.mega-column a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
  line-height: 1.4;
}

.mega-column a:hover {
  color: var(--text-primary);
}

.mega-featured-card {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  transition: var(--transition-smooth);
}

.mega-featured-card:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.mega-featured-card h5 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

.mega-featured-card p {
  font-size: 12px;
  color: var(--text-secondary);
  line-gradient: 1.4;
}

.mega-featured-card .badge {
  font-size: 9px;
  padding: 2px 6px;
}

@media (max-width: 768px) {
  .mega-menu-content {
    display: none !important; /* Esconde o mega menu no mobile */
  }
}

.nav-cta {
  display: block;
}

.btn-nav-primary {
  background-color: var(--accent-blue);
  color: #ffffff;
  text-decoration: none;
  font-size: 11px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px;
  transition: background-color 0.2s ease;
}

.btn-nav-primary:hover {
  background-color: var(--accent-blue-hover);
}

/* Menu Mobile Trigger */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 18px;
  height: 12px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-btn span {
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  transition: transform 0.3s ease;
}

/* ================= ELEMENTO PROJETADO NO FUNDO (HERO BG) ================= */
.hero-bg-projected {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  filter: blur(60px) brightness(1.05);
  opacity: 0.15;
  transition: background-image 1.2s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 0;
  pointer-events: none;
}

.hero-bg-projected::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(115, 230, 207, 0.5) 50%, rgba(72, 202, 228, 0.5) 100%);
}

/* ================= NOVO HERO COM CARROSSEL DE PRODUTOS ================= */
.hero-section-new {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px 24px;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff 0%, #f0faf8 50%, #f4fbfd 100%);
  z-index: 10;
}

.hero-container-new {
  max-width: var(--max-width);
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 10;
}

.hero-left-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-title-new {
  font-size: 54px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.5px;
  background: linear-gradient(135deg, var(--text-primary) 30%, var(--accent-gold) 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle-new {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 550px;
}

.hero-actions-new {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}

.btn-hero-primary-new {
  background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-blue) 100%);
  color: #ffffff;
  border: none;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(115, 230, 207, 0.3);
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-hero-primary-new:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(115, 230, 207, 0.5);
  opacity: 0.95;
}

.btn-hero-secondary-new {
  background: #ffffff;
  color: var(--accent-gold);
  border: 2px solid var(--accent-gold);
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-hero-secondary-new:hover {
  background: var(--accent-gold);
  color: #ffffff;
  transform: translateY(-2px);
}

.hero-right-carousel {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
}

/* ================= 3D CARROSSEL DESIGN ================= */
.carousel-container-new {
  position: relative;
  width: 320px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
  perspective: 1000px;
  transform-style: preserve-3d;
}

.carousel-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 0, -200px) scale(0.8);
  transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), 
              opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1),
              z-index 0.8s;
  z-index: 1;
}

.carousel-slide img {
  max-height: 240px;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.06));
  transition: transform 0.4s ease;
}

.carousel-slide:hover img {
  transform: scale(1.05);
}

.carousel-slide-info {
  margin-top: 15px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.carousel-slide-info h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.carousel-slide-info p {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-gold);
}

/* Classes de Estado 3D do Carrossel */
.carousel-slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1) rotateY(0deg);
  z-index: 10;
}

.carousel-slide.active .carousel-slide-info {
  opacity: 1;
}

.carousel-slide.next {
  opacity: 0.6;
  pointer-events: auto;
  transform: translate3d(120px, 0, -120px) scale(0.85) rotateY(-15deg);
  z-index: 5;
}

.carousel-slide.prev {
  opacity: 0.6;
  pointer-events: auto;
  transform: translate3d(-120px, 0, -120px) scale(0.85) rotateY(15deg);
  z-index: 5;
}

/* Botões de Navegação do Carrossel */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  z-index: 20;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition-smooth);
}

.carousel-btn:hover {
  background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-blue) 100%);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(115, 230, 207, 0.3);
}

.prev-btn {
  left: -22px;
}

.next-btn {
  right: -22px;
}

/* Seções estruturais de destaque por marca */
.scroll-section {
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 20;
  padding: 100px 24px;
}

.section-specs {
  background: linear-gradient(135deg, #ffffff 0%, #f0faf8 100%);
}

.section-camera {
  background: linear-gradient(135deg, #f0faf8 0%, #ecfafd 100%);
}

.section-bateria {
  background: linear-gradient(135deg, #ecfafd 0%, #fcfaf3 100%);
}

.featured-section-img {
  max-height: 400px;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 15px 35px rgba(0,0,0,0.06));
  transition: transform 0.5s ease;
}

.featured-section-img:hover {
  transform: scale(1.03);
}

.section-content {
  max-width: 800px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.hero-title {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -1.5px;
  background: linear-gradient(135deg, #ffffff 30%, #a1a1a6 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--text-secondary);
  font-weight: 400;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.btn-primary-hero {
  background-color: var(--text-primary);
  color: var(--bg-dark);
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  transition: opacity 0.2s ease;
}
.btn-primary-hero:hover { opacity: 0.9; }

.btn-secondary-hero {
  background-color: transparent;
  color: var(--accent-blue);
  border: 1px solid var(--accent-blue);
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s ease;
}
.btn-secondary-hero:hover {
  background-color: var(--accent-blue);
  color: #fff;
}

/* Split Layouts (50% / 50%) */
.section-content-split {
  max-width: var(--max-width);
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.content-left, .content-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section-tag {
  color: var(--accent-blue);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
}

.scroll-section h2 {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-gradient: linear-gradient(to right, #ffffff, #a1a1a6);
}

.scroll-section p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.6;
}

.specs-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}

.specs-feature-list li {
  font-size: 15px;
  color: var(--text-primary);
  font-weight: 500;
}

/* Câmera Stat block */
.camera-stats {
  display: flex;
  gap: 30px;
  margin-top: 15px;
}

.c-stat h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-primary);
}

.c-stat p {
  font-size: 12px;
  color: var(--text-muted);
}

/* Bateria bar block */
.battery-life-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 20px;
  border-radius: 12px;
  margin-top: 15px;
}

.battery-fill-bar {
  height: 8px;
  background: linear-gradient(90deg, var(--accent-green), #248a3d);
  border-radius: 4px;
  width: 85%;
  margin-bottom: 12px;
  position: relative;
}

.battery-fill-bar::after {
  content: '';
  position: absolute;
  right: -5px;
  top: -2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 0 10px var(--accent-green);
}

/* Responsividade das Seções de Scroll */
@media (max-width: 768px) {
  .section-content-split {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .section-content-split.reverse {
    display: flex;
    flex-direction: column-reverse;
  }
  .content-left {
    height: 30vh; /* Espaço para o celular aparecer no meio em mobile */
  }
  .camera-stats {
    justify-content: center;
  }
  #floating-phone {
    height: 35vh; /* Celular menor em mobile */
  }
  .scroll-section h2 {
    font-size: 28px;
  }
}

/* ================= VITRINE / CATÁLOGO ================= */
.vitrine-section {
  background-color: var(--bg-deep);
  border-top: 1px solid var(--border-color);
  padding: 80px 24px;
  position: relative;
  z-index: 30; /* Fica acima do celular fixado */
}

.vitrine-container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.vitrine-header {
  text-align: center;
  margin-bottom: 50px;
}

.vitrine-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.vitrine-header p {
  color: var(--text-secondary);
}

.vitrine-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 20px;
  flex-wrap: wrap;
}

.vitrine-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-btn {
  background-color: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn:hover {
  color: var(--text-primary);
  border-color: var(--text-secondary);
}

.filter-btn.active {
  background-color: var(--text-primary);
  color: var(--bg-dark);
  border-color: var(--text-primary);
}

.vitrine-search input {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 8px 20px;
  font-size: 13px;
  color: var(--text-primary);
  outline: none;
  min-width: 250px;
}

.vitrine-search input:focus {
  border-color: var(--accent-blue);
}

/* Sub-filtros de Marcas na Vitrine */
.vitrine-brands-wrapper {
  margin-top: -10px;
  margin-bottom: 35px;
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--border-color);
  padding: 16px 20px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  animation: slideDownBrands 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

.brands-label {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent-gold);
  letter-spacing: 0.8px;
}

.vitrine-brands-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.brand-btn {
  background-color: var(--bg-card);
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.brand-btn:hover {
  color: var(--accent-blue-hover);
  border-color: var(--accent-blue);
  transform: translateY(-1px);
}

.brand-btn.active {
  background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-blue) 100%);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(72, 202, 228, 0.25);
}

/* Grid de Produtos */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

.product-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: var(--transition-smooth);
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-5px);
  background-color: var(--bg-card-hover);
  border-color: rgba(255, 255, 255, 0.15);
}

.card-img-wrapper {
  height: 180px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

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

.card-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.card-tag-status {
  align-self: flex-start;
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 2px 8px;
  border-radius: 10px;
}

.tag-available { background-color: rgba(48, 209, 88, 0.1); color: var(--accent-green); }
.tag-limited { background-color: rgba(245, 158, 11, 0.1); color: #f59e0b; }
.tag-empty { background-color: rgba(255, 69, 58, 0.1); color: var(--accent-red); }

.card-info h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}

.card-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 4px;
}

.card-category {
  font-size: 11px;
  color: var(--text-secondary);
  text-transform: uppercase;
  font-weight: 500;
}

/* ================= GALERIA DE VÍDEOS ================= */
.videos-section {
  background-color: var(--bg-dark);
  padding: 80px 24px;
  position: relative;
  z-index: 30;
  border-top: 1px solid var(--border-color);
}

.videos-container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.videos-header {
  text-align: center;
  margin-bottom: 50px;
}

.videos-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.videos-header p {
  color: var(--text-secondary);
}

.videos-carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 15px 0;
}

.videos-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform;
}

.video-card {
  flex: 0 0 calc(33.333% - 16px);
  max-width: calc(33.333% - 16px);
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  position: relative;
  aspect-ratio: 16/9;
}

.videos-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  z-index: 15;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition-smooth);
}

.videos-carousel-btn:hover {
  background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-blue) 100%);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(115, 230, 207, 0.3);
}

.videos-carousel-btn.prev-btn {
  left: 5px;
}

.videos-carousel-btn.next-btn {
  right: 5px;
}

/* Responsividade do Carrossel de Vídeos */
@media (max-width: 992px) {
  .video-card {
    flex: 0 0 calc(50% - 12px);
    max-width: calc(50% - 12px);
  }
}

@media (max-width: 576px) {
  .video-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .videos-carousel-btn {
    width: 36px;
    height: 36px;
    font-size: 12px;
  }
}

.video-thumbnail-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.video-thumbnail-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.video-card:hover .video-thumbnail-wrapper img {
  transform: scale(1.05);
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background-color: rgba(37, 99, 235, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.video-play-btn::after {
  content: '';
  display: inline-block;
  border-style: solid;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent #ffffff;
  margin-left: 4px;
}

.video-card:hover .video-play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  background-color: var(--accent-blue);
}

/* ================= CAPTAÇÃO DE LEADS ================= */
.leads-section {
  background-color: var(--bg-deep);
  padding: 80px 24px;
  position: relative;
  z-index: 30;
  border-top: 1px solid var(--border-color);
}

.leads-container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.leads-card-wrapper {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(37, 99, 235, 0.05) 100%);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 768px) {
  .leads-card-wrapper {
    grid-template-columns: 1fr;
    padding: 30px;
    gap: 30px;
  }
}

.leads-info h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.leads-info p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.leads-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.leads-bullets li {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
}

.leads-form-box {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 30px;
}

.leads-form-box h3 {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 600;
}

.form-group-public {
  margin-bottom: 16px;
}

.form-group-public label {
  display: block;
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 6px;
  font-weight: 500;
}

.form-group-public input,
.form-group-public select {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 10px 14px;
  color: var(--text-primary);
  font-size: 14px;
  outline: none;
}

.form-group-public input:focus,
.form-group-public select:focus {
  border-color: var(--accent-blue);
}

.btn-submit-public {
  width: 100%;
  background-color: var(--text-primary);
  color: var(--bg-dark);
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s ease;
  margin-top: 10px;
}

.btn-submit-public:hover {
  opacity: 0.9;
}

.lead-success-msg {
  background-color: rgba(48, 209, 88, 0.1);
  border: 1px solid rgba(48, 209, 88, 0.2);
  color: var(--accent-green);
  padding: 12px;
  border-radius: 8px;
  font-size: 13px;
  text-align: center;
  margin-top: 15px;
}

/* ================= MAPA & CONTATO ================= */
.map-section {
  background-color: var(--bg-dark);
  padding: 80px 24px;
  position: relative;
  z-index: 30;
  border-top: 1px solid var(--border-color);
}

.map-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 768px) {
  .map-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.map-details h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.map-details p {
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  font-size: 20px;
  width: 40px;
  height: 40px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-item h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.contact-item p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.4;
  margin-bottom: 0;
}

.map-iframe-container {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  height: 350px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.map-iframe-container iframe {
  width: 100%;
  height: 100%;
}

/* ================= MODAL INTERATIVO DO PRODUTO ================= */
.modal-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  width: 100%;
  max-width: 800px;
  padding: 40px;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  animation: modalIn 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

@keyframes modalIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 32px;
  cursor: pointer;
  transition: color 0.2s ease;
  line-height: 1;
}

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

.modal-content-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 768px) {
  .modal-content-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .modal-card {
    padding: 24px;
    height: 90vh;
    overflow-y: auto;
  }
}

.modal-media {
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 300px;
}

.modal-media img {
  max-height: 300px;
  width: auto;
  object-fit: contain;
}

.modal-media iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 12px;
  border: none;
}

.modal-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal-details h2 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.modal-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
}

.modal-description p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.btn-modal-buy {
  background-color: var(--accent-blue);
  color: #fff;
  border: none;
  padding: 14px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background-color 0.2s ease;
}

.btn-modal-buy:hover {
  background-color: var(--accent-blue-hover);
}

/* ================= FOOTER ================= */
.footer-wrapper {
  background-color: var(--bg-dark);
  padding: 60px 24px 30px 24px;
  border-top: 1px solid var(--border-color);
  position: relative;
  z-index: 30;
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
}

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

.footer-col h3 {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 12px;
  transition: color 0.2s ease;
}

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

.footer-text-brand {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 11px;
  color: var(--text-muted);
}

.footer-legal-links {
  display: flex;
  gap: 20px;
}

.footer-legal-links a {
  color: var(--text-muted);
  text-decoration: none;
}
.footer-legal-links a:hover {
  color: var(--text-primary);
}

@media (max-width: 768px) {
  .footer-legal {
    flex-direction: column;
    text-align: center;
  }
}

/* ================= PÁGINA DEDICADA DE PRODUTO ================= */
.product-subnav {
  position: absolute;
  top: 48px;
  left: 0;
  width: 100%;
  height: 48px;
  background-color: var(--glass-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--border-color);
  z-index: 80;
  transition: all 0.3s ease;
}

.product-subnav.sticky {
  position: fixed;
  top: 48px; /* Fixa logo abaixo da navbar wrapper */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  animation: slideDownSubnav 0.3s ease-out;
}

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

.subnav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#subnav-product-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.subnav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.subnav-price {
  font-size: 13px;
  color: var(--text-secondary);
}

.btn-subnav-buy {
  background-color: var(--accent-blue);
  color: #fff;
  border: none;
  font-size: 11px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.btn-subnav-buy:hover {
  background-color: var(--accent-blue-hover);
}

/* Page Main Structure */
.product-page-main {
  padding-top: 96px; /* 48px navbar + 48px subnav */
  background-color: var(--bg-dark);
}

/* Hero Showcase */
.product-showcase-section {
  padding: 80px 24px 60px 24px;
  background-color: var(--bg-deep);
  border-bottom: 1px solid var(--border-color);
}

.showcase-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.product-title-large {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -1.5px;
  background: linear-gradient(135deg, #ffffff 40%, #8e8e93 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.product-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}

.product-showcase-media {
  margin-top: 40px;
  max-width: 600px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img-large {
  max-height: 450px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(0,0,0,0.5));
}

/* Ficha Técnica & Specs */
.product-specs-section {
  padding: 80px 24px;
  border-bottom: 1px solid var(--border-color);
}

.specs-grid-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
}

@media (max-width: 768px) {
  .specs-grid-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .product-title-large {
    font-size: 32px;
  }
}

.specs-left-desc h3,
.specs-right-table h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 12px;
}

.product-full-desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
  text-align: justify;
}

/* Specs Table */
.specs-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table td {
  padding: 14px 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 14px;
}

.specs-table td:first-child {
  font-weight: 600;
  color: var(--text-secondary);
  width: 40%;
}

.specs-table td:last-child {
  color: var(--text-primary);
  font-weight: 500;
}

/* Video Section */
.product-video-section {
  padding: 80px 24px;
  background-color: var(--bg-deep);
  border-bottom: 1px solid var(--border-color);
}

.video-section-container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.video-header-center {
  text-align: center;
  margin-bottom: 40px;
}

.video-header-center h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.video-iframe-container {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  aspect-ratio: 16/9;
}

.video-iframe-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}
