/* ========================================
   Centro Elétrico São Francisco
   Professional Commercial Design
   ======================================== */

:root {
  /* Brand Colors */
  --blue: #0A3D91;
  --blue-dark: #062D6B;
  --blue-darker: #041E47;
  --blue-light: #1E5BB8;
  --orange: #E85D04;
  --orange-dark: #C44D03;
  --orange-light: #FF7A2E;
  --yellow: #F9B000;
  --yellow-light: #FFCC33;
  --yellow-pale: #FFF4D6;

  /* Texture overlays */
  /* Neutrals */
  --white: #FFFFFF;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;
  --gray-900: #0F172A;

  /* Shadows - refined with color tints */
  --shadow-sm: 0 1px 3px rgba(10, 61, 145, 0.06);
  --shadow-md: 0 4px 16px rgba(10, 61, 145, 0.08);
  --shadow-lg: 0 12px 32px rgba(10, 61, 145, 0.1);
  --shadow-xl: 0 24px 48px rgba(10, 61, 145, 0.12);
  --shadow-glow-orange: 0 8px 32px rgba(232, 93, 4, 0.25);
  --shadow-glow-yellow: 0 8px 32px rgba(249, 176, 0, 0.3);

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 2.5rem;
  --space-3xl: 3rem;
  --space-4xl: 4rem;
  --space-5xl: 5rem;

  /* Typography */
  --font-display: 'Bebas Neue', Impact, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Layout */
  --container-max: 1200px;
  --container-pad: 1.5rem;
  --header-height: 72px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration: 200ms;
  --duration-slow: 400ms;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}


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

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

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

/* ========================================
   Utilities
   ======================================== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  padding: var(--space-sm) var(--space-lg);
  font-weight: 600;
  font-size: 0.875rem;
  z-index: 9999;
}

.skip-link:focus {
  top: var(--space-md);
}

*:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .loader { display: none !important; }
}

/* ========================================
   Loader
   ======================================== */
.loader {
  position: fixed;
  inset: 0;
  background: linear-gradient(165deg, var(--blue) 0%, var(--blue-dark) 50%, var(--blue-darker) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 9999;
  transition: opacity 0.5s var(--ease), visibility 0.5s;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.loader-logo {
  color: var(--yellow);
  margin-bottom: var(--space-xl);
  filter: drop-shadow(0 4px 20px rgba(249, 176, 0, 0.3));
  animation: loader-pulse 2s ease-in-out infinite;
}

@keyframes loader-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.9; }
}

.loader-progress-container {
  width: 200px;
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.loader-progress-container::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.loader-progress {
  height: 100%;
  background: var(--yellow);
  width: 0;
  border-radius: 4px;
}

/* ========================================
   Header
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  z-index: 1000;
  transition: all var(--duration-slow) var(--ease);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: var(--gray-200);
  box-shadow: var(--shadow-md);
}

.header > .container {
  height: 100%;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  transition: transform var(--duration) var(--ease);
}

.logo:hover {
  transform: scale(1.02);
}

.logo svg {
  color: var(--yellow);
  filter: drop-shadow(0 2px 4px rgba(249, 176, 0, 0.3));
}

.logo-text {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--blue);
  letter-spacing: -0.01em;
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.nav-link {
  position: relative;
  padding: var(--space-sm) var(--space-md);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gray-600);
  border-radius: 8px;
  transition: color var(--duration), background var(--duration);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--orange);
  border-radius: 1px;
  transition: all var(--duration) var(--ease);
  transform: translateX(-50%);
}

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

.nav-link:hover::after {
  width: calc(100% - 2rem);
}

.cta-btn {
  background: var(--orange);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 8px;
  transition: all var(--duration) var(--ease);
}

.cta-btn:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-sm);
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transition: all var(--duration) var(--ease);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ========================================
   Hero
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  background: var(--blue-dark);
  display: flex;
  flex-direction: column;
  padding-top: var(--header-height);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--orange);
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: var(--yellow);
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
  will-change: contents;
}

.hero-wave {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.5;
  will-change: contents;
}

.hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: var(--space-4xl) 0 var(--space-2xl);
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-layout {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: var(--space-xl);
  width: 100%;
}

.hero-content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Hero Brands Card */
.hero-brands-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  padding: var(--space-xl) var(--space-2xl);
  background: linear-gradient(145deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.2) 100%);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero-brands-title {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
}

.hero-brands-slider {
  position: relative;
  width: 220px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-brand-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.hero-brand-slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.hero-brand-slide img {
  max-width: 160px;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.hero-brand-slide img[src*="vonder"] {
  transform: scale(2.5);
}

.hero-brand-slide img[src*="glight"] {
  filter: none;
  max-height: 70px;
  max-width: 180px;
}

.hero-brand-slide img[src*="nambei"] {
  filter: drop-shadow(0 0 25px rgba(255, 255, 255, 0.6));
  max-height: 90px;
  max-width: 220px;
}

.hero-brands-card:hover .hero-brand-slide.active img {
  opacity: 1;
  transform: scale(1.05);
}

.hero-brands-card:hover .hero-brand-slide.active img[src*="vonder"] {
  transform: scale(2.6);
}

.hero-brands-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.hero-brands-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-brands-dot:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: scale(1.2);
}

.hero-brands-dot.active {
  background: var(--yellow);
  box-shadow: 0 0 10px rgba(249, 176, 0, 0.5);
}

.hero-brands-count {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.03em;
  font-weight: 500;
}

/* Hero Testimonials Card */
.hero-testimonials-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  padding: var(--space-xl) var(--space-2xl);
  background: linear-gradient(145deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.2) 100%);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  max-width: 320px;
  margin: 0 auto;
}

.hero-testimonials-title {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  text-align: center;
}

.hero-testimonials-slider {
  position: relative;
  width: 100%;
  min-height: 100px;
}

.hero-testimonial-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.hero-testimonial-slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  position: relative;
}

.hero-testimonial-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  font-style: italic;
}

.hero-testimonial-author {
  font-size: 0.8rem;
  color: var(--yellow);
  font-weight: 600;
}

.hero-testimonials-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.hero-testimonials-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-testimonials-dot:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: scale(1.2);
}

.hero-testimonials-dot.active {
  background: var(--yellow);
  box-shadow: 0 0 10px rgba(249, 176, 0, 0.5);
}

.hero-testimonials-rating {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.hero-rating-stars {
  color: var(--yellow);
  font-size: 1rem;
  letter-spacing: 2px;
}

.hero-rating-text {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--yellow);
  color: var(--gray-900);
  padding: 0.5rem 1.125rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-lg);
  border-radius: 4px;
}

.hero-tagline::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 400;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: var(--space-lg);
  letter-spacing: 0.02em;
}

.hero-title-line {
  display: block;
}

.hero-title-line--accent {
  color: var(--yellow);
  text-shadow: 0 2px 20px rgba(249, 176, 0, 0.2);
}

.hero-subtitle {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-xl);
  max-width: 420px;
  line-height: 1.75;
}

.hero-cta {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.btn {
  position: relative;
  padding: 0.875rem 1.75rem;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 8px;
  transition: all var(--duration) var(--ease);
  overflow: hidden;
}

.btn--primary {
  background: var(--yellow);
  color: var(--gray-900);
  box-shadow: var(--shadow-sm);
}

.btn--primary:hover {
  background: var(--yellow-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
}

.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: var(--space-xl);
  padding: var(--space-md) var(--space-lg);
  margin-top: var(--space-xl);
  background: rgba(0, 0, 0, 0.2);
  border-left: 3px solid var(--orange);
}

.hero-stat {
  position: relative;
}

.hero-stat::after {
  content: '';
  position: absolute;
  right: calc(var(--space-2xl) / -2);
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
}

.hero-stat:last-child::after {
  display: none;
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--yellow);
  line-height: 1;
  letter-spacing: 0.02em;
}

.hero-stat-label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: var(--space-xs);
  letter-spacing: 0.01em;
}

/* ========================================
   Sections
   ======================================== */
section {
  padding: var(--space-4xl) 0;
  position: relative;
  contain: layout style;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-label {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  padding: 0.375rem 1rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: 4px;
  margin-bottom: var(--space-md);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--gray-900);
  letter-spacing: 0.02em;
  line-height: 1;
  position: relative;
  display: inline-block;
}

/* Decorative underline accent */
.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--gray-500);
  max-width: 500px;
  margin: var(--space-md) auto 0;
  line-height: 1.7;
}

/* ========================================
   Produtos - Split Card Design
   ======================================== */
.produtos {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.produtos::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, var(--gray-200) 50%, transparent 90%);
}

.produtos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  list-style: none;
}

.produto-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 4px 6px rgba(10, 61, 145, 0.04),
    0 10px 20px rgba(10, 61, 145, 0.08);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  contain: layout paint;
  border: 1px solid rgba(10, 61, 145, 0.06);
}

.produto-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 10px 20px rgba(10, 61, 145, 0.1),
    0 30px 50px rgba(10, 61, 145, 0.15);
  border-color: rgba(232, 93, 4, 0.2);
}

/* Top section - light background with illustration */
.produto-card-top {
  position: relative;
  background: var(--gray-50);
  padding: var(--space-xl) var(--space-lg);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--gray-100);
}

.produto-category {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  color: var(--blue);
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 2;
}

/* Diagonal stripe in corner - brand orange */
.produto-diagonal {
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: var(--orange);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  z-index: 1;
}

.produto-illustration {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
}

.produto-illustration svg {
  width: 100%;
  max-width: 160px;
  height: auto;
  transition: transform 0.4s var(--ease);
}

.produto-card:hover .produto-illustration svg {
  transform: scale(1.08);
}

/* Bottom section - brand blue with orange/yellow accents */
.produto-card-bottom {
  position: relative;
  background: var(--blue);
  padding: var(--space-lg);
  color: var(--white);
  min-height: 180px;
  display: flex;
  flex-direction: column;
}

/* Orange accent line at top of bottom section */
.produto-card-bottom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
}

.produto-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.produto-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  color: var(--white);
  line-height: 1.2;
}

.produto-subtitle {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
}

.produto-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--white);
  color: var(--blue);
  padding: 0.75rem 1.25rem;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-top: var(--space-md);
  align-self: flex-start;
  transition: all 0.3s var(--ease);
}

.produto-cta svg {
  transition: transform 0.3s var(--ease);
  color: var(--orange);
}

.produto-card:hover .produto-cta {
  background: var(--orange);
  color: var(--white);
}

.produto-card:hover .produto-cta svg {
  transform: translateX(3px);
  color: var(--white);
}

/* Lightning bolt decoration - yellow/orange */
.produto-bolt {
  position: absolute;
  right: var(--space-md);
  bottom: var(--space-md);
  width: 70px;
  height: 90px;
  color: rgba(249, 176, 0, 0.25);
  pointer-events: none;
  transition: transform 0.4s var(--ease), color 0.4s var(--ease);
}

.produto-bolt svg {
  width: 100%;
  height: 100%;
}

.produto-card:hover .produto-bolt {
  color: rgba(249, 176, 0, 0.4);
  transform: scale(1.05);
}

/* ========================================
   Sobre
   ======================================== */
.sobre {
  background: var(--gray-50);
  position: relative;
}

.sobre::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, var(--gray-200) 50%, transparent 90%);
}

.sobre-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.sobre-text .section-label {
  display: block;
  width: fit-content;
  background: var(--blue);
  margin-bottom: var(--space-md);
}

.sobre-text .section-title {
  display: block;
  width: fit-content;
  margin-bottom: var(--space-lg);
}

.sobre-desc {
  font-size: 1rem;
  color: var(--gray-600);
  margin-bottom: var(--space-md);
  line-height: 1.75;
}

.sobre-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}

.stat-item {
  background: var(--blue);
  padding: var(--space-lg) var(--space-md);
  border-radius: 8px;
  text-align: center;
  transition: transform var(--duration) var(--ease);
}

.stat-item:hover {
  transform: translateY(-2px);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--yellow);
  line-height: 1;
  letter-spacing: 0.02em;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: var(--space-xs);
  letter-spacing: 0.01em;
}


/* ========================================
   Marcas Parceiras
   ======================================== */
.marcas {
  background: var(--gray-50);
  position: relative;
  overflow: hidden;
}

.marcas::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, var(--gray-200) 50%, transparent 90%);
}

.marcas::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, var(--gray-200) 50%, transparent 90%);
}

.marcas .section-label {
  background: var(--yellow);
  color: var(--gray-900);
}

.marcas-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: var(--space-xl) 0;
  padding: var(--space-lg) 0;
}

.marcas-carousel::before,
.marcas-carousel::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.marcas-carousel::before {
  left: 0;
  background: linear-gradient(90deg, var(--white) 0%, transparent 100%);
}

.marcas-carousel::after {
  right: 0;
  background: linear-gradient(270deg, var(--white) 0%, transparent 100%);
}

.marcas-track {
  display: flex;
  gap: var(--space-3xl);
  animation: marquee 35s linear infinite;
  width: max-content;
}

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

.marcas-track:hover {
  animation-play-state: paused;
}

.marcas-slide {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md) var(--space-lg);
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--gray-100);
  transition: transform var(--duration-slow) var(--ease),
              box-shadow var(--duration-slow) var(--ease),
              border-color var(--duration-slow) var(--ease);
  min-width: 180px;
  height: 100px;
  contain: layout;
}

.marcas-slide:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-lg);
  transform: scale(1.05);
}

.marcas-slide img {
  max-width: 140px;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all var(--duration-slow) var(--ease);
}

.marcas-slide:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

.marcas-cta {
  text-align: center;
  padding-top: var(--space-md);
}

.marcas-cta p {
  font-size: 1rem;
  color: var(--gray-500);
}

.marcas-cta strong {
  color: var(--blue);
  font-weight: 700;
  position: relative;
}

.marcas-cta strong::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--orange);
  border-radius: 1px;
}

/* ========================================
   Diferenciais
   ======================================== */
.diferenciais {
  background: var(--white);
  position: relative;
}

.diferenciais::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, var(--gray-200) 50%, transparent 90%);
}

.diferenciais .section-label {
  background: var(--orange);
  color: var(--white);
}

.diferenciais .section-title {
  color: var(--gray-900);
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  list-style: none;
  position: relative;
  z-index: 1;
}

.diferencial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: var(--space-2xl);
  text-align: left;
  transition: transform var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease),
              border-color var(--duration) var(--ease);
}

.diferencial-card:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.diferencial-icon {
  width: auto;
  height: auto;
  background: transparent;
  border-radius: 0;
  display: block;
  color: var(--blue);
  margin-bottom: var(--space-lg);
  transition: transform var(--duration-slow) var(--ease), color var(--duration-slow) var(--ease);
}

.diferencial-card:hover .diferencial-icon {
  color: var(--orange);
}

.diferencial-title {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.diferencial-desc {
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* Alternating card variations for visual rhythm */
/* ========================================
   Localização
   ======================================== */
.localizacao {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.localizacao-bg-pattern {
  position: absolute;
  inset: 0;
  background: var(--gray-50);
  pointer-events: none;
}

.localizacao-bg-pattern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, var(--gray-200) 50%, transparent 90%);
}

.localizacao-bg-pattern::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, var(--gray-200) 50%, transparent 90%);
}

.localizacao .section-header {
  position: relative;
  z-index: 1;
}

.localizacao .section-label {
  background: var(--blue);
}

.localizacao-content {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-3xl);
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.localizacao-address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.info-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: var(--space-lg) var(--space-xl);
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  position: relative;
  overflow: hidden;
  transition: all var(--duration-slow) var(--ease);
  box-shadow: var(--shadow-sm);
}

.info-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.info-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--orange);
  border-radius: 16px 0 0 16px;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--duration-slow) var(--ease);
}

.info-card:hover .info-card-accent {
  transform: scaleY(1);
}

.info-card--link {
  cursor: pointer;
  text-decoration: none;
}

.info-card--link:hover {
  border-color: var(--blue);
}

.info-card-link-icon {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 32px;
  height: 32px;
  background: var(--gray-100);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  transition: all var(--duration) var(--ease);
}

.info-card--link:hover .info-card-link-icon {
  background: var(--blue);
  color: var(--white);
  transform: translate(2px, -2px);
}

.info-card-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: var(--blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background var(--duration) var(--ease);
}

.info-card:hover .info-card-icon {
  background: var(--orange);
}

.info-card-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.info-card-title {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-xs);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.info-card-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gray-200);
}

.info-card-text {
  font-size: 0.9375rem;
  color: var(--gray-700);
  line-height: 1.7;
}

.info-card-schedule {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.schedule-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-xs) 0;
  border-bottom: 1px dashed var(--gray-200);
}

.schedule-row:last-child {
  border-bottom: none;
}

.schedule-days {
  font-size: 0.875rem;
  color: var(--gray-600);
}

.schedule-time {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue);
  background: var(--gray-50);
  padding: 0.25rem 0.625rem;
  border-radius: 6px;
}

.schedule-row--closed .schedule-time {
  background: rgba(232, 93, 4, 0.08);
  color: var(--orange);
}

.info-card--cta {
  background: var(--blue);
  border: none;
  position: relative;
  overflow: hidden;
}

.info-card--cta::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--yellow);
}

.info-card--cta .info-card-icon {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.info-card--cta .info-card-icon::after {
  display: none;
}

.info-card--cta:hover .info-card-icon {
  background: rgba(255, 255, 255, 0.25);
}

.info-card--cta .info-card-title {
  color: var(--yellow);
}

.info-card--cta .info-card-title::after {
  background: rgba(255, 255, 255, 0.2);
}

.info-card--cta .info-card-text {
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 600;
}

.info-card--cta .info-card-accent {
  display: none;
}

.info-card--cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(10, 61, 145, 0.3);
}

.info-card-link {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-900);
  transition: all var(--duration) var(--ease);
  position: relative;
  z-index: 1;
}

.info-card-link:hover {
  transform: scale(1.05);
  background: var(--yellow-light);
}

.info-card-link svg {
  transition: transform var(--duration) var(--ease);
}

.info-card-link:hover svg {
  transform: translateX(3px);
}

.localizacao-map-wrapper {
  position: relative;
}

.localizacao-map-frame {
  position: relative;
  padding: var(--space-sm);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
}

.map-corner {
  position: absolute;
  width: 24px;
  height: 24px;
  z-index: 2;
  pointer-events: none;
}

.map-corner::before,
.map-corner::after {
  content: '';
  position: absolute;
  background: var(--orange);
  border-radius: 2px;
}

.map-corner--tl {
  top: -2px;
  left: -2px;
}

.map-corner--tl::before {
  top: 0;
  left: 0;
  width: 24px;
  height: 4px;
}

.map-corner--tl::after {
  top: 0;
  left: 0;
  width: 4px;
  height: 24px;
}

.map-corner--tr {
  top: -2px;
  right: -2px;
}

.map-corner--tr::before {
  top: 0;
  right: 0;
  width: 24px;
  height: 4px;
}

.map-corner--tr::after {
  top: 0;
  right: 0;
  width: 4px;
  height: 24px;
}

.map-corner--bl {
  bottom: -2px;
  left: -2px;
}

.map-corner--bl::before {
  bottom: 0;
  left: 0;
  width: 24px;
  height: 4px;
}

.map-corner--bl::after {
  bottom: 0;
  left: 0;
  width: 4px;
  height: 24px;
}

.map-corner--br {
  bottom: -2px;
  right: -2px;
}

.map-corner--br::before {
  bottom: 0;
  right: 0;
  width: 24px;
  height: 4px;
}

.map-corner--br::after {
  bottom: 0;
  right: 0;
  width: 4px;
  height: 24px;
}

.localizacao-map {
  border-radius: 18px;
  overflow: hidden;
  min-height: 420px;
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(10, 61, 145, 0.08);
}

.localizacao-map::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  box-shadow: inset 0 0 0 1px rgba(10, 61, 145, 0.1);
  pointer-events: none;
  z-index: 1;
}

.localizacao-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
}

.map-badge {
  position: absolute;
  bottom: calc(var(--space-sm) + 16px);
  left: calc(var(--space-sm) + 16px);
  background: var(--white);
  padding: 0.625rem 1rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-700);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  z-index: 2;
}

.map-badge svg {
  color: var(--orange);
}

/* ========================================
   Contato
   ======================================== */
.contato {
  background: var(--white);
  position: relative;
}

.contato::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, var(--gray-200) 50%, transparent 90%);
}

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

.contato-content .section-label {
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--space-md);
}

.contato-content .section-title {
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--space-md);
}

.contato-subtitle {
  font-size: 1.0625rem;
  color: var(--gray-500);
}

.contato-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
  list-style: none;
  align-items: stretch;
}

.contato-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  text-align: center;
  transition: transform var(--duration-slow) var(--ease),
              box-shadow var(--duration-slow) var(--ease),
              border-color var(--duration-slow) var(--ease);
  box-shadow: var(--shadow-sm);
  contain: layout paint;
  height: 100%;
}

.contato-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.contato-card--whatsapp {
  border-color: #25D366;
}

.contato-card--whatsapp:hover {
  border-color: #128C7E;
}

.contato-card--phone {
  border-color: var(--blue);
}

.contato-card--phone:hover {
  border-color: var(--blue-dark);
}

.contato-card--email {
  border-color: var(--orange);
}

.contato-card--email:hover {
  border-color: var(--orange-dark);
}

.contato-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--duration-slow) var(--ease);
}

.contato-card--whatsapp .contato-icon {
  background: #25D366;
  color: var(--white);
}

.contato-card--phone .contato-icon {
  background: var(--blue);
  color: var(--white);
}

.contato-card--email .contato-icon {
  background: var(--orange);
  color: var(--white);
}

.contato-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.contato-label {
  font-weight: 700;
  font-size: 1rem;
  color: var(--gray-900);
  letter-spacing: -0.01em;
}

.contato-value {
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.4;
}

/* Smaller font for long email addresses */
.contato-card--email .contato-value {
  font-size: 0.8125rem;
  overflow-wrap: break-word;
  word-break: break-word;
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background: var(--gray-900);
  color: var(--white);
  padding: var(--space-4xl) 0 var(--space-lg);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--blue);
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  transition: opacity var(--duration) var(--ease);
}

.footer-logo:hover {
  opacity: 0.9;
}

.footer-logo svg {
  color: var(--yellow);
  filter: drop-shadow(0 2px 6px rgba(249, 176, 0, 0.25));
}

.footer-logo span {
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: -0.01em;
}

.footer-desc {
  font-size: 0.875rem;
  color: var(--gray-400);
  line-height: 1.75;
  max-width: 280px;
}

.footer-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-lg);
  color: var(--white);
  position: relative;
  padding-bottom: var(--space-xs);
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--orange);
  border-radius: 1px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-nav a {
  font-size: 0.875rem;
  color: var(--gray-400);
  transition: all var(--duration) var(--ease);
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
}

.footer-nav a::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--yellow);
  transition: width var(--duration) var(--ease);
}

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

.footer-nav a:hover::before {
  width: 12px;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  font-style: normal;
}

.footer-info a,
.footer-info p {
  font-size: 0.875rem;
  color: var(--gray-400);
  transition: color var(--duration) var(--ease);
  word-break: break-word;
  overflow-wrap: break-word;
}

.footer-info a:hover {
  color: var(--yellow);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: var(--space-lg);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: var(--gray-500);
}

.footer-cnpj {
  font-size: 0.75rem;
  color: var(--gray-600);
  margin-top: var(--space-xs);
  font-family: var(--font-mono, 'SF Mono', 'Monaco', 'Consolas', monospace);
  letter-spacing: 0.02em;
}

.footer-social {
  display: flex;
  gap: var(--space-md);
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--gray-400);
  transition: all 0.3s var(--ease);
}

.footer-social a:hover {
  background: var(--yellow);
  color: var(--gray-900);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 20px;
  height: 20px;
}

/* ========================================
   MOBILE-FIRST RESPONSIVE DESIGN
   Base styles are mobile, then scale UP
   ======================================== */

/* ----------------------------------------
   Mobile Base Overrides (default/small screens)
   ---------------------------------------- */

/* Header Mobile - Premium Hamburger */
.menu-toggle {
  display: flex;
  z-index: 1001;
  position: relative;
  padding: 12px;
  min-width: 48px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: transparent;
  transition: all 0.3s var(--ease);
}

.menu-toggle:hover,
.menu-toggle:focus {
  background: rgba(10, 61, 145, 0.06);
}

.menu-toggle[aria-expanded="true"] {
  background: rgba(232, 93, 4, 0.08);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transition: all 0.35s var(--ease-bounce);
  position: absolute;
}

.menu-toggle[aria-expanded="true"] span {
  background: var(--orange);
}

.menu-toggle span:nth-child(1) {
  top: 16px;
}

.menu-toggle span:nth-child(2) {
  top: 23px;
  width: 14px;
}

.menu-toggle span:nth-child(3) {
  top: 30px;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  top: 23px;
  transform: rotate(45deg);
  width: 20px;
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  top: 23px;
  transform: rotate(-45deg);
  width: 20px;
}

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

/* Mobile Menu Backdrop */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 61, 145, 0.2);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
  z-index: 998;
}

.nav-backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Menu - Premium Dropdown */
.nav {
  position: fixed;
  top: var(--header-height);
  left: var(--space-md);
  right: var(--space-md);
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: var(--space-xs);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-20px) scale(0.95);
  transform-origin: top center;
  transition: opacity 0.35s var(--ease-out),
              visibility 0.35s var(--ease-out),
              transform 0.35s var(--ease-bounce);
  z-index: 999;
  box-shadow:
    0 4px 6px rgba(10, 61, 145, 0.04),
    0 12px 24px rgba(10, 61, 145, 0.08),
    0 24px 48px rgba(10, 61, 145, 0.06);
  border: 1px solid rgba(10, 61, 145, 0.08);
  overflow: hidden;
}

/* Decorative accent line */
.nav::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: var(--orange);
  border-radius: 0 0 3px 3px;
}

.nav.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(8px) scale(1);
}

.nav .nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-display);
  font-size: 1.375rem;
  letter-spacing: 0.03em;
  color: var(--gray-800);
  padding: var(--space-md) var(--space-lg);
  border-radius: 12px;
  min-height: 52px;
  transition: all 0.25s var(--ease);
  position: relative;
  opacity: 0;
  transform: translateX(-10px);
}

/* Subtle separator between items */
.nav .nav-link:not(:last-child)::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: var(--space-lg);
  right: var(--space-lg);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
}

.nav.active .nav-link {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered animation for nav links */
.nav.active .nav-link:nth-child(1) { transition-delay: 0.05s; }
.nav.active .nav-link:nth-child(2) { transition-delay: 0.1s; }
.nav.active .nav-link:nth-child(3) { transition-delay: 0.15s; }
.nav.active .nav-link:nth-child(4) { transition-delay: 0.2s; }
.nav.active .nav-link:nth-child(5) { transition-delay: 0.25s; }

/* Arrow indicator - reset base styles completely */
.nav .nav-link::after {
  content: '';
  position: static;
  width: 8px;
  height: 8px;
  background: none;
  border: none;
  border-right: 2px solid var(--gray-400);
  border-bottom: 2px solid var(--gray-400);
  border-radius: 0;
  transform: rotate(-45deg);
  opacity: 0;
  flex-shrink: 0;
  transition: all 0.25s var(--ease);
}

.nav .nav-link:hover,
.nav .nav-link:focus {
  background: rgba(232, 93, 4, 0.06);
  color: var(--orange);
  padding-left: var(--space-xl);
}

.nav .nav-link:hover::after,
.nav .nav-link:focus::after {
  opacity: 1;
  border-color: var(--orange);
  transform: rotate(-45deg) translateX(3px);
}

/* Mobile CTA Button */
.nav-cta-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  border-radius: 12px;
  text-align: center;
  min-height: 52px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s var(--ease);
}

.nav.active .nav-cta-mobile {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.nav-cta-mobile:hover,
.nav-cta-mobile:focus {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

.nav-cta-mobile svg {
  transition: transform 0.25s var(--ease);
}

.nav-cta-mobile:hover svg {
  transform: translateX(3px);
}

/* Logo Mobile */
.logo-text {
  font-size: 0.8125rem;
  max-width: 150px;
  line-height: 1.25;
}

/* Hero Mobile */
.hero::before {
  height: 3px;
}

.hero::after {
  width: 4px;
}

.hero-inner {
  padding: var(--space-2xl) 0 var(--space-lg);
}

.hero-content {
  max-width: 100%;
}

.hero-tagline {
  font-size: 0.6875rem;
}

.hero-title {
  font-size: clamp(2rem, 10vw, 2.75rem);
}

.hero-subtitle {
  font-size: 1rem;
  line-height: 1.6;
}

.hero-cta {
  flex-direction: column;
  gap: var(--space-sm);
}

.btn {
  width: 100%;
  text-align: center;
  justify-content: center;
  padding: 1rem 1.5rem;
  font-size: 0.9375rem;
  min-height: 52px;
}

.hero-stats {
  flex-wrap: wrap;
  gap: var(--space-md);
  padding: var(--space-md);
  margin-top: var(--space-lg);
  border-left-width: 2px;
}

.hero-stat {
  flex: 1;
  min-width: 80px;
  text-align: center;
}

.hero-stat::after {
  display: none;
}

.hero-stat-number {
  font-size: 1.75rem;
}

.hero-stat-label {
  font-size: 0.6875rem;
}

/* Sections Mobile */
section {
  padding: var(--space-2xl) 0;
}

.section-header {
  margin-bottom: var(--space-xl);
}

.section-title {
  font-size: 1.75rem;
}

.section-subtitle {
  font-size: 0.9375rem;
}

.section-label {
  font-size: 0.5625rem;
}

/* Produtos Mobile - Split Card */
.produtos-grid {
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.produto-card-top {
  min-height: 180px;
  padding: var(--space-lg);
}

.produto-category {
  font-size: 1.25rem;
}

.produto-diagonal {
  width: 60px;
  height: 60px;
}

.produto-illustration svg {
  max-width: 120px;
}

.produto-card-bottom {
  min-height: 150px;
  padding: var(--space-md) var(--space-lg);
}

.produto-title {
  font-size: 1.25rem;
}

.produto-subtitle {
  font-size: 0.8125rem;
}

.produto-cta {
  padding: 0.625rem 1rem;
  font-size: 0.75rem;
}

.produto-bolt {
  width: 50px;
  height: 65px;
  right: var(--space-sm);
  bottom: var(--space-sm);
}

/* Sobre Mobile */
.sobre-desc {
  font-size: 0.9375rem;
  text-align: left;
}

.sobre-stats {
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
}

.stat-item {
  padding: var(--space-md);
}

.stat-number {
  font-size: 1.5rem;
}

.stat-label {
  font-size: 0.5625rem;
}

/* Marcas Parceiras Mobile */
.marcas-carousel {
  margin: var(--space-md) 0;
  padding: var(--space-sm) 0;
}

.marcas-carousel::before,
.marcas-carousel::after {
  width: 40px;
}

.marcas-track {
  gap: var(--space-lg);
  animation-duration: 25s;
}

.marcas-slide {
  min-width: 140px;
  height: 80px;
  padding: var(--space-sm) var(--space-md);
  border-radius: 12px;
}

.marcas-slide img {
  max-width: 100px;
  max-height: 45px;
}

.marcas-cta p {
  font-size: 0.875rem;
}

/* Diferenciais Mobile */
.diferenciais-grid {
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.diferencial-card {
  padding: var(--space-lg);
  border-radius: 14px;
}

.diferencial-icon svg {
  width: 36px;
  height: 36px;
}

.diferencial-title {
  font-size: 1rem;
}

.diferencial-desc {
  font-size: 0.875rem;
}

/* Mobile: Disable alternating card offsets */
/* Localização Mobile */
.localizacao-bg-pattern {
  display: none;
}

.localizacao .section-header {
  text-align: center;
}

.localizacao-content {
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.localizacao-map-wrapper {
  order: -1;
}

.localizacao-map,
.localizacao-map iframe {
  min-height: 220px;
}

.localizacao-map-frame {
  padding: 6px;
  border-radius: 16px;
}

.localizacao-map {
  border-radius: 12px;
}

.localizacao-address {
  gap: var(--space-sm);
}

.info-card {
  flex-direction: row;
  text-align: left;
  padding: var(--space-md);
  gap: var(--space-md);
  border-radius: 12px;
}

.info-card::before {
  display: none;
}

.info-card-accent {
  display: none;
}

.info-card:hover {
  transform: none;
}

.info-card-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 10px;
  margin: 0;
}

.info-card-icon::after {
  display: none;
}

.info-card-icon svg {
  width: 22px;
  height: 22px;
}

.info-card:hover .info-card-icon {
  transform: none;
}

.info-card-title {
  font-size: 0.6875rem;
  margin-bottom: 0.25rem;
}

.info-card-title::after {
  display: none;
}

.info-card-text {
  font-size: 0.9375rem;
  line-height: 1.5;
}

.info-card-content {
  flex: 1;
}

.info-card-schedule {
  gap: 0.25rem;
}

.schedule-row {
  flex-direction: row;
  justify-content: space-between;
  padding: 0.375rem 0;
  border-bottom: 1px dashed var(--gray-200);
}

.schedule-row:last-child {
  border-bottom: none;
}

.schedule-days {
  font-size: 0.8125rem;
}

.schedule-time {
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
}

.info-card--cta {
  flex-direction: row;
  text-align: left;
}

.info-card--cta .info-card-icon {
  margin: 0;
}

.info-card--cta .info-card-text {
  font-size: 1rem;
}

.info-card-link {
  width: 44px;
  height: 44px;
  min-width: 44px;
}

.map-corner {
  width: 16px;
  height: 16px;
}

.map-corner::before {
  width: 16px;
  height: 3px;
}

.map-corner::after {
  width: 3px;
  height: 16px;
}

.map-badge {
  bottom: 12px;
  left: 12px;
  padding: 0.375rem 0.625rem;
  font-size: 0.6875rem;
  border-radius: 8px;
}

/* Contato Mobile */
.contato-subtitle {
  font-size: 0.9375rem;
}

.contato-methods {
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.contato-card {
  flex-direction: row;
  text-align: left;
  padding: var(--space-lg);
  gap: var(--space-md);
  border-radius: 14px;
  height: auto;
}

.contato-card:hover {
  transform: translateY(-3px);
}

.contato-text {
  align-items: flex-start;
}

.contato-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
}

.contato-icon svg {
  width: 24px;
  height: 24px;
}

.contato-label {
  font-size: 0.9375rem;
}

.contato-value {
  font-size: 0.8125rem;
}

.contato-card--email .contato-value {
  font-size: 0.6875rem;
}

.contato-card--email .contato-text {
  min-width: 0;
  overflow: hidden;
}

/* Footer Mobile */
.footer {
  padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-content {
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.footer-col:first-child {
  text-align: center;
}

.footer-logo {
  justify-content: center;
}

.footer-desc {
  max-width: 100%;
  text-align: center;
  font-size: 0.875rem;
}

.footer-title {
  font-size: 0.6875rem;
}

.footer-title::after {
  left: 50%;
  transform: translateX(-50%);
}

.footer-col:not(:first-child) {
  text-align: center;
}

.footer-social {
  justify-content: center;
}

.footer-nav {
  gap: var(--space-sm);
}

.footer-nav a {
  justify-content: center;
  padding: 0.5rem 0;
  font-size: 0.9375rem;
  min-height: 44px;
}

.footer-nav a::before {
  display: none;
}

.footer-info {
  align-items: center;
  gap: var(--space-sm);
}

.footer-info a,
.footer-info p {
  font-size: 0.875rem;
}

.footer-bottom {
  padding-top: var(--space-lg);
}

.footer-bottom p {
  font-size: 0.75rem;
}

/* ----------------------------------------
   Tablet (min-width: 640px)
   ---------------------------------------- */
@media (min-width: 640px) {
  .produtos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }

  .produto-card-top {
    min-height: 200px;
  }

  .produto-card-bottom {
    min-height: 160px;
  }

  .diferenciais-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }

  .diferencial-card {
    padding: var(--space-xl);
  }

  .diferencial-icon svg {
    width: 40px;
    height: 40px;
  }

  .contato-methods {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }

  .contato-card {
    flex-direction: column;
    text-align: center;
    padding: var(--space-lg);
    height: 100%;
    min-height: 220px;
  }

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

  .contato-icon {
    width: 56px;
    height: 56px;
  }

  .contato-card--email .contato-value {
    font-size: 0.8125rem;
  }

  .localizacao-map,
  .localizacao-map iframe {
    min-height: 280px;
  }

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

/* ----------------------------------------
   Tablet Large (min-width: 768px)
   ---------------------------------------- */
@media (min-width: 768px) {
  :root {
    --header-height: 72px;
  }

  .hero {
    min-height: 85vh;
  }

  .hero::before {
    height: 4px;
  }

  .hero::after {
    width: 6px;
  }

  .hero-tagline {
    font-size: 0.75rem;
  }

  .hero-title {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
  }

  .hero-subtitle {
    font-size: 1.0625rem;
  }

  .hero-cta {
    flex-direction: row;
    gap: var(--space-md);
  }

  .btn {
    width: auto;
    padding: 0.875rem 1.75rem;
    font-size: 0.9375rem;
  }

  .hero-stats {
    flex-wrap: nowrap;
    gap: var(--space-xl);
  }

  .hero-stat::after {
    display: block;
  }

  .hero-stat-number {
    font-size: 2.25rem;
  }

  .hero-stat-label {
    font-size: 0.75rem;
  }

  .hero-layout {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: var(--space-4xl);
  }

  .hero-content {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 560px;
  }

  .hero-subtitle {
    font-size: 1.0625rem;
    line-height: 1.7;
  }

  .hero-stats {
    display: flex;
    gap: var(--space-2xl);
    padding: var(--space-md) var(--space-lg);
    margin-top: var(--space-xl);
    background: rgba(0, 0, 0, 0.25);
    border-left: 4px solid var(--orange);
  }

  .hero-brands-card {
    flex: 0 0 340px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-2xl) var(--space-3xl);
  }

  .hero-brands-title {
    font-size: 0.875rem;
  }

  .hero-brands-slider {
    width: 180px;
    height: 70px;
  }

  .hero-brand-slide img {
    max-width: 160px;
    max-height: 60px;
  }

  .hero-brands-dots {
    gap: 7px;
  }

  .hero-brands-dot {
    width: 7px;
    height: 7px;
  }

  .hero-brands-count {
    font-size: 0.6875rem;
  }

  section {
    padding: var(--space-3xl) 0;
  }

  .section-header {
    margin-bottom: var(--space-2xl);
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .section-label {
    font-size: 0.625rem;
  }

  .produtos-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
  }

  .produto-card-top {
    min-height: 220px;
    padding: var(--space-xl) var(--space-lg);
  }

  .produto-category {
    font-size: 1.5rem;
  }

  .produto-diagonal {
    width: 80px;
    height: 80px;
  }

  .produto-illustration svg {
    max-width: 160px;
  }

  .produto-card-bottom {
    min-height: 180px;
    padding: var(--space-lg);
  }

  .produto-title {
    font-size: 1.5rem;
  }

  .produto-subtitle {
    font-size: 0.9375rem;
  }

  .produto-bolt {
    width: 70px;
    height: 90px;
  }

  .diferenciais-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }

  .diferencial-card {
    padding: var(--space-xl);
    border-radius: 16px;
  }

  .diferencial-icon svg {
    width: 44px;
    height: 44px;
  }

  .diferencial-title {
    font-size: 1.0625rem;
  }

  .diferencial-desc {
    font-size: 0.9375rem;
  }

  /* Marcas 768px */
  .marcas-carousel {
    margin: var(--space-lg) 0;
    padding: var(--space-md) 0;
  }

  .marcas-carousel::before,
  .marcas-carousel::after {
    width: 80px;
  }

  .marcas-track {
    gap: var(--space-2xl);
    animation-duration: 30s;
  }

  .marcas-slide {
    min-width: 160px;
    height: 90px;
    padding: var(--space-md);
    border-radius: 14px;
  }

  .marcas-slide img {
    max-width: 120px;
    max-height: 50px;
  }

  .marcas-cta p {
    font-size: 0.9375rem;
  }

  .sobre-stats {
    gap: var(--space-md);
  }

  .stat-item {
    padding: var(--space-lg);
  }

  .stat-number {
    font-size: 1.75rem;
  }

  .stat-label {
    font-size: 0.625rem;
  }

  .localizacao-bg-pattern {
    display: block;
  }

  .localizacao .section-header {
    text-align: left;
  }

  .localizacao-content {
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-2xl);
  }

  .localizacao-map-wrapper {
    order: 0;
  }

  .localizacao-map,
  .localizacao-map iframe {
    min-height: 360px;
  }

  .localizacao-map-frame {
    padding: var(--space-sm);
    border-radius: 20px;
  }

  .localizacao-map {
    border-radius: 16px;
  }

  .localizacao-address {
    gap: var(--space-md);
  }

  .info-card {
    flex-direction: row;
    padding: var(--space-lg);
    border-radius: 14px;
  }

  .info-card::before {
    display: block;
  }

  .info-card-accent {
    display: block;
  }

  .info-card:hover {
    transform: translateY(-4px);
  }

  .info-card-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 12px;
  }

  .info-card-icon::after {
    display: block;
  }

  .info-card:hover .info-card-icon {
    transform: scale(1.02);
  }

  .info-card-title {
    font-size: 0.75rem;
  }

  .info-card-title::after {
    display: block;
  }

  .info-card-text {
    font-size: 0.9375rem;
  }

  .schedule-days {
    font-size: 0.875rem;
  }

  .schedule-time {
    font-size: 0.8125rem;
  }

  .map-corner {
    width: 20px;
    height: 20px;
  }

  .map-corner::before {
    width: 20px;
    height: 3px;
  }

  .map-corner::after {
    width: 3px;
    height: 20px;
  }

  .map-badge {
    bottom: calc(var(--space-sm) + 12px);
    left: calc(var(--space-sm) + 12px);
    padding: 0.5rem 0.875rem;
    font-size: 0.75rem;
    border-radius: 10px;
  }

  .contato-card {
    padding: var(--space-xl);
    border-radius: 16px;
  }

  .contato-card:hover {
    transform: translateY(-5px);
  }

  .contato-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
  }

  .contato-icon svg {
    width: 28px;
    height: 28px;
  }

  .contato-label {
    font-size: 1rem;
  }

  .contato-value {
    font-size: 0.9375rem;
  }

  .contato-card--email .contato-value {
    font-size: 0.875rem;
  }

  .footer-content {
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-2xl);
  }

  .footer-col:first-child {
    text-align: left;
  }

  .footer-logo {
    justify-content: flex-start;
  }

  .footer-desc {
    text-align: left;
  }

  .footer-title::after {
    left: 0;
    transform: none;
  }

  .footer-col:not(:first-child) {
    text-align: left;
  }

  .footer-nav a {
    justify-content: flex-start;
  }

  .footer-nav a::before {
    display: block;
  }

  .footer-info {
    align-items: flex-start;
  }
}

/* ----------------------------------------
   Desktop (min-width: 1024px)
   ---------------------------------------- */
@media (min-width: 1024px) {
  /* Hide mobile menu, show desktop nav */
  .menu-toggle {
    display: none;
  }

  .cta-btn--header {
    display: inline-flex;
  }

  .nav-backdrop {
    display: none;
  }

  .nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--space-xs);
    padding: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    overflow: visible;
  }

  .nav::before {
    display: none;
  }

  .nav-cta-mobile {
    display: none;
  }

  .nav .nav-link {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 500;
    letter-spacing: normal;
    color: var(--gray-600);
    padding: var(--space-sm) var(--space-md);
    min-height: auto;
    opacity: 1;
    transform: none;
    transition-delay: 0s;
  }

  .nav .nav-link:not(:last-child)::before {
    display: none;
  }

  .nav .nav-link:hover,
  .nav .nav-link:focus {
    background: transparent;
    color: var(--blue);
    padding-left: var(--space-md);
  }

  .nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--orange);
    border: none;
    transform: translateX(-50%);
    transition: width var(--duration) var(--ease);
    opacity: 1;
  }

  .nav .nav-link:hover::after {
    width: 60%;
    transform: translateX(-50%);
  }

  .hero {
    min-height: 100vh;
    min-height: 100svh;
  }

  .hero::before {
    height: 5px;
  }

  .hero::after {
    width: 8px;
  }

  .hero-layout {
    gap: var(--space-5xl);
  }

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

  .hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.75;
  }

  .hero-stats {
    gap: var(--space-2xl);
    padding: var(--space-md) var(--space-xl);
  }

  .hero-brands-card {
    flex: 0 0 380px;
    padding: var(--space-2xl) var(--space-3xl);
  }

  .hero-brands-title {
    font-size: 1.125rem;
  }

  .hero-brands-slider {
    width: 260px;
    height: 110px;
  }

  .hero-brand-slide img {
    max-width: 240px;
    max-height: 100px;
  }

  .hero-brands-count {
    font-size: 1rem;
  }

  .hero-title {
    font-size: clamp(3rem, 5vw, 4rem);
  }

  section {
    padding: var(--space-4xl) 0;
  }

  .section-title {
    font-size: 2.25rem;
  }

  .section-subtitle {
    font-size: 1.0625rem;
  }

  .section-label {
    font-size: 0.6875rem;
  }

  .produtos-grid {
    gap: var(--space-2xl);
  }

  .produto-card-top {
    min-height: 250px;
  }

  .produto-category {
    font-size: 1.75rem;
  }

  .produto-illustration svg {
    max-width: 180px;
  }

  .produto-card-bottom {
    min-height: 200px;
  }

  .produto-title {
    font-size: 1.625rem;
  }

  .produto-cta {
    padding: 0.875rem 1.5rem;
    font-size: 0.875rem;
  }

  .produto-bolt {
    width: 80px;
    height: 100px;
  }

  .diferenciais-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
  }

  .diferencial-card {
    padding: var(--space-2xl);
    border-radius: 16px;
  }

  .diferencial-icon svg {
    width: 48px;
    height: 48px;
  }

  .diferencial-title {
    font-size: 1.125rem;
  }

  .diferencial-desc {
    font-size: 0.9375rem;
  }

  /* Marcas 1024px */
  .marcas-carousel {
    margin: var(--space-xl) 0;
    padding: var(--space-lg) 0;
  }

  .marcas-carousel::before,
  .marcas-carousel::after {
    width: 120px;
  }

  .marcas-track {
    gap: var(--space-3xl);
    animation-duration: 35s;
  }

  .marcas-slide {
    min-width: 180px;
    height: 100px;
    padding: var(--space-md) var(--space-lg);
    border-radius: 16px;
  }

  .marcas-slide img {
    max-width: 140px;
    max-height: 60px;
  }

  .marcas-cta p {
    font-size: 1rem;
  }

  .sobre-stats {
    gap: var(--space-lg);
  }

  .stat-item {
    padding: var(--space-xl);
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.6875rem;
  }

  .localizacao-content {
    grid-template-columns: 1fr 1.4fr;
    gap: var(--space-3xl);
  }

  .localizacao-map,
  .localizacao-map iframe {
    min-height: 420px;
  }

  .localizacao-map-frame {
    border-radius: 24px;
  }

  .localizacao-map {
    border-radius: 18px;
  }

  .info-card {
    padding: var(--space-lg) var(--space-xl);
    border-radius: 16px;
  }

  .info-card-title {
    font-size: 0.8125rem;
  }

  .info-card--cta .info-card-text {
    font-size: 1.125rem;
  }

  .map-corner {
    width: 24px;
    height: 24px;
  }

  .map-corner::before {
    width: 24px;
    height: 4px;
  }

  .map-corner::after {
    width: 4px;
    height: 24px;
  }

  .map-badge {
    bottom: calc(var(--space-sm) + 16px);
    left: calc(var(--space-sm) + 16px);
    padding: 0.625rem 1rem;
    font-size: 0.8125rem;
  }

  .contato-card {
    padding: var(--space-2xl);
    border-radius: 20px;
    min-height: 260px;
  }

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

  .contato-icon {
    width: 68px;
    height: 68px;
    border-radius: 18px;
  }

  .contato-icon svg {
    width: 32px;
    height: 32px;
  }

  .contato-label {
    font-size: 1.0625rem;
  }

  .contato-value {
    font-size: 1rem;
  }

  .contato-card--email .contato-value {
    font-size: 0.9375rem;
  }

  .footer {
    padding: var(--space-3xl) 0 var(--space-xl);
  }
}

/* ----------------------------------------
   Large Desktop (min-width: 1200px)
   ---------------------------------------- */
@media (min-width: 1200px) {
  .hero-layout {
    gap: var(--space-4xl);
  }

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

  .hero-title {
    font-size: clamp(3.25rem, 4vw, 4rem);
  }

  .hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.75;
  }

  .hero-stats {
    gap: var(--space-2xl);
    padding: var(--space-md) var(--space-xl);
  }

  .hero-stat-number {
    font-size: 2.5rem;
  }

  .hero-brands-card {
    flex: 0 0 400px;
    padding: var(--space-2xl) var(--space-3xl);
  }

  .hero-brands-slider {
    width: 260px;
    height: 100px;
  }

  .hero-brand-slide img {
    max-width: 240px;
    max-height: 90px;
  }

  .hero-brands-count {
    font-size: 1.0625rem;
  }

  section {
    padding: var(--space-5xl) 0;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .localizacao-map,
  .localizacao-map iframe {
    min-height: 480px;
  }
}

/* ========================================
   Fallbacks & Print
   ======================================== */
.produto-card,
.diferencial-card,
.contato-card,
.section-title {
  opacity: 1;
  transform: none;
}

/* Selection styling */
::selection {
  background: var(--yellow);
  color: var(--gray-900);
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--blue) 0%, var(--blue-dark) 100%);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--orange);
}

@media print {
  .loader, .header, .hero-wave, .btn, .cta-btn {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }

  .hero {
    background: white;
    min-height: auto;
    padding: 2rem 0;
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  .hero-title, .section-title {
    color: black !important;
  }

  section {
    padding: 2rem 0;
    page-break-inside: avoid;
  }
}
