.elementor-161 .elementor-element.elementor-element-a0e32bb{--display:flex;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS *//* ============================================================
   FLAT-SIX — style.css
   Porsche, Esportivos e Blindados | Alphaville – SP
   ============================================================ */

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

:root {
  /*
    TAMANHO DAS LOGOS FLAT-SIX
    Controle simples pelo painel admin.
    Header usa largura em %.
    Footer usa largura em px.
  */
  --logo-header-width: 15%;
  --logo-header-mobile-width: 28%;
  --logo-footer-width: 170px;
  --logo-footer-mobile-width: 150px;

  /* Cores principais */
  --bg:        #080808;
  --bg-2:      #0e0e0e;
  --bg-card:   #131313;
  --bg-card-2: #1a1a1a;
  --red:        #c8102e;
  --red-h:      #e01530;
  --red-dim:    rgba(200, 16, 46, 0.12);
  --white:     #ffffff;
  --gray:      #888888;
  --gray-lt:   #c0c0c0;
  --border:    #222222;
  --border-lt: #2e2e2e;

  /* Tipografia */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --header-h: 72px;
  --radius-sm: 3px;
  --radius:    6px;
  --max-w:     1200px;

  /* Transições */
  --t: 0.24s ease;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a { color: inherit; text-decoration: none; }
button { font-family: var(--font); cursor: pointer; }
input, select, textarea { font-family: var(--font); }
ul, ol { list-style: none; }

/* ── Tipografia ───────────────────────────────────────── */
h1, h2, h3, h4 {
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  margin-bottom: 12px;
}

.section-subtitle {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 540px;
}

.divider {
  width: 36px;
  height: 3px;
  background: var(--red);
  margin: 14px 0 22px;
  border-radius: 2px;
}

/* ── Utilitários ──────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  padding: 96px 0;
}

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

/* ── Botões ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--t);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--red);
  color: #fff;
}
.btn-primary:hover {
  background: var(--red-h);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(200, 16, 46, 0.38);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border-lt);
}
.btn-outline:hover {
  border-color: #555;
  background: rgba(255, 255, 255, 0.05);
}

.btn-ghost {
  background: rgba(255,255,255,0.07);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.1);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
}

.btn-sm {
  padding: 9px 18px;
  font-size: 0.72rem;
}

/* ── Badges ───────────────────────────────────────────── */
.badge {
  display: inline-block;
  padding: 3px 9px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border-radius: 2px;
}
.badge-porsche   { background: var(--red); color: #fff; }
.badge-blindado  { background: rgba(76,175,80,0.12); color: #5dbe61; border: 1px solid rgba(76,175,80,0.4); }
.badge-esportivo { background: rgba(100,130,255,0.12); color: #7a9aff; border: 1px solid rgba(100,130,255,0.35); }
.badge-vendido   { background: rgba(255,255,255,0.05); color: #555; border: 1px solid #333; }
.badge-disponivel{ background: transparent; color: #5dbe61; border: 1px solid rgba(76,175,80,0.4); }

/* ================================================================
   HEADER
   ================================================================ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(8, 8, 8, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: all var(--t);
}
#header.scrolled {
  background: rgba(8, 8, 8, 0.98);
  border-bottom-color: var(--border);
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  user-select: none;
  width: var(--logo-header-width);
  max-width: none;
}
.site-logo-img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
}

/* Nav desktop */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-desktop a {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  transition: color var(--t);
}
.nav-desktop a:hover { color: var(--white); }

/* Header action */
.header-cta {
  padding: 10px 20px;
  font-size: 0.72rem;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--t);
  flex-shrink: 0;
}
.header-cta:hover {
  background: var(--red-h);
  box-shadow: 0 4px 18px rgba(200,16,46,0.4);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--t);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
#mobileNav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: #0a0a0a;
  border-bottom: 1px solid var(--border);
  padding: 8px 0 24px;
  z-index: 999;
  flex-direction: column;
}
#mobileNav.open { display: flex; }
#mobileNav a {
  padding: 16px 28px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-lt);
  border-bottom: 1px solid var(--border);
  transition: color var(--t);
}
#mobileNav a:last-of-type { border-bottom: none; }
#mobileNav a:hover { color: var(--red); }
.mobile-nav-cta {
  margin: 16px 28px 0;
  display: block;
  text-align: center;
  background: var(--red);
  color: #fff;
  padding: 13px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

/* ================================================================
   HERO
   ================================================================ */
#hero {
  position: relative;
  z-index: 0;
  isolation: isolate;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  /*
    Suba a foto do showroom/garagem (foto com os 3 Porsches) para o FTP:
    /wp-content/uploads/flat-six/hero-bg.jpg
    e adicione ela ao background abaixo (após a vírgula final do gradiente):
    , url('/wp-content/uploads/flat-six/hero-bg.jpg') center/cover no-repeat
  */
  background:
    linear-gradient(125deg, rgba(8,8,8,0.95) 0%, rgba(8,8,8,0.72) 45%, rgba(8,8,8,0.92) 100%),
    url('/wp-content/uploads/flat-six/hero-bg.jpg') center/cover no-repeat,
    radial-gradient(ellipse 80% 80% at 65% 40%, #1a1a1a 0%, #080808 100%);
}

/* Overlay de escurecimento — opacidade controlada por JS */
.hero-dark-overlay {
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

/* Elemento decorativo — grid sutil */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 70% 50%, black 20%, transparent 70%);
}

/* Acento vermelho */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 72% 45%, rgba(200,16,46,0.09) 0%, transparent 70%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 80px 0 96px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(200, 16, 46, 0.1);
  border: 1px solid rgba(200, 16, 46, 0.28);
  color: var(--red);
  padding: 6px 14px;
  border-radius: 2px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.07;
  max-width: 780px;
  margin-bottom: 24px;
}
.hero-title em {
  font-style: normal;
  color: var(--red);
}

.hero-sub {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 44px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 72px;
}

/* Quick-category cards */
.hero-cats {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-cat {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-lt);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  cursor: pointer;
  transition: all var(--t);
  text-align: left;
}
.hero-cat:hover {
  border-color: var(--red);
  background: rgba(200, 16, 46, 0.07);
}
.hero-cat-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 2px;
}
.hero-cat-sub {
  display: block;
  font-size: 0.65rem;
  color: var(--gray);
  letter-spacing: 0.04em;
}

/* ================================================================
   DESTAQUE (featured car)
   ================================================================ */
#destaque {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.destaque-wrap {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Foto */
.destaque-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-card-2);
}
.destaque-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.destaque-img-wrap:hover img { transform: scale(1.03); }

.destaque-img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #141414 0%, #1c1c1c 100%);
  color: #333;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.destaque-img-placeholder svg { opacity: 0.15; }

.destaque-badge-wrap {
  position: absolute;
  top: 18px;
  left: 18px;
  display: flex;
  gap: 6px;
}

/* Info */
.destaque-info {}

.destaque-label { margin-bottom: 8px; }

.destaque-model {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 900;
  margin-bottom: 4px;
}

.destaque-meta {
  font-size: 0.82rem;
  color: var(--gray);
  margin-bottom: 28px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Ficha técnica */
.spec-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 28px;
}
.spec-item {
  background: var(--bg-card);
  padding: 13px 16px;
}
.spec-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 4px;
}
.spec-val {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
}

/* Highlights */
.destaque-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
  margin-bottom: 32px;
}
.destaque-highlights li {
  font-size: 0.8rem;
  color: var(--gray-lt);
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.4;
}
.destaque-highlights li::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

.destaque-preco {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.destaque-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ================================================================
   ESTOQUE
   ================================================================ */
#estoque { background: var(--bg); }

/* Filtros */
.stock-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 8px 20px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border: 1px solid var(--border-lt);
  background: transparent;
  color: var(--gray);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--t);
}
.filter-btn:hover {
  color: var(--white);
  border-color: #444;
}
.filter-btn.active {
  background: var(--red-dim);
  border-color: rgba(200,16,46,0.4);
  color: #fff;
}

/* Grid */
.stock-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 22px;
  min-height: 200px;
}

/* Card */
.car-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--t);
}
.car-card:hover {
  border-color: #2e2e2e;
  transform: translateY(-4px);
  box-shadow: 0 18px 52px rgba(0,0,0,0.55);
}

/* Imagem do card */
.car-img {
  position: relative;
  height: 215px;
  overflow: hidden;
  background: var(--bg-card-2);
  flex-shrink: 0;
}
.car-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.car-card:hover .car-img img { transform: scale(1.05); }

.car-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #111 0%, #1c1c1c 100%);
  color: #2e2e2e;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.car-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

/* Body do card */
.car-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.car-model {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 7px;
  line-height: 1.3;
}
.car-meta {
  display: flex;
  gap: 14px;
  font-size: 0.76rem;
  color: var(--gray);
  margin-bottom: 8px;
}
.car-cor {
  font-size: 0.76rem;
  color: var(--gray);
  margin-bottom: 12px;
}
.car-blindado-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5dbe61;
  margin-bottom: 12px;
}
.car-blindado-tag::before {
  content: '●';
  font-size: 0.45rem;
}
.car-desc {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 18px;
}
.car-footer {
  border-top: 1px solid var(--border);
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.car-price {
  font-size: 0.75rem;
  color: var(--red);
  font-style: italic;
}

/* Estoque vazio */
.stock-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 64px 0;
  color: var(--gray);
  font-size: 0.9rem;
}

/* ================================================================
   DIFERENCIAIS
   ================================================================ */
#diferenciais {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.diff-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  position: relative;
  overflow: hidden;
  transition: all var(--t);
}
.diff-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}
.diff-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.5); }
.diff-card:hover::before { transform: scaleX(1); }

.diff-icon {
  width: 42px; height: 42px;
  border: 1px solid var(--border-lt);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: var(--red);
  background: rgba(200,16,46,0.05);
}
.diff-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.diff-desc {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.68;
}

/* ================================================================
   QUEM SOMOS
   ================================================================ */
.sobre-section {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.sobre-foto-wrap { position: relative; }

.sobre-foto-bg {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center top;
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.sobre-foto-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(8,8,8,0.65) 100%);
}

.sobre-foto {
  width: 100%;
  display: block;
  border-radius: var(--radius);
  object-fit: cover;
  aspect-ratio: 4/5;
  filter: contrast(1.05) brightness(0.9);
}

.sobre-texto { display: flex; flex-direction: column; }

.sobre-p {
  color: var(--gray);
  margin-bottom: 16px;
  line-height: 1.75;
}

.sobre-dados {
  display: flex;
  gap: 40px;
  margin: 28px 0;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.sobre-dado { display: flex; flex-direction: column; gap: 4px; }

.sobre-num {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: -0.02em;
}

.sobre-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray);
}

.sobre-cta { align-self: flex-start; margin-top: 8px; }


/* ================================================================
   ANUNCIE SEU CARRO
   ================================================================ */
#anuncie { background: var(--bg); }

.anuncie-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.anuncie-info .section-title { font-size: clamp(1.5rem, 2.8vw, 2.1rem); }

.anuncie-intro {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 36px;
}

.anuncie-steps { display: flex; flex-direction: column; gap: 18px; }

.anuncie-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.step-num {
  width: 30px; height: 30px;
  border: 1px solid rgba(200,16,46,0.5);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--red);
  flex-shrink: 0;
  letter-spacing: 0;
}
.step-text strong {
  display: block;
  font-size: 0.88rem;
  margin-bottom: 2px;
  color: var(--white);
}
.step-text span {
  font-size: 0.79rem;
  color: var(--gray);
}

/* Formulário */
.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
}
.form-card h3 {
  font-size: 1.05rem;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border-lt);
  color: var(--white);
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  outline: none;
  transition: border-color var(--t);
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #383838; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--red); }
.form-group select { cursor: pointer; }
.form-group select option { background: #1a1a1a; }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-submit { width: 100%; margin-top: 6px; }

/* ================================================================
   CONTATO
   ================================================================ */
#contato {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contato-items { display: flex; flex-direction: column; gap: 0; }

.contato-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}
.contato-item:first-child { border-top: 1px solid var(--border); }

.contato-icon {
  width: 42px; height: 42px;
  background: rgba(200,16,46,0.08);
  border: 1px solid rgba(200,16,46,0.2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.contato-icon--brand {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}
.contato-icon img {
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
}
.contato-icon--brand img[alt="Webmotors"] {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}
.contato-label {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 4px;
}
.contato-value {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--white);
}
.contato-value a { transition: color var(--t); }
.contato-value a:hover { color: var(--red); }

.contato-cta { margin-top: 28px; }

/* Map placeholder */
.map-wrap {
  position: relative;
}
.map-placeholder {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--gray);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.map-placeholder svg { opacity: 0.3; }
.map-address {
  font-size: 0.82rem;
  color: var(--gray);
  text-align: center;
}
.map-address strong { color: var(--gray-lt); font-size: 0.88rem; }

/* ================================================================
   FOOTER
   ================================================================ */
#footer {
  background: #040404;
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}

.footer-logo { display:flex; align-items:center; margin-bottom: 14px; }
.footer-logo-img {
  display:block;
  width:var(--logo-footer-width);
  height:auto;
  max-width:none;
}
.footer-brand p {
  color: var(--gray);
  font-size: 0.82rem;
  line-height: 1.75;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.8rem;
  color: var(--gray);
  transition: color var(--t);
}
.footer-col ul li a:hover { color: var(--red); }
.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.footer-social-logo {
  width: 16px;
  height: 16px;
  object-fit: contain;
  flex-shrink: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-aviso {
  font-size: 0.72rem;
  color: #444;
  max-width: 600px;
  line-height: 1.65;
}

.footer-legal {
  max-width: 780px;
  color: #555;
  font-size: 0.68rem;
  line-height: 1.7;
}

.footer-legal p {
  margin: 0;
}

.footer-legal strong {
  color: #777;
  font-weight: 700;
}

.footer-copy { font-size: 0.72rem; color: #383838; white-space: nowrap; }

/* ================================================================
   FLOATING WHATSAPP
   ================================================================ */
.wpp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 22px rgba(37, 211, 102, 0.42);
  cursor: pointer;
  transition: all var(--t);
  text-decoration: none;
  border: none;
}
.wpp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 32px rgba(37, 211, 102, 0.55);
}
.wpp-float svg { width: 28px; height: 28px; }

/* ================================================================
   SCROLL ANIMATION
   ================================================================ */
/* Fade-up: começa invisível; JS adiciona .visible via IntersectionObserver.
   Se JS não executar (ex: file:// protocol), o fallback abaixo mantém tudo visível. */


.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
body:not(.js-ok) .fade-up {
  opacity: 1;
  transform: none;
}
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }


/* ================================================================
   HEADER RESPONSIVO — MENU HAMBURGER
   ================================================================ */
@media (max-width: 1100px) {
  #header {
    padding: 0 20px;
  }

  .nav-desktop,
  .header-cta {
    display: none;
  }

  .hamburger {
    display: flex;
    margin-left: auto;
  }

  .logo {
    width: var(--logo-header-mobile-width);
    max-width: none;
  }

  .site-logo-img {
    width: 100%;
    height: auto;
    max-width: none;
  }

  #mobileNav {
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }
}

/* ================================================================
   RESPONSIVE — TABLET (max 1024px)
   ================================================================ */
@media (max-width: 1024px) {
  .destaque-wrap { gap: 40px; }
  .sobre-grid { gap: 48px; }
}

/* ================================================================
   RESPONSIVE — MOBILE (max 768px)
   ================================================================ */
@media (max-width: 768px) {
  :root { --header-h: 60px; }

  /* Header */
  .logo { width: var(--logo-header-mobile-width); }
  .site-logo-img { width: 100%; height: auto; max-width: none; }
  .footer-logo-img { width: var(--logo-footer-mobile-width); height: auto; max-width: none; }

  /* Sections */
  .section { padding: 64px 0; }
  .section-header { margin-bottom: 40px; }

  /* Hero */
  .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-cats { gap: 8px; }
  .hero-cat  { padding: 11px 16px; }

  /* Destaque */
  .destaque-wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .destaque-img-placeholder { min-height: 280px; }
  .spec-table { grid-template-columns: 1fr 1fr; }
  .destaque-highlights { grid-template-columns: 1fr; }

  /* Diferenciais */
  .diff-grid { grid-template-columns: 1fr; }

  /* Quem Somos */
  .sobre-grid { grid-template-columns: 1fr; gap: 40px; }
  .sobre-foto-bg {
    aspect-ratio: 9 / 10;
    height: auto;
    min-height: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: #050505;
  }
  .sobre-dados { gap: 24px; }

  /* Anuncie */
  .anuncie-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-row     { grid-template-columns: 1fr; }
  .form-card    { padding: 28px 24px; }

  /* Contato */
  .contato-grid { grid-template-columns: 1fr; gap: 48px; }

  /* Estoque */
  .stock-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-brand  { grid-column: auto; }
  .footer-bottom { flex-direction: column; }

  .footer-legal {
    font-size: 0.62rem;
    line-height: 1.65;
    max-width: 100%;
  }
  .footer-copy {
    white-space: normal;
  }


  /* WhatsApp float */
  .wpp-float { bottom: 18px; right: 18px; width: 50px; height: 50px; }
  .wpp-float svg { width: 24px; height: 24px; }
}/* End custom CSS */