/* ==========================================================================
   Ideal Anilhas - Premium Landing Page Stylesheet
   Identity: Precision Engineering, Ornitology, High-Tech Glassmorphism
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Variables & Design Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand Palette */
  --color-primary: #0F2D3C;
  --color-primary-light: #1A3E50;
  --color-primary-dark: #071720;
  
  --color-cyan-glow: #38BDF8;
  --color-cyan-deep: #0284C7;
  --color-teal: #14B8A6;
  --color-gold: #F59E0B;
  
  /* WhatsApp Conversion Color */
  --color-whatsapp: #25D366;
  --color-whatsapp-hover: #1EBE5D;
  --color-whatsapp-glow: rgba(37, 211, 102, 0.35);

  /* Backgrounds & Neutrals */
  --bg-dark: #07131B;
  --bg-card: rgba(15, 45, 60, 0.7);
  --bg-card-border: rgba(56, 189, 248, 0.15);
  --bg-card-hover: rgba(26, 62, 80, 0.85);

  --text-primary: #F8FAFC;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;
  --text-dark: #0F172A;

  /* Typography */
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Shadows & Glass */
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 20px 35px -5px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 30px rgba(56, 189, 248, 0.2);
  --shadow-whatsapp: 0 10px 25px rgba(37, 211, 102, 0.4);

  --glass-blur: blur(16px);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;

  /* Container */
  --container-max: 1240px;
  --transition-normal: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   Reset & Global Styles
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

button, input, select {
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.text-center {
  text-align: center;
}

.hidden {
  display: none !important;
}

.w-full {
  width: 100%;
}

/* --------------------------------------------------------------------------
   Glassmorphism Utility Classes
   -------------------------------------------------------------------------- */
.glass-panel {
  background: var(--bg-card);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.glass-card {
  background: rgba(13, 35, 48, 0.65);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(56, 189, 248, 0.12);
  border-radius: var(--radius-md);
  transition: var(--transition-normal);
}

.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(56, 189, 248, 0.35);
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
}

/* --------------------------------------------------------------------------
   Badges & Micro UI
   -------------------------------------------------------------------------- */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: var(--radius-full);
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--color-cyan-glow);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.badge-tag {
  background: rgba(255, 255, 255, 0.1);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-whatsapp);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(37, 211, 102, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* --------------------------------------------------------------------------
   Buttons & CTAs
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition-normal);
  text-align: center;
  font-size: 0.95rem;
}

.btn-large {
  padding: 16px 30px;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

/* ==========================================================================
   WhatsApp Brand Emblem Badge & Button Variants
   ========================================================================== */

/* Official WhatsApp Circular Emblem Badge */
.wa-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #FFFFFF;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.22);
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.wa-badge svg {
  display: block;
}

.btn:hover .wa-badge,
.bubble-btn:hover .wa-badge {
  transform: scale(1.12) rotate(-6deg);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.32);
}

.btn-large .wa-badge {
  width: 32px;
  height: 32px;
}
.btn-large .wa-badge svg {
  width: 18px;
  height: 18px;
}

.btn-sm .wa-badge {
  width: 24px;
  height: 24px;
}
.btn-sm .wa-badge svg {
  width: 14px;
  height: 14px;
}

/* 1. Primary Emerald WhatsApp Button */
.btn-whatsapp {
  background: linear-gradient(135deg, #10B981 0%, #059669 50%, #047857 100%);
  color: #FFFFFF;
  border: 1px solid rgba(52, 211, 153, 0.45);
  box-shadow: 0 6px 22px rgba(16, 185, 129, 0.35);
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #34D399 0%, #10B981 50%, #059669 100%);
  box-shadow: 0 10px 28px rgba(16, 185, 129, 0.55);
  transform: translateY(-2px);
}

/* 2. Hero Primary Conversion Button */
.btn-hero-wa {
  background: linear-gradient(135deg, #10B981 0%, #059669 45%, #047857 100%);
  color: #FFFFFF;
  border: 1px solid rgba(52, 211, 153, 0.5);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 8px 28px rgba(16, 185, 129, 0.45);
  font-weight: 700;
}

.btn-hero-wa:hover {
  background: linear-gradient(135deg, #34D399 0%, #10B981 50%, #059669 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 12px 36px rgba(16, 185, 129, 0.65);
  transform: translateY(-3px) scale(1.02);
}

/* 3. Header Frosted Glass Button */
.btn-glass-whatsapp {
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-glass-whatsapp:hover {
  background: rgba(37, 211, 102, 0.22);
  border-color: #25D366;
  box-shadow: 0 0 22px rgba(37, 211, 102, 0.4);
  transform: translateY(-2px);
}

/* 4. Placas de Identificação: Brushed Titanium Navy Glass CTA */
.btn-card-placas {
  background: linear-gradient(135deg, rgba(22, 45, 70, 0.92) 0%, rgba(12, 26, 42, 0.96) 100%);
  border: 1px solid rgba(56, 189, 248, 0.4);
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(10, 25, 41, 0.45);
}

.btn-card-placas:hover {
  background: linear-gradient(135deg, rgba(30, 62, 95, 0.95) 0%, rgba(16, 36, 58, 0.98) 100%);
  border-color: var(--color-cyan-glow);
  box-shadow: 0 8px 25px rgba(56, 189, 248, 0.35);
  transform: translateY(-2px);
}

/* 5. Ideal 3D: Cyber Tech Cyan Glass CTA */
.btn-card-3d {
  background: linear-gradient(135deg, rgba(14, 116, 144, 0.3) 0%, rgba(8, 47, 73, 0.85) 100%);
  border: 1px solid rgba(56, 189, 248, 0.5);
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(56, 189, 248, 0.22);
}

.btn-card-3d:hover {
  background: linear-gradient(135deg, rgba(14, 116, 144, 0.5) 0%, rgba(12, 58, 90, 0.95) 100%);
  border-color: #38BDF8;
  box-shadow: 0 8px 28px rgba(56, 189, 248, 0.4);
  transform: translateY(-2px);
}

/* 6. Simulator Grand Action: Consolidated Quote Button */
.btn-calc-quote {
  background: linear-gradient(135deg, #10B981 0%, #059669 45%, #047857 100%);
  color: #FFFFFF;
  border: 1px solid rgba(52, 211, 153, 0.45);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 8px 30px rgba(16, 185, 129, 0.45);
  letter-spacing: 0.2px;
}

.btn-calc-quote:hover {
  background: linear-gradient(135deg, #34D399 0%, #10B981 50%, #059669 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 12px 38px rgba(16, 185, 129, 0.65);
  transform: translateY(-2px);
}

/* 7. Video Gallery WhatsApp CTA */
.btn-video-wa {
  background: linear-gradient(135deg, rgba(18, 38, 56, 0.92) 0%, rgba(10, 22, 34, 0.96) 100%);
  border: 1px solid rgba(37, 211, 102, 0.45);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-video-wa:hover {
  background: rgba(37, 211, 102, 0.18);
  border-color: #25D366;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  transform: translateY(-2px);
}

.pulse-animation {
  position: relative;
}

.pulse-animation::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  border: 2px solid var(--color-whatsapp);
  opacity: 0.6;
  animation: pulse-border 2.2s ease-out infinite;
  pointer-events: none;
}

@keyframes pulse-border {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.08); opacity: 0; }
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-primary);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--color-cyan-glow);
  color: var(--color-cyan-glow);
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   Top Announcement Bar
   -------------------------------------------------------------------------- */
.top-bar {
  background: rgba(11, 25, 36, 0.95);
  border-bottom: 1px solid rgba(56, 189, 248, 0.1);
  padding: 8px 0;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-bar-link {
  color: var(--color-whatsapp);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.top-bar-link:hover {
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   Header & Navigation
   -------------------------------------------------------------------------- */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7, 19, 27, 0.85);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid rgba(56, 189, 248, 0.12);
  transition: var(--transition-normal);
}

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

.brand-logo img {
  height: 48px;
  width: auto;
}

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

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 6px 0;
}

.nav-link:hover {
  color: var(--color-cyan-glow);
}

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

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

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

/* Theme Toggle Button (Header Actions) */
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(56, 189, 248, 0.25);
  background: rgba(15, 34, 50, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--color-cyan-glow);
  flex-shrink: 0;
}

.theme-toggle:hover {
  background: rgba(56, 189, 248, 0.18);
  border-color: var(--color-cyan-glow);
  transform: scale(1.08) rotate(15deg);
  box-shadow: 0 0 16px rgba(56, 189, 248, 0.35);
}

.theme-toggle .theme-icon {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}

.theme-toggle .sun-icon {
  opacity: 1;
  transform: scale(1) rotate(0deg);
  color: #FBBF24;
}

.theme-toggle .moon-icon {
  opacity: 0;
  transform: scale(0.5) rotate(-90deg);
  color: #0284C7;
}

.header-cta {
  position: relative;
}

.status-indicator {
  width: 9px;
  height: 9px;
  background: #22C55E;
  border: 2px solid #FFFFFF;
  border-radius: 50%;
  position: absolute;
  top: -2px;
  right: -2px;
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle .bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  margin: 5px 0;
  transition: var(--transition-normal);
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
  background: radial-gradient(circle at 80% 20%, rgba(14, 116, 144, 0.25) 0%, transparent 60%),
              radial-gradient(circle at 10% 80%, rgba(2, 132, 199, 0.15) 0%, transparent 50%),
              var(--bg-dark);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(7, 19, 27, 0.96) 0%, rgba(7, 19, 27, 0.85) 44%, rgba(7, 19, 27, 0.2) 70%, transparent 100%);
}

.hero-container {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 40px;
  min-height: 540px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  pointer-events: auto;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.3rem, 4.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
}

.highlight-text {
  background: linear-gradient(135deg, #38BDF8 0%, #2DD4BF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 580px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 22px;
}

.hero-trust-list {
  list-style: none;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 22px;
  margin-top: 4px;
}

.hero-trust-list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-primary);
}

/* --------------------------------------------------------------------------
   Modern Frameless Spatial 3D Hero Ring (Full Background Experience)
   -------------------------------------------------------------------------- */
.hero-3d-spatial-backdrop {
  position: absolute;
  top: 0;
  left: 48vw;
  width: 52vw;
  max-width: none;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-3d-ambient-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, var(--hero-glow-color, #0066FF) 0%, transparent 55%);
  opacity: 0.08;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  transition: background 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
}

.hero-3d-rolling-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-origin: center center;
  will-change: transform, opacity;
  pointer-events: none;
  z-index: 1;
}

model-viewer#heroModelViewer {
  width: 100%;
  height: 100%;
  --poster-color: transparent;
  background: transparent;
  border: none;
  outline: none;
  cursor: grab;
  pointer-events: auto;
}

model-viewer#heroModelViewer:active {
  cursor: grabbing;
}

.model-loading-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 100%;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.model-spinner {
  width: 32px;
  height: 32px;
  border: 3px solid rgba(56, 189, 248, 0.2);
  border-top-color: var(--color-cyan-glow);
  border-radius: 50%;
  animation: spinModel 0.85s linear infinite;
}

@keyframes spinModel {
  to { transform: rotate(360deg); }
}

/* --------------------------------------------------------------------------
   Floating Glass HUD Dock (Frameless 3D Controls)
   -------------------------------------------------------------------------- */
.hero-3d-spacer {
  min-height: 540px;
  pointer-events: none;
}

.hero-3d-floating-hud {
  position: relative;
  z-index: 12;
  max-width: 460px;
  width: 100%;
  margin: 0 0 20px 0;
  padding: 14px 18px;
  background: rgba(7, 20, 29, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(56, 189, 248, 0.22);
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45), 0 0 28px rgba(var(--glow-rgb, 0, 102, 255), 0.16);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
  pointer-events: auto;
}

.hud-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.hud-color-info {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
}

.hud-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--color-cyan-glow);
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.25);
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.live-dot {
  width: 6px;
  height: 6px;
  background: #22C55E;
  border-radius: 50%;
  display: inline-block;
}

.hud-color-sep {
  color: var(--text-muted);
  opacity: 0.5;
}

.hud-color-name {
  color: var(--color-cyan-glow);
  font-weight: 700;
  transition: color 0.3s ease;
}

.hud-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn-hud-tool {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-full);
  color: var(--text-primary);
  font-size: 0.72rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-hud-tool:hover {
  background: rgba(56, 189, 248, 0.22);
  border-color: var(--color-cyan-glow);
  color: #FFF;
}

.btn-hud-tool.paused {
  background: rgba(239, 68, 68, 0.15);
  border-color: rgba(239, 68, 68, 0.35);
  color: #F87171;
}

.btn-hud-tool.btn-tour {
  background: rgba(56, 189, 248, 0.1);
  border-color: rgba(56, 189, 248, 0.28);
  color: #38BDF8;
}

.btn-hud-tool.btn-tour:hover,
.btn-hud-tool.btn-tour.active {
  background: rgba(56, 189, 248, 0.25);
  border-color: var(--color-cyan-glow);
  color: #FFF;
}

/* Swatches */
.hud-swatches {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.swatch-btn {
  flex: 1;
  height: 32px;
  border-radius: 8px;
  background-color: var(--swatch-color);
  border: 2px solid transparent;
  cursor: pointer;
  position: relative;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.4), 0 2px 6px rgba(0, 0, 0, 0.35);
}

.swatch-btn:hover {
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 4px 12px var(--swatch-color);
}

.swatch-btn.active {
  border-color: #FFF;
  transform: scale(1.08);
  box-shadow: 0 0 14px var(--swatch-color);
}

.swatch-btn.active::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #FFF;
  font-size: 0.8rem;
  font-weight: 900;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

/* Bottom Bar */
.hud-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding-top: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hud-angles {
  display: flex;
  gap: 4px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 3px 5px;
  border-radius: var(--radius-full);
}

.btn-angle-chip {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.btn-angle-chip:hover {
  color: #FFF;
}

.btn-angle-chip.active {
  background: var(--color-cyan-deep);
  color: #FFF;
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.4);
}

.hud-link-simular {
  color: var(--color-cyan-glow);
  font-size: 0.74rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  transition: var(--transition-fast);
}

.hud-link-simular:hover {
  color: #FFF;
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   Partners & Authority Showcase Section
   -------------------------------------------------------------------------- */
.partners-section {
  padding: 85px 0 75px;
  border-top: 1px solid rgba(56, 189, 248, 0.12);
  border-bottom: 1px solid rgba(56, 189, 248, 0.12);
  background: radial-gradient(circle at 50% 0%, rgba(14, 116, 144, 0.14) 0%, rgba(7, 19, 27, 0.98) 75%), #07131B;
  position: relative;
}

.partners-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.45), transparent);
}

.partners-header {
  margin-bottom: 45px;
}

.partners-main-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 14px;
  margin-bottom: 12px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.partners-main-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

/* 4-Card Authority Grid */
.partners-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 40px;
}

.partner-card {
  background: rgba(11, 28, 42, 0.7);
  border: 1px solid rgba(56, 189, 248, 0.18);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.partner-card:hover {
  transform: translateY(-6px);
  border-color: rgba(56, 189, 248, 0.45);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(56, 189, 248, 0.15);
}

.partner-card-media {
  position: relative;
  height: 175px;
  width: 100%;
  overflow: hidden;
  background: #061622;
}

.partner-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.partner-card:hover .partner-card-media img {
  transform: scale(1.07);
}

.partner-card-overlay {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
}

.partner-cat-badge {
  display: inline-block;
  background: rgba(7, 19, 27, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(56, 189, 248, 0.35);
  color: var(--color-cyan-glow);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

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

.partner-brand-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.partner-entity-icon {
  font-size: 1.25rem;
  line-height: 1;
}

.partner-entity-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.partner-entity-desc {
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 16px;
  flex-grow: 1;
}

.partner-entity-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.76rem;
}

.partner-stat-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #34D399;
  font-weight: 600;
}

.partner-highlight-role {
  color: var(--color-cyan-glow);
  font-weight: 600;
  font-size: 0.74rem;
}

/* Infinite Marquee Track */
.partners-marquee-container {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(11, 28, 42, 0.45);
  border: 1px solid rgba(56, 189, 248, 0.12);
  border-radius: var(--radius-full);
  padding: 8px 16px 8px 24px;
  overflow: hidden;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

.marquee-label-tag {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-cyan-glow);
  white-space: nowrap;
  flex-shrink: 0;
}

.partners-marquee-track {
  display: flex;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  width: 100%;
}

.marquee-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  animation: partners-marquee-scroll 32s linear infinite;
  padding-right: 14px;
}

.partners-marquee-track:hover .marquee-inner {
  animation-play-state: paused;
}

@keyframes partners-marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
  transition: var(--transition-fast);
}

.marquee-item .m-icon {
  font-size: 0.95rem;
}

.marquee-item:hover {
  background: rgba(56, 189, 248, 0.14);
  border-color: var(--color-cyan-glow);
  color: #FFF;
  transform: translateY(-1px);
}

/* --------------------------------------------------------------------------
   Products Section
   -------------------------------------------------------------------------- */
.products-section {
  padding: 100px 0;
}

.section-header {
  margin-bottom: 60px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-top: 10px;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 1 !important;
  visibility: visible !important;
}

.product-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  background: var(--color-cyan-deep);
  color: #FFF;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.product-badge.accent {
  background: #D97706;
}

.product-badge.brand-3d {
  background: linear-gradient(135deg, #0284C7 0%, #0369A1 100%);
}

.product-img-box {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: #081a24;
}

.product-img-box img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1 !important;
  visibility: visible !important;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.img-overlay-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-primary);
}

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

.brand-3d-header {
  margin-bottom: 10px;
}

.product-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.product-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.feature-bullets {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.feature-bullets li {
  position: relative;
  padding-left: 22px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.feature-bullets li strong {
  color: var(--text-primary);
}

.feature-bullets li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-cyan-glow);
  font-weight: 900;
}

.product-footer {
  margin-top: auto;
}

/* --------------------------------------------------------------------------
   Calculator & Dynamic WhatsApp Quote Section
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   Calculator & Dynamic WhatsApp Quote Section (Compact 2-Column Dashboard)
   -------------------------------------------------------------------------- */
.calculator-section {
  padding: 36px 0 40px;
  background: radial-gradient(circle at center, rgba(14, 116, 144, 0.15) 0%, transparent 70%);
}

.calculator-card {
  padding: clamp(16px, 2.5vw, 24px) clamp(18px, 2.8vw, 30px);
  max-width: 1220px;
  margin: 0 auto;
}

.calculator-header {
  text-align: center;
  margin-bottom: 18px;
}

.calc-title {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: 700;
  margin: 6px 0 6px;
  letter-spacing: -0.01em;
}

.calc-subtitle {
  color: var(--text-secondary);
  font-size: 0.88rem;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.4;
}

/* Two-Column Form Layout */
.calculator-form {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 20px;
  align-items: stretch;
}

@media (max-width: 1024px) {
  .calculator-form {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* Left Column: Items & Plantel Config */
.calc-config-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.order-items-wrapper {
  background: rgba(11, 28, 38, 0.55);
  border: 1px solid rgba(56, 189, 248, 0.18);
  border-radius: var(--radius-md);
  padding: 12px 14px;
}

.order-items-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding-bottom: 8px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.items-list-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 6px;
}

#itemsCountBadge {
  background: rgba(56, 189, 248, 0.15);
  color: var(--color-cyan-glow);
  padding: 2px 7px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
}

.items-list-hint {
  font-size: 0.76rem;
  color: var(--text-muted);
}

.order-items-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 8px;
  max-height: 230px;
  overflow-y: auto;
  padding-right: 4px;
}

.order-items-container::-webkit-scrollbar,
.items-summary-chips-grid::-webkit-scrollbar {
  width: 5px;
}

.order-items-container::-webkit-scrollbar-track,
.items-summary-chips-grid::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 4px;
}

.order-items-container::-webkit-scrollbar-thumb,
.items-summary-chips-grid::-webkit-scrollbar-thumb {
  background: rgba(56, 189, 248, 0.3);
  border-radius: 4px;
}

.order-items-container::-webkit-scrollbar-thumb:hover,
.items-summary-chips-grid::-webkit-scrollbar-thumb:hover {
  background: rgba(56, 189, 248, 0.6);
}

.order-item-card {
  background: rgba(11, 28, 38, 0.85);
  border: 1px solid rgba(56, 189, 248, 0.22);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  transition: var(--transition-normal);
  position: relative;
}

.order-item-card:hover {
  border-color: rgba(56, 189, 248, 0.45);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.item-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.item-index-badge {
  display: flex;
  align-items: center;
  gap: 8px;
}

.index-num {
  font-size: 0.78rem;
  font-weight: 800;
  color: #FFF;
  background: var(--color-cyan-deep);
  padding: 2px 7px;
  border-radius: var(--radius-sm);
}

.item-size-pill {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--color-cyan-glow);
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.3);
  padding: 1px 7px;
  border-radius: var(--radius-full);
}

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

.btn-item-action {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.74rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-item-action.btn-duplicate {
  background: rgba(56, 189, 248, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.35);
  color: #38BDF8;
}

.btn-item-action.btn-duplicate:hover {
  background: rgba(56, 189, 248, 0.28);
  color: #FFF;
}

.btn-item-action.btn-remove {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #F87171;
}

.btn-item-action.btn-remove:hover {
  background: rgba(239, 68, 68, 0.25);
  color: #FFF;
}

.item-card-body {
  display: grid;
  grid-template-columns: 1.4fr 1.25fr 0.85fr;
  gap: 8px;
  align-items: flex-end;
}

@media (max-width: 860px) {
  .item-card-body {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-label {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
}

.select-wrapper {
  position: relative;
}

.form-select {
  width: 100%;
  height: 38px;
  padding: 6px 28px 6px 10px;
  background: rgba(11, 28, 38, 0.9);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 0.84rem;
  appearance: none;
  cursor: pointer;
  outline: none;
  transition: var(--transition-normal);
}

.form-select:focus {
  border-color: var(--color-cyan-glow);
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.3);
}

.select-wrapper::after {
  content: '▼';
  font-size: 0.65rem;
  color: var(--color-cyan-glow);
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.quantity-control {
  display: flex;
  align-items: center;
  height: 38px;
  background: rgba(11, 28, 38, 0.9);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.qty-btn {
  width: 32px;
  height: 100%;
  background: transparent;
  border: none;
  color: var(--color-cyan-glow);
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-btn:hover {
  background: rgba(56, 189, 248, 0.2);
}

.qty-input {
  flex: 1;
  min-width: 36px;
  text-align: center;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 0.92rem;
  font-weight: 700;
  outline: none;
}

.add-item-row {
  display: flex;
  justify-content: center;
}

.btn-add-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(56, 189, 248, 0.08);
  border: 1.5px dashed rgba(56, 189, 248, 0.4);
  border-radius: var(--radius-sm);
  color: #38BDF8;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-normal);
  width: 100%;
  justify-content: center;
}

.btn-add-item:hover {
  background: rgba(56, 189, 248, 0.18);
  border-color: var(--color-cyan-glow);
  color: #FFF;
  transform: translateY(-1px);
}

/* Global Customization Section (Compact) */
.global-customization-box {
  background: rgba(7, 20, 29, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 10px 14px;
}

.customization-heading {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.customization-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 12px;
  align-items: center;
}

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

.checkbox-container {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.custom-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.78rem;
  color: var(--text-secondary);
}

.custom-checkbox input {
  display: none;
}

.custom-checkbox .checkmark {
  width: 16px;
  height: 16px;
  border: 1.5px solid rgba(56, 189, 248, 0.4);
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-normal);
}

.custom-checkbox input:checked + .checkmark {
  background: var(--color-cyan-deep);
  border-color: var(--color-cyan-glow);
}

.custom-checkbox input:checked + .checkmark::after {
  content: '✓';
  color: #FFF;
  font-size: 0.72rem;
  font-weight: 900;
}

.form-input.text-input {
  width: 100%;
  height: 38px;
  padding: 6px 12px;
  background: rgba(11, 28, 38, 0.9);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 0.82rem;
  outline: none;
  transition: var(--transition-normal);
}

.form-input.text-input:focus {
  border-color: var(--color-cyan-glow);
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.3);
}

/* Right Column: Live Result Box */
.calc-summary-col {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.calc-result-box {
  background: rgba(7, 20, 29, 0.92);
  border: 1px solid rgba(56, 189, 248, 0.22);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
}

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

.calc-result-badge {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--text-primary);
}

.calc-live-pill {
  font-size: 0.72rem;
  font-weight: 600;
  color: #25D366;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.3);
  padding: 2px 7px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 0 6px #25D366;
  display: inline-block;
  animation: blinkPulse 1.8s infinite;
}

@keyframes blinkPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.calc-metrics-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.calc-metric-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.metric-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.metric-val {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.metric-val.highlight {
  color: var(--color-cyan-glow);
  font-size: 1.22rem;
}

.metric-val.text-cyan {
  color: #38BDF8;
  font-size: 0.88rem;
}

/* Itemized Breakdown Chips */
.order-summary-breakdown {
  margin-bottom: 10px;
  flex: 1;
}

.breakdown-title {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.items-summary-chips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  max-height: 120px;
  overflow-y: auto;
  padding-right: 4px;
}

.summary-chip-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 5px 9px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  color: #FFF;
}

.chip-color-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  flex-shrink: 0;
}

.chip-species-name {
  font-weight: 700;
  color: var(--color-cyan-glow);
}

.chip-size-tag {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.chip-qty-tag {
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: #25D366;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: var(--radius-sm);
  font-size: 0.74rem;
}

.calc-action-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}

.btn-calc-quote {
  padding: 12px 18px;
  font-size: 0.88rem;
}

.calc-note {
  font-size: 0.74rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   Divisão Ideal 3D Section
   -------------------------------------------------------------------------- */
.ideal3d-section {
  padding: 110px 0;
  background: radial-gradient(circle at 80% 20%, rgba(2, 132, 199, 0.12) 0%, transparent 60%),
              radial-gradient(circle at 10% 80%, rgba(37, 211, 102, 0.08) 0%, transparent 50%),
              rgba(6, 18, 26, 0.7);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(56, 189, 248, 0.12);
  border-bottom: 1px solid rgba(56, 189, 248, 0.12);
}

.ideal3d-logo-heading {
  margin: 10px 0 20px;
  display: flex;
  justify-content: center;
}

.ideal3d-spotlight-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 32px;
  margin-bottom: 50px;
  align-items: stretch;
}

.ideal3d-spotlight-card {
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(56, 189, 248, 0.3);
  position: relative;
  opacity: 1 !important;
  visibility: visible !important;
}

.spotlight-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(2, 132, 199, 0.2);
  border: 1px solid rgba(56, 189, 248, 0.4);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-cyan-glow);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  width: fit-content;
  margin-bottom: 18px;
}

.spotlight-star {
  color: #F59E0B;
}

.spotlight-title {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  color: #FFF;
  line-height: 1.25;
  margin-bottom: 14px;
}

.spotlight-lead {
  font-size: 1.02rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 24px;
}

.spotlight-features-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.spotlight-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255, 255, 255, 0.03);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.spotlight-icon-box {
  font-size: 1.35rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.spotlight-feature-text strong {
  display: block;
  font-size: 0.95rem;
  color: #FFF;
  margin-bottom: 3px;
}

.spotlight-feature-text span {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.spotlight-cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.spotlight-guarantee {
  font-size: 0.85rem;
  color: #38BDF8;
  font-weight: 600;
}

.ideal3d-media-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.media-card-main,
.media-card-secondary {
  overflow: hidden;
  border: 1px solid rgba(56, 189, 248, 0.2);
  display: flex;
  flex-direction: column;
  opacity: 1 !important;
  visibility: visible !important;
}

.media-card-img {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #081a24;
}

.media-card-img.secondary {
  height: 200px;
}

.media-card-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1 !important;
  visibility: visible !important;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.media-card-main:hover .media-card-img img,
.media-card-secondary:hover .media-card-img img {
  transform: scale(1.06);
}

.media-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(2, 132, 199, 0.85);
  backdrop-filter: blur(6px);
  color: #FFF;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.media-badge.accent {
  background: rgba(37, 211, 102, 0.85);
}

.media-card-caption {
  padding: 16px 20px;
}

.media-card-caption h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #FFF;
  margin-bottom: 4px;
}

.media-card-caption p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.4;
  margin: 0;
}

.ideal3d-pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-bottom: 44px;
}

.pillar-card {
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  transition: var(--transition-normal);
  border: 1px solid rgba(56, 189, 248, 0.15);
  opacity: 1 !important;
  visibility: visible !important;
}

.pillar-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-cyan-glow);
  box-shadow: 0 14px 34px rgba(2, 132, 199, 0.2);
}

.pillar-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  line-height: 1;
}

.pillar-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFF;
  margin-bottom: 10px;
}

.pillar-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 18px;
}

.pillar-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.pillar-list li {
  position: relative;
  padding-left: 20px;
  font-size: 0.85rem;
  color: #CBD5E1;
}

.pillar-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #38BDF8;
  font-weight: bold;
}

.pillar-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-cyan-glow);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}

.pillar-link:hover {
  color: #FFF;
  transform: translateX(4px);
}

.ideal3d-cta-banner {
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  border: 1px solid rgba(56, 189, 248, 0.3);
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.15) 0%, rgba(37, 211, 102, 0.1) 100%),
              rgba(11, 28, 38, 0.9);
  opacity: 1 !important;
  visibility: visible !important;
}

.ideal3d-cta-banner .cta-banner-content {
  text-align: left;
  max-width: 620px;
}

.ideal3d-cta-banner h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #FFF;
  margin-bottom: 6px;
}

.ideal3d-cta-banner p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 0;
}

@media (max-width: 900px) {
  .ideal3d-spotlight-grid {
    grid-template-columns: 1fr;
  }
  .ideal3d-cta-banner {
    flex-direction: column;
    text-align: center;
  }
  .ideal3d-cta-banner .cta-banner-content {
    text-align: center;
  }
}

/* --------------------------------------------------------------------------
   Videos Showcase Section
   -------------------------------------------------------------------------- */
.videos-section {
  padding: 100px 0;
  background: rgba(11, 25, 36, 0.3);
}

.video-showcase-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 30px;
}

.main-video-player-box {
  padding: 20px;
}

.active-video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 18px;
}

.active-video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.video-info-bar {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.video-current-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
}

.video-current-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.video-playlist-box {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.playlist-heading {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

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

.playlist-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px;
  background: rgba(15, 38, 52, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-normal);
  text-align: left;
  color: var(--text-primary);
}

.playlist-item:hover, .playlist-item.active {
  background: rgba(2, 132, 199, 0.2);
  border-color: var(--color-cyan-glow);
}

.playlist-thumb {
  position: relative;
  width: 72px;
  height: 52px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
}

.playlist-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1 !important;
  visibility: visible !important;
}

.play-icon-mini {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  font-size: 0.8rem;
  color: #FFF;
}

.playlist-item.active .play-icon-mini {
  background: rgba(37, 211, 102, 0.7);
}

.playlist-item-title {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.3;
}

.playlist-item-tag {
  display: block;
  font-size: 0.75rem;
  color: var(--color-cyan-glow);
  margin-top: 3px;
}

/* --------------------------------------------------------------------------
   Proof & Testimonials Section
   -------------------------------------------------------------------------- */
.proof-section {
  padding: 100px 0;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-bottom: 50px;
}

.proof-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  opacity: 1 !important;
  visibility: visible !important;
}

.proof-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #081a24;
}

.proof-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1 !important;
  visibility: visible !important;
}

.proof-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.proof-stars {
  color: #F59E0B;
  letter-spacing: 2px;
  font-size: 1rem;
}

.proof-quote {
  font-style: italic;
  color: var(--text-primary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.proof-author {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.proof-author strong {
  display: block;
  font-size: 0.95rem;
}

.proof-author span {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.cta-banner {
  padding: 40px;
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid rgba(37, 211, 102, 0.3);
  box-shadow: 0 0 35px rgba(37, 211, 102, 0.15);
}

.cta-banner h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.cta-banner p {
  color: var(--text-secondary);
  margin-bottom: 24px;
}

/* --------------------------------------------------------------------------
   FAQ Section
   -------------------------------------------------------------------------- */
.faq-section {
  padding: 100px 0;
  background: rgba(11, 25, 36, 0.3);
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition-normal);
}

.faq-question:hover {
  color: var(--color-cyan-glow);
}

.faq-icon {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--color-cyan-glow);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
}

.faq-cta p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.main-footer {
  background: #050D13;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 70px 0 30px;
}

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

.footer-logo {
  margin-bottom: 16px;
}

.footer-bio {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.footer-socials a:hover {
  color: var(--color-cyan-glow);
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-primary);
}

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

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.footer-links a:hover {
  color: var(--color-cyan-glow);
  padding-left: 4px;
}

.footer-contact-info p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 14px;
  line-height: 1.6;
}

.footer-contact-info a {
  color: var(--color-whatsapp);
  font-weight: 700;
}

.footer-bottom {
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

/* --------------------------------------------------------------------------
   Persistent Floating WhatsApp Widget
   -------------------------------------------------------------------------- */
.floating-whatsapp {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.whatsapp-float-trigger {
  width: 64px;
  height: 64px;
  background: #25D366;
  border: none;
  border-radius: 50%;
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
  transition: var(--transition-normal);
  position: relative;
}

.whatsapp-float-trigger:hover {
  transform: scale(1.1);
  background: #1ebe5d;
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.7);
}

.float-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: #EF4444;
  color: #FFF;
  font-size: 0.75rem;
  font-weight: 800;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #FFF;
}

/* WhatsApp Chat Bubble */
.whatsapp-bubble {
  width: 340px;
  max-width: calc(100vw - 40px);
  background: #081720;
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.65), 0 0 25px rgba(37, 211, 102, 0.15);
  padding: 18px;
  margin-bottom: 14px;
  position: relative;
  transform-origin: bottom right;
  transition: var(--transition-normal);
  display: none;
}

.whatsapp-bubble.open {
  display: block;
  animation: pop-in 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes pop-in {
  from { opacity: 0; transform: scale(0.85) translateY(12px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.bubble-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--text-muted);
  font-size: 1.25rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.bubble-close:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #FFF;
}

.bubble-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.bubble-avatar-wrapper {
  position: relative;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.bubble-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  background: #06161D;
  border: 2px solid rgba(56, 189, 248, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.bubble-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

.avatar-status-badge {
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 13px;
  height: 13px;
  background: #22C55E;
  border-radius: 50%;
  border: 2.5px solid #081720;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.9);
  z-index: 2;
}

.bubble-title-box {
  flex: 1;
  min-width: 0;
}

.bubble-title-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 3px;
}

.bubble-title-row strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.whatsapp-verified-icon {
  flex-shrink: 0;
}

.bubble-status-row {
  display: flex;
  align-items: center;
  gap: 7px;
}

/* Pulsing live dot next to Online Agora */
.status-live-dot {
  width: 8px;
  height: 8px;
  background: #22C55E;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: status-pulse 2s infinite;
  flex-shrink: 0;
}

@keyframes status-pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.status-text {
  font-size: 0.76rem;
  color: #22C55E;
  font-weight: 600;
}

.bubble-body {
  margin-bottom: 12px;
}

.bubble-chat-msg {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  border-top-left-radius: 4px;
  padding: 12px 14px;
  position: relative;
}

.bubble-chat-msg p {
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.45;
  margin: 0 0 6px 0;
}

.bubble-chat-msg strong {
  color: var(--text-primary);
}

.bubble-timestamp {
  display: block;
  text-align: right;
  font-size: 0.7rem;
  color: var(--text-muted);
}

.bubble-quick-actions {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

.quick-action-btn {
  display: block;
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.2);
  color: #E2E8F0;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: var(--transition-fast);
}

.quick-action-btn:hover {
  background: rgba(56, 189, 248, 0.18);
  border-color: var(--color-cyan-glow);
  color: #FFF;
  transform: translateX(3px);
}

.bubble-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  background: linear-gradient(135deg, #10B981 0%, #059669 45%, #047857 100%);
  color: #FFF;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(52, 211, 153, 0.4);
  box-shadow: 0 6px 18px rgba(16, 185, 129, 0.35);
  transition: var(--transition-normal);
  text-decoration: none;
}

.bubble-btn:hover {
  background: linear-gradient(135deg, #34D399 0%, #10B981 50%, #059669 100%);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.55);
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   Responsive Media Queries
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-section {
    position: relative;
    padding: 105px 0 60px;
  }

  .hero-bg-overlay {
    background: linear-gradient(180deg, rgba(7, 19, 27, 0.94) 0%, rgba(7, 19, 27, 0.72) 42%, rgba(7, 19, 27, 0.3) 72%, rgba(7, 19, 27, 0.9) 100%);
  }

  .hero-container {
    display: flex;
    flex-direction: column;
    min-height: auto;
    gap: 30px;
  }

  .hero-content {
    text-align: center;
    max-width: 100%;
    margin-bottom: 12px;
    padding: 0 16px;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-trust-list {
    align-items: center;
    justify-content: center;
  }

  .hero-3d-spatial-backdrop {
    position: absolute;
    inset: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    z-index: 1;
    overflow: hidden;
  }

  .hero-3d-spacer {
    display: none;
  }

  .hero-3d-floating-hud {
    margin: 16px auto;
    max-width: 440px;
  }

  .hero-media-wrapper {
    max-width: 460px;
    margin: 0 auto;
  }

  .video-showcase-grid {
    grid-template-columns: 1fr;
  }

  .partners-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .top-bar-content {
    justify-content: center;
    text-align: center;
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(7, 19, 27, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 30px;
    gap: 20px;
    border-bottom: 1px solid rgba(56, 189, 248, 0.15);
    transform: translateY(-150%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-normal);
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .mobile-toggle {
    display: block;
  }

  .header-cta .btn-text {
    display: none;
  }

  .header-cta {
    padding: 10px;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-3d-spatial-backdrop {
    height: 100%;
    min-height: 100%;
  }

  .hero-3d-ambient-glow {
    width: 320px;
    height: 320px;
  }

  .hero-3d-floating-hud {
    margin-top: 10px;
    padding: 12px 14px;
    max-width: 100%;
  }

  .partners-cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .partners-marquee-container {
    flex-direction: column;
    align-items: flex-start;
    border-radius: var(--radius-lg);
    padding: 12px 16px;
    gap: 10px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom-flex {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================================================
   Light Theme System (Modern High-Tech Clean Aesthetic)
   Activated via: html[data-theme="light"]
   ========================================================================== */
html[data-theme="light"] {
  color-scheme: light;

  /* Theme Tokens */
  --bg-dark: #F8FAFC;
  --bg-card: rgba(255, 255, 255, 0.9);
  --bg-card-border: rgba(14, 116, 144, 0.14);
  --bg-card-hover: rgba(255, 255, 255, 0.98);

  --text-primary: #0F172A;
  --text-secondary: #475569;
  --text-muted: #64748B;
  --text-dark: #0F172A;

  --color-cyan-glow: #0284C7;
  --color-cyan-deep: #0369A1;

  --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 25px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.09);
  --shadow-glow: 0 4px 20px rgba(2, 132, 199, 0.12);
}

/* Global & Header in Light Theme */
html[data-theme="light"] body {
  background-color: var(--bg-dark);
  color: var(--text-primary);
}

html[data-theme="light"] .top-bar {
  background: #F1F5F9;
  border-bottom: 1px solid #E2E8F0;
  color: #475569;
}

html[data-theme="light"] .top-bar-item {
  color: #475569;
}

html[data-theme="light"] .main-header {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid #E2E8F0;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}

html[data-theme="light"] .nav-link {
  color: #334155;
}

html[data-theme="light"] .nav-link:hover {
  color: #0284C7;
}

html[data-theme="light"] .theme-toggle {
  background: #FFFFFF;
  border: 1px solid #CBD5E1;
  color: #0F172A;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

html[data-theme="light"] .theme-toggle:hover {
  background: #F1F5F9;
  border-color: #0284C7;
  transform: scale(1.08) rotate(-15deg);
  box-shadow: 0 4px 15px rgba(2, 132, 199, 0.25);
}

html[data-theme="light"] .theme-toggle .sun-icon {
  opacity: 0;
  transform: scale(0.5) rotate(90deg);
}

html[data-theme="light"] .theme-toggle .moon-icon {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

html[data-theme="light"] .btn-glass-whatsapp {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.4);
  color: #047857;
}

html[data-theme="light"] .btn-glass-whatsapp:hover {
  background: rgba(16, 185, 129, 0.22);
  border-color: #10B981;
  color: #065F46;
}

html[data-theme="light"] .btn-secondary {
  background: #FFFFFF;
  border: 1px solid #CBD5E1;
  color: #0F172A;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

html[data-theme="light"] .btn-secondary:hover {
  background: #F1F5F9;
  border-color: #0284C7;
  color: #0284C7;
}

/* Hero Section in Light Theme */
html[data-theme="light"] .hero-section {
  background: radial-gradient(circle at 50% 15%, rgba(56, 189, 248, 0.15) 0%, rgba(248, 250, 252, 0.98) 65%), #F8FAFC;
}

html[data-theme="light"] .hero-bg-overlay {
  background: linear-gradient(90deg, rgba(248, 250, 252, 0.96) 0%, rgba(248, 250, 252, 0.85) 44%, rgba(248, 250, 252, 0.2) 70%, transparent 100%);
}

@media (max-width: 1024px) {
  html[data-theme="light"] .hero-bg-overlay {
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.94) 0%, rgba(248, 250, 252, 0.72) 42%, rgba(248, 250, 252, 0.3) 72%, rgba(248, 250, 252, 0.9) 100%);
  }
}

html[data-theme="light"] .hero-badge {
  background: rgba(2, 132, 199, 0.08);
  border-color: rgba(2, 132, 199, 0.25);
  color: #0369A1;
}

html[data-theme="light"] .highlight-text {
  background: linear-gradient(135deg, #0284C7 0%, #0D9488 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

html[data-theme="light"] .hero-description {
  color: #475569;
}

html[data-theme="light"] .hero-trust-list li {
  color: #334155;
}

html[data-theme="light"] .hero-3d-floating-hud {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08), 0 0 28px rgba(var(--glow-rgb, 2, 132, 199), 0.12);
}

html[data-theme="light"] .hud-live-badge {
  background: rgba(2, 132, 199, 0.08);
  border-color: rgba(2, 132, 199, 0.25);
  color: #0284C7;
}

html[data-theme="light"] .hud-color-name {
  color: #0284C7;
}

html[data-theme="light"] .btn-hud-tool {
  background: #F8FAFC;
  border-color: #CBD5E1;
  color: #0F172A;
}

html[data-theme="light"] .btn-hud-tool:hover {
  background: #F1F5F9;
  border-color: #0284C7;
  color: #0284C7;
}

html[data-theme="light"] .btn-hud-tool.btn-tour {
  background: rgba(2, 132, 199, 0.08);
  border-color: rgba(2, 132, 199, 0.25);
  color: #0284C7;
}

html[data-theme="light"] .btn-hud-tool.btn-tour:hover,
html[data-theme="light"] .btn-hud-tool.btn-tour.active {
  background: rgba(2, 132, 199, 0.16);
  color: #0369A1;
}

html[data-theme="light"] .hud-bottom-bar {
  border-top-color: #E2E8F0;
}

html[data-theme="light"] .hud-angles {
  background: #F1F5F9;
  border-color: #E2E8F0;
}

html[data-theme="light"] .btn-angle-chip {
  color: #64748B;
}

html[data-theme="light"] .btn-angle-chip:hover {
  color: #0F172A;
}

html[data-theme="light"] .btn-angle-chip.active {
  background: #0284C7;
  color: #FFFFFF;
  box-shadow: 0 0 10px rgba(2, 132, 199, 0.35);
}

html[data-theme="light"] .hud-link-simular {
  color: #0284C7;
}

html[data-theme="light"] .hud-link-simular:hover {
  color: #0369A1;
}

/* Partners & Showcase in Light Theme */
html[data-theme="light"] .partners-section {
  background: radial-gradient(circle at 50% 0%, rgba(2, 132, 199, 0.08) 0%, rgba(248, 250, 252, 0.98) 75%), #F8FAFC;
  border-top: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
}

html[data-theme="light"] .partners-section::before {
  background: linear-gradient(90deg, transparent, rgba(2, 132, 199, 0.3), transparent);
}

html[data-theme="light"] .partners-main-title {
  color: #0F172A;
}

html[data-theme="light"] .partners-main-subtitle {
  color: #475569;
}

html[data-theme="light"] .partner-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

html[data-theme="light"] .partner-card:hover {
  border-color: #BAE6FD;
  box-shadow: 0 18px 45px rgba(2, 132, 199, 0.12);
}

html[data-theme="light"] .partner-cat-badge {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(2, 132, 199, 0.35);
  color: #0284C7;
}

html[data-theme="light"] .partner-entity-name {
  color: #0F172A;
}

html[data-theme="light"] .partner-entity-desc {
  color: #475569;
}

html[data-theme="light"] .partner-entity-footer {
  border-top: 1px solid #F1F5F9;
}

html[data-theme="light"] .partner-stat-tag {
  color: #059669;
}

html[data-theme="light"] .partner-highlight-role {
  color: #0284C7;
}

html[data-theme="light"] .partners-marquee-container {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.04);
}

html[data-theme="light"] .marquee-label-tag {
  color: #0284C7;
}

html[data-theme="light"] .marquee-item {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  color: #334155;
}

html[data-theme="light"] .marquee-item:hover {
  background: #F0F9FF;
  border-color: #0284C7;
  color: #0284C7;
}

/* Cards & Products in Light Theme */
html[data-theme="light"] .glass-panel {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

html[data-theme="light"] .glass-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

html[data-theme="light"] .glass-card:hover {
  background: #FFFFFF;
  border-color: #BAE6FD;
  box-shadow: 0 15px 35px rgba(2, 132, 199, 0.12);
}

html[data-theme="light"] .product-title {
  color: #0F172A;
}

html[data-theme="light"] .product-desc {
  color: #475569;
}

html[data-theme="light"] .feature-bullets li {
  color: #334155;
}

html[data-theme="light"] .feature-bullets li strong {
  color: #0F172A;
}

html[data-theme="light"] .badge-pill {
  background: rgba(2, 132, 199, 0.08);
  border-color: rgba(2, 132, 199, 0.22);
  color: #0284C7;
}

html[data-theme="light"] .highlighted-product {
  background: linear-gradient(180deg, #F0F9FF 0%, #FFFFFF 100%);
  border-color: rgba(2, 132, 199, 0.3);
}

html[data-theme="light"] .btn-card-placas {
  background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
  border-color: #334155;
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.2);
}

html[data-theme="light"] .btn-card-placas:hover {
  background: linear-gradient(135deg, #334155 0%, #1E293B 100%);
  border-color: #0284C7;
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.25);
}

html[data-theme="light"] .btn-card-3d {
  background: linear-gradient(135deg, #0284C7 0%, #0369A1 100%);
  border-color: #38BDF8;
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(2, 132, 199, 0.25);
}

html[data-theme="light"] .btn-card-3d:hover {
  background: linear-gradient(135deg, #0369A1 0%, #075985 100%);
  box-shadow: 0 6px 22px rgba(2, 132, 199, 0.4);
}

/* Fast Order Simulator in Light Theme */
html[data-theme="light"] .calculator-section {
  background: #F1F5F9;
}

html[data-theme="light"] .calculator-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  box-shadow: 0 15px 45px rgba(15, 23, 42, 0.07);
}

html[data-theme="light"] .calc-title {
  color: #0F172A;
}

html[data-theme="light"] .calc-subtitle {
  color: #475569;
}

html[data-theme="light"] .items-list-title {
  color: #0F172A;
}

html[data-theme="light"] #itemsCountBadge {
  background: rgba(2, 132, 199, 0.1);
  color: #0284C7;
}

html[data-theme="light"] .items-list-hint {
  color: #64748B;
}

html[data-theme="light"] .order-item-card {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

html[data-theme="light"] .order-item-card:hover {
  border-color: #BAE6FD;
  box-shadow: 0 6px 18px rgba(2, 132, 199, 0.08);
}

html[data-theme="light"] .item-card-header {
  background: #F1F5F9;
  border-bottom: 1px solid #E2E8F0;
}

html[data-theme="light"] .index-num {
  background: #0284C7;
  color: #FFFFFF;
}

html[data-theme="light"] .item-size-pill {
  background: rgba(2, 132, 199, 0.08);
  border-color: rgba(2, 132, 199, 0.25);
  color: #0284C7;
}

html[data-theme="light"] .btn-item-action {
  background: rgba(2, 132, 199, 0.08);
  border-color: rgba(2, 132, 199, 0.25);
  color: #0369A1;
}

html[data-theme="light"] .btn-item-action:hover {
  background: rgba(2, 132, 199, 0.16);
  border-color: #0284C7;
}

html[data-theme="light"] .btn-item-action.btn-remove {
  background: rgba(239, 68, 68, 0.08);
  border-color: rgba(239, 68, 68, 0.25);
  color: #DC2626;
}

html[data-theme="light"] .btn-item-action.btn-remove:hover {
  background: rgba(239, 68, 68, 0.16);
  border-color: #DC2626;
}

html[data-theme="light"] .form-label {
  color: #334155;
}

html[data-theme="light"] .form-select,
html[data-theme="light"] .form-input.text-input {
  background: #FFFFFF;
  border: 1px solid #CBD5E1;
  color: #0F172A;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.03);
}

html[data-theme="light"] .form-select:focus,
html[data-theme="light"] .form-input.text-input:focus {
  border-color: #0284C7;
  outline: none;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

/* Quantity Stepper Control in Light Theme */
html[data-theme="light"] .quantity-control {
  background: #FFFFFF;
  border: 1px solid #CBD5E1;
  border-radius: var(--radius-md);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.03);
}

html[data-theme="light"] .quantity-control:focus-within {
  border-color: #0284C7;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

html[data-theme="light"] .qty-btn {
  background: #F8FAFC;
  border: none;
  color: #0F172A;
  font-weight: 700;
}

html[data-theme="light"] .qty-btn.btn-minus {
  border-right: 1px solid #E2E8F0;
}

html[data-theme="light"] .qty-btn.btn-plus {
  border-left: 1px solid #E2E8F0;
}

html[data-theme="light"] .qty-btn:hover {
  background: #E0F2FE;
  color: #0284C7;
}

html[data-theme="light"] .qty-input {
  background: #FFFFFF;
  color: #0F172A;
  border: none;
  font-weight: 800;
  font-size: 1.15rem;
}

html[data-theme="light"] .qty-input:focus {
  outline: none;
}

html[data-theme="light"] .btn-add-item {
  background: #F8FAFC;
  border: 2px dashed rgba(2, 132, 199, 0.35);
  color: #0284C7;
}

html[data-theme="light"] .btn-add-item:hover {
  background: #F0F9FF;
  border-color: #0284C7;
}

html[data-theme="light"] .global-customization-box {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

html[data-theme="light"] .customization-heading {
  color: #0F172A;
}

html[data-theme="light"] .custom-checkbox {
  color: #334155;
}

html[data-theme="light"] .custom-checkbox span {
  color: #334155;
}

html[data-theme="light"] .custom-checkbox span strong {
  color: #0F172A;
}

html[data-theme="light"] .custom-checkbox .checkmark {
  background: #FFFFFF;
  border: 2px solid #94A3B8;
}

html[data-theme="light"] .custom-checkbox input:checked + .checkmark {
  background: #0284C7;
  border-color: #0284C7;
}

/* Fast Order Simulator in Light Theme (Compact) */
html[data-theme="light"] .order-items-wrapper {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
}

html[data-theme="light"] .order-items-header-bar {
  border-bottom: 1px solid #F1F5F9;
}

html[data-theme="light"] .order-items-container::-webkit-scrollbar-track,
html[data-theme="light"] .items-summary-chips-grid::-webkit-scrollbar-track {
  background: #F1F5F9;
}

html[data-theme="light"] .order-items-container::-webkit-scrollbar-thumb,
html[data-theme="light"] .items-summary-chips-grid::-webkit-scrollbar-thumb {
  background: #CBD5E1;
}

html[data-theme="light"] .order-items-container::-webkit-scrollbar-thumb:hover,
html[data-theme="light"] .items-summary-chips-grid::-webkit-scrollbar-thumb:hover {
  background: #94A3B8;
}

html[data-theme="light"] .calc-result-box {
  background: #F8FAFC;
  border: 1px solid #CBD5E1;
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

html[data-theme="light"] .calc-result-header {
  border-bottom: 1px solid #E2E8F0;
}

html[data-theme="light"] .calc-result-badge {
  color: #0F172A;
}

html[data-theme="light"] .calc-metrics-row {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  margin-bottom: 10px;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.03);
}

html[data-theme="light"] .calc-metric-item .metric-label {
  color: #64748B;
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
}

html[data-theme="light"] .calc-metric-item .metric-val {
  color: #0F172A;
  font-weight: 800;
}

html[data-theme="light"] .calc-metric-item .metric-val.highlight {
  color: #0284C7;
}

html[data-theme="light"] .calc-metric-item .metric-val.text-cyan {
  color: #0369A1;
}

html[data-theme="light"] .breakdown-title {
  color: #475569;
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

html[data-theme="light"] .summary-chip-item {
  background: #FFFFFF;
  border: 1px solid #CBD5E1;
  color: #1E293B;
  box-shadow: 0 2px 4px rgba(15, 23, 42, 0.04);
  padding: 5px 9px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
}

html[data-theme="light"] .summary-chip-item:hover {
  background: #FFFFFF;
  border-color: #0284C7;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.1);
}

html[data-theme="light"] .chip-color-dot {
  border: 1.5px solid rgba(15, 23, 42, 0.2);
}

html[data-theme="light"] .chip-species-name {
  color: #0284C7;
  font-weight: 700;
}

html[data-theme="light"] .chip-size-tag {
  color: #64748B;
  font-weight: 500;
}

html[data-theme="light"] .chip-color-tag {
  color: #334155;
  font-weight: 600;
}

html[data-theme="light"] .chip-qty-tag {
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: #047857;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
}

html[data-theme="light"] .btn-calc-quote {
  background: linear-gradient(135deg, #10B981 0%, #059669 45%, #047857 100%);
  color: #FFFFFF;
  border: 1px solid rgba(16, 185, 129, 0.4);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

html[data-theme="light"] .btn-calc-quote:hover {
  background: linear-gradient(135deg, #34D399 0%, #10B981 50%, #059669 100%);
  box-shadow: 0 8px 28px rgba(16, 185, 129, 0.45);
}

html[data-theme="light"] .pulse-animation::after {
  border-color: rgba(16, 185, 129, 0.35);
}

html[data-theme="light"] .calc-note {
  color: #64748B;
  font-size: 0.85rem;
  font-weight: 500;
  text-align: center;
  margin-top: 6px;
}

/* Divisão Ideal 3D in Light Theme */
html[data-theme="light"] .ideal3d-section {
  background: #F8FAFC;
}

html[data-theme="light"] .spotlight-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.06);
}

html[data-theme="light"] .spotlight-tag {
  background: rgba(2, 132, 199, 0.1);
  color: #0284C7;
}

html[data-theme="light"] .spotlight-title {
  color: #0F172A;
}

html[data-theme="light"] .spotlight-desc {
  color: #475569;
}

html[data-theme="light"] .spotlight-feature-item strong {
  color: #0F172A;
}

html[data-theme="light"] .spotlight-feature-text span {
  color: #475569;
}

html[data-theme="light"] .spotlight-icon-box {
  background: rgba(2, 132, 199, 0.08);
}

html[data-theme="light"] .spotlight-guarantee {
  color: #64748B;
}

html[data-theme="light"] .pillar-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

html[data-theme="light"] .pillar-card:hover {
  background: #FFFFFF;
  border-color: #BAE6FD;
  box-shadow: 0 15px 35px rgba(2, 132, 199, 0.1);
}

html[data-theme="light"] .pillar-title {
  color: #0F172A;
}

html[data-theme="light"] .pillar-desc {
  color: #475569;
}

html[data-theme="light"] .pillar-list li {
  color: #334155;
}

html[data-theme="light"] .ideal3d-cta-banner {
  background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
  border: 1px solid rgba(2, 132, 199, 0.2);
  box-shadow: 0 10px 30px rgba(2, 132, 199, 0.08);
}

html[data-theme="light"] .ideal3d-cta-banner h3 {
  color: #0F172A;
}

html[data-theme="light"] .ideal3d-cta-banner p {
  color: #475569;
}

/* Videos Section in Light Theme */
html[data-theme="light"] .videos-section {
  background: #F1F5F9;
}

html[data-theme="light"] .main-video-player-box {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.06);
}

html[data-theme="light"] .video-current-title {
  color: #0F172A;
}

html[data-theme="light"] .video-current-desc {
  color: #475569;
}

html[data-theme="light"] .btn-video-wa {
  background: #F8FAFC;
  border: 1px solid #CBD5E1;
  color: #0F172A;
}

html[data-theme="light"] .btn-video-wa:hover {
  background: #F1F5F9;
  border-color: #10B981;
  color: #047857;
}

html[data-theme="light"] .playlist-heading {
  color: #0F172A;
}

html[data-theme="light"] .playlist-item {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

html[data-theme="light"] .playlist-item:hover {
  background: #F8FAFC;
  border-color: #CBD5E1;
}

html[data-theme="light"] .playlist-item.active {
  background: #F0F9FF;
  border-color: #0284C7;
}

html[data-theme="light"] .playlist-item-title {
  color: #0F172A;
}

html[data-theme="light"] .playlist-item-tag {
  color: #64748B;
}

/* Proof & Testimonials in Light Theme */
html[data-theme="light"] .proof-section {
  background: #F8FAFC;
}

html[data-theme="light"] .proof-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

html[data-theme="light"] .proof-quote {
  color: #334155;
}

html[data-theme="light"] .proof-author strong {
  color: #0F172A;
}

html[data-theme="light"] .proof-author span {
  color: #64748B;
}

html[data-theme="light"] .cta-banner {
  background: linear-gradient(135deg, #FFFFFF 0%, #F1F5F9 100%);
  border: 1px solid #E2E8F0;
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.06);
}

html[data-theme="light"] .cta-banner h3 {
  color: #0F172A;
}

html[data-theme="light"] .cta-banner p {
  color: #475569;
}

/* FAQ in Light Theme */
html[data-theme="light"] .faq-section {
  background: #F1F5F9;
}

html[data-theme="light"] .faq-item {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.03);
}

html[data-theme="light"] .faq-question {
  color: #0F172A;
}

html[data-theme="light"] .faq-question:hover {
  color: #0284C7;
}

html[data-theme="light"] .faq-icon {
  color: #0284C7;
}

html[data-theme="light"] .faq-answer p {
  color: #475569;
}

html[data-theme="light"] .faq-answer strong {
  color: #0F172A;
}

html[data-theme="light"] .faq-cta p {
  color: #475569;
}

/* Floating WhatsApp Widget in Light Theme */
html[data-theme="light"] .whatsapp-bubble {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15), 0 0 20px rgba(37, 211, 102, 0.12);
}

html[data-theme="light"] .bubble-title-row strong {
  color: #0F172A;
}

html[data-theme="light"] .bubble-status-row .status-text {
  color: #64748B;
}

html[data-theme="light"] .bubble-chat-msg {
  background: #F1F5F9;
  color: #1E293B;
}

html[data-theme="light"] .bubble-chat-msg strong {
  color: #0F172A;
}

html[data-theme="light"] .bubble-timestamp {
  color: #64748B;
}

html[data-theme="light"] .quick-action-btn {
  background: #F1F5F9;
  border: 1px solid #E2E8F0;
  color: #1E293B;
}

html[data-theme="light"] .quick-action-btn:hover {
  background: #E0F2FE;
  border-color: #0284C7;
  color: #0369A1;
}

html[data-theme="light"] .bubble-close {
  background: #F1F5F9;
  color: #64748B;
}

html[data-theme="light"] .bubble-close:hover {
  background: #E2E8F0;
  color: #0F172A;
}

/* Mobile Menu in Light Theme */
@media (max-width: 768px) {
  html[data-theme="light"] .nav-menu {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid #E2E8F0;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  }

  html[data-theme="light"] .mobile-toggle .bar {
    background: #0F172A;
  }
}
