:root {
  --black: #0a0a0a;
  --black-2: #141414;
  --gray-900: #1f1f1f;
  --gray-600: #4b5563;
  --gray-400: #9ca3af;
  --gray-200: #e5e7eb;
  --gray-100: #f5f5f7;
  --white: #ffffff;
  --blue: #1e40af;
  --blue-light: #2563eb;
  --blue-hover: #1d4ed8;
  --accent: var(--blue-light);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

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

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  border-bottom: 1px solid #1f1f1f;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 24px;
}
.brand-logo {
  height: 38px;
  width: auto;
  display: block;
}
.nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
  margin-right: 24px;
}
.nav a {
  color: var(--gray-200);
  font-weight: 500;
  font-size: 15px;
  transition: color .2s ease;
}
.nav a:hover { color: var(--accent); }
.nav-cta { white-space: nowrap; }
.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
  padding: 120px 0 140px;
  min-height: 90vh;
  display: flex;
  align-items: center;
}
.hero-car {
  position: absolute;
  inset: 0;
  background-image: url("assets/hero-car.jpg");
  background-size: cover;
  background-position: 70% center;
  filter: grayscale(0.2) brightness(0.65) contrast(1.05);
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(10,10,10,0.96) 0%,
      rgba(10,10,10,0.85) 35%,
      rgba(10,10,10,0.4) 65%,
      rgba(10,10,10,0.15) 100%),
    linear-gradient(180deg,
      rgba(10,10,10,0.6) 0%,
      transparent 30%,
      transparent 70%,
      rgba(10,10,10,0.85) 100%);
  z-index: 1;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 30%, rgba(37, 99, 235, .35), transparent 45%),
    radial-gradient(circle at 15% 75%, rgba(30, 64, 175, .2), transparent 50%);
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: screen;
}
.hero-content { position: relative; z-index: 3; max-width: 880px; }
.eyebrow {
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 20px;
}
.eyebrow.dark { color: var(--blue); }

.hero h1 {
  font-family: 'Anton', 'Inter', sans-serif;
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  text-transform: uppercase;
}
.hero h1 .accent { color: var(--accent); }

.lead {
  font-size: 18px;
  color: var(--gray-200);
  max-width: 640px;
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 64px;
  flex-wrap: wrap;
  border-top: 1px solid #2a2a2a;
  padding-top: 32px;
  max-width: 720px;
}
.hero-stats div {
  display: flex;
  flex-direction: column;
}
.hero-stats strong {
  font-family: 'Anton', sans-serif;
  font-size: 40px;
  color: var(--accent);
  line-height: 1;
}
.hero-stats span {
  font-size: 13px;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: all .2s ease;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--blue-hover);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid #3a3a3a;
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ---------- SECTIONS ---------- */
.section { padding: 96px 0; }
.section-light { background: var(--white); color: var(--gray-900); }
.section-dark { background: var(--black); color: var(--white); }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-head h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin-bottom: 16px;
}
.section-head.light h2 { color: var(--white); }
.section-head .sub {
  font-size: 18px;
  color: var(--gray-600);
}
.section-head.light .sub { color: var(--gray-400); }

.section h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(32px, 4.5vw, 48px);
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin-bottom: 20px;
}
.section p { margin-bottom: 16px; color: var(--gray-600); }
.section-dark p { color: var(--gray-400); }

.link-arrow {
  display: inline-flex;
  color: var(--blue);
  font-weight: 600;
  font-size: 15px;
  margin-top: 8px;
  transition: gap .2s ease;
  gap: 4px;
}
.link-arrow:hover { gap: 10px; }

/* ---------- GRIDS ---------- */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.card-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.card-stats .stat {
  background: var(--gray-100);
  padding: 32px 24px;
  border-radius: 8px;
  border-left: 3px solid var(--blue);
}
.card-stats strong {
  font-family: 'Anton', sans-serif;
  font-size: 42px;
  color: var(--blue);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.card-stats span {
  font-size: 14px;
  color: var(--gray-600);
}

/* Featured product card */
.featured-product {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
  background: linear-gradient(135deg, var(--gray-100) 0%, #ffffff 100%);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 48px;
  margin-bottom: 48px;
  overflow: hidden;
  position: relative;
}
.featured-product::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--blue);
}
.featured-visual {
  background: var(--black);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  border: 1px solid var(--gray-200);
  overflow: hidden;
  position: relative;
}
.featured-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.85) contrast(1.05) brightness(0.95);
  transition: transform .6s ease;
}
.featured-product:hover .featured-visual img { transform: scale(1.04); }
.featured-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.18) 0%, transparent 50%, rgba(0,0,0,0.25) 100%);
  pointer-events: none;
}
.featured-content .tag {
  display: inline-block;
  background: rgba(30, 64, 175, 0.1);
  color: var(--blue);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
}
.featured-content h3 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(28px, 3vw, 38px);
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 1.05;
  margin-bottom: 16px;
}
.featured-content > p {
  color: var(--gray-600);
  font-size: 16px;
  margin-bottom: 20px;
}
.feature-list {
  list-style: none;
  margin-bottom: 24px;
}
.feature-list li {
  padding: 8px 0 8px 28px;
  font-size: 14px;
  color: var(--gray-900);
  position: relative;
  border-bottom: 1px solid var(--gray-200);
}
.feature-list li:last-child { border-bottom: 0; }
.feature-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 14px;
  width: 16px; height: 16px;
  background: var(--blue);
  border-radius: 50%;
  background-image: linear-gradient(135deg, #2563eb, #1e40af);
}
.feature-list li::after {
  content: '✓';
  position: absolute;
  left: 4px; top: 8px;
  color: white;
  font-size: 11px;
  font-weight: 700;
}

/* Lines pills block */
.lines-block {
  text-align: center;
  margin: 64px auto 48px;
  max-width: 900px;
}
.lines-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(28px, 3.2vw, 40px);
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin: 12px 0 24px;
}
.lines-pills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0;
}
.lines-pills li { padding: 0; margin: 0; }
.lines-pills a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  color: var(--gray-900);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all .2s ease;
}
.lines-pills a::after {
  content: '';
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231e40af'><path d='M20.52 3.48A11.91 11.91 0 0 0 12 0C5.37 0 0 5.37 0 12c0 2.12.56 4.18 1.62 6L0 24l6.18-1.62A11.93 11.93 0 0 0 12 24c6.63 0 12-5.37 12-12 0-3.18-1.24-6.18-3.48-8.52Z'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  width: 0;
  transition: all .25s ease;
}
.lines-pills a:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(30, 64, 175, 0.25);
}
.lines-pills a:hover::after {
  opacity: 1;
  width: 16px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M20.52 3.48A11.91 11.91 0 0 0 12 0C5.37 0 0 5.37 0 12c0 2.12.56 4.18 1.62 6L0 24l6.18-1.62A11.93 11.93 0 0 0 12 24c6.63 0 12-5.37 12-12 0-3.18-1.24-6.18-3.48-8.52Z'/></svg>");
}

/* Quote CTA (WhatsApp focus) */
.quote-cta {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 60%, #1e40af 100%);
  border-radius: 16px;
  padding: 64px 48px;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote-cta::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(37,99,235,0.25), transparent 70%);
  pointer-events: none;
}
.quote-cta-content { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.quote-cta h3 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin: 12px 0 16px;
  color: var(--white);
}
.quote-cta h3 .accent-light { color: #60a5fa; }
.quote-cta > .quote-cta-content > p { color: rgba(255,255,255,0.85); font-size: 17px; margin-bottom: 28px; }
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #25d366;
  color: var(--white);
  padding: 18px 40px;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s ease;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
}
.quote-tip {
  margin-top: 20px !important;
  font-size: 14px !important;
  color: rgba(255,255,255,0.6) !important;
}

/* Product grid */
.grid-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.product {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 28px;
  transition: all .25s ease;
  position: relative;
  overflow: hidden;
}
.product::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.product:hover {
  border-color: var(--blue);
  box-shadow: 0 12px 32px rgba(30, 64, 175, .12);
  transform: translateY(-3px);
}
.product:hover::before { transform: scaleX(1); }
.product.highlight {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.product.highlight::before { background: var(--blue-light); transform: scaleX(1); }
.product.highlight p { color: var(--gray-400); }
.product.highlight:hover { border-color: var(--blue-light); }
.product-img {
  background: var(--gray-100);
  border-radius: 8px;
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  overflow: hidden;
  transition: background .25s ease;
}
.product-img img {
  width: 88%;
  height: 88%;
  object-fit: contain;
  transition: transform .35s ease;
}
.product:hover .product-img img { transform: scale(1.06); }
.product.highlight .product-img { background: rgba(255,255,255,0.05); }
.product h3 {
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.product p { font-size: 14px; color: var(--gray-600); margin-bottom: 16px; line-height: 1.5; }
.product-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  background: rgba(30, 64, 175, 0.08);
  padding: 6px 12px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}
.product.highlight .product-tag {
  color: var(--accent);
  background: rgba(37, 99, 235, 0.15);
}

.grid-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature {
  background: var(--black-2);
  border: 1px solid #222;
  border-radius: 8px;
  padding: 32px 24px;
  transition: all .25s ease;
}
.feature:hover {
  border-color: var(--blue);
  transform: translateY(-2px);
}
.feature-icon {
  font-size: 36px;
  margin-bottom: 16px;
}
.feature h4 {
  font-family: 'Anton', sans-serif;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 8px;
  color: var(--white);
}
.feature p { font-size: 14px; color: var(--gray-400); }

/* ---------- LINHA PREMIUM ---------- */
.premium-section {
  background: radial-gradient(ellipse at center, #1a1206 0%, #0a0a0a 70%);
  color: var(--white);
  overflow: hidden;
  position: relative;
}
.premium-section::before, .premium-section::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 240px;
  pointer-events: none;
  background:
    repeating-linear-gradient(15deg,
      transparent 0px,
      transparent 18px,
      rgba(212, 175, 55, 0.06) 18px,
      rgba(212, 175, 55, 0.06) 22px);
}
.premium-section::before { left: 0; }
.premium-section::after { right: 0; transform: scaleX(-1); }
.premium-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.eyebrow.gold {
  color: #d4af37;
  letter-spacing: 3px;
}
.premium-content h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(48px, 6vw, 84px);
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.95;
  margin-bottom: 24px;
}
.gold-text {
  background: linear-gradient(135deg, #f4e7b9 0%, #d4af37 40%, #b8860b 70%, #f4e7b9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.premium-content > p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 17px;
  margin-bottom: 28px;
  max-width: 520px;
}
.premium-hint {
  font-size: 13px !important;
  color: rgba(212, 175, 55, 0.75) !important;
  margin-bottom: 28px !important;
  letter-spacing: 0.3px;
}
.premium-brands {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  gap: 8px;
  margin: 0;
}
.premium-brands li {
  border: 1px solid rgba(212, 175, 55, 0.35);
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #d4af37;
  background: rgba(212, 175, 55, 0.06);
  border-radius: 999px;
  cursor: pointer;
  transition: all .2s ease;
}
.premium-brands li:hover {
  border-color: #d4af37;
  background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
  color: #0a0a0a;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(212, 175, 55, 0.35);
}
.btn-gold {
  background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
  color: #0a0a0a;
  font-weight: 700;
}
.btn-gold:hover {
  background: linear-gradient(135deg, #f4e7b9 0%, #d4af37 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}
.premium-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.premium-frame {
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.18) 0%, transparent 70%);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1;
  position: relative;
}
.premium-frame img {
  width: 100%;
  height: 100%;
  max-height: 360px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.95);
  padding: 32px;
  border-radius: 8px;
  filter: drop-shadow(0 16px 48px rgba(212, 175, 55, 0.45));
  opacity: 1;
  transition: opacity .14s ease;
}
.premium-caption {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.4);
  backdrop-filter: blur(8px);
  color: #d4af37;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 10px 22px;
  border-radius: 999px;
  text-align: center;
  transition: all .25s ease;
  max-width: 100%;
}
.premium-caption.active {
  background: rgba(212, 175, 55, 0.18);
  color: #f4e7b9;
  border-color: #d4af37;
}
.premium-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
  color: #0a0a0a;
  font-size: 10px;
  font-weight: 800;
  padding: 6px 12px;
  letter-spacing: 2px;
  border-radius: 4px;
  z-index: 2;
}

/* ---------- CTA BAND ---------- */
.cta-band {
  background: var(--blue);
  color: var(--white);
  padding: 64px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.cta-inner h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(28px, 3.5vw, 40px);
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin: 0;
}
.cta-inner p {
  flex: 1;
  margin: 0;
  color: rgba(255, 255, 255, .85);
  max-width: 480px;
}
.cta-band .btn-primary {
  background: var(--white);
  color: var(--blue);
}
.cta-band .btn-primary:hover { background: var(--black); color: var(--white); }

/* ---------- TRABALHE CONOSCO ---------- */
.career-section {
  background: linear-gradient(135deg, #1e40af 0%, #1d4ed8 60%, #2563eb 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.career-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.25) 0%, transparent 70%);
  pointer-events: none;
}
.career-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.career-photo {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: #1e40af;
  box-shadow: 0 24px 48px rgba(0,0,0,0.3);
}
.career-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.eyebrow.light-blue { color: #93c5fd; }
.career-content h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(48px, 6vw, 84px);
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 24px;
}
.career-content h2 .accent-light { color: #93c5fd; }
.career-content > p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  margin-bottom: 28px;
  max-width: 500px;
}
.vacancy {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 4px solid #93c5fd;
  border-radius: 8px;
  padding: 24px 28px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.vacancy-status {
  display: inline-block;
  background: #22c55e;
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.vacancy h3 {
  font-family: 'Anton', sans-serif;
  font-size: 28px;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--white);
  margin-bottom: 6px;
}
.vacancy p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  margin: 0;
}
.btn-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--blue);
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all .2s ease;
}
.btn-light:hover {
  background: #0a0a0a;
  color: var(--white);
  transform: translateY(-2px);
}
.career-email {
  margin-top: 14px !important;
  font-size: 14px !important;
  color: rgba(255, 255, 255, 0.65) !important;
  font-weight: 500;
}

/* ---------- CONTACT ---------- */
.contact-list {
  list-style: none;
  margin-top: 24px;
}
.contact-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 15px;
}
.contact-list li:last-child { border-bottom: 0; }
.contact-list strong { display: inline-block; min-width: 110px; color: var(--gray-900); }
.contact-list a { color: var(--blue); font-weight: 500; }

.form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--gray-100);
  padding: 32px;
  border-radius: 8px;
}
.form label {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-900);
  gap: 6px;
}
.form input, .form textarea {
  font-family: inherit;
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  background: var(--white);
  transition: border-color .2s ease;
}
.form input:focus, .form textarea:focus {
  outline: none;
  border-color: var(--blue);
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--black);
  color: var(--gray-400);
  padding-top: 64px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid #1f1f1f;
}
.footer-inner h5 {
  color: var(--white);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.footer-inner a, .footer-inner span {
  display: block;
  font-size: 14px;
  color: var(--gray-400);
  padding: 4px 0;
  transition: color .2s ease;
}
.footer-inner a:hover { color: var(--accent); }
.footer-logo {
  height: 36px;
  width: auto;
  margin-bottom: 16px;
}
.footer-bottom {
  padding: 24px 0;
  font-size: 13px;
  color: #555;
}

/* ---------- WHATSAPP FLOAT ---------- */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
  transition: transform .2s ease;
  z-index: 90;
}
.whatsapp-float:hover { transform: scale(1.08); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .grid-products { grid-template-columns: repeat(2, 1fr); }
  .grid-features { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero { padding: 64px 0 80px; }
  .section { padding: 64px 0; }
  .hero-stats { gap: 32px; }
  .featured-product { grid-template-columns: 1fr; gap: 32px; padding: 32px; }
  .featured-visual { aspect-ratio: auto; padding: 24px; max-height: 280px; }
  .premium-grid { grid-template-columns: 1fr; gap: 40px; }
  .premium-brands { grid-template-columns: repeat(3, 1fr); }
  .career-grid { grid-template-columns: 1fr; gap: 40px; }
  .career-photo { max-width: 400px; margin: 0 auto; }
}

@media (max-width: 640px) {
  .nav, .nav-cta { display: none; }
  .menu-toggle { display: flex; }
  .grid-products { grid-template-columns: 1fr; }
  .grid-features { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .header-inner { padding: 12px 20px; }
  .hero-stats strong { font-size: 32px; }
  .hero-stats { gap: 24px; }
  .card-stats { grid-template-columns: 1fr 1fr; }
  body.nav-open .nav {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--black);
    flex-direction: column;
    padding: 16px 24px;
    gap: 0;
    border-bottom: 1px solid #1f1f1f;
  }
  body.nav-open .nav a {
    padding: 12px 0;
    border-bottom: 1px solid #1f1f1f;
  }
}
