/* ============================================================
   Cativo Automotive — Design System & Main Stylesheet
   Dark & Light theme · 2026 · Responsive · Scroll animations
   ============================================================ */

/* ---- CSS Custom Properties (design tokens) ---- */
:root {
  /* Colors - Dark theme (default) */
  --color-bg:          #0a0c10;
  --color-bg-card:     #111620;
  --color-bg-section:  #0e1117;
  --color-surface:     #161b26;
  --color-border:      #1f2535;
  --color-primary:     #e8500a;
  --color-primary-hover: #ff6825;
  --color-accent:      #f0a500;
  --color-text:        #e2e8f0;
  --color-text-muted:  #8892a4;
  --color-text-light:  #c4cdd8;
  --color-white:       #ffffff;
  --color-heading:     #ffffff;

  /* Spacing scale - Mobile-first */
  --space-xs:   0.25rem;   /* 4px  */
  --space-sm:   0.5rem;    /* 8px  */
  --space-md:   1rem;      /* 16px */
  --space-lg:   1.5rem;    /* 24px */
  --space-xl:   1.5rem;    /* 24px mobile */
  --space-2xl:  2rem;      /* 32px mobile */
  --space-3xl:  2.5rem;    /* 40px mobile */
  --space-4xl:  3rem;      /* 48px mobile */

  /* Border radius */
  --radius-sm:  0.25rem;
  --radius-md:  0.5rem;
  --radius-lg:  1rem;
  --radius-xl:  1.5rem;
  --radius-full: 9999px;

  /* Typography */
  --font-sans: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-display: 'Inter', 'Segoe UI', system-ui, sans-serif;

  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.25rem;
  --text-5xl:  3rem;
  --text-6xl:  3.75rem;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,.4);
  --shadow-md:  0 4px 16px rgba(0,0,0,.5);
  --shadow-lg:  0 8px 32px rgba(0,0,0,.6);
  --shadow-glow: 0 0 30px rgba(232,80,10,.25);

  /* Header background for dark theme */
  --header-bg: rgba(10,12,16,.85);
  
  /* Hero gradients for dark theme */
  --hero-gradient: linear-gradient(135deg, rgba(10,12,16,.7) 0%, rgba(10,12,16,.5) 50%, rgba(10,12,16,.6) 100%);

  /* Transitions */
  --transition-fast:   150ms ease;
  --transition-base:   250ms ease;
  --transition-slow:   400ms ease;

  /* Layout */
  --max-width: 1280px;
  --nav-height: 56px;
}

/* Tablet e Desktop - aumentar espaçamento */
@media (min-width: 768px) {
  :root {
    --space-xl:   2rem;      /* 32px */
    --space-2xl:  3rem;      /* 48px */
    --space-3xl:  5rem;      /* 80px */
    --space-4xl:  7rem;      /* 112px */
    --nav-height: 60px;
  }
}

/* Light theme — refined warm palette */
:root.light-theme {
  --color-bg:          #fafbfd;
  --color-bg-card:     #ffffff;
  --color-bg-section:  #f5f6fa;
  --color-surface:     #eef0f6;
  --color-border:      #dce0ea;
  --color-primary:     #d64c0a;
  --color-primary-hover: #e85c1a;
  --color-accent:      #d98f00;
  --color-text:        #2d3142;
  --color-text-muted:  #6b7280;
  --color-text-light:  #4a5060;
  --color-white:       #ffffff;
  --color-heading:     #1a1d2e;

  /* Shadows — soft, layered */
  --shadow-sm:  0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:  0 4px 12px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.04);
  --shadow-lg:  0 10px 25px rgba(0,0,0,.09), 0 4px 10px rgba(0,0,0,.04);
  --shadow-glow: 0 0 20px rgba(214,76,10,.1);

  /* Header */
  --header-bg: rgba(250,251,253,.92);

  /* Hero gradient */
  --hero-gradient: linear-gradient(135deg, rgba(250,251,253,.25) 0%, rgba(250,251,253,.15) 50%, rgba(250,251,253,.2) 100%);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: background-color 300ms ease, color 300ms ease;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ---- Utilities ---- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: clamp(var(--space-md), 4vw, var(--space-xl));
}
.section-tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: rgba(232,80,10,.12);
  border: 1px solid rgba(232,80,10,.3);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
}
.section-title {
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-white);
  margin-bottom: var(--space-md);
}
.section-subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 600px;
  line-height: 1.7;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.65rem 1rem;
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition-base);
  white-space: nowrap;
}

@media (min-width: 768px) {
  .btn {
    padding: 0.75rem var(--space-xl);
    font-size: var(--text-base);
  }
}
.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
}
.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}
.btn-outline {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}
.btn-outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-2px);
}

/* ---- Scroll animation ---- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: 1000;
  background: var(--header-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition-base);
}
.nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-lg);
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: -0.02em;
}
.nav-logo span { color: var(--color-primary); }
.nav-logo-icon {
  width: 32px;
  height: 32px;
  background: var(--color-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
}

@media (min-width: 768px) {
  .nav-logo {
    font-size: var(--text-xl);
  }
  .nav-logo-icon {
    width: 36px;
    height: 36px;
    font-size: var(--text-base);
  }
}
.nav-links {
  display: none;
  align-items: center;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
    gap: var(--space-lg);
  }
}
.nav-links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--color-primary);
  transition: width var(--transition-base);
  border-radius: var(--radius-full);
}
.nav-links a:hover { color: var(--color-white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { 
  display: none;
  margin-left: var(--space-md);
}

@media (min-width: 768px) {
  .nav-cta {
    display: inline-flex;
  }
}
.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: var(--space-sm);
  background: none;
  border: none;
}

@media (min-width: 768px) {
  .nav-hamburger {
    display: none;
  }
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
}

/* Theme toggle button */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: none;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  color: var(--color-text);
  transition: all var(--transition-base);
  font-size: var(--text-lg);
  margin-left: var(--space-sm);
  padding: 0;
}

@media (min-width: 768px) {
  .theme-toggle {
    width: 40px;
    height: 40px;
    margin-left: var(--space-md);
  }
}

.theme-toggle .theme-icon {
  transition: transform 300ms ease, stroke 300ms ease;
  width: 20px;
  height: 20px;
}

.theme-toggle:hover .theme-icon {
  transform: rotate(20deg);
}

.theme-toggle:active .theme-icon {
  transform: rotate(-20deg);
}

.theme-toggle:hover {
  border-color: var(--color-primary);
  background: var(--color-surface);
  color: var(--color-primary);
}

.theme-toggle:active {
  transform: scale(0.95);
}

@media (max-width: 768px) {
  .nav-links.nav-open,
  .nav-cta.nav-open,
  .theme-toggle {
    display: flex !important;
  }

  .nav-links.nav-open {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--header-bg);
    padding: var(--space-xl);
    border-bottom: 1px solid var(--color-border);
    gap: var(--space-lg);
    z-index: 999;
  }

  .nav-cta.nav-open {
    position: fixed;
    top: calc(var(--nav-height) + 200px);
    left: 0;
    right: 0;
    justify-content: center;
    z-index: 999;
    padding: 0 var(--space-xl) var(--space-xl);
    background: var(--header-bg);
  }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 0; /* Header overlaps hero for transparency */
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(232,80,10,.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 20%, rgba(240,165,0,.06) 0%, transparent 55%),
    var(--color-bg);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(31,37,53,.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31,37,53,.35) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--hero-gradient);
  pointer-events: none;
  z-index: 1;
}
.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(180deg, transparent 0%, var(--color-bg) 100%);
  pointer-events: none;
  z-index: 1;
}
.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 135%;
  object-fit: cover;
  object-position: center;
  clip-path: inset(0 0 15% 0);
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
  padding-block: var(--space-3xl);
}

@media (min-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: clamp(var(--space-2xl), 5vw, var(--space-4xl));
    padding-block: calc(var(--space-4xl) * 1.2);
  }
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}
.hero-eyebrow-dot {
  width: 8px; height: 8px;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232,80,10,.5); }
  50%       { box-shadow: 0 0 0 8px rgba(232,80,10,.0); }
}
.hero-eyebrow-text {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-title {
  font-size: clamp(1.75rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--color-white);
  margin-bottom: var(--space-md);
  letter-spacing: -0.03em;
}
.hero-title .highlight {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: var(--text-base);
  color: var(--color-text);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: var(--space-lg);
}

@media (min-width: 768px) {
  .hero-desc {
    font-size: var(--text-lg);
    margin-bottom: var(--space-2xl);
  }
}
.hero-actions {
  display: flex;
  gap: var(--space-sm);
  flex-direction: column;
  flex-wrap: wrap;
}

.hero-actions .btn {
  width: 100%;
  justify-content: center;
}

@media (min-width: 640px) {
  .hero-actions {
    gap: var(--space-md);
    flex-direction: row;
  }
  
  .hero-actions .btn {
    width: auto;
  }
}
.hero-stats {
  display: flex;
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-border);
  flex-direction: column;
  align-items: flex-start;
}

@media (min-width: 640px) {
  .hero-stats {
    gap: var(--space-2xl);
    flex-direction: row;
    align-items: center;
    margin-top: var(--space-3xl);
    padding-top: var(--space-2xl);
  }
}
.hero-stat-value {
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--color-white);
}
.hero-stat-with-icon {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}
.stat-icon {
  color: var(--color-primary);
  flex-shrink: 0;
}
.hero-stat-value span { color: var(--color-primary); }
.hero-stat-label {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  margin-top: var(--space-xs);
  text-shadow: 0 1px 6px rgba(0,0,0,.5);
}
.hero-visual {
  display: none;
  justify-content: center;
  align-items: center;
}

@media (min-width: 768px) {
  .hero-visual {
    display: flex;
  }
}
.hero-card-stack {
  position: relative;
  width: clamp(280px, 28vw, 400px);
  height: clamp(60vh, 70vh, 100vh);
  max-height: 700px;
}
.hero-card {
  position: absolute;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  background: var(--color-bg-card);
  overflow: hidden;
}
.hero-card-main {
  width: clamp(220px, 22vw, 320px);
  height: clamp(240px, 24vw, 340px);
  top: 40px;
  left: clamp(10px, 3vw, 40px);
  background: linear-gradient(145deg, var(--color-surface), var(--color-bg-card));
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  animation: float 6s ease-in-out infinite;
}
.hero-card-accent {
  width: 200px;
  height: 120px;
  top: 0; left: 0;
  background: linear-gradient(135deg, rgba(232,80,10,.2), rgba(240,165,0,.1));
  border-color: rgba(232,80,10,.3);
  animation: float 6s ease-in-out infinite 1.5s;
}
.hero-card-accent2 {
  width: 160px;
  height: 90px;
  bottom: 0; right: 0;
  background: linear-gradient(135deg, rgba(240,165,0,.15), rgba(232,80,10,.1));
  border-color: rgba(240,165,0,.3);
  animation: float 6s ease-in-out infinite 3s;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}
.hero-icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-lg);
  background: rgba(232,80,10,.15);
  border: 1px solid rgba(232,80,10,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}
.hero-card-title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-white);
}
.hero-card-sub {
  text-align: center;
  font-size: var(--text-sm);
  color: var(--color-text);
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  background: rgba(34,197,94,.12);
  border: 1px solid rgba(34,197,94,.25);
  border-radius: var(--radius-full);
  padding: var(--space-xs) var(--space-sm);
  font-size: var(--text-xs);
  font-weight: 600;
  color: #4ade80;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding-block: var(--space-4xl);
  background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
  border-top: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}
#about-heading{
  font-size: var(--text-base);
  color: #ffffff;
}

.about-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
  max-width: 100%;
}

@media (min-width: 768px) {
  .about-inner {
    grid-template-columns: 1fr 1fr;
    gap: clamp(var(--space-2xl), 5vw, var(--space-4xl));
  }
}
.about-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}
.about-content h3,
.about-content p,
.about-content li {
  color: #ffffff;
}
.about-visual {
  position: relative;
}
.about-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-bg-card) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 5rem;
}
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--color-primary);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  box-shadow: var(--shadow-glow);
}
.about-badge-value {
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1;
}
.about-badge-label {
  font-size: var(--text-xs);
  color: rgba(255,255,255,.75);
  margin-top: var(--space-xs);
}
.about-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

@media (min-width: 640px) {
  .about-features {
    grid-template-columns: 1fr 1fr;
    margin-top: var(--space-2xl);
  }
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
}
.about-feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: rgba(232,80,10,.12);
  border: 1px solid rgba(232,80,10,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.about-feature-title {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: var(--space-xs);
}
.about-feature-text {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding-block: var(--space-4xl);
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
}
.services-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}
.services-header .section-subtitle { margin-inline: auto; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}
.service-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  transition: all var(--transition-base);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  transform: scaleX(0);
  transition: transform var(--transition-base);
}
.service-card:hover {
  border-color: rgba(232,80,10,.4);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: rgba(232,80,10,.12);
  border: 1px solid rgba(232,80,10,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--space-lg);
  transition: all var(--transition-base);
}
.service-card:hover .service-icon {
  background: rgba(232,80,10,.25);
  border-color: rgba(232,80,10,.5);
}
.service-title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}
.service-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-primary);
  transition: gap var(--transition-fast);
}
.service-card:hover .service-link { gap: var(--space-sm); }

/* ============================================================
   HIGHLIGHTS
   ============================================================ */
.highlights {
  padding-block: var(--space-4xl);
  background: var(--color-bg-section);
  border-top: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}
.highlights::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(232,80,10,.06) 0%, transparent 65%);
  pointer-events: none;
}
.highlights-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: flex-start;
}

@media (min-width: 768px) {
  .highlights-inner {
    grid-template-columns: 1fr 1.5fr;
    gap: clamp(var(--space-2xl), 5vw, var(--space-4xl));
  }
}
.highlights-intro .section-subtitle { max-width: 400px; }
.highlights-cta { margin-top: var(--space-xl); }
.highlights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 640px) {
  .highlights-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.highlight-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  transition: all var(--transition-base);
}
.highlight-card:hover {
  border-color: rgba(232,80,10,.3);
  background: var(--color-bg-card);
}
.highlight-number {
  font-size: var(--text-4xl);
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: var(--space-sm);
}
.highlight-title {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-xs);
}
.highlight-text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding-block: var(--space-4xl);
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4xl);
  align-items: start;
}
.contact-info .section-subtitle { margin-bottom: var(--space-2xl); }

/* Contact content grid - side by side */
.contact-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: start;
}

@media (min-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.contact-channel {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}
.contact-channel:hover {
  border-color: rgba(232,80,10,.3);
  background: var(--color-bg-card);
}
.contact-channel-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  background: rgba(232,80,10,.12);
  border: 1px solid rgba(232,80,10,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-channel-label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-bottom: 2px;
}
.contact-channel-value {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-white);
}
.contact-form {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
}

/* Contact Map Styles */
.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}

.contact-map iframe{
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding: var(--space-md);
  border: 1px solid rgba(232,80,10,.2);
  border-radius: var(--radius-md);
}
.contact-content .contact-map {
  margin-top: 0;
}

.contact-map iframe {
  display: block;
  border: none;
}

.contact-action-button {
  margin-top: var(--space-lg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
}
.form-group label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-light);
}
.form-control {
  width: 100%;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 0.75rem var(--space-md);
  font-size: var(--text-base);
  color: var(--color-text);
  font-family: var(--font-sans);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}
.form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(232,80,10,.15);
}
.form-control::placeholder { color: var(--color-text-muted); }
textarea.form-control {
  resize: vertical;
  min-height: 120px;
}
.form-submit { width: 100%; justify-content: center; font-size: var(--text-base); padding: 0.875rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-bg-section);
  border-top: 1px solid var(--color-border);
  padding-block: var(--space-3xl) var(--space-2xl);
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid var(--color-border);
}

@media (min-width: 768px) {
  .footer-top {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-2xl);
    padding-bottom: var(--space-3xl);
  }
}
.footer-col {
  display: flex;
  flex-direction: column;
}
.footer-col-title {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
}
.footer-col-description {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.footer-brand-label {
  margin-top: var(--space-lg);
}
.footer-action-btn {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: var(--text-sm);
  transition: background var(--transition-base);
  text-decoration: none;
  width: fit-content;
}
.footer-action-btn:hover {
  background: var(--color-primary-hover);
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.footer-links a {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
  text-decoration: none;
}
.footer-links a:hover {
  color: var(--color-primary);
}
.footer-socials {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.footer-social-link {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
  text-decoration: none;
  font-size: var(--text-sm);
}
.footer-social-link svg {
  width: 24px;
  height: 24px;
}
.footer-social-link:hover {
  color: var(--color-primary);
}
.footer-social-link:hover svg {
  color: var(--color-primary);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-lg);
  flex-direction: column;
  gap: var(--space-md);
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    padding-top: var(--space-2xl);
    flex-direction: row;
    text-align: left;
    gap: var(--space-lg);
  }
}
.footer-bottom-left {
  flex: 1;
}
.footer-bottom-links {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-md);
  font-size: var(--text-sm);
}
.footer-bottom-links a {
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
  text-decoration: none;
}
.footer-bottom-links a:hover {
  color: var(--color-primary);
}
.footer-bottom-links .separator {
  color: var(--color-border);
}
.footer-copyright {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin: 0;
}
.footer-bottom-right {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
}

@media (min-width: 768px) {
  .footer-bottom-right {
    width: auto;
    justify-content: flex-end;
  }
}
.footer-region-selector {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  transition: color var(--transition-fast);
  text-decoration: none;
}
.footer-region-selector:hover {
  color: var(--color-primary);
}

/* ============================================================
   OFFERINGS / BANNERS CAROUSEL
   ============================================================ */
.offerings {
  padding-block: var(--space-4xl);
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
}

.offerings-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.offerings-header .section-subtitle {
  margin-inline: auto;
}

.offerings-carousel {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  padding: var(--space-xl);
}

.offerings-banners-wrapper {
  position: relative;
  overflow: hidden;
  margin-bottom: var(--space-2xl);
}

.offerings-banners {
  display: flex;
  position: relative;
}

.offering-banner {
  min-width: 100%;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}

.offering-banner.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.offering-banner-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
  padding: var(--space-lg) 0;
}

@media (min-width: 768px) {
  .offering-banner-content {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    padding: var(--space-xl) 0;
  }
}

.offering-banner-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.offering-image-placeholder {
  width: 200px;
  height: 200px;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  border: 2px solid var(--color-border);
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .offering-image-placeholder {
    width: 280px;
    height: 280px;
    font-size: 6rem;
    margin: 0;
  }
}

.offering-image-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.05) 0%, transparent 60%);
  pointer-events: none;
}

.offering-color-1 {
  background: linear-gradient(135deg, rgba(232,80,10,.15), rgba(232,80,10,.05));
  color: var(--color-primary);
}

.offering-color-2 {
  background: linear-gradient(135deg, rgba(240,165,0,.15), rgba(240,165,0,.05));
  color: var(--color-accent);
}

.offering-color-3 {
  background: linear-gradient(135deg, rgba(100,200,255,.15), rgba(100,200,255,.05));
  color: #64c8ff;
}

.offering-color-4 {
  background: linear-gradient(135deg, rgba(200,100,255,.15), rgba(200,100,255,.05));
  color: #c864ff;
}

.offering-banner-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.offering-banner-title {
  font-size: clamp(1.5rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.2;
}

.offering-banner-desc {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.offering-banner-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--color-primary);
  font-weight: 600;
  transition: all var(--transition-base);
  width: fit-content;
}

.offering-banner-link:hover {
  color: var(--color-primary-hover);
  transform: translateX(4px);
  gap: var(--space-md);
}

/* Controls */
.offerings-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-lg);
}

.offerings-dots {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex: 1;
}

.offering-dot {
  width: 12px;
  height: 12px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-full);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition-base);
}

.offering-dot:hover {
  border-color: var(--color-primary);
}

.offering-dot.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.offerings-arrows {
  display: flex;
  gap: var(--space-md);
}

.offering-arrow {
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: transparent;
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.offering-arrow:hover {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  transform: scale(1.1);
}

/* ============================================================
   SUPPLIERS / PARTNERS SECTION
   ============================================================ */
.suppliers {
  position: relative;
  padding-block: var(--space-4xl);
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  overflow: hidden;
}

.suppliers-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.suppliers-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(31,37,53,.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31,37,53,.2) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.5;
}

.suppliers-gradient-orb {
  position: absolute;
  border-radius: var(--radius-full);
  filter: blur(80px);
  mix-blend-mode: screen;
  opacity: 0.4;
}

.suppliers-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232,80,10,.3) 0%, transparent 70%);
  top: -200px;
  left: -150px;
  animation: float 15s ease-in-out infinite;
}

.suppliers-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(240,165,0,.2) 0%, transparent 70%);
  bottom: -100px;
  right: -100px;
  animation: float 18s ease-in-out infinite 2s;
}

.suppliers-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
  position: relative;
  z-index: 1;
}

.suppliers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .suppliers-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
    margin-bottom: var(--space-3xl);
  }
}

/* Mapa Interativo GPS - Fornecedores (Google Maps Style) */
.suppliers-map-wrapper {
  position: relative;
  width: 100%;
  height: 350px;
  margin: var(--space-2xl) 0;
  background: linear-gradient(135deg, #e0e5e0 0%, #d8dfd8 50%, #d0d7d0 100%);
  border: 1px solid rgba(232,80,10,.1);
  border-radius: var(--radius-xl);
  overflow: hidden;
  z-index: 1;
  will-change: transform;
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
}

@media (min-width: 640px) {
  .suppliers-map-wrapper {
    height: 450px;
  }
}

@media (min-width: 1024px) {
  .suppliers-map-wrapper {
    height: 700px;
  }
}

/* Mapa de fundo estilo Google Maps */
.suppliers-map-background {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: 
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(232,80,10,.02) 40px,
      rgba(232,80,10,.02) 80px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 40px,
      rgba(240,165,0,.015) 40px,
      rgba(240,165,0,.015) 80px
    ),
    linear-gradient(to bottom, #e0e5e0 0%, #dce4dc 50%, #d8dfd8 100%);
  overflow: hidden;
}

.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,200,200,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,200,200,.06) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.5;
}

.map-roads {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(0deg, rgba(255,255,255,.25) 3px, transparent 3px),
    linear-gradient(90deg, rgba(255,255,255,.25) 3px, transparent 3px);
  background-size: 200px 200px;
  background-position: 0 0, 100px 100px;
  opacity: 0.4;
}

/* Conexões SVG entre pins */
.suppliers-map-connections {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.suppliers-map-connections line {
  stroke: rgba(232,80,10,.2);
  stroke-width: 2;
  stroke-dasharray: 6, 4;
  opacity: 0.5;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,.08));
}

/* Container dos pins */
.suppliers-pins-container {
  position: absolute;
  inset: 0;
  z-index: 3;
}

/* Pin individual - Google Maps Style */
.supplier-pin {
  position: absolute;
  width: 110px;
  height: 130px;
  cursor: pointer;
  transform: translate(-50%, -100%);
  will-change: transform, filter;
  filter: drop-shadow(0 3px 8px rgba(0,0,0,.25));
  transition: filter var(--transition-base);
}

.supplier-pin:hover {
  filter: drop-shadow(0 6px 16px rgba(232,80,10,.35));
}

/* Alfinete do pin (estilo Google Maps) */
.pin-inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 10px;
}

/* Cabeça do alfinete (círculo com logo) */
.pin-inner::before {
  content: '';
  position: absolute;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: white;
  border: 3px solid;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: 0 2px 10px rgba(0,0,0,.3);
}

/* Ponta do alfinete */
.pin-inner::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-left: 22px solid transparent;
  border-right: 22px solid transparent;
  border-top: 35px solid;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  filter: drop-shadow(0 2px 5px rgba(0,0,0,.2));
}

/* Cores dos fornecedores */
.supplier-color-1::before,
.supplier-color-1::after {
  border-color: var(--color-primary);
}

.supplier-color-2::before,
.supplier-color-2::after {
  border-color: var(--color-accent);
}

.supplier-color-3::before,
.supplier-color-3::after {
  border-color: #64c8ff;
}

.supplier-color-4::before,
.supplier-color-4::after {
  border-color: #c864ff;
}

.supplier-color-5::before,
.supplier-color-5::after {
  border-color: #64ffc8;
}

.supplier-color-6::before,
.supplier-color-6::after {
  border-color: #ff9664;
}

.supplier-color-7::before,
.supplier-color-7::after {
  border-color: #6496ff;
}

/* Ícone/Logo dentro do pin */
.pin-icon {
  position: absolute;
  top: 38px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.pin-icon svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Ponto pulsante no centro do pin */
.pin-dot {
  position: absolute;
  width: 11px;
  height: 11px;
  background: currentColor;
  border-radius: 50%;
  top: 38px;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  animation: pulse-dot 2.5s ease-in-out infinite;
  will-change: box-shadow;
}

@keyframes pulse-dot {
  0%, 100% {
    box-shadow: 0 0 0 0px rgba(232,80,10,.4);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(232,80,10,.1);
  }
}

/* Label do pin (nome da empresa) */
.pin-label {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  width: 95%;
  z-index: 0;
  text-shadow: 0 1px 3px rgba(0,0,0,.4);
  pointer-events: none;
  max-height: 32px;
  overflow: hidden;
}

.pin-name {
  display: block;
  font-weight: 700;
  font-size: 11px;
}

.pin-desc {
  display: block;
  font-weight: 500;
  font-size: 8px;
  opacity: 0.9;
}

/* Tooltip do pin (card de informações) */
.pin-tooltip {
  position: absolute;
  bottom: -220px;
  left: 50%;
  transform: translateX(-50%);
  width: 260px;
  background: var(--color-surface);
  border: 1px solid rgba(232,80,10,.25);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  z-index: 20;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base), visibility var(--transition-base);
  visibility: hidden;
  box-shadow: 0 10px 32px rgba(0,0,0,.4);
  backdrop-filter: blur(12px);
}

.pin-tooltip.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.pin-tooltip h4 {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-xs);
}

.pin-tooltip p {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: var(--space-sm);
}

.pin-tooltip-features,
.pin-features {
  list-style: none;
  font-size: var(--text-xs);
  color: var(--color-text);
}

.pin-tooltip-features li,
.pin-features li {
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pin-tooltip-features li::before,
.pin-features li::before {
  content: '✓';
  color: var(--color-primary);
  font-weight: bold;
  flex-shrink: 0;
  font-size: 12px;
}

/* Legenda do mapa */
.suppliers-map-legend {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: var(--text-xs);
  color: var(--color-text);
  background: rgba(255,255,255,.85);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(232,80,10,.12);
  z-index: 5;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
}

.legend-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 1.5s ease-in-out infinite;
}

.suppliers-cta {
  text-align: center;
  padding: var(--space-2xl);
  background: linear-gradient(135deg, rgba(232,80,10,.1), rgba(240,165,0,.05));
  border: 1px solid rgba(232,80,10,.2);
  border-radius: var(--radius-xl);
  position: relative;
  z-index: 1;
  margin-top: var(--space-2xl);
}

.suppliers-cta h3 {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.suppliers-cta p {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}

/* Responsive Offerings */
@media (max-width: 1024px) {
  .offerings-banners-wrapper {
    margin-bottom: var(--space-lg);
  }

  .offering-banner-content {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    padding: var(--space-lg) 0;
  }

  .offering-image-placeholder {
    width: 200px;
    height: 200px;
    font-size: 4rem;
  }

  .offering-banner-title {
    font-size: var(--text-2xl);
  }

  .offering-banner-desc {
    font-size: var(--text-base);
  }
}

/* Responsive Suppliers Map - Definitivamente Responsivo */

/* === DESKTOP GRANDE (1400px+) === */
@media (min-width: 1400px) {
  .suppliers-map-wrapper {
    height: 750px;
  }

  .supplier-pin {
    width: 120px;
    height: 140px;
  }

  .pin-inner::before {
    width: 80px;
    height: 80px;
    border-width: 3.5px;
  }

  .pin-inner::after {
    border-left: 24px solid transparent;
    border-right: 24px solid transparent;
    border-top: 38px solid;
  }

  .pin-icon {
    width: 60px;
    height: 60px;
  }

  .pin-label {
    font-size: 12px;
  }

  .pin-dot {
    width: 12px;
    height: 12px;
  }

  .pin-tooltip {
    width: 280px;
  }
}

/* === LAPTOP / DESKTOP (1024px - 1399px) === */
@media (min-width: 1024px) and (max-width: 1399px) {
  .suppliers-map-wrapper {
    height: 700px;
  }

  .supplier-pin {
    width: 110px;
    height: 130px;
  }

  .pin-inner::before {
    width: 75px;
    height: 75px;
  }

  .pin-inner::after {
    border-left: 22px solid transparent;
    border-right: 22px solid transparent;
    border-top: 35px solid;
  }

  .pin-icon {
    width: 55px;
    height: 55px;
  }

  .pin-label {
    font-size: 11px;
  }

  .pin-dot {
    width: 11px;
    height: 11px;
  }

  .pin-tooltip {
    width: 260px;
  }
}

/* === TABLET LANDSCAPE (768px - 1023px) === */
@media (min-width: 768px) and (max-width: 1023px) {
  .suppliers-map-wrapper {
    height: 500px;
    margin: var(--space-2xl) 0;
  }

  .supplier-pin {
    width: 95px;
    height: 110px;
  }

  .pin-inner::before {
    width: 65px;
    height: 65px;
    border-width: 2.5px;
  }

  .pin-inner::after {
    border-left: 19px solid transparent;
    border-right: 19px solid transparent;
    border-top: 30px solid;
  }

  .pin-icon {
    width: 48px;
    height: 48px;
    top: 33px;
  }

  .pin-dot {
    width: 9px;
    height: 9px;
    top: 33px;
  }

  .pin-label {
    font-size: 10px;
  }

  .pin-name {
    font-size: 10px;
  }

  .pin-desc {
    font-size: 7px;
  }

  .pin-tooltip {
    width: 240px;
    bottom: -200px;
  }

  .suppliers-map-legend {
    font-size: 11px;
    padding: 8px 12px;
    bottom: 15px;
    right: 15px;
  }

  .map-grid {
    background-size: 45px 45px;
  }

  .map-roads {
    background-size: 180px 180px;
  }

  .suppliers-map-connections line {
    stroke-width: 1.5;
  }
}

/* === TABLET PORTRAIT (481px - 767px) === */
@media (min-width: 481px) and (max-width: 767px) {
  /* Hero */
  .hero {
    min-height: auto;
    padding-top: var(--space-2xl);
  }

  .hero-eyebrow { 
    justify-content: flex-start;
    margin-bottom: var(--space-sm);
  }

  .hero-title {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
    margin-bottom: var(--space-sm);
  }

  .hero-desc {
    font-size: var(--text-sm);
    margin-bottom: var(--space-lg);
  }

  .hero-stat-value {
    font-size: var(--text-xl);
  }

  /* About */
  .about-visual {
    order: -1;
    margin-bottom: var(--space-lg);
  }

  .about-badge { 
    right: var(--space-md);
    bottom: var(--space-md);
  }

  /* Contact */
  .contact-inner { 
    gap: var(--space-xl);
  }

  .contact-channels { 
    flex-direction: column; 
    gap: var(--space-md);
  }

  .contact-map { 
    margin-top: var(--space-lg);
    height: 300px;
  }

  /* Offerings */
  .offerings-carousel {
    padding: var(--space-lg);
  }

  .offering-banner-content {
    gap: var(--space-lg);
    padding: var(--space-lg) 0;
    text-align: center;
  }

  .offering-banner-title {
    font-size: clamp(1.25rem, 4vw, 1.75rem);
  }

  .offering-banner-desc {
    font-size: var(--text-sm);
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  /* Contact form */
  .form-submit { 
    width: 100%; 
  }

  /* Suppliers Map */
  .suppliers-map-wrapper {
    height: 420px;
    margin: var(--space-2xl) 0;
  }

  .supplier-pin {
    width: 85px;
    height: 100px;
  }

  .pin-inner::before {
    width: 58px;
    height: 58px;
    border-width: 2px;
  }

  .pin-inner::after {
    border-left: 17px solid transparent;
    border-right: 17px solid transparent;
    border-top: 27px solid;
  }

  .pin-icon {
    width: 42px;
    height: 42px;
    top: 29px;
  }

  .pin-dot {
    width: 8px;
    height: 8px;
    top: 29px;
  }

  .pin-label {
    font-size: 9px;
  }

  .pin-name {
    font-size: 9px;
  }

  .pin-desc {
    font-size: 6.5px;
  }

  .pin-tooltip {
    width: 220px;
    bottom: -180px;
  }

  .suppliers-map-legend {
    font-size: 10px;
    padding: 6px 10px;
    bottom: 12px;
    right: 12px;
  }

  .map-grid {
    background-size: 40px 40px;
  }

  .map-roads {
    background-size: 160px 160px;
  }

  .suppliers-map-connections line {
    stroke-width: 1.3;
  }
}

/* === MOBILE (320px - 480px) === */
@media (max-width: 480px) {
  .suppliers-map-wrapper {
    height: 320px;
    margin: var(--space-2xl) 0;
    border-radius: 12px;
  }

  .supplier-pin {
    width: 72px;
    height: 85px;
  }

  .pin-inner::before {
    width: 50px;
    height: 50px;
    border-width: 1.5px;
  }

  .pin-inner::after {
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 23px solid;
  }

  .pin-icon {
    width: 36px;
    height: 36px;
    top: 25px;
  }

  .pin-dot {
    width: 7px;
    height: 7px;
    top: 25px;
  }

  .pin-label {
    font-size: 8px;
    bottom: 5px;
  }

  .pin-name {
    font-size: 8px;
  }

  .pin-desc {
    display: none;
  }

  .pin-tooltip {
    width: 200px;
    bottom: -160px;
    padding: 12px;
  }

  .pin-tooltip h4 {
    font-size: 12px;
    margin-bottom: 6px;
  }

  .pin-tooltip p {
    font-size: 11px;
    margin-bottom: 8px;
  }

  .pin-tooltip-features li,
  .pin-features li {
    padding: 3px 0;
  }

  .suppliers-map-legend {
    font-size: 9px;
    padding: 5px 8px;
    bottom: 10px;
    right: 10px;
  }

  .legend-dot {
    width: 6px;
    height: 6px;
  }

  .map-grid {
    background-size: 35px 35px;
  }

  .map-roads {
    background-size: 120px 120px;
  }

  .suppliers-map-connections line {
    stroke-width: 1;
    stroke-dasharray: 3, 2;
  }

  .suppliers-header {
    margin-bottom: var(--space-2xl);
  }

  .suppliers-cta {
    padding: var(--space-lg);
    margin-top: var(--space-xl);
  }

  .suppliers-cta h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-sm);
  }

  .suppliers-cta p {
    font-size: var(--text-base);
    margin-bottom: var(--space-md);
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* --- Reveal delay extras (preserve animations) --- */
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }
.reveal-delay-7 { transition-delay: 0.7s; }

/* === EXTRA-LARGE DESKTOP / WIDE MONITORS (min-width: 1600px) === */
@media (min-width: 1600px) {
  :root {
    --max-width: 1440px;
  }

  .hero-inner {
    gap: var(--space-4xl);
  }

  .hero-card-stack {
    width: 420px;
    max-height: 750px;
  }

  .hero-card-main {
    width: 340px;
    height: 360px;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
  }

  .highlights-inner {
    gap: var(--space-4xl);
  }

  .footer-top {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* === LARGE DESKTOP (1280px - 1599px) === */
@media (min-width: 1280px) and (max-width: 1599px) {
  :root {
    --max-width: 1200px;
  }
}

/* === STANDARD DESKTOP / SMALL LAPTOP (1024px - 1279px) === */
@media (min-width: 1024px) and (max-width: 1279px) {
  :root {
    --max-width: 960px;
    --space-4xl: 5rem;
  }

  .hero-inner {
    grid-template-columns: 1.3fr 1fr;
    gap: var(--space-2xl);
  }

  .hero-card-stack {
    width: 300px;
    max-height: 550px;
  }

  .hero-card-main {
    width: 250px;
    height: 270px;
  }

  .hero-card-accent {
    width: 170px;
    height: 100px;
  }

  .hero-card-accent2 {
    width: 130px;
    height: 75px;
  }

  .about-inner {
    gap: var(--space-2xl);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .highlights-inner {
    grid-template-columns: 1fr 1.3fr;
    gap: var(--space-2xl);
  }

  .offering-banner-content {
    gap: var(--space-xl);
  }

  .offering-image-placeholder {
    width: 240px;
    height: 240px;
    font-size: 5rem;
  }
}

/* === TABLET LANDSCAPE (768px - 1023px) === */
@media (min-width: 768px) and (max-width: 1023px) {
  :root {
    --max-width: 720px;
    --space-3xl: 3.5rem;
    --space-4xl: 4.5rem;
  }

  /* Hero */
  .hero {
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-block: calc(var(--space-3xl) * 1.2);
    gap: var(--space-2xl);
  }

  .hero-visual { display: none; }
  .hero-desc { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats {
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-xl);
  }
  .hero-eyebrow { justify-content: center; }

  .hero-title {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
  }

  .hero-stat-value {
    font-size: var(--text-2xl);
  }

  /* About */
  .about-inner {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .about-visual {
    order: -1;
    max-width: 500px;
    margin-inline: auto;
  }

  .about-badge { right: 0; }

  .about-features {
    grid-template-columns: 1fr 1fr;
  }

  /* Services */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Highlights */
  .highlights-inner {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .highlights-intro {
    text-align: center;
  }

  .highlights-intro .section-subtitle {
    max-width: 100%;
    margin-inline: auto;
  }

  .highlights-intro .btn {
    margin-inline: auto;
  }

  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Contact */
  .contact-content {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .contact-channels { flex-direction: column; }
  .contact-map { margin-top: var(--space-lg); }

  /* Offerings */
  .offerings-carousel {
    padding: var(--space-lg);
  }

  .offering-banner-content {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    padding: var(--space-lg) 0;
    text-align: center;
  }

  .offering-banner-image {
    order: -1;
  }

  .offering-image-placeholder {
    width: 200px;
    height: 200px;
    font-size: 4rem;
    margin-inline: auto;
  }

  .offering-banner-title {
    font-size: var(--text-2xl);
  }

  .offering-banner-desc {
    font-size: var(--text-base);
  }

  .offerings-controls {
    flex-direction: column;
    gap: var(--space-md);
  }

  /* Suppliers */
  .suppliers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }

  .supplier-card {
    height: 250px;
  }

  .suppliers-orb-1,
  .suppliers-orb-2 {
    filter: blur(50px);
    opacity: 0.25;
  }

  /* Form */
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-right {
    width: 100%;
    justify-content: center;
  }
}

/* === SMALL MOBILE (max-width: 480px) === */
@media (max-width: 480px) {
  :root {
    --space-3xl: 2.5rem;
    --space-4xl: 3rem;
  }

  .container { padding-inline: var(--space-md); }

  /* Hero */
  .hero-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  .hero-desc {
    font-size: var(--text-base);
  }

  .hero-stats {
    flex-direction: column;
    gap: var(--space-lg);
    align-items: center;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* About */
  .about-features { grid-template-columns: 1fr; }

  .about-img-wrap {
    aspect-ratio: 16 / 9;
  }

  /* Highlights */
  .highlights-grid {
    grid-template-columns: 1fr;
  }

  /* Contact */
  .contact-form { padding: var(--space-lg); }

  /* Offerings */
  .offering-image-placeholder {
    width: 140px;
    height: 140px;
    font-size: 2.5rem;
  }

  .offering-banner-title {
    font-size: var(--text-lg);
  }

  /* Section titles scale down */
  .section-title {
    font-size: clamp(var(--text-2xl), 5vw, var(--text-4xl));
  }

  /* Footer */
  .footer-bottom-links { font-size: var(--text-xs); gap: 0.25rem; }

  .footer-col-title {
    font-size: var(--text-xs);
  }

  /* Suppliers CTA */
  .suppliers-cta {
    padding: var(--space-lg);
    margin-top: var(--space-xl);
  }

  .suppliers-cta h3 {
    font-size: var(--text-lg);
  }

  .suppliers-cta p {
    font-size: var(--text-base);
  }
}

/* === EXTRA SMALL (max-width: 360px) === */
@media (max-width: 360px) {
  .container {
    padding-inline: var(--space-sm);
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: var(--text-2xl);
  }

  .btn {
    padding: 0.65rem var(--space-lg);
    font-size: var(--text-sm);
  }

  .about-features { grid-template-columns: 1fr; }

  .hero-stat-value {
    font-size: var(--text-xl);
  }
}

/* ============================================================
   LIGHT THEME — Comprehensive Overrides
   ============================================================ */

/* --- Text colors: headings & titles --- */
:root.light-theme .section-title,
:root.light-theme .nav-logo,
:root.light-theme .hero-title,
:root.light-theme .hero-stat-value,
:root.light-theme .hero-card-title,
:root.light-theme .about-feature-title,
:root.light-theme .service-title,
:root.light-theme .highlight-title,
:root.light-theme .contact-channel-value,
:root.light-theme .footer-col-title,
:root.light-theme .offering-banner-title,
:root.light-theme .pin-tooltip h4,
:root.light-theme .suppliers-cta h3 {
  color: var(--color-heading);
}

/* --- Hero --- */
:root.light-theme .hero {
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(232,80,10,.05) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 20%, rgba(240,165,0,.03) 0%, transparent 55%),
    var(--color-bg);
}
:root.light-theme .hero::before {
  background-image:
    linear-gradient(rgba(0,0,0,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,.035) 1px, transparent 1px);
}
:root.light-theme .hero-card-main {
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,.7);
}
:root.light-theme .hero-badge {
  background: rgba(34,197,94,.08);
  border-color: rgba(34,197,94,.18);
  color: #15803d;
}
:root.light-theme .hero-card-sub {
  color: var(--color-text);
}

/* --- About --- */
:root.light-theme .about {
  background: linear-gradient(135deg, #e8ecf5 0%, #dde3f0 50%, #e5eaf4 100%);
}
:root.light-theme .about #about-heading,
:root.light-theme .about .section-title {
  color: var(--color-heading) !important;
}
:root.light-theme .about .section-subtitle,
:root.light-theme .about .section-tag {
  color: var(--color-text);
}
:root.light-theme .about .section-subtitle {
  color: var(--color-text-muted);
}
:root.light-theme .about-copy h2,
:root.light-theme .about-copy p,
:root.light-theme .about-copy span {
  color: var(--color-heading);
}
:root.light-theme .about-copy .section-subtitle {
  color: var(--color-text-muted);
}
:root.light-theme .about-copy .section-tag {
  color: var(--color-primary);
}
:root.light-theme .about-content h3,
:root.light-theme .about-content p,
:root.light-theme .about-content li {
  color: var(--color-text);
}
:root.light-theme .about-feature {
  background: rgba(255,255,255,.85);
  border-color: var(--color-border);
}
:root.light-theme .about-img-wrap {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fc 100%);
}

/* --- Services --- */
:root.light-theme .service-card {
  box-shadow: var(--shadow-sm);
}
:root.light-theme .service-card:hover {
  box-shadow: var(--shadow-md), var(--shadow-glow);
}

/* --- Highlights --- */
:root.light-theme .highlights::before {
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(232,80,10,.025) 0%, transparent 65%);
}
:root.light-theme .highlight-card:hover {
  background: var(--color-white);
}

/* --- Contact --- */
:root.light-theme .contact-form {
  box-shadow: var(--shadow-sm);
}
:root.light-theme .form-control {
  background: var(--color-white);
}

/* --- Footer --- */
:root.light-theme .site-footer {
  background: #eef0f5;
}

/* --- Suppliers --- */
:root.light-theme .suppliers-grid-pattern {
  background-image:
    linear-gradient(rgba(0,0,0,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,.03) 1px, transparent 1px);
}
:root.light-theme .suppliers-gradient-orb {
  mix-blend-mode: multiply;
  opacity: 0.1;
}
:root.light-theme .suppliers-map-wrapper {
  border-color: var(--color-border);
  box-shadow: var(--shadow-md);
}
:root.light-theme .suppliers-cta {
  background: linear-gradient(135deg, rgba(232,80,10,.05), rgba(240,165,0,.03));
  border-color: rgba(232,80,10,.12);
}
:root.light-theme .suppliers-cta p {
  color: var(--color-text-muted);
}

/* --- Offerings --- */
:root.light-theme .offerings-carousel {
  background: var(--color-bg-card);
  border-color: var(--color-border);
}

/* === HERO MOBILE (NEW) === */

.hero-mobile {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 80px 20px 40px;
    text-align: center;
    overflow: hidden;
    background: var(--color-bg);
}

.hero-mobile-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-mobile-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-mobile-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10, 12, 16, 0.7) 0%, rgba(10, 12, 16, 0.4) 50%, rgba(10, 12, 16, 0.8) 100%);
}

.light-theme .hero-mobile-overlay {
    background: linear-gradient(to bottom, rgba(250, 251, 253, 0.4) 0%, rgba(250, 251, 253, 0.1) 50%, rgba(250, 251, 253, 0.6) 100%);
}

.hero-mobile-content {
    position: relative;
    z-index: 2;
}

.hero-mobile-eyebrow {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 24px;
}

.eyebrow-dot {
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--color-primary);
}

.hero-mobile-title {
    font-size: clamp(2.5rem, 10vw, 4rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 16px;
}

.light-theme .hero-mobile-title {
    color: var(--color-heading);
}

.hero-mobile-title .highlight {
    background: linear-gradient(to right, #ff6b2b, #ff9d2b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-mobile-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 320px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.light-theme .hero-mobile-desc {
    color: var(--color-text-light);
}

.hero-mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 280px;
    margin: 0 auto 48px;
}

.btn-mobile-primary {
    background: var(--color-primary);
    color: #fff;
    padding: 16px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
}

.btn-mobile-outline {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    padding: 16px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
}

.light-theme .btn-mobile-outline {
    color: var(--color-text);
    border-color: var(--color-border);
}

.hero-mobile-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px;
    border-radius: 16px;
    margin-top: 20px;
}

.badge-icon img {
    height: 48px;
    width: auto;
}

.badge-text {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.badge-text strong {
    color: #fff;
    font-size: 14px;
}

.light-theme .badge-text strong {
    color: var(--color-heading);
}

.badge-text span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

.light-theme .badge-text span {
    color: var(--color-text-muted);
}

.hero-mobile-scroll {
    position: absolute;
    bottom: 30px;
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.scroll-dot {
    width: 4px;
    height: 8px;
    background: #fff;
    border-radius: 2px;
    animation: scrollMove 2s infinite;
}

@keyframes scrollMove {
    0% { transform: translateY(0); opacity: 0; }
    50% { transform: translateY(10px); opacity: 1; }
    100% { transform: translateY(20px); opacity: 0; }
}

/* Visibility Rules */
@media (min-width: 993px) {
    .hero-mobile {
        display: none;
    }
}

@media (max-width: 992px) {
    .hero {
        display: none !important;
    }
    
    /* Global Adjustments for Tablet/Mobile */
    .container {
        padding-inline: 20px;
    }
    
    .section-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .about-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-visual {
        order: 2;
    }
    
    .about-copy {
        order: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Products Grid Fix */
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
    
    /* Suppliers Section Fix */
    .suppliers-inner {
        padding-block: 40px;
    }
}
