/* ==========================================================================
   DESIGN SYSTEM & VARIABLES - BAÚ SIDER
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  /* Colors */
  --primary: #0066ff;
  --primary-hover: #0052cc;
  --primary-rgb: 0, 102, 255;
  
  --dark-bg: #0d0f12;
  --dark-surface: #161a22;
  --dark-border: #222b3c;
  
  --light-bg: #f8f9fa;
  --light-surface: #ffffff;
  --light-border: #e9ecef;
  
  --text-dark: #0f172a;
  --text-muted-dark: #475569;
  --text-light: #f8fafc;
  --text-muted-light: #94a3b8;
  
  --whatsapp: #25d366;
  --whatsapp-hover: #20ba5a;
  
  /* Fonts */
  --font-title: 'Outfit', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Layout */
  --header-height: 80px;
  --container-width: 1200px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
  --shadow-primary: 0 8px 20px rgba(0, 102, 255, 0.25);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}

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

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--light-bg);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 700;
  line-height: 1.25;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  transition: var(--transition-fast);
}

/* ==========================================================================
   COMMON COMPONENTS & LAYOUT
   ========================================================================== */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section-dark {
  background-color: var(--dark-bg);
  color: var(--text-light);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px auto;
}

.section-header h2 {
  font-size: 2.25rem;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--primary);
  border-radius: 2px;
}

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

.section-dark .section-header p {
  color: var(--text-muted-light);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-normal);
}

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

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 102, 255, 0.35);
}

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

.btn-whatsapp:hover {
  background-color: var(--whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
}

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

.btn-outline-white {
  border: 2px solid white;
  color: white;
}

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

/* ==========================================================================
   TOP BAR & HEADER (NAVIGATION)
   ========================================================================== */
.top-bar {
  background-color: #0c1829; /* Azul escuro premium alinhado com a marca */
  color: #ffffff;
  font-size: 0.82rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 101;
  position: relative;
}

.top-bar .container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.top-bar-content {
  width: 100%;
  text-align: center;
}

.top-bar-desktop {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.top-bar-mobile {
  display: none;
}

.top-bar .divider {
  color: rgba(255, 255, 255, 0.2);
  margin: 0 4px;
}

.top-bar a {
  color: #ffffff;
}

.top-bar a:hover {
  color: var(--primary);
}

.header {
  height: var(--header-height);
  background-color: rgba(13, 15, 18, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
  color: var(--text-light);
  transition: background-color var(--transition-normal), box-shadow var(--transition-normal);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

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

.logo-img {
  height: 70px;
  width: auto;
  transition: transform var(--transition-normal), filter var(--transition-normal);
  mix-blend-mode: screen; /* Torna o fundo preto do logo transparente */
  filter: drop-shadow(0 2px 8px rgba(0, 102, 255, 0.2)) contrast(1.08);
}

.logo-img:hover {
  transform: scale(1.03);
  filter: drop-shadow(0 4px 12px rgba(0, 102, 255, 0.35)) contrast(1.1);
}

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

.nav-list {
  display: flex;
  gap: 28px;
}

.nav-link {
  font-family: var(--font-title);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  position: relative;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.8);
}

.nav-link:hover, .nav-link.active {
  color: white;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition-normal);
}

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

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 28px;
  height: 28px;
  justify-content: center;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: white;
  transition: var(--transition-normal);
}

/* ==========================================================================
   HERO BANNER
   ========================================================================== */
.hero {
  position: relative;
  min-height: 440px;
  height: 55vh;
  max-height: 520px;
  display: flex;
  align-items: center;
  color: var(--text-light);
  overflow: hidden;
}

/* Background Animado e Vídeo */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(13, 15, 18, 0.55), rgba(13, 15, 18, 0.85));
  z-index: 2;
}

.hero-bg-img, .hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-bg-img {
  animation: kenBurns 20s ease-in-out infinite alternate;
  will-change: transform;
  object-position: center 80%; /* Alinhamento vertical da imagem fallback (focando a entrega da caixa embaixo) */
}

.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  will-change: opacity, transform;
  filter: brightness(0.55) saturate(0.75) blur(1.5px); /* Efeito cinema discreto e legível */
  object-position: center 80%; /* Alinhamento vertical do vídeo no desktop (focando a entrega da caixa embaixo) */
  transform: scale(1.04); /* Escala leve para ocultar faixas pretas nas bordas do vídeo original */
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
}

@keyframes kenBurns {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

/* Animações de Entrada (Hero Load) */
@keyframes fadeInUpHero {
  from {
    opacity: 0;
    transform: translate3d(0, 25px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.hero-content {
  max-width: 620px;
  z-index: 2;
  position: relative;
}

.hero-tag {
  display: inline-block;
  background-color: rgba(0, 102, 255, 0.15);
  border: 1px solid rgba(0, 102, 255, 0.3);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 30px;
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: fadeInUpHero 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-content h1 {
  font-size: 3.25rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 20px;
  line-height: 1.15;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
  animation: fadeInUpHero 0.8s cubic-bezier(0.16, 1, 0.3, 1) both 0.1s;
}

.hero-content h1 span {
  color: var(--primary);
}

.hero-content p {
  font-size: 1.15rem;
  color: var(--text-muted-light);
  margin-bottom: 35px;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.8);
  animation: fadeInUpHero 0.8s cubic-bezier(0.16, 1, 0.3, 1) both 0.2s;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUpHero 0.8s cubic-bezier(0.16, 1, 0.3, 1) both 0.3s;
}

/* ==========================================================================
   CATEGORIES SECTION
   ========================================================================== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.category-card {
  background-color: var(--light-surface);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-md);
  padding: 35px 28px;
  text-align: center;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 102, 255, 0.2);
}

.category-icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: rgba(0, 102, 255, 0.05);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 24px;
  transition: var(--transition-normal);
}

.category-card:hover .category-icon-wrapper {
  background-color: var(--primary);
  color: white;
}

.category-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.category-card p {
  font-size: 0.95rem;
  color: var(--text-muted-dark);
  margin-bottom: 20px;
}

.category-link {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.category-link i {
  transition: var(--transition-fast);
}

.category-card:hover .category-link i {
  transform: translateX(4px);
}

/* ==========================================================================
   PRODUCTS VITRINE (FEATURED PRODUCTS)
   ========================================================================== */
.products-filter {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 20px;
  border-radius: 30px;
  font-family: var(--font-title);
  font-weight: 500;
  font-size: 0.95rem;
  background-color: var(--light-surface);
  border: 1px solid var(--light-border);
  color: var(--text-muted-dark);
  box-shadow: var(--shadow-sm);
}

.filter-btn:hover, .filter-btn.active {
  background-color: var(--primary);
  border-color: var(--primary);
  color: white;
  box-shadow: var(--shadow-primary);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  min-height: 400px;
}

.product-card {
  background-color: var(--light-surface);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 102, 255, 0.2);
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: var(--primary);
  color: white;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-family: var(--font-title);
  font-weight: 600;
  border-radius: 4px;
  z-index: 2;
  text-transform: uppercase;
}

.product-image-container {
  position: relative;
  background-color: #f1f5f9;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 20px;
}

.product-image-container img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: var(--transition-normal);
}

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

.product-placeholder {
  font-size: 4rem;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

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

.product-title {
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.product-desc {
  font-size: 0.9rem;
  color: var(--text-muted-dark);
  margin-bottom: 16px;
  flex-grow: 1;
}

.product-specs {
  background-color: var(--light-bg);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  color: var(--text-muted-dark);
  border-left: 3px solid var(--primary);
  margin-bottom: 20px;
}

.product-action {
  width: 100%;
}

/* ==========================================================================
   SERVICES AREA
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: var(--dark-surface);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  padding: 40px 30px;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background-color: var(--primary);
  transition: var(--transition-normal);
}

.service-card:hover::before {
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.08);
}

.service-icon {
  font-size: 2.25rem;
  color: var(--primary);
  margin-bottom: 24px;
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 16px;
  color: var(--text-light);
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-muted-light);
  line-height: 1.6;
}

/* ==========================================================================
   ABOUT THE COMPANY (SOBRE)
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  font-size: 2.25rem;
  margin-bottom: 24px;
  position: relative;
}

.about-text h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background-color: var(--primary);
  border-radius: 2px;
}

.about-text p {
  font-size: 1.05rem;
  color: var(--text-muted-dark);
  margin-bottom: 20px;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 35px;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1.05rem;
}

.about-feature-item i {
  color: var(--primary);
  font-size: 1.25rem;
}

.about-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--light-border);
  background-color: #0d0f12;
  padding: 40px;
}

.about-image-wrapper img {
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.4));
}

.about-watermark-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 130%;
  height: 130%;
  opacity: 0.03;
  z-index: 1;
  pointer-events: none;
}

/* ==========================================================================
   TESTIMONIALS (DEPOIMENTOS)
   ========================================================================== */
.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background-color: var(--light-surface);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-md);
  padding: 35px;
  box-shadow: var(--shadow-sm);
  position: relative;
  display: flex;
  flex-direction: column;
}

.testimonial-stars {
  color: #ffb703;
  margin-bottom: 20px;
  font-size: 1rem;
}

.testimonial-quote {
  font-size: 1rem;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 24px;
  flex-grow: 1;
  position: relative;
}

.testimonial-quote::before {
  content: '“';
  font-size: 4rem;
  font-family: Georgia, serif;
  color: rgba(0, 102, 255, 0.1);
  position: absolute;
  top: -30px;
  left: -15px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--light-border);
  padding-top: 20px;
}

.author-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: rgba(0, 102, 255, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-weight: 700;
}

.author-info h4 {
  font-size: 1rem;
  color: var(--text-dark);
}

.author-info span {
  font-size: 0.8rem;
  color: var(--text-muted-dark);
}

/* ==========================================================================
   CONTACT AREA
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-card-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background-color: rgba(0, 102, 255, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-card-details h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.contact-card-details p, .contact-card-details a {
  font-size: 0.95rem;
  color: var(--text-muted-light);
}

.contact-card-details a:hover {
  color: var(--primary);
}

.contact-form-wrapper {
  background-color: var(--dark-surface);
  border: 1px solid var(--dark-border);
  padding: 40px;
  border-radius: var(--radius-md);
}

.contact-form-wrapper h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.contact-form-wrapper p {
  color: var(--text-muted-light);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 6px;
  font-family: var(--font-title);
  font-weight: 500;
  color: var(--text-muted-light);
}

.form-control {
  width: 100%;
  background-color: var(--dark-bg);
  border: 1px solid var(--dark-border);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  color: white;
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  width: 100%;
}

/* ==========================================================================
   FOOTER (RODAPÉ)
   ========================================================================== */
.footer {
  background-color: #050608;
  color: var(--text-muted-light);
  padding: 80px 0 30px 0;
  border-top: 1px solid var(--dark-border);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-brand .logo-img {
  margin-bottom: 20px;
  height: 52px;
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.footer-brand-socials {
  display: flex;
  gap: 14px;
}

.footer-brand-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--dark-surface);
  border: 1px solid var(--dark-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
}

.footer-brand-socials a:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: white;
}

.footer-column h3 {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 24px;
  position: relative;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--primary);
}

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

.footer-links a {
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--primary);
  transform: translateX(4px);
}

.footer-hours-list {
  font-size: 0.9rem;
}

.footer-hours-list p {
  margin-bottom: 12px;
}

.footer-hours-list i {
  color: var(--primary);
  margin-right: 8px;
}

.footer-bottom {
  border-top: 1px solid var(--dark-border);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.85rem;
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: var(--whatsapp);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  z-index: 99;
  transition: all var(--transition-normal);
}

.whatsapp-float:hover {
  background-color: var(--whatsapp-hover);
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-float .tooltip-text {
  visibility: hidden;
  width: 160px;
  background-color: rgba(13, 15, 18, 0.95);
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 8px 12px;
  position: absolute;
  z-index: 100;
  right: 75px;
  font-size: 0.85rem;
  font-family: var(--font-title);
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  border: 1px solid var(--dark-border);
}

.whatsapp-float .tooltip-text::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  margin-top: -6px;
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent transparent rgba(13, 15, 18, 0.95);
}

.whatsapp-float:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 2.75rem;
  }
  .about-grid {
    gap: 40px;
  }
}

@media (max-width: 991px) {
  .header .container {
    padding: 0 20px;
  }
  
  /* Menu responsivo hambúrguer */
  .menu-toggle {
    display: flex;
    z-index: 101;
  }
  
  .nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background-color: var(--dark-bg);
    border-left: 1px solid var(--dark-border);
    flex-direction: column;
    justify-content: flex-start;
    padding: 100px 30px 40px 30px;
    gap: 40px;
    transition: right var(--transition-normal);
    z-index: 100;
    box-shadow: var(--shadow-lg);
  }
  
  .nav.open {
    right: 0;
  }
  
  .nav-list {
    flex-direction: column;
    width: 100%;
    gap: 20px;
  }
  
  .nav-link {
    font-size: 1.1rem;
    display: block;
    width: 100%;
  }
  
  .nav-btn {
    width: 100%;
  }
  
  /* Animação hambúrguer quando aberto */
  .menu-toggle.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  /* Layout grids */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  
  .about-text h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .about-features {
    justify-content: center;
  }
  
  .about-visual {
    order: -1;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Barra de ajuda mobile deve ser oculta no desktop */
.mobile-help-bar {
  display: none;
}

@media (max-width: 768px) {
  .hero-bg-img {
    object-position: center 85% !important; /* Alinhamento da imagem no celular (focando a entrega da caixa embaixo) */
  }
  
  .hero-bg-video {
    object-position: center 85% !important; /* Alinhamento do vídeo no celular (focando a entrega da caixa embaixo) */
    transform: scale(1.06) !important; /* Zoom sutil no celular para enquadrar vendedora e cortar faixas pretas */
  }

  .top-bar {
    display: block !important;
    padding: 6px 0;
  }
  
  .top-bar-desktop {
    display: none !important;
  }
  
  .top-bar-mobile {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 500;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .hero {
    min-height: 480px;
    height: auto;
    padding: 80px 0;
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 2.25rem;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .section-header h2 {
    font-size: 1.85rem;
  }
  
  .whatsapp-float {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: fixed !important;
    bottom: 18px !important; /* Fallback para navegadores sem suporte a env() */
    bottom: calc(18px + env(safe-area-inset-bottom)) !important;
    right: 18px !important;
    width: 56px !important;
    height: 56px !important;
    font-size: 1.75rem !important;
    z-index: 99 !important; /* Fica acima do overlay (98), mas atrás do menu mobile (100) */
  }
  
  .whatsapp-float .tooltip-text {
    display: block !important; /* Mantém bloco contínuo para viabilizar a transição */
    opacity: 0 !important;
    visibility: hidden !important;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    transform: translateX(12px) !important;
  }
  
  .whatsapp-float.show-tooltip .tooltip-text {
    opacity: 1 !important;
    visibility: visible !important;
    right: 68px !important;
    white-space: nowrap !important;
    width: auto !important;
    max-width: 180px !important;
    transform: translateX(0) !important;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Barra de Ajuda Fixa no Rodapé (Exclusiva Mobile) */
  .mobile-help-bar {
    display: block;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    z-index: 97;
    background-color: rgba(12, 24, 41, 0.96); /* Azul escuro premium da marca com transparência */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 12px 16px;
    transform: translateY(150%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .mobile-help-bar.open {
    transform: translateY(0);
  }

  .mobile-help-bar-close {
    position: absolute;
    top: 4px;
    right: 8px;
    font-size: 1.25rem;
    color: var(--text-muted-light);
    cursor: pointer;
    line-height: 1;
    z-index: 2;
    padding: 8px;
  }

  .mobile-help-bar-close:hover {
    color: white;
  }

  .mobile-help-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .mobile-help-bar-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: left;
  }

  .mobile-help-bar-title {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.95rem;
    color: white;
  }

  .mobile-help-bar-subtitle {
    font-size: 0.75rem;
    color: var(--text-muted-light);
  }

  .mobile-help-bar-btn {
    padding: 8px 16px !important;
    font-size: 0.85rem !important;
    border-radius: var(--radius-sm) !important;
    font-weight: 600 !important;
    white-space: nowrap;
    flex-shrink: 0;
  }

  /* Ocultar botão clássico quando a barra de ajuda estiver ativa */
  .whatsapp-float.hide-mobile {
    transform: scale(0) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  /* Padding bottom no body quando a barra estiver ativa */
  body.help-bar-active {
    padding-bottom: 90px !important;
  }
}

@media (max-width: 480px) {
  .hero-actions .btn {
    width: 100%;
  }
  
  .about-features {
    grid-template-columns: 1fr;
  }
  
  .about-feature-item {
    justify-content: center;
  }
  
  .contact-form-wrapper {
    padding: 24px;
  }
}

/* ==========================================================================
   PREMIUM REFINEMENTS & MICRO-INTERACTIONS
   ========================================================================== */

/* Overlay mobile menu */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-normal), visibility var(--transition-normal);
  z-index: 98;
}

.nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* Travar scroll no body */
body.no-scroll {
  overflow: hidden;
}

/* Animação fade-in-up para os cards de produtos */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-card {
  animation: fadeInUp 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Micro-animação refinada para o tooltip do WhatsApp */
.whatsapp-float .tooltip-text {
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  transform: translateX(15px);
}

.whatsapp-float:hover .tooltip-text {
  transform: translateX(0);
}

/* Melhorias no posicionamento mobile do WhatsApp Float e Animação Pulse */
@keyframes pulseWhatsApp {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-float {
  animation: pulseWhatsApp 2s infinite;
}



/* ==========================================================================
   SCROLL REVEAL & STAGGER ANIMATIONS (GPU ACCELERATED)
   ========================================================================== */

.scroll-reveal {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.scroll-reveal.active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translate3d(0, 25px, 0);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-stagger.active > * {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.reveal-stagger.active > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.active > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger.active > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger.active > *:nth-child(4) { transition-delay: 0.35s; }
.reveal-stagger.active > *:nth-child(5) { transition-delay: 0.45s; }
.reveal-stagger.active > *:nth-child(6) { transition-delay: 0.55s; }

/* Animações de botões e hovers premium */
.btn {
  will-change: transform, box-shadow;
}

/* Garante que imagens de produto e cards escalem de forma otimizada */
.product-image-container img, .product-card {
  will-change: transform;
}

/* ==========================================================================
   EXIT POPUP (MODAL DE RECUPERAÇÃO DE LEADS)
   ========================================================================== */
.exit-popup-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(13, 15, 18, 0.8);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000; /* Z-index altíssimo para ficar sobre tudo, incluindo menus e overlays */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.exit-popup-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.exit-popup-box {
  background-color: var(--light-surface);
  border: 1px solid var(--light-border);
  padding: 45px 35px;
  border-radius: var(--radius-md);
  max-width: 460px;
  width: calc(100% - 40px);
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-top: 5px solid var(--primary);
}

.exit-popup-backdrop.open .exit-popup-box {
  transform: scale(1) translateY(0);
}

.exit-popup-close {
  position: absolute;
  top: 15px;
  right: 18px;
  font-size: 1.75rem;
  color: var(--text-muted-dark);
  cursor: pointer;
  line-height: 1;
}

.exit-popup-close:hover {
  color: var(--text-dark);
}

.exit-popup-icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background-color: rgba(37, 211, 102, 0.1);
  color: var(--whatsapp);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  margin-bottom: 20px;
}

.exit-popup-box h3 {
  font-size: 1.45rem;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.exit-popup-box p {
  font-size: 0.95rem;
  color: var(--text-muted-dark);
  margin-bottom: 30px;
  line-height: 1.5;
}

.exit-popup-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  width: 100%;
}

.exit-popup-actions .btn {
  width: 100%;
}

.exit-popup-link-close {
  font-size: 0.85rem;
  font-family: var(--font-title);
  font-weight: 500;
  color: var(--text-muted-dark);
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: none;
}

.exit-popup-link-close:hover {
  color: var(--text-dark);
}

@media (max-width: 480px) {
  .exit-popup-box {
    padding: 35px 24px;
  }
  .exit-popup-box h3 {
    font-size: 1.3rem;
  }
}

/* ==========================================================================
   WHATSAPP ROUTING MODAL
   ========================================================================== */
.whatsapp-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(13, 15, 18, 0.8);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001; /* Fica acima de tudo, inclusive do exit popup se necessário */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.whatsapp-modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.whatsapp-modal-box {
  background-color: var(--dark-surface);
  border: 1px solid var(--dark-border);
  padding: 45px 35px;
  border-radius: var(--radius-md);
  max-width: 460px;
  width: calc(100% - 40px);
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-top: 5px solid var(--whatsapp);
}

.whatsapp-modal-backdrop.open .whatsapp-modal-box {
  transform: scale(1) translateY(0);
}

.whatsapp-modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 1.75rem;
  color: var(--text-muted-light);
  cursor: pointer;
  line-height: 1;
  background: none;
  border: none;
  padding: 8px; /* Touch target improvement */
}

.whatsapp-modal-close:hover {
  color: white;
}

.whatsapp-modal-icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background-color: rgba(37, 211, 102, 0.1);
  color: var(--whatsapp);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  margin-bottom: 20px;
}

.whatsapp-modal-box h3 {
  font-size: 1.45rem;
  color: white;
  margin-bottom: 12px;
  line-height: 1.3;
}

.whatsapp-modal-box p {
  font-size: 0.95rem;
  color: var(--text-muted-light);
  margin-bottom: 30px;
  line-height: 1.5;
}

.whatsapp-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  width: 100%;
}

.whatsapp-modal-btn {
  width: 100%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 24px !important;
  font-size: 1.05rem !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 700 !important;
}

.whatsapp-modal-btn i {
  font-size: 1.25rem;
}

@media (max-width: 480px) {
  .whatsapp-modal-box {
    padding: 35px 24px;
  }
  .whatsapp-modal-box h3 {
    font-size: 1.3rem;
  }
}

/* ==========================================================================
   CATÁLOGO COMPLETO VIEW STYLES
   ========================================================================== */
.catalog-control-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 25px;
  background-color: #ffffff;
  border: 1px solid var(--light-border);
  border-top: 4px solid var(--primary); /* Linha metálica azul */
  padding: 20px 24px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

/* Informações do Cabeçalho do Catálogo */
.catalog-header-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 12px;
  margin-bottom: 4px;
  flex-wrap: wrap;
  gap: 10px;
}

.catalog-header-tagline {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.catalog-header-tagline i {
  color: var(--primary);
  font-size: 1.05rem;
}

.catalog-header-count {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.82rem;
  color: white;
  background: linear-gradient(135deg, var(--primary) 0%, #004ecc 100%);
  padding: 6px 14px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 8px rgba(0, 102, 255, 0.25);
}

.search-box-wrapper {
  position: relative;
  width: 100%;
}

.search-box-wrapper input {
  width: 100%;
  padding: 14px 18px 14px 50px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--light-border);
  background-color: var(--light-bg);
  font-family: inherit;
  font-size: 1rem;
  color: var(--text-dark);
  transition: all var(--transition-fast);
}

.search-box-wrapper input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.15);
}

.search-box-wrapper .search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: var(--text-muted-dark);
  pointer-events: none;
}

.catalog-filters-scroll-wrapper {
  position: relative;
  width: 100%;
  margin-top: 5px;
}

.catalog-filters-scroll-wrapper::before,
.catalog-filters-scroll-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 12px; /* Deixa a barra de rolagem livre para interação */
  width: 40px;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 10;
  opacity: 0;
}

.catalog-filters-scroll-wrapper::before {
  left: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0) 100%);
}

.catalog-filters-scroll-wrapper::after {
  right: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0) 100%);
}

.catalog-filters-scroll-wrapper.has-scroll-left::before {
  opacity: 1;
}

.catalog-filters-scroll-wrapper.has-scroll-right::after {
  opacity: 1;
}

.catalog-filters-scroll {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  scroll-behavior: smooth;
  padding-bottom: 12px; /* Espaço para exibir a barra de rolagem */
  /* Scrollbar fina para Firefox */
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 #f1f5f9;
}

/* Custom scrollbar para WebKit (Chrome, Safari, Edge, Mobile Chrome/Safari) */
.catalog-filters-scroll::-webkit-scrollbar {
  height: 6px; /* Altura fina */
  display: block !important;
}

.catalog-filters-scroll::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 10px;
}

.catalog-filters-scroll::-webkit-scrollbar-thumb {
  background-color: #cbd5e1;
  border-radius: 10px;
  border: 1px solid #f1f5f9;
  transition: background-color 0.2s ease;
}

.catalog-filters-scroll::-webkit-scrollbar-thumb:hover {
  background-color: var(--primary); /* Destaca com o azul da marca no hover */
}

.catalog-filters {
  display: flex;
  flex-wrap: nowrap; /* Não quebra linha de jeito nenhum */
  gap: 8px;
  padding-bottom: 4px;
}

.catalog-filter-btn {
  white-space: nowrap;
  flex-shrink: 0;
  margin: 0 !important; /* Reseta as margens inline do JS para usar o gap do flexbox */
  padding: 8px 16px !important;
  font-size: 0.85rem !important;
  font-family: var(--font-title) !important;
  font-weight: 600 !important;
  background-color: var(--light-surface) !important;
  border: 1px solid var(--light-border) !important;
  color: var(--text-muted-dark) !important;
  border-radius: 6px !important;
  box-shadow: none !important;
  transition: all var(--transition-fast) ease !important;
  cursor: pointer;
}

.catalog-filter-btn:hover {
  background-color: #f1f5f9 !important;
  color: var(--text-dark) !important;
  border-color: #cbd5e1 !important;
  transform: translateY(-1px);
}

.catalog-filter-btn.active {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important; /* Degradê escuro/metálico */
  color: white !important;
  border-color: #0f172a !important;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15) !important;
}

.catalog-pagination {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/* Redução de espaçamentos no catálogo */
#catalog-content .section {
  padding: 40px 0;
  background: radial-gradient(circle at 10% 20%, rgba(239, 246, 255, 0.3) 0%, rgba(244, 246, 248, 1) 90.1%); /* Fundo metálico sutil */
}

#catalog-content .section-header {
  margin-bottom: 24px !important;
}

/* Ajustes Premium nos Cards e Imagens */
#catalog-products-grid .product-card,
#products-grid-container .product-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  position: relative;
}

#catalog-products-grid .product-card:hover,
#products-grid-container .product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 102, 255, 0.08), 0 2px 8px rgba(0, 0, 0, 0.02);
  border-color: rgba(0, 102, 255, 0.25);
}

#catalog-products-grid .product-image-container,
#products-grid-container .product-image-container {
  position: relative;
  background: radial-gradient(circle, #ffffff 0%, #f1f5f9 100%); /* Efeito estúdio */
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 16px;
  border-bottom: 1px solid #f1f5f9;
}

#catalog-products-grid .product-image-container img,
#products-grid-container .product-image-container img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

#catalog-products-grid .product-card:hover .product-image-container img,
#products-grid-container .product-card:hover .product-image-container img {
  transform: scale(1.08);
}

.product-category {
  font-size: 0.72rem;
  text-transform: uppercase;
  color: var(--primary); /* Azul da marca para destaque comercial */
  font-weight: 700;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
  display: block;
}

.product-status-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #0f172a;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  padding: 5px 10px;
  border-radius: 4px;
  border: 1px solid #cbd5e1;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.product-status-tag i {
  color: var(--primary);
}

@media (max-width: 768px) {
  .catalog-control-panel {
    padding: 16px;
    gap: 16px;
  }
  
  .search-box-wrapper input {
    font-size: 0.95rem;
    padding: 12px 14px 12px 42px;
    background-color: var(--light-surface);
  }
  
  .search-box-wrapper .search-icon {
    left: 14px;
    font-size: 1rem;
  }
}

/* ==========================================================================
   TESTIMONIALS PREMIUM CAROUSEL
   ========================================================================== */
.testimonials-carousel-wrapper {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  padding: 10px;
}

.testimonials-carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.testimonial-slide {
  min-width: 100%;
  width: 100%;
  box-sizing: border-box;
  padding: 15px;
}

.testimonial-card-premium {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 102, 255, 0.04), 0 1px 3px rgba(0, 0, 0, 0.01);
  border-left: 5px solid var(--primary);
  position: relative;
}

.testimonial-card-premium::before {
  content: '“';
  font-size: 8rem;
  font-family: Georgia, serif;
  color: rgba(0, 102, 255, 0.06);
  position: absolute;
  top: -20px;
  right: 40px;
  line-height: 1;
  pointer-events: none;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.testimonial-photo-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--primary);
  box-shadow: 0 4px 10px rgba(0, 102, 255, 0.15);
  flex-shrink: 0;
}

.testimonial-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-stars-premium {
  color: #ffb703;
  font-size: 0.9rem;
}

.testimonial-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}

.testimonial-type {
  font-size: 0.85rem;
  color: var(--text-muted-dark);
}

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-dark);
  font-style: italic;
  margin: 0;
}

.testimonials-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 25px;
}

.carousel-control-btn {
  background-color: #ffffff;
  border: 1px solid #cbd5e1;
  color: var(--text-dark);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast) ease;
}

.carousel-control-btn:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: white;
  box-shadow: var(--shadow-primary);
  transform: scale(1.05);
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #cbd5e1;
  cursor: pointer;
  transition: all var(--transition-fast) ease;
}

.carousel-dot.active {
  background-color: var(--primary);
  width: 20px;
  border-radius: 10px;
}

/* ==========================================================================
   PRODUCT LIGHTBOX MODAL STYLES
   ========================================================================== */
.product-lightbox-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(13, 15, 18, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10002;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.product-lightbox-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.product-lightbox-box {
  background-color: #ffffff;
  border: 1px solid var(--light-border);
  border-radius: 16px;
  max-width: 850px;
  width: calc(100% - 32px);
  max-height: 90vh;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  border-top: 5px solid var(--primary);
  display: flex;
  flex-direction: column;
}

.product-lightbox-backdrop.open .product-lightbox-box {
  transform: scale(1);
}

.product-lightbox-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2rem;
  color: var(--text-muted-dark);
  cursor: pointer;
  line-height: 1;
  background: none;
  border: none;
  z-index: 10;
  padding: 8px;
  transition: color var(--transition-fast) ease;
}

.product-lightbox-close:hover {
  color: var(--text-dark);
}

.product-lightbox-content {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: stretch;
}

.product-lightbox-image-wrapper {
  background: radial-gradient(circle, #ffffff 0%, #f1f5f9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  height: 450px;
}

.product-lightbox-image-wrapper img {
  max-width: 90% !important;
  max-height: 75vh !important;
  object-fit: contain !important;
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.product-lightbox-info {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid #f1f5f9;
}

.product-lightbox-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.8px;
  margin-bottom: 10px;
  display: block;
}

.product-lightbox-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.product-lightbox-desc {
  font-size: 0.95rem;
  color: var(--text-muted-dark);
  margin-bottom: 24px;
  line-height: 1.6;
}

.product-lightbox-meta {
  margin-bottom: 30px;
}

.product-lightbox-action .btn-whatsapp {
  width: 100%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 24px !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  border-radius: 8px !important;
}

@media (max-width: 768px) {
  .product-lightbox-content {
    grid-template-columns: 1fr;
  }
  
  .product-lightbox-image-wrapper {
    height: 250px;
    padding: 24px;
  }
  
  .product-lightbox-info {
    padding: 24px;
    border-left: none;
    border-top: 1px solid #f1f5f9;
  }
  
  .product-lightbox-box {
    max-height: 95vh;
    overflow-y: auto;
  }
  
  .product-lightbox-close {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    top: 10px;
    right: 10px;
  }
  
  .testimonial-card-premium {
    padding: 24px;
  }
  
  .testimonial-header {
    gap: 14px;
  }
  
  .testimonial-photo-wrapper {
    width: 60px;
    height: 60px;
  }
  
  .testimonial-text {
    font-size: 0.95rem;
  }
}



